diff --git a/Scripts/EmojiGenerator.swift b/Scripts/EmojiGenerator.swift index 0c991433b2..937032a227 100755 --- a/Scripts/EmojiGenerator.swift +++ b/Scripts/EmojiGenerator.swift @@ -52,6 +52,33 @@ enum RemoteModel { case symbols = "Symbols" case flags = "Flags" case components = "Component" + + var localizedKey: String = { + switch self { + case .smileys: + return "Smileys" + case .people: + return "People" + case .smileysAndPeople: + return "Smileys" + case .animals: + return "Animals" + case .food: + return "Food" + case .activities: + return "Activities" + case .travel: + return "Travel" + case .objects: + return "Objects" + case .symbols: + return "Symbols" + case .flags: + return "Flags" + case .components: + return "Component" + } + }() } static func fetchEmojiData() throws -> Data { @@ -551,7 +578,7 @@ extension EmojiGenerator { for category in outputCategories { fileHandle.writeLine("case .\(category):") fileHandle.indent { - let stringKey = "EMOJI_CATEGORY_\("\(category)".uppercased())_NAME" + let stringKey = "emojiCategory\(category.localizedKey)" let stringComment = "The name for the emoji category '\(category.rawValue)'" fileHandle.writeLine("return NSLocalizedString(\"\(stringKey)\", comment: \"\(stringComment)\")") diff --git a/Scripts/LintLocalizableStrings.swift b/Scripts/LintLocalizableStrings.swift index 11513fb686..6161f6b3f3 100755 --- a/Scripts/LintLocalizableStrings.swift +++ b/Scripts/LintLocalizableStrings.swift @@ -2,19 +2,39 @@ // Copyright © 2023 Rangeproof Pty Ltd. All rights reserved. // -// This script is based on https://github.com/ginowu7/CleanSwiftLocalizableExample the main difference -// is canges to the localized usage regex -// // stringlint:disable +// +/// This script is based on https://github.com/ginowu7/CleanSwiftLocalizableExample +/// The main differences are: +/// 1. Changes to the localized usage regex +/// 2. Addition to excluded unlocalized cases +/// 3. Functionality to update and copy localized permission requirement strings to infoPlist.xcstrings import Foundation +typealias JSON = [String:AnyHashable] + extension ProjectState { /// Adding `// stringlint:disable` to the top of a source file (before imports) or after a string will mean that file/line gets /// ignored by this script (good for some things like the auto-generated emoji strings or debug strings) static let lintSuppression: String = "stringlint:disable" - static let primaryLocalisationFile: String = "en" - static let validLocalisationSuffixes: Set = ["Localizable.strings"] + static let primaryLocalisation: String = "en" + static let permissionStrings: Set = [ + "permissionsStorageSend", + "permissionsFaceId", + "cameraGrantAccessDescription", + "permissionsAppleMusic", + "permissionsStorageSave", + "permissionsMicrophoneAccessRequiredIos" + ] + static let permissionStringsMap: [String: String] = [ + "permissionsStorageSend": "NSPhotoLibraryUsageDescription", + "permissionsFaceId": "NSFaceIDUsageDescription", + "cameraGrantAccessDescription": "NSCameraUsageDescription", + "permissionsAppleMusic": "NSAppleMusicUsageDescription", + "permissionsStorageSave": "NSPhotoLibraryAddUsageDescription", + "permissionsMicrophoneAccessRequiredIos": "NSMicrophoneUsageDescription" + ] static let validSourceSuffixes: Set = [".swift", ".m"] static let excludedPaths: Set = [ "build/", // Files under the build folder (CI) @@ -27,8 +47,8 @@ extension ProjectState { "_SharedTestUtilities/", // Exclude shared test directory "external/" // External dependencies ] - static let excludedPhrases: Set = [ "", " ", ",", ", ", "null" ] - static let excludedUnlocalisedStringLineMatching: Set = [ + static let excludedPhrases: Set = [ "", " ", " ", ",", ", ", "null", "\"", "@[0-9a-fA-F]{66}", "^[0-9A-Fa-f]+$", "/" ] + static let excludedUnlocalizedStringLineMatching: Set = [ .contains(ProjectState.lintSuppression, caseSensitive: false), .prefix("#import", caseSensitive: false), .prefix("@available(", caseSensitive: false), @@ -53,9 +73,9 @@ extension ProjectState { .contains("[UIImage imageNamed:", caseSensitive: false), .contains("UIFont(name:", caseSensitive: false), .contains(".dateFormat =", caseSensitive: false), - .contains(".accessibilityLabel =", caseSensitive: false), - .contains(".accessibilityValue =", caseSensitive: false), - .contains(".accessibilityIdentifier =", caseSensitive: false), + .contains("accessibilityLabel =", caseSensitive: false), + .contains("accessibilityValue =", caseSensitive: false), + .contains("accessibilityIdentifier =", caseSensitive: false), .contains("accessibilityIdentifier:", caseSensitive: false), .contains("accessibilityLabel:", caseSensitive: false), .contains("Accessibility(identifier:", caseSensitive: false), @@ -80,6 +100,19 @@ extension ProjectState { .previousLine(numEarlier: 2, .contains("Accessibility(", caseSensitive: false)) ), .contains("SQL(", caseSensitive: false), + .contains(" == ", caseSensitive: false), + .contains("forResource:", caseSensitive: false), + .contains("imageName:", caseSensitive: false), + .contains(".userInfo[", caseSensitive: false), + .contains("payload[", caseSensitive: false), + .contains(".infoDictionary?[", caseSensitive: false), + .contains("accessibilityId:", caseSensitive: false), + .contains("key:", caseSensitive: false), + .contains("separator:", caseSensitive: false), + .contains("separatedBy:", caseSensitive: false), + .nextLine(.contains(".put(key:", caseSensitive: false)), + .nextLine(.contains(".putNumber(", caseSensitive: false)), + .nextLine(.contains(".localized()", caseSensitive: false)), .regex(".*static var databaseTableName: String"), .regex("case .* = "), .regex("Error.*\\("), @@ -105,7 +138,7 @@ let projectState: ProjectState = ProjectState( ), loadSourceFiles: targetActions.contains(.lintStrings) ) -print("------------ Processing \(projectState.localizationFiles.count) Localization File(s) ------------") +print("------------ Processing \(projectState.localizationFile.path) ------------") targetActions.forEach { $0.perform(projectState: projectState) } // MARK: - ScriptAction @@ -113,6 +146,7 @@ targetActions.forEach { $0.perform(projectState: projectState) } enum ScriptAction: String { case validateFilesCopied = "validate" case lintStrings = "lint" + case updatePermissionStrings = "update" func perform(projectState: ProjectState) { // Perform the action @@ -140,59 +174,62 @@ enum ScriptAction: String { ), let fileUrls: [URL] = enumerator.allObjects as? [URL] else { return Output.error("Could not retrieve list of files within built product") } - + let localizationFiles: Set = Set(fileUrls .filter { $0.path.hasSuffix(".lproj") } .map { $0.lastPathComponent.replacingOccurrences(of: ".lproj", with: "") }) - let missingFiles: Set = Set(projectState.localizationFiles - .map { $0.name }) + let missingFiles: Set = projectState.localizationFile.locales .subtracting(localizationFiles) - + guard missingFiles.isEmpty else { return Output.error("Translations missing from \(productName): \(missingFiles.joined(separator: ", "))") } break case .lintStrings: - guard !projectState.localizationFiles.isEmpty else { + guard !projectState.localizationFile.strings.isEmpty else { return print("------------ Nothing to lint ------------") } - // Add warnings for any duplicate keys - projectState.localizationFiles.forEach { file in - // Show errors for any duplicates - file.duplicates.forEach { phrase, original in Output.duplicate(phrase, original: original) } - - // Show warnings for any phrases missing from the file - let allKeys: Set = Set(file.keyPhrase.keys) - let missingKeysFromOtherFiles: [String: [String]] = projectState.localizationFiles.reduce(into: [:]) { result, otherFile in - guard otherFile.path != file.path else { return } - - let missingKeys: Set = Set(otherFile.keyPhrase.keys) - .subtracting(allKeys) - - missingKeys.forEach { missingKey in - result[missingKey] = ((result[missingKey] ?? []) + [otherFile.name]) - } + var allKeys: [String] = [] + var duplicates: [String] = [] + projectState.localizationFile.strings.forEach { key, value in + if allKeys.contains(key) { + duplicates.append(key) + } else { + allKeys.append(key) } - missingKeysFromOtherFiles.forEach { missingKey, namesOfFilesItWasFound in - Output.warning(file, "Phrase '\(missingKey)' is missing (found in: \(namesOfFilesItWasFound.joined(separator: ", ")))") + // Add warning for probably faulty translation + if let localizations: JSON = (value as? JSON)?["localizations"] as? JSON { + if let original: String = ((localizations["en"] as? JSON)?["stringUnit"] as? JSON)?["value"] as? String { + localizations.forEach { locale, translation in + if let phrase: String = ((translation as? JSON)?["stringUnit"] as? JSON)?["value"] as? String { + let numberOfVarablesOrignal = Regex.matches("\\{.*\\}", content: original).count + let numberOfVarablesPhrase = Regex.matches("\\{.*\\}", content: phrase).count + if numberOfVarablesPhrase != numberOfVarablesOrignal { + Output.warning("\(key) in \(locale) may be faulty") + } + } + } + } } } - + + // Add warnings for any duplicate keys + duplicates.forEach { Output.duplicate(key: $0) } + // Process the source code print("------------ Processing \(projectState.sourceFiles.count) Source File(s) ------------") - let allKeys: Set = Set(projectState.primaryLocalizationFile.keyPhrase.keys) - + projectState.sourceFiles.forEach { file in - // Add logs for unlocalised strings + // Add logs for unlocalized strings file.unlocalizedPhrases.forEach { phrase in Output.warning(phrase, "Found unlocalized string '\(phrase.key)'") } - // Add errors for missing localised strings - let missingKeys: Set = Set(file.keyPhrase.keys).subtracting(allKeys) + // Add errors for missing localized strings + let missingKeys: Set = Set(file.keyPhrase.keys).subtracting(Set(allKeys)) missingKeys.forEach { key in switch file.keyPhrase[key] { case .some(let phrase): Output.error(phrase, "Localized phrase '\(key)' missing from strings files") @@ -201,6 +238,40 @@ enum ScriptAction: String { } } break + case .updatePermissionStrings: + print("------------ Updating permission strings ------------") + var strings: JSON = projectState.infoPlistLocalizationFile.strings + var updatedInfoPlistJSON: JSON = projectState.infoPlistLocalizationFile.json + ProjectState.permissionStrings.forEach { key in + guard let nsKey: String = ProjectState.permissionStringsMap[key] else { return } + if + let stringsData: Data = try? JSONSerialization.data(withJSONObject: (projectState.localizationFile.strings[key] as! JSON), options: [ .fragmentsAllowed ]), + let stringsJSONString: String = String(data: stringsData, encoding: .utf8) + { + let updatedStringsJSONString = stringsJSONString.replacingOccurrences(of: "{app_name}", with: "Session") + + if + let updatedStringsData: Data = updatedStringsJSONString.data(using: .utf8), + let updatedStrings: JSON = try? JSONSerialization.jsonObject(with: updatedStringsData, options: [ .fragmentsAllowed ]) as? JSON + { + strings[nsKey] = updatedStrings + } + } + } + updatedInfoPlistJSON["strings"] = strings + + guard updatedInfoPlistJSON != projectState.infoPlistLocalizationFile.json else { + return + } + + if let data: Data = try? JSONSerialization.data(withJSONObject: updatedInfoPlistJSON, options: [ .fragmentsAllowed ]) { + do { + try data.write(to: URL(fileURLWithPath: projectState.infoPlistLocalizationFile.path), options: [.atomic]) + } catch { + fatalError("Could not write to InfoPlist.xcstrings, error: \(error)") + } + } + break } print("------------ Complete ------------") @@ -244,6 +315,10 @@ enum Output { print("\(location.location): error: \(error)") } + static func warning(_ warning: String) { + print("warning: \(warning)") + } + static func warning(_ location: Locatable, _ warning: String) { print("\(location.location): warning: \(warning)") } @@ -258,14 +333,18 @@ enum Output { // currently include the reference to the original entry // print("\(original.location): note: previously found here") } + + static func duplicate(key: String) { + print("Error: duplicate key '\(key)'") + } } // MARK: - ProjectState struct ProjectState { - let primaryLocalizationFile: LocalizationStringsFile - let localizationFiles: [LocalizationStringsFile] let sourceFiles: [SourceFile] + let localizationFile: XCStringsFile + let infoPlistLocalizationFile: XCStringsFile init(path: String, loadSourceFiles: Bool) { guard @@ -283,17 +362,16 @@ struct ProjectState { ((try? fileUrl.resourceValues(forKeys: [.isDirectoryKey]))?.isDirectory == false) && !lowerCaseExcludedPaths.contains { fileUrl.path.lowercased().contains($0) } } + + self.localizationFile = validFileUrls + .filter { fileUrl in fileUrl.path.contains("Localizable.xcstrings") } + .map { XCStringsFile(path: $0.path) } + .last! - // Localization files - let targetFileSuffixes: Set = Set(ProjectState.validLocalisationSuffixes.map { $0.lowercased() }) - self.localizationFiles = validFileUrls - .filter { fileUrl in targetFileSuffixes.contains { fileUrl.path.lowercased().contains($0) } } - .map { LocalizationStringsFile(path: $0.path) } - - guard let primaryLocalizationFile: LocalizationStringsFile = self.localizationFiles.first(where: { $0.name == ProjectState.primaryLocalisationFile }) else { - fatalError("Could not locate primary localization file: \(ProjectState.primaryLocalisationFile)") - } - self.primaryLocalizationFile = primaryLocalizationFile + self.infoPlistLocalizationFile = validFileUrls + .filter { fileUrl in fileUrl.path.contains("InfoPlist.xcstrings") } + .map { XCStringsFile(path: $0.path) } + .last! guard loadSourceFiles else { self.sourceFiles = [] @@ -317,74 +395,39 @@ protocol KeyedLocatable: Locatable { } extension ProjectState { - // MARK: - LocalizationStringsFile + // MARK: - XCStringsFile - struct LocalizationStringsFile: Locatable { - struct Phrase: KeyedLocatable { - let key: String - let value: String - let filePath: String - let lineNumber: Int - - var location: String { "\(filePath):\(lineNumber)" } - } - + struct XCStringsFile: Locatable { let name: String let path: String - let keyPhrase: [String: Phrase] - let duplicates: [(Phrase, original: Phrase)] + var json: JSON + var strings: JSON + var locales: Set = Set() var location: String { path } init(path: String) { - let result = LocalizationStringsFile.parse(path) - self.name = (path - .replacingOccurrences(of: "/Localizable.strings", with: "") - .replacingOccurrences(of: ".lproj", with: "") + .replacingOccurrences(of: ".xcstrings", with: "") .components(separatedBy: "/") .last ?? "Unknown") self.path = path - self.keyPhrase = result.keyPhrase - self.duplicates = result.duplicates + self.json = XCStringsFile.parse(path) + self.strings = self.json["strings"] as! JSON + self.strings.values.forEach { value in + if let localizations: JSON = (value as? JSON)?["localizations"] as? JSON { + self.locales.formUnion(localizations.map{ $0.key }) + } + } } - static func parse(_ path: String) -> (keyPhrase: [String: Phrase], duplicates: [(Phrase, original: Phrase)]) { + static func parse(_ path: String) -> JSON { guard let data: Data = FileManager.default.contents(atPath: path), - let content: String = String(data: data, encoding: .utf8) + let json: JSON = try? JSONSerialization.jsonObject(with: data, options: [ .fragmentsAllowed ]) as? JSON else { fatalError("Could not read from path: \(path)") } - let lines: [String] = content.components(separatedBy: .newlines) - var duplicates: [(Phrase, original: Phrase)] = [] - var keyPhrase: [String: Phrase] = [:] - - lines.enumerated().forEach { lineNumber, line in - guard - let key: String = Regex.matches("\"([^\"]*?)\"(?= =)", content: line).first, - let value: String = Regex.matches("(?<== )\"(.*?)\"(?=;)", content: line).first - else { return } - - // Remove the quotation marks around the key - let trimmedKey: String = String(key - .prefix(upTo: key.index(before: key.endIndex)) - .suffix(from: key.index(after: key.startIndex))) - - // Files are 1-indexed but arrays are 0-indexed so add 1 to the lineNumber - let result: Phrase = Phrase( - key: trimmedKey, - value: value, - filePath: path, - lineNumber: (lineNumber + 1) - ) - - switch keyPhrase[trimmedKey] { - case .some(let original): duplicates.append((result, original)) - case .none: keyPhrase[trimmedKey] = result - } - } - - return (keyPhrase, duplicates) + return json } } @@ -446,7 +489,7 @@ extension ProjectState { // been suppressed or it's explicitly excluded due to the rules at the top of the file guard trimmedLine.contains("\"") && - !ProjectState.excludedUnlocalisedStringLineMatching + !ProjectState.excludedUnlocalizedStringLineMatching .contains(where: { $0.matches(trimmedLine, lineNumber, lines) }) else { return } @@ -459,7 +502,7 @@ extension ProjectState { line.components(separatedBy: commentMatches[0])[0] ) - // Use regex to find `NSLocalizedString("", "")`, `"".localised()` and any other `""` + // Use regex to find `NSLocalizedString("", "")`, `"".localized()` and any other `""` // values in the source code // // Note: It's more complex because we need to exclude escaped quotation marks from @@ -504,7 +547,7 @@ extension ProjectState { /// **Note:** While it'd be nice to have the regex automatically exclude the quotes doing so makes it _far_ less /// efficient (approx. by a factor of 8 times) so we remove those ourselves) if allMatches.isEmpty { - // Find strings which are just not localised + // Find strings which are just not localized let potentialUnlocalizedStrings: [String] = Regex .matches("\\\"[^\\\"\\\\]*(?:\\\\.[^\\\"\\\\]*)*(?:\\\")", content: targetLine) // Remove the leading and trailing quotation marks @@ -551,6 +594,7 @@ indirect enum MatchType: Hashable { case containsAnd(String, caseSensitive: Bool, MatchType) case regex(String) case previousLine(numEarlier: Int, MatchType) + case nextLine(MatchType) case belowLineContaining(String) func matches(_ value: String, _ index: Int, _ lines: [String]) -> Bool { @@ -585,7 +629,11 @@ indirect enum MatchType: Hashable { let targetIndex: Int = (index - numEarlier) return type.matches(lines[targetIndex], targetIndex, lines) - + + case .nextLine(let type): + guard index + 1 < lines.count else { return false } + return type.matches(lines[index + 1], index + 1, lines) + case .belowLineContaining(let other): return lines[0.. 1 else { fatalError("Localised country file had no content") } + let lines: [String] = localizedDataString.components(separatedBy: "\n") + guard lines.count > 1 else { fatalError("localized country file had no content") } lines[1...].enumerated().forEach { index, line in let values: [String] = parseCsvLine(line.trimmingCharacters(in: .whitespacesAndNewlines)) @@ -203,7 +203,7 @@ class Processor { cache.countryLocationsGeonameId.append(values[0]) cache.countryLocationsCountryName.append(values[5].trimmingCharacters(in: CharacterSet(charactersIn: "\""))) - let progress = (Double((fileIndex * lines.count) + index) / Double(localisedCountryNameFileUrls.count * lines.count)) + let progress = (Double((fileIndex * lines.count) + index) / Double(localizedCountryNameFileUrls.count * lines.count)) printProgressBar(prefix: languagesPrefix, progress: progress, total: (terminalWidth - 10)) } } diff --git a/Session.xcodeproj/project.pbxproj b/Session.xcodeproj/project.pbxproj index 96b9cddb65..1515f6cc39 100644 --- a/Session.xcodeproj/project.pbxproj +++ b/Session.xcodeproj/project.pbxproj @@ -164,6 +164,8 @@ 7BFA8AE32831D0D4001876F3 /* ContextMenuVC+EmojiReactsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFA8AE22831D0D4001876F3 /* ContextMenuVC+EmojiReactsView.swift */; }; 7BFD1A8A2745C4F000FB91B9 /* Permissions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFD1A892745C4F000FB91B9 /* Permissions.swift */; }; 7BFD1A972747689000FB91B9 /* Session-Turn-Server in Resources */ = {isa = PBXBuildFile; fileRef = 7BFD1A962747689000FB91B9 /* Session-Turn-Server */; }; + 9409433E2C7EB81800D9D2E0 /* WebRTCSession+Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9409433D2C7EB81800D9D2E0 /* WebRTCSession+Constants.swift */; }; + 940943402C7ED62300D9D2E0 /* StartupError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9409433F2C7ED62300D9D2E0 /* StartupError.swift */; }; 942256802C23F8BB00C0FDBF /* StartConversationScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9422567D2C23F8BB00C0FDBF /* StartConversationScreen.swift */; }; 942256812C23F8BB00C0FDBF /* NewMessageScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9422567E2C23F8BB00C0FDBF /* NewMessageScreen.swift */; }; 942256822C23F8BB00C0FDBF /* InviteAFriendScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9422567F2C23F8BB00C0FDBF /* InviteAFriendScreen.swift */; }; @@ -183,8 +185,16 @@ 9422569F2C23F8FE00C0FDBF /* ScanQRCodeScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9422569E2C23F8FE00C0FDBF /* ScanQRCodeScreen.swift */; }; 942256A12C23F90700C0FDBF /* CustomTopTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 942256A02C23F90700C0FDBF /* CustomTopTabBar.swift */; }; 9422EE2B2B8C3A97004C740D /* String+Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9422EE2A2B8C3A97004C740D /* String+Utilities.swift */; }; + 94367C432C6C828500814252 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 94367C422C6C828500814252 /* Localizable.xcstrings */; }; + 94367C442C6C828500814252 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 94367C422C6C828500814252 /* Localizable.xcstrings */; }; + 94367C452C6C828500814252 /* Localizable.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 94367C422C6C828500814252 /* Localizable.xcstrings */; }; 943C6D822B75E061004ACE64 /* Message+DisappearingMessages.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943C6D812B75E061004ACE64 /* Message+DisappearingMessages.swift */; }; + 943C6D842B86B5F1004ACE64 /* Localization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 943C6D832B86B5F1004ACE64 /* Localization.swift */; }; + 9473386E2BDF5F3E00B9E169 /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 9473386D2BDF5F3E00B9E169 /* InfoPlist.xcstrings */; }; + 947AD6902C8968FF000B2730 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = 947AD68F2C8968FF000B2730 /* Constants.swift */; }; 94B3DC172AF8592200C88531 /* QuoteView_SwiftUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94B3DC162AF8592200C88531 /* QuoteView_SwiftUI.swift */; }; + 94C5DCB02BE88170003AA8C5 /* BezierPathView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94C5DCAF2BE88170003AA8C5 /* BezierPathView.swift */; }; + 94E9BC0D2C7BFBDA006984EA /* Localization+Style.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E9BC0C2C7BFBDA006984EA /* Localization+Style.swift */; }; A11CD70D17FA230600A2D1B1 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A11CD70C17FA230600A2D1B1 /* QuartzCore.framework */; }; A163E8AB16F3F6AA0094D68B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A163E8AA16F3F6A90094D68B /* Security.framework */; }; A1C32D5017A06538000A904E /* AddressBookUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1C32D4F17A06537000A904E /* AddressBookUI.framework */; }; @@ -346,7 +356,6 @@ C38EF387255B6DD2007E1867 /* AttachmentItemCollection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF37E255B6DD0007E1867 /* AttachmentItemCollection.swift */; }; C38EF388255B6DD2007E1867 /* AttachmentApprovalViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF37F255B6DD0007E1867 /* AttachmentApprovalViewController.swift */; }; C38EF389255B6DD2007E1867 /* AttachmentTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF380255B6DD0007E1867 /* AttachmentTextView.swift */; }; - C38EF38A255B6DD2007E1867 /* AttachmentCaptionToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF381255B6DD1007E1867 /* AttachmentCaptionToolbar.swift */; }; C38EF38B255B6DD2007E1867 /* AttachmentPrepViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF382255B6DD1007E1867 /* AttachmentPrepViewController.swift */; }; C38EF38C255B6DD2007E1867 /* ApprovalRailCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF383255B6DD1007E1867 /* ApprovalRailCellView.swift */; }; C38EF3B8255B6DE7007E1867 /* ImageEditorTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3A8255B6DE4007E1867 /* ImageEditorTextViewController.swift */; }; @@ -369,7 +378,6 @@ C38EF3FA255B6DF7007E1867 /* DirectionalPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3DC255B6DF1007E1867 /* DirectionalPanGestureRecognizer.swift */; }; C38EF3FF255B6DF7007E1867 /* TappableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3E1255B6DF3007E1867 /* TappableView.swift */; }; C38EF400255B6DF7007E1867 /* GalleryRailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3E2255B6DF3007E1867 /* GalleryRailView.swift */; }; - C38EF402255B6DF7007E1867 /* CommonStrings.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3E4255B6DF4007E1867 /* CommonStrings.swift */; }; C38EF405255B6DF7007E1867 /* OWSButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3E7255B6DF5007E1867 /* OWSButton.swift */; }; C38EF407255B6DF7007E1867 /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = C38EF3E9255B6DF6007E1867 /* Toast.swift */; }; C38EF48A255B7E3F007E1867 /* SessionUIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C331FF1B2558F9D300070591 /* SessionUIKit.framework */; }; @@ -417,6 +425,7 @@ D2AEACDC16C426DA00C364C0 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D2AEACDB16C426DA00C364C0 /* CFNetwork.framework */; }; FC3BD9881A30A790005B96BB /* Social.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FC3BD9871A30A790005B96BB /* Social.framework */; }; FCB11D8C1A129A76002F93FB /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FCB11D8B1A129A76002F93FB /* CoreMedia.framework */; }; + FD0150582CA27DF3005B08A1 /* ScrollableLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */; }; FD0606BF2BC8C10200C3816E /* _005_AddJobUniqueHash.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0606BE2BC8C10200C3816E /* _005_AddJobUniqueHash.swift */; }; FD0606C32BCE13ED00C3816E /* MessageRequestFooterView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD0606C22BCE13ED00C3816E /* MessageRequestFooterView.swift */; }; FD078E4827E02561000769AF /* CommonMockedExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD078E4727E02561000769AF /* CommonMockedExtensions.swift */; }; @@ -796,7 +805,6 @@ FD9004142818AD0B00ABAAF6 /* _002_SetupStandardJobs.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD9004132818AD0B00ABAAF6 /* _002_SetupStandardJobs.swift */; }; FD9004152818B46300ABAAF6 /* JobRunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF0B7432804EF1B004C14C5 /* JobRunner.swift */; }; FD9004162818B46700ABAAF6 /* JobRunnerError.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE77F68280F9EDA002CFC5D /* JobRunnerError.swift */; }; - FD9401D12ABD04AC003A4834 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = FD9401A32ABD04AC003A4834 /* Localizable.strings */; }; FD96F3A529DBC3DC00401309 /* MessageSendJobSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD96F3A429DBC3DC00401309 /* MessageSendJobSpec.swift */; }; FD96F3A729DBD43D00401309 /* MockJobRunner.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD96F3A629DBD43D00401309 /* MockJobRunner.swift */; }; FD97B2402A3FEB050027DD57 /* ARC4RandomNumberGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD97B23F2A3FEB050027DD57 /* ARC4RandomNumberGenerator.swift */; }; @@ -871,8 +879,6 @@ FDC498B72AC15F7D00EDD897 /* AppNotificationCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC498B62AC15F7D00EDD897 /* AppNotificationCategory.swift */; }; FDC498B92AC15FE300EDD897 /* AppNotificationAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC498B82AC15FE300EDD897 /* AppNotificationAction.swift */; }; FDC498BB2AC1606C00EDD897 /* AppNotificationUserInfoKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC498BA2AC1606C00EDD897 /* AppNotificationUserInfoKey.swift */; }; - FDC498BE2AC1732E00EDD897 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = FD9401A32ABD04AC003A4834 /* Localizable.strings */; }; - FDC498C22AC17BFC00EDD897 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = FD9401A32ABD04AC003A4834 /* Localizable.strings */; }; FDC6D6F32860607300B04575 /* SessionEnvironment.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF0B7542807C4BB004C14C5 /* SessionEnvironment.swift */; }; FDC6D7602862B3F600B04575 /* Dependencies.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDC6D75F2862B3F600B04575 /* Dependencies.swift */; }; FDCD2E032A41294E00964D6A /* LegacyGroupOnlyRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDCD2E022A41294E00964D6A /* LegacyGroupOnlyRequest.swift */; }; @@ -1269,7 +1275,6 @@ 4CC613352227A00400E21A3A /* ConversationSearch.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConversationSearch.swift; sourceTree = ""; }; 70377AAA1918450100CAF501 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; }; 76C87F18181EFCE600C4ACAB /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = System/Library/Frameworks/MediaPlayer.framework; sourceTree = SDKROOT; }; - 7B02DF432A16F47B00ADCFD2 /* EmojiGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmojiGenerator.swift; sourceTree = ""; }; 7B0EFDED274F598600FFAAE7 /* TimestampUtils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TimestampUtils.swift; sourceTree = ""; }; 7B0EFDEF275084AA00FFAAE7 /* CallMessageCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CallMessageCell.swift; sourceTree = ""; }; 7B0EFDF3275490EA00FFAAE7 /* ringing.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = ringing.mp3; sourceTree = ""; }; @@ -1354,6 +1359,8 @@ 7BFD1A892745C4F000FB91B9 /* Permissions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Permissions.swift; sourceTree = ""; }; 7BFD1A8B2747150E00FB91B9 /* TurnServerInfo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TurnServerInfo.swift; sourceTree = ""; }; 7BFD1A962747689000FB91B9 /* Session-Turn-Server */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "Session-Turn-Server"; sourceTree = ""; }; + 9409433D2C7EB81800D9D2E0 /* WebRTCSession+Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "WebRTCSession+Constants.swift"; sourceTree = ""; }; + 9409433F2C7ED62300D9D2E0 /* StartupError.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartupError.swift; sourceTree = ""; }; 9422567D2C23F8BB00C0FDBF /* StartConversationScreen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StartConversationScreen.swift; sourceTree = ""; }; 9422567E2C23F8BB00C0FDBF /* NewMessageScreen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NewMessageScreen.swift; sourceTree = ""; }; 9422567F2C23F8BB00C0FDBF /* InviteAFriendScreen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = InviteAFriendScreen.swift; sourceTree = ""; }; @@ -1373,8 +1380,14 @@ 9422569E2C23F8FE00C0FDBF /* ScanQRCodeScreen.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ScanQRCodeScreen.swift; sourceTree = ""; }; 942256A02C23F90700C0FDBF /* CustomTopTabBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomTopTabBar.swift; sourceTree = ""; }; 9422EE2A2B8C3A97004C740D /* String+Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "String+Utilities.swift"; sourceTree = ""; }; + 94367C422C6C828500814252 /* Localizable.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = Localizable.xcstrings; sourceTree = ""; }; 943C6D812B75E061004ACE64 /* Message+DisappearingMessages.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Message+DisappearingMessages.swift"; sourceTree = ""; }; + 943C6D832B86B5F1004ACE64 /* Localization.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Localization.swift; sourceTree = ""; }; + 9473386D2BDF5F3E00B9E169 /* InfoPlist.xcstrings */ = {isa = PBXFileReference; lastKnownFileType = text.json.xcstrings; path = InfoPlist.xcstrings; sourceTree = ""; }; + 947AD68F2C8968FF000B2730 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; 94B3DC162AF8592200C88531 /* QuoteView_SwiftUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QuoteView_SwiftUI.swift; sourceTree = ""; }; + 94C5DCAF2BE88170003AA8C5 /* BezierPathView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BezierPathView.swift; sourceTree = ""; }; + 94E9BC0C2C7BFBDA006984EA /* Localization+Style.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Localization+Style.swift"; sourceTree = ""; }; A11CD70C17FA230600A2D1B1 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; A163E8AA16F3F6A90094D68B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; A1C32D4D17A0652C000A904E /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; }; @@ -1547,7 +1560,6 @@ C38EF37E255B6DD0007E1867 /* AttachmentItemCollection.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AttachmentItemCollection.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentItemCollection.swift"; sourceTree = SOURCE_ROOT; }; C38EF37F255B6DD0007E1867 /* AttachmentApprovalViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AttachmentApprovalViewController.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift"; sourceTree = SOURCE_ROOT; }; C38EF380255B6DD0007E1867 /* AttachmentTextView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AttachmentTextView.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentTextView.swift"; sourceTree = SOURCE_ROOT; }; - C38EF381255B6DD1007E1867 /* AttachmentCaptionToolbar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AttachmentCaptionToolbar.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentCaptionToolbar.swift"; sourceTree = SOURCE_ROOT; }; C38EF382255B6DD1007E1867 /* AttachmentPrepViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = AttachmentPrepViewController.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentPrepViewController.swift"; sourceTree = SOURCE_ROOT; }; C38EF383255B6DD1007E1867 /* ApprovalRailCellView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ApprovalRailCellView.swift; path = "SignalUtilitiesKit/Shared Views/ApprovalRailCellView.swift"; sourceTree = SOURCE_ROOT; }; C38EF3A8255B6DE4007E1867 /* ImageEditorTextViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = ImageEditorTextViewController.swift; path = "SignalUtilitiesKit/Media Viewing & Editing/Image Editing/ImageEditorTextViewController.swift"; sourceTree = SOURCE_ROOT; }; @@ -1570,7 +1582,6 @@ C38EF3DC255B6DF1007E1867 /* DirectionalPanGestureRecognizer.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = DirectionalPanGestureRecognizer.swift; path = SignalUtilitiesKit/Utilities/DirectionalPanGestureRecognizer.swift; sourceTree = SOURCE_ROOT; }; C38EF3E1255B6DF3007E1867 /* TappableView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = TappableView.swift; path = "SignalUtilitiesKit/Shared Views/TappableView.swift"; sourceTree = SOURCE_ROOT; }; C38EF3E2255B6DF3007E1867 /* GalleryRailView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GalleryRailView.swift; path = "SignalUtilitiesKit/Shared Views/GalleryRailView.swift"; sourceTree = SOURCE_ROOT; }; - C38EF3E4255B6DF4007E1867 /* CommonStrings.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = CommonStrings.swift; path = SignalUtilitiesKit/Utilities/CommonStrings.swift; sourceTree = SOURCE_ROOT; }; C38EF3E7255B6DF5007E1867 /* OWSButton.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = OWSButton.swift; path = "SignalUtilitiesKit/Shared Views/OWSButton.swift"; sourceTree = SOURCE_ROOT; }; C38EF3E9255B6DF6007E1867 /* Toast.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = "SignalUtilitiesKit/Shared Views/Toast.swift"; sourceTree = SOURCE_ROOT; }; C38EF3EE255B6DF6007E1867 /* GradientView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = SessionUIKit/Components/GradientView.swift; sourceTree = SOURCE_ROOT; }; @@ -1631,6 +1642,7 @@ E1A0AD8B16E13FDD0071E604 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; }; FC3BD9871A30A790005B96BB /* Social.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Social.framework; path = System/Library/Frameworks/Social.framework; sourceTree = SDKROOT; }; FCB11D8B1A129A76002F93FB /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; }; + FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ScrollableLabel.swift; sourceTree = ""; }; FD0606BE2BC8C10200C3816E /* _005_AddJobUniqueHash.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = _005_AddJobUniqueHash.swift; sourceTree = ""; }; FD0606C22BCE13ED00C3816E /* MessageRequestFooterView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageRequestFooterView.swift; sourceTree = ""; }; FD078E4727E02561000769AF /* CommonMockedExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonMockedExtensions.swift; sourceTree = ""; }; @@ -1914,50 +1926,7 @@ FD8ECF912938552800C0D1BB /* Threading.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Threading.swift; sourceTree = ""; }; FD8ECF93293856AF00C0D1BB /* Randomness.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Randomness.swift; sourceTree = ""; }; FD9004132818AD0B00ABAAF6 /* _002_SetupStandardJobs.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = _002_SetupStandardJobs.swift; sourceTree = ""; }; - FD9401A42ABD04AC003A4834 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/Localizable.strings; sourceTree = ""; }; - FD9401A52ABD04AC003A4834 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/Localizable.strings; sourceTree = ""; }; - FD9401A62ABD04AC003A4834 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/Localizable.strings; sourceTree = ""; }; - FD9401A72ABD04AC003A4834 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/Localizable.strings; sourceTree = ""; }; - FD9401A82ABD04AC003A4834 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fa; path = fa.lproj/Localizable.strings; sourceTree = ""; }; - FD9401A92ABD04AC003A4834 /* zh-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-TW"; path = "zh-TW.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401AA2ABD04AC003A4834 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; - FD9401AB2ABD04AC003A4834 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/Localizable.strings; sourceTree = ""; }; - FD9401AC2ABD04AC003A4834 /* ku */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ku; path = ku.lproj/Localizable.strings; sourceTree = ""; }; - FD9401AD2ABD04AC003A4834 /* sl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sl; path = sl.lproj/Localizable.strings; sourceTree = ""; }; - FD9401AE2ABD04AC003A4834 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/Localizable.strings; sourceTree = ""; }; - FD9401AF2ABD04AC003A4834 /* eo */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = eo; path = eo.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B02ABD04AC003A4834 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B12ABD04AC003A4834 /* bg */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bg; path = bg.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B22ABD04AC003A4834 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B32ABD04AC003A4834 /* es-ES */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "es-ES"; path = "es-ES.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401B42ABD04AC003A4834 /* be */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = be; path = be.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B52ABD04AC003A4834 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B62ABD04AC003A4834 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B72ABD04AC003A4834 /* fil */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fil; path = fil.lproj/Localizable.strings; sourceTree = ""; }; - FD9401B82ABD04AC003A4834 /* ne-NP */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "ne-NP"; path = "ne-NP.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401B92ABD04AC003A4834 /* no */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = no; path = no.lproj/Localizable.strings; sourceTree = ""; }; - FD9401BA2ABD04AC003A4834 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/Localizable.strings; sourceTree = ""; }; - FD9401BB2ABD04AC003A4834 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Localizable.strings; sourceTree = ""; }; - FD9401BC2ABD04AC003A4834 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/Localizable.strings; sourceTree = ""; }; - FD9401BD2ABD04AC003A4834 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401BE2ABD04AC003A4834 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/Localizable.strings; sourceTree = ""; }; - FD9401BF2ABD04AC003A4834 /* lv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lv; path = lv.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C02ABD04AC003A4834 /* lt */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = lt; path = lt.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C12ABD04AC003A4834 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C22ABD04AC003A4834 /* zh-CN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-CN"; path = "zh-CN.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401C32ABD04AC003A4834 /* si-LK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "si-LK"; path = "si-LK.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401C42ABD04AC003A4834 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C52ABD04AC003A4834 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C62ABD04AC003A4834 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C72ABD04AC003A4834 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C82ABD04AC003A4834 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; - FD9401C92ABD04AC003A4834 /* sv-SE */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "sv-SE"; path = "sv-SE.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401CA2ABD04AC003A4834 /* bn */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = bn; path = bn.lproj/Localizable.strings; sourceTree = ""; }; - FD9401CB2ABD04AC003A4834 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/Localizable.strings"; sourceTree = ""; }; - FD9401CC2ABD04AC003A4834 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/Localizable.strings; sourceTree = ""; }; FD9401CE2ABD04AC003A4834 /* TRANSLATIONS.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = TRANSLATIONS.md; sourceTree = ""; }; - FD9401CF2ABD04AC003A4834 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/Localizable.strings; sourceTree = ""; }; - FD9401D02ABD04AC003A4834 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hi; path = hi.lproj/Localizable.strings; sourceTree = ""; }; FD96F3A429DBC3DC00401309 /* MessageSendJobSpec.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MessageSendJobSpec.swift; sourceTree = ""; }; FD96F3A629DBD43D00401309 /* MockJobRunner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockJobRunner.swift; sourceTree = ""; }; FD97B23F2A3FEB050027DD57 /* ARC4RandomNumberGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ARC4RandomNumberGenerator.swift; sourceTree = ""; }; @@ -2712,6 +2681,7 @@ B8A582B0258C66C900AFD84C /* General */ = { isa = PBXGroup; children = ( + 947AD68F2C8968FF000B2730 /* Constants.swift */, FD428B182B4B576F006D0888 /* AppContext.swift */, 7BD477A727EC39F5004E2822 /* Atomic.swift */, FDC438CC27BC641200C60D73 /* Set+Utilities.swift */, @@ -2753,6 +2723,7 @@ 7B0EFDED274F598600FFAAE7 /* TimestampUtils.swift */, FD428B1A2B4B6098006D0888 /* Notifications+Lifecycle.swift */, FD428B202B4B75EA006D0888 /* Singleton.swift */, + 943C6D832B86B5F1004ACE64 /* Localization.swift */, ); path = General; sourceTree = ""; @@ -2778,6 +2749,7 @@ FD71164128E2C83500B47552 /* Types */, FD71164028E2C83000B47552 /* Views */, 4CA46F4B219CCC630038ABDE /* CaptionView.swift */, + 94C5DCAF2BE88170003AA8C5 /* BezierPathView.swift */, 34F308A01ECB469700BB7697 /* OWSBezierPathView.h */, 34F308A11ECB469700BB7697 /* OWSBezierPathView.m */, 7BAFA1182A39669400B76CB9 /* BezierPathView.swift */, @@ -3023,6 +2995,7 @@ FDBB25E62988BBBD00F1508E /* UIContextualAction+Theming.swift */, 7BA1E0E72A8087DB00123D0D /* SwiftUI+Utilities.swift */, 9422EE2A2B8C3A97004C740D /* String+Utilities.swift */, + 94E9BC0C2C7BFBDA006984EA /* Localization+Style.swift */, ); path = Utilities; sourceTree = ""; @@ -3045,6 +3018,7 @@ FD52090628B49738006098F6 /* ConfirmationModal.swift */, C38EF2A3255B6D93007E1867 /* PlaceholderIcon.swift */, C38EF2A4255B6D93007E1867 /* ProfilePictureView.swift */, + FD0150572CA27DEE005B08A1 /* ScrollableLabel.swift */, FD71165A28E6DDBC00B47552 /* StyledNavigationController.swift */, FD0B77AF29B69A65009169BA /* TopBannerController.swift */, ); @@ -3273,7 +3247,6 @@ children = ( C38EF37D255B6DCF007E1867 /* AttachmentApprovalInputAccessoryView.swift */, C38EF37F255B6DD0007E1867 /* AttachmentApprovalViewController.swift */, - C38EF381255B6DD1007E1867 /* AttachmentCaptionToolbar.swift */, C38EF37E255B6DD0007E1867 /* AttachmentItemCollection.swift */, C38EF382255B6DD1007E1867 /* AttachmentPrepViewController.swift */, C38EF37C255B6DCF007E1867 /* AttachmentTextToolbar.swift */, @@ -3470,7 +3443,6 @@ C38EF307255B6DBE007E1867 /* UIGestureRecognizer+OWS.swift */, C33FDBD3255A581800E217F9 /* OWSSignalAddress.swift */, FD6A392B2C2AC51900762359 /* AppVersion.swift */, - C38EF3E4255B6DF4007E1867 /* CommonStrings.swift */, C38EF304255B6DBE007E1867 /* ImageCache.swift */, C38EF2F2255B6DBC007E1867 /* Searcher.swift */, C3F0A52F255C80BC007BE2A3 /* NoopNotificationsManager.swift */, @@ -3501,6 +3473,7 @@ isa = PBXGroup; children = ( C3AAFFF125AE99710089E6DD /* AppDelegate.swift */, + 9409433F2C7ED62300D9D2E0 /* StartupError.swift */, 34D99CE3217509C1000AFB39 /* AppEnvironment.swift */, 7BFD1A952747689000FB91B9 /* TurnServers */, B8FF8E6025C10D8B004D1F22 /* Countries */, @@ -4226,7 +4199,8 @@ isa = PBXGroup; children = ( FD9401CE2ABD04AC003A4834 /* TRANSLATIONS.md */, - FD9401A32ABD04AC003A4834 /* Localizable.strings */, + 94367C422C6C828500814252 /* Localizable.xcstrings */, + 9473386D2BDF5F3E00B9E169 /* InfoPlist.xcstrings */, ); path = Translations; sourceTree = ""; @@ -4408,7 +4382,6 @@ isa = PBXGroup; children = ( 7BD687D22A5D283200D8E455 /* build_libSession_util.sh */, - 7B02DF432A16F47B00ADCFD2 /* EmojiGenerator.swift */, FDE7214F287E50D50093DF33 /* ProtoWrappers.py */, FDCCC6E82ABA7402002BBEF5 /* EmojiGenerator.swift */, FDE72150287E50D50093DF33 /* LintLocalizableStrings.swift */, @@ -4427,6 +4400,7 @@ B8B558FE26C4E05E00693325 /* WebRTCSession+MessageHandling.swift */, B8BF43B926CC95FB007828D1 /* WebRTC+Utilities.swift */, 7BCD116B27016062006330F1 /* WebRTCSession+DataChannel.swift */, + 9409433D2C7EB81800D9D2E0 /* WebRTCSession+Constants.swift */, ); path = WebRTC; sourceTree = ""; @@ -4660,6 +4634,7 @@ FD5E93D52C12D8120038C25A /* Add Commit Hash To Build Info Plist */, FD5E93D72C12DA400038C25A /* Add App Group To Build Info Plist */, FDC498C12AC1775400EDD897 /* Ensure Localizable.strings included */, + 943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */, ); buildRules = ( ); @@ -5147,7 +5122,7 @@ buildActionMask = 2147483647; files = ( 4535186E1FC635DD00210559 /* MainInterface.storyboard in Resources */, - FDC498C22AC17BFC00EDD897 /* Localizable.strings in Resources */, + 94367C442C6C828500814252 /* Localizable.xcstrings in Resources */, B8D07406265C683A00F77E07 /* ElegantIcons.ttf in Resources */, FD86FDA42BC51C5400EC251B /* PrivacyInfo.xcprivacy in Resources */, 3478504C1FD7496D007B8332 /* Images.xcassets in Resources */, @@ -5159,7 +5134,7 @@ buildActionMask = 2147483647; files = ( FD86FDA52BC51C5500EC251B /* PrivacyInfo.xcprivacy in Resources */, - FDC498BE2AC1732E00EDD897 /* Localizable.strings in Resources */, + 94367C452C6C828500814252 /* Localizable.xcstrings in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5218,7 +5193,6 @@ B67EBF5D19194AC60084CCFD /* Settings.bundle in Resources */, 34CF0787203E6B78005C4D61 /* busy_tone_ansi.caf in Resources */, 45A2F005204473A3002E978A /* NewMessage.aifc in Resources */, - FD9401D12ABD04AC003A4834 /* Localizable.strings in Resources */, 45B74A882044AAB600CD42F8 /* aurora.aifc in Resources */, 45B74A742044AAB600CD42F8 /* aurora-quiet.aifc in Resources */, 7B0EFDF4275490EA00FFAAE7 /* ringing.mp3 in Resources */, @@ -5234,6 +5208,8 @@ B8D07405265C683300F77E07 /* ElegantIcons.ttf in Resources */, 4503F1BE20470A5B00CEE724 /* classic-quiet.aifc in Resources */, 45B74A7E2044AAB600CD42F8 /* complete.aifc in Resources */, + 9473386E2BDF5F3E00B9E169 /* InfoPlist.xcstrings in Resources */, + 94367C432C6C828500814252 /* Localizable.xcstrings in Resources */, B8CCF6352396005F0091D419 /* SpaceMono-Regular.ttf in Resources */, 45B74A872044AAB600CD42F8 /* complete-quiet.aifc in Resources */, 45B74A772044AAB600CD42F8 /* hello.aifc in Resources */, @@ -5287,6 +5263,26 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 943BC5A02C6F26370066A56A /* Ensure InfoPlist.xcstrings updated */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + name = "Ensure InfoPlist.xcstrings updated"; + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Scripts/LintLocalizableStrings.swift\" update\n"; + showEnvVarsInLog = 0; + }; FD5E93D32C12D3990038C25A /* Add App Group To Build Info Plist */ = { isa = PBXShellScriptBuildPhase; alwaysOutOfDate = 1; @@ -5565,6 +5561,7 @@ 942256992C23F8DD00C0FDBF /* Toast.swift in Sources */, C331FF972558FA6B00070591 /* Fonts.swift in Sources */, FD71165828E436E800B47552 /* Modal.swift in Sources */, + FD0150582CA27DF3005B08A1 /* ScrollableLabel.swift in Sources */, FD37E9D328A1FCDB003AE748 /* Theme+OceanDark.swift in Sources */, 942256972C23F8DD00C0FDBF /* SessionSearchBar.swift in Sources */, FD71165928E436E800B47552 /* ConfirmationModal.swift in Sources */, @@ -5585,6 +5582,7 @@ FD37E9CF28A1EB1B003AE748 /* Theme.swift in Sources */, C331FFB92558FA8D00070591 /* UIView+Constraints.swift in Sources */, FD0B77B029B69A65009169BA /* TopBannerController.swift in Sources */, + 94E9BC0D2C7BFBDA006984EA /* Localization+Style.swift in Sources */, FD37E9F628A5F106003AE748 /* Configuration.swift in Sources */, 7BF8D1FB2A70AF57005F1D6E /* SwiftUI+Theme.swift in Sources */, FDBB25E72988BBBE00F1508E /* UIContextualAction+Theming.swift in Sources */, @@ -5628,8 +5626,6 @@ FD6A39262C2AB0B500762359 /* OWSViewController.swift in Sources */, C38EF30C255B6DBF007E1867 /* ScreenLock.swift in Sources */, C38EF363255B6DCC007E1867 /* ModalActivityIndicatorViewController.swift in Sources */, - C38EF38A255B6DD2007E1867 /* AttachmentCaptionToolbar.swift in Sources */, - C38EF402255B6DF7007E1867 /* CommonStrings.swift in Sources */, C38EF3C1255B6DE7007E1867 /* ImageEditorBrushViewController.swift in Sources */, C3F0A530255C80BC007BE2A3 /* NoopNotificationsManager.swift in Sources */, C33FDD8D255A582000E217F9 /* OWSSignalAddress.swift in Sources */, @@ -5747,6 +5743,7 @@ buildActionMask = 2147483647; files = ( FDFD645927F26C6800808CA1 /* Array+Utilities.swift in Sources */, + 943C6D842B86B5F1004ACE64 /* Localization.swift in Sources */, FD0606BF2BC8C10200C3816E /* _005_AddJobUniqueHash.swift in Sources */, 7B1D74B027C365960030B423 /* Timer+MainThread.swift in Sources */, FDE049032C76A09700B6F9BB /* UIAlertAction+Utilities.swift in Sources */, @@ -5774,6 +5771,7 @@ FD6A38F52C2A6BD200762359 /* Crypto.swift in Sources */, FD9004122818ABDC00ABAAF6 /* Job.swift in Sources */, FD6A38F12C2A66B100762359 /* KeychainStorageType.swift in Sources */, + 947AD6902C8968FF000B2730 /* Constants.swift in Sources */, FD6A39022C2A8BDE00762359 /* UIImage+Utilities.swift in Sources */, FD09797927FAB7E800936362 /* ImageFormat.swift in Sources */, FDC0F0042BFECE12002CBFB9 /* TimeUnit.swift in Sources */, @@ -6121,6 +6119,7 @@ 450DF2091E0DD2C6003D14BE /* UserNotificationsAdaptee.swift in Sources */, C3548F0824456AB6009433A8 /* UIView+Wrapping.swift in Sources */, 45CD81EF1DC030E7004C9430 /* SyncPushTokensJob.swift in Sources */, + 94C5DCB02BE88170003AA8C5 /* BezierPathView.swift in Sources */, B83524A525C3BA4B0089A44F /* InfoMessageCell.swift in Sources */, 7B9F71D82853100A006DFE7B /* EmojiWithSkinTones.swift in Sources */, FD71164E28E3F8CC00B47552 /* SessionCell+Info.swift in Sources */, @@ -6287,6 +6286,7 @@ 7B5233C42900E90F00F8F375 /* SessionLabelCarouselView.swift in Sources */, 7B93D07727CF1A8A00811CB6 /* MockDataGenerator.swift in Sources */, 7B1B52D828580C6D006069F2 /* EmojiPickerSheet.swift in Sources */, + 940943402C7ED62300D9D2E0 /* StartupError.swift in Sources */, FD368A6A29DE9E30000DBF1E /* UIContextualAction+Utilities.swift in Sources */, FDEF57252C3CF04C00131302 /* WebRTCSession+DataChannel.swift in Sources */, 7BAFA1192A39669400B76CB9 /* BezierPathView.swift in Sources */, @@ -6304,6 +6304,7 @@ FD37E9CC28A1E578003AE748 /* AppearanceViewController.swift in Sources */, B8EB20F02640F7F000773E52 /* OpenGroupInvitationView.swift in Sources */, C328254025CA55880062D0A7 /* ContextMenuVC.swift in Sources */, + 9409433E2C7EB81800D9D2E0 /* WebRTCSession+Constants.swift in Sources */, 7BD687D12A5D0D1200D8E455 /* MessageInfoScreen.swift in Sources */, B8269D2925C7A4B400488AB4 /* InputView.swift in Sources */, FD71162E28E168C700B47552 /* SettingsViewModel.swift in Sources */, @@ -6576,56 +6577,6 @@ name = MainInterface.storyboard; sourceTree = ""; }; - FD9401A32ABD04AC003A4834 /* Localizable.strings */ = { - isa = PBXVariantGroup; - children = ( - FD9401A42ABD04AC003A4834 /* de */, - FD9401A52ABD04AC003A4834 /* ar */, - FD9401A62ABD04AC003A4834 /* el */, - FD9401A72ABD04AC003A4834 /* ja */, - FD9401A82ABD04AC003A4834 /* fa */, - FD9401A92ABD04AC003A4834 /* zh-TW */, - FD9401AA2ABD04AC003A4834 /* en */, - FD9401AB2ABD04AC003A4834 /* uk */, - FD9401AC2ABD04AC003A4834 /* ku */, - FD9401AD2ABD04AC003A4834 /* sl */, - FD9401AE2ABD04AC003A4834 /* da */, - FD9401AF2ABD04AC003A4834 /* eo */, - FD9401B02ABD04AC003A4834 /* it */, - FD9401B12ABD04AC003A4834 /* bg */, - FD9401B22ABD04AC003A4834 /* sk */, - FD9401B32ABD04AC003A4834 /* es-ES */, - FD9401B42ABD04AC003A4834 /* be */, - FD9401B52ABD04AC003A4834 /* cs */, - FD9401B62ABD04AC003A4834 /* ko */, - FD9401B72ABD04AC003A4834 /* fil */, - FD9401B82ABD04AC003A4834 /* ne-NP */, - FD9401B92ABD04AC003A4834 /* no */, - FD9401BA2ABD04AC003A4834 /* hu */, - FD9401BB2ABD04AC003A4834 /* tr */, - FD9401BC2ABD04AC003A4834 /* pl */, - FD9401BD2ABD04AC003A4834 /* pt-BR */, - FD9401BE2ABD04AC003A4834 /* vi */, - FD9401BF2ABD04AC003A4834 /* lv */, - FD9401C02ABD04AC003A4834 /* lt */, - FD9401C12ABD04AC003A4834 /* ru */, - FD9401C22ABD04AC003A4834 /* zh-CN */, - FD9401C32ABD04AC003A4834 /* si-LK */, - FD9401C42ABD04AC003A4834 /* fr */, - FD9401C52ABD04AC003A4834 /* fi */, - FD9401C62ABD04AC003A4834 /* id */, - FD9401C72ABD04AC003A4834 /* nl */, - FD9401C82ABD04AC003A4834 /* th */, - FD9401C92ABD04AC003A4834 /* sv-SE */, - FD9401CA2ABD04AC003A4834 /* bn */, - FD9401CB2ABD04AC003A4834 /* pt-PT */, - FD9401CC2ABD04AC003A4834 /* ro */, - FD9401CF2ABD04AC003A4834 /* hr */, - FD9401D02ABD04AC003A4834 /* hi */, - ); - name = Localizable.strings; - sourceTree = ""; - }; /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ @@ -6666,7 +6617,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = SessionShareExtension/Meta/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -6678,6 +6629,7 @@ SKIP_INSTALL = YES; STRIP_INSTALLED_PRODUCT = NO; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OBJC_BRIDGING_HEADER = ""; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; @@ -6741,7 +6693,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = SessionShareExtension/Meta/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -6753,6 +6705,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OBJC_BRIDGING_HEADER = ""; SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; @@ -6797,7 +6750,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = SessionNotificationServiceExtension/Meta/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -6810,6 +6763,7 @@ SKIP_INSTALL = YES; STRIP_INSTALLED_PRODUCT = NO; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; @@ -6874,7 +6828,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = SessionNotificationServiceExtension/Meta/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -6887,6 +6841,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = 1; @@ -6928,7 +6883,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = SessionUIKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7008,7 +6963,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = SessionUIKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7075,7 +7030,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; INFOPLIST_FILE = SignalUtilitiesKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7162,7 +7117,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = SignalUtilitiesKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7226,7 +7181,7 @@ ); INFOPLIST_FILE = SessionSnodeKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7317,7 +7272,7 @@ ); INFOPLIST_FILE = SessionSnodeKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7388,7 +7343,7 @@ ); INFOPLIST_FILE = SessionUtilitiesKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7480,7 +7435,7 @@ ); INFOPLIST_FILE = SessionUtilitiesKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7552,7 +7507,7 @@ ); INFOPLIST_FILE = SessionMessagingKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7644,7 +7599,7 @@ ); INFOPLIST_FILE = SessionMessagingKit/Meta/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7706,7 +7661,7 @@ CLANG_WARN__ARC_BRIDGE_CAST_NONARC = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 488; + CURRENT_PROJECT_VERSION = 492; ENABLE_BITCODE = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -7743,7 +7698,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ""; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 2.7.4; + MARKETING_VERSION = 2.8.0; ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( "-fobjc-arc-exceptions", @@ -7784,7 +7739,7 @@ CLANG_WARN__ARC_BRIDGE_CAST_NONARC = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; CODE_SIGN_IDENTITY = "iPhone Distribution"; - CURRENT_PROJECT_VERSION = 488; + CURRENT_PROJECT_VERSION = 492; ENABLE_BITCODE = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_NO_COMMON_BLOCKS = YES; @@ -7816,7 +7771,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; HEADER_SEARCH_PATHS = ""; IPHONEOS_DEPLOYMENT_TARGET = 13.0; - MARKETING_VERSION = 2.7.4; + MARKETING_VERSION = 2.8.0; ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( "-DNS_BLOCK_ASSERTIONS=1", @@ -7873,7 +7828,7 @@ "\"$(SRCROOT)/Libraries\"/**", ); INFOPLIST_FILE = "Session/Meta/Session-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7892,6 +7847,7 @@ RUN_CLANG_STATIC_ANALYZER = YES; SDKROOT = iphoneos; STRIP_INSTALLED_PRODUCT = NO; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OBJC_BRIDGING_HEADER = "Session/Meta/Signal-Bridging-Header.h"; SWIFT_OBJC_INTERFACE_HEADER_NAME = "Session-Swift.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -7942,7 +7898,7 @@ "\"$(SRCROOT)/Libraries\"/**", ); INFOPLIST_FILE = "Session/Meta/Session-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -7958,6 +7914,7 @@ PROVISIONING_PROFILE = ""; RUN_CLANG_STATIC_ANALYZER = YES; SDKROOT = iphoneos; + SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OBJC_BRIDGING_HEADER = "Session/Meta/Signal-Bridging-Header.h"; SWIFT_OBJC_INTERFACE_HEADER_NAME = "Session-Swift.h"; SWIFT_VERSION = 5.0; @@ -7992,7 +7949,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS $(inherited) -D SQLITE_HAS_CODEC -D GRDBCIPHER -D SQLITE_ENABLE_FTS5 -Xfrontend -warn-long-expression-type-checking=100"; @@ -8054,7 +8011,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = io.oxen.SessionTests; @@ -8096,7 +8053,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; @@ -8158,7 +8115,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LOCALIZATION_PREFERS_STRING_CATALOGS = YES; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; @@ -8198,7 +8155,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS $(inherited) -D SQLITE_HAS_CODEC -D GRDBCIPHER -D SQLITE_ENABLE_FTS5 -Xfrontend -warn-long-expression-type-checking=100"; @@ -8259,7 +8216,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = io.oxen.SessionUtilitiesKitTests; @@ -8299,7 +8256,7 @@ GCC_OPTIMIZATION_LEVEL = 0; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MODULEMAP_FILE = "$(SRCROOT)/SessionMessagingKit/Meta/SessionUtil.modulemap"; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; @@ -8367,7 +8324,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MODULEMAP_FILE = "$(SRCROOT)/SessionMessagingKit/Meta/SessionUtil.modulemap"; MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++"; MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++20"; @@ -8410,7 +8367,7 @@ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; OTHER_SWIFT_FLAGS = "$(inherited) -D COCOAPODS $(inherited) -D SQLITE_HAS_CODEC -D GRDBCIPHER -D SQLITE_ENABLE_FTS5 -Xfrontend -warn-long-expression-type-checking=100"; @@ -8471,7 +8428,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = io.oxen.SessionMessagingKitTests; diff --git a/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 52c3e4e66f..844880088c 100644 --- a/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/Session.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,5 +1,5 @@ { - "originHash" : "77d5fda90891573a263c0fefeb989f3f1bb56e612a09be32106558b6d5fb4564", + "originHash" : "53c1182a7d64df9a13a5c0ec4420b2c8da9c4d81d97b2b79b6e8f2946978471b", "pins" : [ { "identity" : "cocoalumberjack", diff --git a/Session/Calls/Call Management/SessionCall.swift b/Session/Calls/Call Management/SessionCall.swift index 8be9a2239c..deb510dad8 100644 --- a/Session/Calls/Call Management/SessionCall.swift +++ b/Session/Calls/Call Management/SessionCall.swift @@ -182,7 +182,7 @@ public final class SessionCall: CurrentCallProtocol, WebRTCSessionDelegate { func reportIncomingCallIfNeeded(completion: @escaping (Error?) -> Void) { guard case .answer = mode else { - SessionCallManager.reportFakeCall(info: "Call not in answer mode") + SessionCallManager.reportFakeCall(info: "Call not in answer mode") // stringlint:disable return } diff --git a/Session/Calls/Call Management/SessionCallManager.swift b/Session/Calls/Call Management/SessionCallManager.swift index fe787544fc..52733d50e8 100644 --- a/Session/Calls/Call Management/SessionCallManager.swift +++ b/Session/Calls/Call Management/SessionCallManager.swift @@ -44,7 +44,7 @@ public final class SessionCallManager: NSObject, CallManagerProtocol { } static func buildProviderConfiguration(useSystemCallLog: Bool) -> CXProviderConfiguration { - let providerConfiguration = CXProviderConfiguration(localizedName: "Session") + let providerConfiguration = CXProviderConfiguration(localizedName: "Session") // stringlint:disable providerConfiguration.supportsVideo = true providerConfiguration.maximumCallGroups = 1 providerConfiguration.maximumCallsPerCallGroup = 1 diff --git a/Session/Calls/CallVC.swift b/Session/Calls/CallVC.swift index 1b5134c504..20228e82d7 100644 --- a/Session/Calls/CallVC.swift +++ b/Session/Calls/CallVC.swift @@ -317,7 +317,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate { result.textAlignment = .center result.isHidden = call.hasConnected - if call.hasStartedConnecting { result.text = "Connecting..." } + if call.hasStartedConnecting { result.text = "callsConnecting".localized() } return result }() @@ -362,7 +362,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate { self.call.hasStartedConnectingDidChange = { DispatchQueue.main.async { - self.callInfoLabel.text = "Connecting..." + self.callInfoLabel.text = "callsConnecting".localized() self.answerButton.alpha = 0 UIView.animate( @@ -383,7 +383,6 @@ final class CallVC: UIViewController, VideoPreviewDelegate { DispatchQueue.main.async { CallRingTonePlayer.shared.stopPlayingRingTone() - self?.callInfoLabel.text = "Connected" self?.minimizeButton.isHidden = false self?.durationTimer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { _ in self?.updateDuration() @@ -405,7 +404,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate { DispatchQueue.main.async { self?.callInfoLabel.isHidden = false self?.callDurationLabel.isHidden = true - self?.callInfoLabel.text = "Reconnecting..." + self?.callInfoLabel.text = "callsReconnecting".localized() } } @@ -433,11 +432,11 @@ final class CallVC: UIViewController, VideoPreviewDelegate { AppEnvironment.shared.callManager.startCall(call) { [weak self] error in DispatchQueue.main.async { if let _ = error { - self?.callInfoLabel.text = "Can't start a call." + self?.callInfoLabel.text = "callsErrorStart".localized() self?.endCall() } else { - self?.callInfoLabel.text = "Ringing..." + self?.callInfoLabel.text = "callsRinging".localized() self?.answerButton.isHidden = true } } @@ -583,14 +582,14 @@ final class CallVC: UIViewController, VideoPreviewDelegate { // MARK: Call signalling func handleAnswerMessage(_ message: CallMessage) { - callInfoLabel.text = "Connecting..." + callInfoLabel.text = "callsConnecting".localized() } func handleEndCallMessage() { SNLog("[Calls] Ending call.") self.callInfoLabel.isHidden = false self.callDurationLabel.isHidden = true - self.callInfoLabel.text = "Call Ended" + self.callInfoLabel.text = "callsEnded".localized() UIView.animate(withDuration: 0.25) { let remoteVideoView: RemoteVideoView = self.floatingViewVideoSource == .remote ? self.floatingRemoteVideoView : self.fullScreenRemoteVideoView @@ -610,7 +609,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate { AppEnvironment.shared.callManager.answerCall(call) { [weak self] error in DispatchQueue.main.async { if let _ = error { - self?.callInfoLabel.text = "Can't answer the call." + self?.callInfoLabel.text = "callsErrorAnswer".localized() self?.endCall() } } @@ -632,7 +631,7 @@ final class CallVC: UIViewController, VideoPreviewDelegate { } @objc private func updateDuration() { - callDurationLabel.text = String(format: "%.2d:%.2d", duration/60, duration%60) + callDurationLabel.text = String(format: "%.2d:%.2d", duration/60, duration%60) // stringlint:disable duration += 1 } diff --git a/Session/Calls/VideoPreviewVC.swift b/Session/Calls/VideoPreviewVC.swift index 798451baca..449b36fbcf 100644 --- a/Session/Calls/VideoPreviewVC.swift +++ b/Session/Calls/VideoPreviewVC.swift @@ -74,7 +74,7 @@ class VideoPreviewVC: UIViewController, CameraManagerDelegate { private lazy var titleLabel: UILabel = { let result = UILabel() result.font = .boldSystemFont(ofSize: Values.veryLargeFontSize) - result.text = "Preview" + result.text = "preview".localized() result.themeTextColor = .textPrimary result.textAlignment = .center diff --git a/Session/Calls/Views & Modals/CallMissedTipsModal.swift b/Session/Calls/Views & Modals/CallMissedTipsModal.swift index 1513429c19..3a2df54bf9 100644 --- a/Session/Calls/Views & Modals/CallMissedTipsModal.swift +++ b/Session/Calls/Views & Modals/CallMissedTipsModal.swift @@ -24,7 +24,9 @@ final class CallMissedTipsModal: Modal { private lazy var titleLabel: UILabel = { let result: UILabel = UILabel() result.font = .boldSystemFont(ofSize: Values.mediumFontSize) - result.text = "modal_call_missed_tips_title".localized() + result.text = "callsMissedCallFrom" + .put(key: "name", value: caller) + .localized() result.themeTextColor = .textPrimary result.textAlignment = .center @@ -34,11 +36,13 @@ final class CallMissedTipsModal: Modal { private lazy var messageLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = String(format: "modal_call_missed_tips_explanation".localized(), caller) result.themeTextColor = .textPrimary result.textAlignment = .natural result.lineBreakMode = .byWordWrapping result.numberOfLines = 0 + result.attributedText = "callsYouMissedCallPermissions" + .put(key: "name", value: caller) + .localizedFormatted(in: result) return result }() @@ -82,7 +86,7 @@ final class CallMissedTipsModal: Modal { } override func populateContentView() { - cancelButton.setTitle("BUTTON_OK".localized(), for: .normal) + cancelButton.setTitle("okay".localized(), for: .normal) contentView.addSubview(mainStackView) tipsIconContainerView.addSubview(tipsIconImageView) diff --git a/Session/Calls/WebRTC/TurnServerInfo.swift b/Session/Calls/WebRTC/TurnServerInfo.swift index 50420ca97a..5baf52ccc4 100644 --- a/Session/Calls/WebRTC/TurnServerInfo.swift +++ b/Session/Calls/WebRTC/TurnServerInfo.swift @@ -1,5 +1,7 @@ // Copyright © 2021 Rangeproof Pty Ltd. All rights reserved. +// stringlint:disable + import Foundation import SessionUtilitiesKit diff --git a/Session/Calls/WebRTC/WebRTC+Utilities.swift b/Session/Calls/WebRTC/WebRTC+Utilities.swift index 2bdd847dd6..169a90edbd 100644 --- a/Session/Calls/WebRTC/WebRTC+Utilities.swift +++ b/Session/Calls/WebRTC/WebRTC+Utilities.swift @@ -1,3 +1,5 @@ +// stringlint:disable + import WebRTC extension RTCSignalingState : CustomStringConvertible { diff --git a/Session/Calls/WebRTC/WebRTCSession+Constants.swift b/Session/Calls/WebRTC/WebRTCSession+Constants.swift new file mode 100644 index 0000000000..2e9e09a5e4 --- /dev/null +++ b/Session/Calls/WebRTC/WebRTCSession+Constants.swift @@ -0,0 +1,15 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. +// +// stringlint:disable + +extension WebRTCSession { + public enum Constants { + public static let audio_track_id: String = "ARDAMSa0" + public static let local_video_track_id: String = "ARDAMSv0" + public static let media_stream_track_id: String = "ARDAMS" + public static let video: String = "video" + public static let hang_up: String = "hangup" + } +} + + diff --git a/Session/Calls/WebRTC/WebRTCSession+DataChannel.swift b/Session/Calls/WebRTC/WebRTCSession+DataChannel.swift index 991e765732..d8c81b7a6d 100644 --- a/Session/Calls/WebRTC/WebRTCSession+DataChannel.swift +++ b/Session/Calls/WebRTC/WebRTCSession+DataChannel.swift @@ -12,7 +12,7 @@ extension WebRTCSession: RTCDataChannelDelegate { dataChannelConfiguration.isOrdered = true dataChannelConfiguration.isNegotiated = true dataChannelConfiguration.channelId = 548 - guard let dataChannel = peerConnection?.dataChannel(forLabel: "CONTROL", configuration: dataChannelConfiguration) else { + guard let dataChannel = peerConnection?.dataChannel(forLabel: "CONTROL", configuration: dataChannelConfiguration) else { // stringlint:disable SNLog("[Calls] Couldn't create data channel.") return nil } @@ -38,10 +38,10 @@ extension WebRTCSession: RTCDataChannelDelegate { public func dataChannel(_ dataChannel: RTCDataChannel, didReceiveMessageWith buffer: RTCDataBuffer) { if let json = try? JSONSerialization.jsonObject(with: buffer.data, options: [ .fragmentsAllowed ]) as? JSON { SNLog("[Calls] Data channel did receive data: \(json)") - if let isRemoteVideoEnabled = json["video"] as? Bool { + if let isRemoteVideoEnabled = json["video"] as? Bool { // stringlint:disable delegate?.isRemoteVideoDidChange(isEnabled: isRemoteVideoEnabled) } - if let _ = json["hangup"] { + if let _ = json["hangup"] { // stringlint:disable delegate?.didReceiveHangUpSignal() } } diff --git a/Session/Calls/WebRTC/WebRTCSession.swift b/Session/Calls/WebRTC/WebRTCSession.swift index 1f1e634c49..580acb01b9 100644 --- a/Session/Calls/WebRTC/WebRTCSession.swift +++ b/Session/Calls/WebRTC/WebRTCSession.swift @@ -58,7 +58,7 @@ public final class WebRTCSession : NSObject, RTCPeerConnectionDelegate { }() internal lazy var audioTrack: RTCAudioTrack = { - return factory.audioTrack(with: audioSource, trackId: "ARDAMSa0") + return factory.audioTrack(with: audioSource, trackId: Self.Constants.audio_track_id) }() // Video @@ -69,7 +69,7 @@ public final class WebRTCSession : NSObject, RTCPeerConnectionDelegate { }() internal lazy var localVideoTrack: RTCVideoTrack = { - return factory.videoTrack(with: localVideoSource, trackId: "ARDAMSv0") + return factory.videoTrack(with: localVideoSource, trackId: Self.Constants.local_video_track_id) }() internal lazy var remoteVideoTrack: RTCVideoTrack? = { @@ -86,7 +86,7 @@ public final class WebRTCSession : NSObject, RTCPeerConnectionDelegate { public var errorDescription: String? { switch self { - case .noThread: return "Couldn't find thread for contact." + case .noThread: return "Couldn't find thread for contact." // stringlint:disable } } } @@ -103,7 +103,7 @@ public final class WebRTCSession : NSObject, RTCPeerConnectionDelegate { super.init() - let mediaStreamTrackIDS = ["ARDAMS"] + let mediaStreamTrackIDS = [Self.Constants.media_stream_track_id] peerConnection?.add(audioTrack, streamIds: mediaStreamTrackIDS) peerConnection?.add(localVideoTrack, streamIds: mediaStreamTrackIDS) @@ -394,8 +394,8 @@ public final class WebRTCSession : NSObject, RTCPeerConnectionDelegate { private func correctSessionDescription(sdp: RTCSessionDescription?) -> RTCSessionDescription? { guard let sdp = sdp else { return nil } - let cbrSdp = sdp.sdp.description.replace(regex: "(a=fmtp:111 ((?!cbr=).)*)\r?\n", with: "$1;cbr=1\r\n") - let finalSdp = cbrSdp.replace(regex: ".+urn:ietf:params:rtp-hdrext:ssrc-audio-level.*\r?\n", with: "") + let cbrSdp = sdp.sdp.description.replace(regex: "(a=fmtp:111 ((?!cbr=).)*)\r?\n", with: "$1;cbr=1\r\n") // stringlint:disable + let finalSdp = cbrSdp.replace(regex: ".+urn:ietf:params:rtp-hdrext:ssrc-audio-level.*\r?\n", with: "") // stringlint:disable return RTCSessionDescription(type: sdp.type, sdp: finalSdp) } @@ -480,15 +480,15 @@ extension WebRTCSession { public func turnOffVideo() { localVideoTrack.isEnabled = false - sendJSON(["video": false]) + sendJSON([Self.Constants.video: false]) } public func turnOnVideo() { localVideoTrack.isEnabled = true - sendJSON(["video": true]) + sendJSON([Self.Constants.video: true]) } public func hangUp() { - sendJSON(["hangup": true]) + sendJSON([Self.Constants.hang_up: true]) } } diff --git a/Session/Closed Groups/EditClosedGroupVC.swift b/Session/Closed Groups/EditClosedGroupVC.swift index 72074d83a8..b1fb6e7823 100644 --- a/Session/Closed Groups/EditClosedGroupVC.swift +++ b/Session/Closed Groups/EditClosedGroupVC.swift @@ -46,7 +46,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat private lazy var groupNameTextField: TextField = { let result: TextField = TextField( - placeholder: "vc_create_closed_group_text_field_hint".localized(), + placeholder: "groupNameEnter".localized(), usesDefaultHeight: false ) result.textAlignment = .center @@ -60,7 +60,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat let result: SessionButton = SessionButton(style: .bordered, size: .medium) result.accessibilityLabel = "Add members" result.isAccessibilityElement = true - result.setTitle("vc_conversation_settings_invite_button_title".localized(), for: .normal) + result.setTitle("membersInvite".localized(), for: .normal) result.addTarget(self, action: #selector(addMembers), for: UIControl.Event.touchUpInside) result.contentEdgeInsets = UIEdgeInsets(top: 0, leading: Values.mediumSpacing, bottom: 0, trailing: Values.mediumSpacing) @@ -98,7 +98,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat override func viewDidLoad() { super.viewDidLoad() - setNavBarTitle("EDIT_GROUP_ACTION".localized()) + setNavBarTitle("groupEdit".localized()) let threadId: String = self.threadId @@ -110,7 +110,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat .filter(id: threadId) .asRequest(of: String.self) .fetchOne(db) - .defaulting(to: "GROUP_TITLE_FALLBACK".localized()) + .defaulting(to: "groupUnknown".localized()) self?.originalName = (self?.name ?? "") let profileAlias: TypedTableAlias = TypedTableAlias() @@ -173,7 +173,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat let membersLabel = UILabel() membersLabel.font = .systemFont(ofSize: Values.mediumFontSize) membersLabel.themeTextColor = .textPrimary - membersLabel.text = "GROUP_TITLE_MEMBERS".localized() + membersLabel.text = "groupMembers".localized() addMembersButton.isEnabled = self.hasContactsToAdd @@ -259,7 +259,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat let profileId: String = self.membersAndZombies[indexPath.row].profileId let delete: UIContextualAction = UIContextualAction( - title: "GROUP_ACTION_REMOVE".localized(), + title: "remove".localized(), icon: UIImage(named: "icon_bin"), themeTintColor: .white, themeBackgroundColor: .conversationButton_swipeDestructive, @@ -347,10 +347,10 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat .trimmingCharacters(in: CharacterSet.whitespacesAndNewlines) guard !updatedName.isEmpty else { - return showError(title: "vc_create_closed_group_group_name_missing_error".localized()) + return showError(title: "groupNameEnterPlease".localized()) } guard updatedName.utf8CString.count < LibSession.libSessionMaxGroupNameByteLength else { - return showError(title: "vc_create_closed_group_group_name_too_long_error".localized()) + return showError(title: "groupNameEnterShorter".localized()) } self.isEditingGroupName = false @@ -359,7 +359,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat } @objc private func addMembers() { - let title: String = "vc_conversation_settings_invite_button_title".localized() + let title: String = "membersInvite".localized() let userPublicKey: String = self.userPublicKey let userSelectionVC: UserSelectionVC = UserSelectionVC( @@ -456,13 +456,13 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat if !updatedMemberIds.contains(userPublicKey) { guard self.originalMembersAndZombieIds.removing(userPublicKey) == updatedMemberIds else { return showError( - title: "GROUP_UPDATE_ERROR_TITLE".localized(), - message: "GROUP_UPDATE_ERROR_MESSAGE".localized() + title: "deleteAfterLegacyGroupsGroupUpdateErrorTitle".localized(), + message: "deleteAfterGroupPR3GroupErrorLeave".localized() ) } } guard updatedMemberIds.count <= 100 else { - return showError(title: "vc_create_closed_group_too_many_group_members_error".localized()) + return showError(title: "groupAddMemberMaximum".localized()) } ModalActivityIndicatorViewController.present(fromViewController: navigationController) { _ in @@ -495,7 +495,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat case .finished: popToConversationVC(self) case .failure(let error): self?.showError( - title: "GROUP_UPDATE_ERROR_TITLE".localized(), + title: "deleteAfterLegacyGroupsGroupUpdateErrorTitle".localized(), message: "\(error)" ) } @@ -512,7 +512,7 @@ final class EditClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegat info: ConfirmationModal.Info( title: title, body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) diff --git a/Session/Closed Groups/NewClosedGroupVC.swift b/Session/Closed Groups/NewClosedGroupVC.swift index f8d138acea..7620dc6a54 100644 --- a/Session/Closed Groups/NewClosedGroupVC.swift +++ b/Session/Closed Groups/NewClosedGroupVC.swift @@ -42,7 +42,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate private lazy var nameTextField: TextField = { let result = TextField( - placeholder: "vc_create_closed_group_text_field_hint".localized(), + placeholder: "groupNameEnter".localized(), usesDefaultHeight: false, customHeight: NewClosedGroupVC.textFieldHeight ) @@ -110,10 +110,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate result.touchDelegate = self result.dataSource = self result.delegate = self - - if #available(iOS 15.0, *) { - result.sectionHeaderTopPadding = 0 - } + result.sectionHeaderTopPadding = 0 return result }() @@ -135,7 +132,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate private lazy var createGroupButton: SessionButton = { let result = SessionButton(style: .bordered, size: .large) result.translatesAutoresizingMaskIntoConstraints = false - result.setTitle("CREATE_GROUP_BUTTON_TITLE".localized(), for: .normal) + result.setTitle("create".localized(), for: .normal) result.addTarget(self, action: #selector(createClosedGroup), for: .touchUpInside) result.accessibilityIdentifier = "Create group" result.isAccessibilityElement = true @@ -152,7 +149,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate view.themeBackgroundColor = .newConversation_background let customTitleFontSize = Values.largeFontSize - setNavBarTitle("vc_create_closed_group_title".localized(), customFontSize: customTitleFontSize) + setNavBarTitle("groupCreate".localized(), customFontSize: customTitleFontSize) let closeButton = UIBarButtonItem(image: #imageLiteral(resourceName: "X"), style: .plain, target: self, action: #selector(close)) closeButton.themeTintColor = .textPrimary @@ -168,7 +165,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate guard !contactProfiles.isEmpty else { let explanationLabel: UILabel = UILabel() explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) - explanationLabel.text = "vc_create_closed_group_empty_state_message".localized() + explanationLabel.text = "contactNone".localized() explanationLabel.themeTextColor = .textSecondary explanationLabel.textAlignment = .center explanationLabel.lineBreakMode = .byWordWrapping @@ -274,7 +271,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate func textFieldDidEndEditing(_ textField: UITextField) { crossfadeLabel.text = (textField.text?.isEmpty == true ? - "vc_create_closed_group_title".localized() : + "groupCreate".localized() : textField.text ) } @@ -308,7 +305,7 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate info: ConfirmationModal.Info( title: title, body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) @@ -319,19 +316,19 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate let name: String = nameTextField.text?.trimmingCharacters(in: .whitespacesAndNewlines), name.count > 0 else { - return showError(title: "vc_create_closed_group_group_name_missing_error".localized()) + return showError(title: "groupNameEnterPlease".localized()) } guard name.utf8CString.count < LibSession.libSessionMaxGroupNameByteLength else { - return showError(title: "vc_create_closed_group_group_name_too_long_error".localized()) + return showError(title: "groupNameEnterShorter".localized()) } guard selectedContacts.count >= 1 else { - return showError(title: "GROUP_ERROR_NO_MEMBER_SELECTION".localized()) + return showError(title: "groupCreateErrorNoMembers".localized()) } guard selectedContacts.count < 100 else { // Minus one because we're going to include self later - return showError(title: "vc_create_closed_group_too_many_group_members_error".localized()) + return showError(title: "groupAddMemberMaximum".localized()) } let selectedContacts = self.selectedContacts - let message: String? = (selectedContacts.count > 20 ? "GROUP_CREATION_PLEASE_WAIT".localized() : nil) + let message: String? = (selectedContacts.count > 20 ? "deleteAfterLegacyGroupsGroupCreation".localized() : nil) ModalActivityIndicatorViewController.present(fromViewController: navigationController!, message: message) { [weak self] _ in MessageSender .createClosedGroup(name: name, members: selectedContacts) @@ -347,9 +344,9 @@ final class NewClosedGroupVC: BaseVC, UITableViewDataSource, UITableViewDelegate let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: "GROUP_CREATION_ERROR_TITLE".localized(), - body: .text("GROUP_CREATION_ERROR_MESSAGE".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "groupError".localized(), + body: .text("groupErrorCreate".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) diff --git a/Session/Conversations/Context Menu/ContextMenuVC+Action.swift b/Session/Conversations/Context Menu/ContextMenuVC+Action.swift index 53df9b8c4a..bdf0147114 100644 --- a/Session/Conversations/Context Menu/ContextMenuVC+Action.swift +++ b/Session/Conversations/Context Menu/ContextMenuVC+Action.swift @@ -16,12 +16,17 @@ extension ContextMenuVC { let title: String let expirationInfo: ExpirationInfo? let themeColor: ThemeValue - let isEmojiAction: Bool - let isEmojiPlus: Bool - let isDismissAction: Bool + let actionType: ActionType let accessibilityLabel: String? let work: () -> Void + enum ActionType { + case emoji + case emojiPlus + case dismiss + case generic + } + // MARK: - Initialization init( @@ -29,9 +34,7 @@ extension ContextMenuVC { title: String = "", expirationInfo: ExpirationInfo? = nil, themeColor: ThemeValue = .textPrimary, - isEmojiAction: Bool = false, - isEmojiPlus: Bool = false, - isDismissAction: Bool = false, + actionType: ActionType = .generic, accessibilityLabel: String? = nil, work: @escaping () -> Void ) { @@ -39,9 +42,7 @@ extension ContextMenuVC { self.title = title self.expirationInfo = expirationInfo self.themeColor = themeColor - self.isEmojiAction = isEmojiAction - self.isEmojiPlus = isEmojiPlus - self.isDismissAction = isDismissAction + self.actionType = actionType self.accessibilityLabel = accessibilityLabel self.work = work } @@ -51,7 +52,7 @@ extension ContextMenuVC { static func info(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_info"), - title: "context_menu_info".localized(), + title: "info".localized(), accessibilityLabel: "Message info" ) { delegate?.info(cellViewModel, using: dependencies) } } @@ -60,8 +61,8 @@ extension ContextMenuVC { return Action( icon: UIImage(systemName: "arrow.triangle.2.circlepath"), title: (cellViewModel.state == .failedToSync ? - "context_menu_resync".localized() : - "context_menu_resend".localized() + "resync".localized() : + "resend".localized() ), accessibilityLabel: (cellViewModel.state == .failedToSync ? "Resync message" : "Resend message") ) { delegate?.retry(cellViewModel, using: dependencies) } @@ -70,7 +71,7 @@ extension ContextMenuVC { static func reply(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_reply"), - title: "context_menu_reply".localized(), + title: "reply".localized(), accessibilityLabel: "Reply to message" ) { delegate?.reply(cellViewModel, using: dependencies) } } @@ -95,7 +96,7 @@ extension ContextMenuVC { static func delete(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_trash"), - title: "TXT_DELETE_TITLE".localized(), + title: "delete".localized(), expirationInfo: ExpirationInfo( expiresStartedAtMs: cellViewModel.expiresStartedAtMs, expiresInSeconds: cellViewModel.expiresInSeconds @@ -108,7 +109,7 @@ extension ContextMenuVC { static func save(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_download"), - title: "context_menu_save".localized(), + title: "save".localized(), accessibilityLabel: "Save attachment" ) { delegate?.save(cellViewModel, using: dependencies) } } @@ -116,7 +117,7 @@ extension ContextMenuVC { static func ban(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_block"), - title: "context_menu_ban_user".localized(), + title: "banUser".localized(), themeColor: .danger, accessibilityLabel: "Ban user" ) { delegate?.ban(cellViewModel, using: dependencies) } @@ -125,7 +126,7 @@ extension ContextMenuVC { static func banAndDeleteAllMessages(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( icon: UIImage(named: "ic_block"), - title: "context_menu_ban_and_delete_all".localized(), + title: "banDeleteAll".localized(), themeColor: .danger, accessibilityLabel: "Ban user and delete" ) { delegate?.banAndDeleteAllMessages(cellViewModel, using: dependencies) } @@ -134,20 +135,20 @@ extension ContextMenuVC { static func react(_ cellViewModel: MessageViewModel, _ emoji: EmojiWithSkinTones, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( title: emoji.rawValue, - isEmojiAction: true + actionType: .emoji ) { delegate?.react(cellViewModel, with: emoji, using: dependencies) } } static func emojiPlusButton(_ cellViewModel: MessageViewModel, _ delegate: ContextMenuActionDelegate?, using dependencies: Dependencies) -> Action { return Action( - isEmojiPlus: true, + actionType: .emojiPlus, accessibilityLabel: "Add emoji" ) { delegate?.showFullEmojiKeyboard(cellViewModel, using: dependencies) } } static func dismiss(_ delegate: ContextMenuActionDelegate?) -> Action { return Action( - isDismissAction: true + actionType: .dismiss ) { delegate?.contextMenuDismissed() } } } diff --git a/Session/Conversations/Context Menu/ContextMenuVC+ActionView.swift b/Session/Conversations/Context Menu/ContextMenuVC+ActionView.swift index 7df19b644e..0f132daeb6 100644 --- a/Session/Conversations/Context Menu/ContextMenuVC+ActionView.swift +++ b/Session/Conversations/Context Menu/ContextMenuVC+ActionView.swift @@ -120,14 +120,18 @@ extension ContextMenuVC { subtitleWidthConstraint.isActive = true // To prevent a negative timer let timeToExpireInSeconds: TimeInterval = max(0, (expiresStartedAtMs + expiresInSeconds * 1000 - Double(SnodeAPI.currentOffsetTimestampMs())) / 1000) - subtitleLabel.text = String(format: "DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN".localized(), timeToExpireInSeconds.formatted(format: .twoUnits)) + subtitleLabel.text = "disappearingMessagesCountdownBigMobile" + .put(key: "time_large", value: timeToExpireInSeconds.formatted(format: .twoUnits)) + .localized() timer = Timer.scheduledTimerOnMainThread(withTimeInterval: 1, repeats: true, block: { [weak self] _ in let timeToExpireInSeconds: TimeInterval = (expiresStartedAtMs + expiresInSeconds * 1000 - Double(SnodeAPI.currentOffsetTimestampMs())) / 1000 if timeToExpireInSeconds <= 0 { self?.dismissWithTimerInvalidationIfNeeded() } else { - self?.subtitleLabel.text = String(format: "DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN".localized(), timeToExpireInSeconds.formatted(format: .twoUnits)) + self?.subtitleLabel.text = "disappearingMessagesCountdownBigMobile" + .put(key: "time_large", value: timeToExpireInSeconds.formatted(format: .twoUnits)) + .localized() } }) } diff --git a/Session/Conversations/Context Menu/ContextMenuVC.swift b/Session/Conversations/Context Menu/ContextMenuVC.swift index 8d4ca40a80..af142145e3 100644 --- a/Session/Conversations/Context Menu/ContextMenuVC.swift +++ b/Session/Conversations/Context Menu/ContextMenuVC.swift @@ -37,7 +37,7 @@ final class ContextMenuVC: UIViewController { private lazy var emojiPlusButton: EmojiPlusButton = { let result: EmojiPlusButton = EmojiPlusButton( - action: self.actions.first(where: { $0.isEmojiPlus }), + action: self.actions.first(where: { $0.actionType == .emojiPlus }), dismiss: snDismiss ) result.clipsToBounds = true @@ -140,7 +140,7 @@ final class ContextMenuVC: UIViewController { let emojiBarStackView = UIStackView( arrangedSubviews: actions - .filter { $0.isEmojiAction } + .filter { $0.actionType == .emoji } .map { action -> EmojiReactsView in EmojiReactsView(for: action, dismiss: snDismiss) } ) emojiBarStackView.axis = .horizontal @@ -165,7 +165,7 @@ final class ContextMenuVC: UIViewController { let menuStackView = UIStackView( arrangedSubviews: actions - .filter { !$0.isEmojiAction && !$0.isEmojiPlus && !$0.isDismissAction } + .filter { $0.actionType == .generic } .map { action -> ActionView in ActionView(for: action, dismiss: snDismiss) } @@ -407,7 +407,7 @@ final class ContextMenuVC: UIViewController { }, completion: { [weak self] _ in self?.dismiss() - self?.actions.first(where: { $0.isDismissAction })?.work() + self?.actions.first(where: { $0.actionType == .dismiss })?.work() } ) } diff --git a/Session/Conversations/ConversationSearch.swift b/Session/Conversations/ConversationSearch.swift index a470ba4402..b21f4ddd1e 100644 --- a/Session/Conversations/ConversationSearch.swift +++ b/Session/Conversations/ConversationSearch.swift @@ -278,7 +278,7 @@ public final class SearchResultsBar: UIView { DispatchQueue.main.async { [weak self] in if hasNoExistingResults { - self?.label.text = "CONVERSATION_SEARCH_SEARCHING".localized() + self?.label.text = "searchSearching".localized() } self?.startLoading() @@ -326,27 +326,17 @@ public final class SearchResultsBar: UIView { stopLoading() return } - - switch results.count { - case 0: - // Keyboard toolbar label when no messages match the search string - label.text = "CONVERSATION_SEARCH_NO_RESULTS".localized() - - case 1: - // Keyboard toolbar label when exactly 1 message matches the search string - label.text = "CONVERSATION_SEARCH_ONE_RESULT".localized() - default: - // Keyboard toolbar label when more than 1 message matches the search string - // - // Embeds {{number/position of the 'currently viewed' result}} and - // the {{total number of results}} - let format = "CONVERSATION_SEARCH_RESULTS_FORMAT".localized() - - guard let currentIndex: Int = currentIndex else { return } - - label.text = String(format: format, currentIndex + 1, results.count) + label.text = { + guard results.count > 0 else { + return "searchMatchesNone".localized() } + + return "searchMatches" + .putNumber(results.count) + .put(key: "found_count", value: (currentIndex ?? 0) + 1) + .localized() + }() if let currentIndex: Int = currentIndex { downButton.isEnabled = currentIndex > 0 diff --git a/Session/Conversations/ConversationVC+Interaction.swift b/Session/Conversations/ConversationVC+Interaction.swift index 2c16174bdc..652b230d8d 100644 --- a/Session/Conversations/ConversationVC+Interaction.swift +++ b/Session/Conversations/ConversationVC+Interaction.swift @@ -93,9 +93,9 @@ extension ConversationVC: guard Storage.shared[.areCallsEnabled] else { let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "modal_call_permission_request_title".localized(), - body: .text("modal_call_permission_request_explanation".localized()), - confirmTitle: "vc_settings_title".localized(), + title: "callsPermissionsRequired".localized(), + body: .text("callsPermissionsRequiredDescription".localized()), + confirmTitle: "sessionSettings".localized(), confirmAccessibility: Accessibility(identifier: "Settings"), dismissOnConfirm: false // Custom dismissal logic ) { [weak self] _ in @@ -148,26 +148,22 @@ extension ConversationVC: self.viewModel.threadData.threadIsBlocked == true else { return false } - let message = String( - format: "modal_blocked_explanation".localized(), - self.viewModel.threadData.displayName - ) let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( title: String( - format: "modal_blocked_title".localized(), + format: "blockUnblock".localized(), self.viewModel.threadData.displayName ), body: .attributedText( - NSAttributedString(string: message) - .adding( - attributes: [ .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) ], - range: (message as NSString).range(of: self.viewModel.threadData.displayName) - ) + "blockUnblockName" + .put(key: "name", value: viewModel.threadData.displayName) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) ), - confirmTitle: "modal_blocked_button_title".localized(), + confirmTitle: "blockUnblock".localized(), confirmAccessibility: Accessibility(identifier: "Confirm block"), + confirmStyle: .danger, cancelAccessibility: Accessibility(identifier: "Cancel block"), + cancelStyle: .alert_text, dismissOnConfirm: false // Custom dismissal logic ) { [weak self] _ in self?.viewModel.unblockContact() @@ -255,9 +251,13 @@ extension ConversationVC: guard Storage.shared[.isGiphyEnabled] else { let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "GIPHY_PERMISSION_TITLE".localized(), - body: .text("GIPHY_PERMISSION_MESSAGE".localized()), - confirmTitle: "continue_2".localized() + title: "giphyWarning".localized(), + body: .text( + "giphyWarningDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() + ), + confirmTitle: "theContinue".localized() ) { [weak self] _ in Storage.shared.writeAsync( updates: { db in @@ -349,16 +349,7 @@ extension ConversationVC: } catch { DispatchQueue.main.async { [weak self] in - let modal: ConfirmationModal = ConfirmationModal( - targetView: self?.view, - info: ConfirmationModal.Info( - title: "Session", - body: .text("An error occurred."), - cancelTitle: "BUTTON_OK".localized(), - cancelStyle: .alert_text - ) - ) - self?.present(modal, animated: true) + self?.viewModel.showToast(text: "attachmentsErrorLoad".localized()) } return } @@ -369,9 +360,9 @@ extension ConversationVC: let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: "ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE".localized(), - body: .text("ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "attachmentsErrorLoad".localized(), + body: .text("attachmentsErrorNotSupported".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -380,18 +371,10 @@ extension ConversationVC: return } - let fileName = urlResourceValues.name ?? NSLocalizedString("ATTACHMENT_DEFAULT_FILENAME", comment: "") + let fileName = urlResourceValues.name ?? "attachment".localized() guard let dataSource = DataSourcePath(fileUrl: url, shouldDeleteOnDeinit: false) else { DispatchQueue.main.async { [weak self] in - let modal: ConfirmationModal = ConfirmationModal( - targetView: self?.view, - info: ConfirmationModal.Info( - title: "ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE".localized(), - cancelTitle: "BUTTON_OK".localized(), - cancelStyle: .alert_text - ) - ) - self?.present(modal, animated: true) + self?.viewModel.showToast(text: "attachmentsErrorLoad".localized()) } return } @@ -485,9 +468,9 @@ extension ConversationVC: // Warn the user if they're about to send their seed to someone let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "modal_send_seed_title".localized(), - body: .text("modal_send_seed_explanation".localized()), - confirmTitle: "modal_send_seed_send_button_title".localized(), + title: "warning".localized(), + body: .text("recoveryPasswordWarningSendDescription".localized()), + confirmTitle: "send".localized(), confirmStyle: .danger, cancelStyle: .alert_text, onConfirm: { [weak self] _ in @@ -660,9 +643,15 @@ extension ConversationVC: func showLinkPreviewSuggestionModal() { let linkPreviewModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "modal_link_previews_title".localized(), - body: .text("modal_link_previews_explanation".localized()), - confirmTitle: "modal_link_previews_button_title".localized() + title: "linkPreviewsEnable".localized(), + body: .text( + "linkPreviewsFirstDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() + ), + confirmTitle: "enable".localized(), + confirmStyle: .danger, + cancelStyle: .alert_text ) { [weak self] _ in Storage.shared.writeAsync { db in db[.areLinkPreviewsEnabled] = true @@ -735,7 +724,7 @@ extension ConversationVC: let newText: String = snInputView.text.replacingCharacters( in: currentMentionStartIndex..., - with: "@\(mentionInfo.profile.displayName(for: self.viewModel.threadData.threadVariant)) " + with: "@\(mentionInfo.profile.displayName(for: self.viewModel.threadData.threadVariant)) " // stringlint:disable ) snInputView.text = newText @@ -794,8 +783,8 @@ extension ConversationVC: func replaceMentions(in text: String) -> String { var result = text for mention in mentions { - guard let range = result.range(of: "@\(mention.profile.displayName(for: mention.threadVariant))") else { continue } - result = result.replacingCharacters(in: range, with: "@\(mention.profile.id)") + guard let range = result.range(of: "@\(mention.profile.displayName(for: mention.threadVariant))") else { continue } // stringlint:disable + result = result.replacingCharacters(in: range, with: "@\(mention.profile.id)") // stringlint:disable } return result @@ -890,12 +879,6 @@ extension ConversationVC: cellLocation: CGPoint, using dependencies: Dependencies = Dependencies() ) { - guard cellViewModel.variant != .standardOutgoing || (cellViewModel.state != .failed && cellViewModel.state != .failedToSync) else { - // Show the failed message sheet - showFailedMessageSheet(for: cellViewModel, using: dependencies) - return - } - // For call info messages show the "call missed" modal guard cellViewModel.variant != .infoCall else { // If the failure was due to the mic permission being denied then we want to show the permission modal, @@ -921,35 +904,23 @@ extension ConversationVC: guard cellViewModel.variant != .infoDisappearingMessagesUpdate else { let messageDisappearingConfig = cellViewModel.messageDisappearingConfiguration() let expirationTimerString: String = floor(messageDisappearingConfig.durationSeconds).formatted(format: .long) - let expirationTypeString: String = (messageDisappearingConfig.type == .disappearAfterRead ? "DISAPPEARING_MESSAGE_STATE_READ".localized() : "DISAPPEARING_MESSAGE_STATE_SENT".localized()) - let modalBodyString: String = ( - messageDisappearingConfig.isEnabled ? - String( - format: "FOLLOW_SETTING_EXPLAINATION_TURNING_ON".localized(), - expirationTimerString, - expirationTypeString - ) : - "FOLLOW_SETTING_EXPLAINATION_TURNING_OFF".localized() - ) - let modalConfirmTitle: String = messageDisappearingConfig.isEnabled ? "DISAPPERING_MESSAGES_SAVE_TITLE".localized() : "CONFIRM_BUTTON_TITLE".localized() + let expirationTypeString: String = (messageDisappearingConfig.type?.localizedName ?? "") + let modalBodyString: String = { + if messageDisappearingConfig.isEnabled { + return "disappearingMessagesFollowSettingOn" + .put(key: "time", value: expirationTimerString) + .put(key: "disappearing_messages_type", value: expirationTypeString) + .localized() + } else { + return "disappearingMessagesFollowSettingOff" + .localized() + } + }() + let modalConfirmTitle: String = messageDisappearingConfig.isEnabled ? "set".localized() : "confirm".localized() let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "FOLLOW_SETTING_TITLE".localized(), - body: .attributedText( - NSAttributedString(string: modalBodyString) - .adding( - attributes: [ .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) ], - range: (modalBodyString as NSString).range(of: expirationTypeString) - ) - .adding( - attributes: [ .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) ], - range: (modalBodyString as NSString).range(of: expirationTimerString) - ) - .adding( - attributes: [ .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) ], - range: (modalBodyString as NSString).range(of: "DISAPPEARING_MESSAGES_OFF".localized().lowercased()) - ) - ), + title: "disappearingMessagesFollowSetting".localized(), + body: .attributedText(modalBodyString.formatted(baseFont: .systemFont(ofSize: Values.smallFontSize))), accessibility: Accessibility(identifier: "Follow setting dialog"), confirmTitle: modalConfirmTitle, confirmAccessibility: Accessibility(identifier: "Set button"), @@ -976,24 +947,14 @@ extension ConversationVC: // If it's an incoming media message and the thread isn't trusted then show the placeholder view if cellViewModel.cellType != .textOnlyMessage && cellViewModel.variant == .standardIncoming && !cellViewModel.threadIsTrusted { - let message: String = String( - format: "modal_download_attachment_explanation".localized(), - cellViewModel.authorName - ) + let message: NSAttributedString = "attachmentsAutoDownloadModalDescription" + .put(key: "conversation_name", value: cellViewModel.authorName) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: String( - format: "modal_download_attachment_title".localized(), - cellViewModel.authorName - ), - body: .attributedText( - NSAttributedString(string: message) - .adding( - attributes: [ .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) ], - range: (message as NSString).range(of: cellViewModel.authorName) - ) - ), - confirmTitle: "modal_download_button_title".localized(), + title: "attachmentsAutoDownloadModalTitle".localized(), + body: .attributedText(message), + confirmTitle: "download".localized(), confirmAccessibility: Accessibility(identifier: "Download media"), cancelAccessibility: Accessibility(identifier: "Don't download media"), dismissOnConfirm: false // Custom dismissal logic @@ -1236,26 +1197,32 @@ extension ConversationVC: func openUrl(_ urlString: String) { guard let url: URL = URL(string: urlString) else { return } - // URLs can be unsafe, so always ask the user whether they want to open one - let actionSheet: UIAlertController = UIAlertController( - title: "modal_open_url_title".localized(), - message: String(format: "modal_open_url_explanation".localized(), url.absoluteString), - preferredStyle: .actionSheet + let modal: ConfirmationModal = ConfirmationModal( + targetView: self.view, + info: ConfirmationModal.Info( + title: "urlOpen".localized(), + body: .attributedText( + "urlOpenDescription" + .put(key: "url", value: url.absoluteString) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)), + canScroll: true + ), + confirmTitle: "open".localized(), + confirmStyle: .danger, + cancelTitle: "urlCopy".localized(), + cancelStyle: .alert_text, + onConfirm: { [weak self] _ in + UIApplication.shared.open(url, options: [:], completionHandler: nil) + self?.showInputAccessoryView() + }, + onCancel: { [weak self] _ in + UIPasteboard.general.string = url.absoluteString + self?.showInputAccessoryView() + } + ) ) - actionSheet.addAction(UIAlertAction(title: "modal_open_url_button_title".localized(), style: .default) { [weak self] _ in - UIApplication.shared.open(url, options: [:], completionHandler: nil) - self?.showInputAccessoryView() - }) - actionSheet.addAction(UIAlertAction(title: "modal_copy_url_button_title".localized(), style: .default) { [weak self] _ in - UIPasteboard.general.string = url.absoluteString - self?.showInputAccessoryView() - }) - actionSheet.addAction(UIAlertAction(title: "cancel".localized(), style: .cancel) { [weak self] _ in - self?.showInputAccessoryView() - }) - Modal.setupForIPadIfNeeded(actionSheet, targetView: self.view) - self.present(actionSheet, animated: true) + self.present(modal, animated: true) } func handleReplyButtonTapped(for cellViewModel: MessageViewModel, using dependencies: Dependencies) { @@ -1469,7 +1436,7 @@ extension ConversationVC: (sentTimestamp - (recentReactionTimestamps.first ?? sentTimestamp)) > (60 * 1000) else { let toastController: ToastController = ToastController( - text: "EMOJI_REACTS_RATE_LIMIT_TOAST".localized(), + text: "emojiReactsCoolDown".localized(), background: .backgroundSecondary ) toastController.presentToastView( @@ -1713,61 +1680,15 @@ extension ConversationVC: // MARK: --action handling - private func showFailedMessageSheet(for cellViewModel: MessageViewModel, using dependencies: Dependencies) { - let sheet = UIAlertController( - title: (cellViewModel.state == .failedToSync ? - "MESSAGE_DELIVERY_FAILED_SYNC_TITLE".localized() : - "MESSAGE_DELIVERY_FAILED_TITLE".localized() - ), - message: cellViewModel.mostRecentFailureText, - preferredStyle: .actionSheet - ) - sheet.addAction(UIAlertAction(title: "TXT_CANCEL_TITLE".localized(), style: .cancel, handler: nil)) - - if cellViewModel.state != .failedToSync { - sheet.addAction(UIAlertAction(title: "TXT_DELETE_TITLE".localized(), style: .destructive, handler: { _ in - Storage.shared.writeAsync { db in - try Interaction - .filter(id: cellViewModel.id) - .deleteAll(db) - } - })) - } - - sheet.addAction(UIAlertAction( - title: (cellViewModel.state == .failedToSync ? - "context_menu_resync".localized() : - "context_menu_resend".localized() - ), - style: .default, - handler: { [weak self] _ in self?.retry(cellViewModel, using: dependencies) } - )) - - // HACK: Extracting this info from the error string is pretty dodgy - let prefix: String = "HTTP request failed at destination (Service node " - if let mostRecentFailureText: String = cellViewModel.mostRecentFailureText, mostRecentFailureText.hasPrefix(prefix) { - let rest = mostRecentFailureText.substring(from: prefix.count) - - if let index = rest.firstIndex(of: ")") { - let snodeAddress = String(rest[rest.startIndex.. String { - return String( - format: { - switch (threadData.threadIsNoteToSelf, threadData.canWrite) { - case (true, _): return "CONVERSATION_EMPTY_STATE_NOTE_TO_SELF".localized() - case (_, false): - return (threadData.profile?.blocksCommunityMessageRequests == true ? - "COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE".localized() : - "CONVERSATION_EMPTY_STATE_READ_ONLY".localized() - ) - - default: return "CONVERSATION_EMPTY_STATE".localized() + switch (threadData.threadIsNoteToSelf, threadData.canWrite) { + case (true, _): + return "noteToSelfEmpty".localized() + case (_, false): + if threadData.profile?.blocksCommunityMessageRequests == true { + return "messageRequestsTurnedOff" + .put(key: "name", value: threadData.displayName) + .localized() + } else { + return "conversationsEmpty" + .put(key: "conversation_name", value: threadData.displayName) + .localized() } - }(), - threadData.displayName - ) + default: + return "groupNoMessages" + .put(key: "group_name", value: threadData.displayName) + .localized() + } } private func handleThreadUpdates(_ updatedThreadData: SessionThreadViewModel, initialLoad: Bool = false) { @@ -725,13 +731,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa // Update the empty state let text: String = emptyStateText(for: updatedThreadData) - emptyStateLabel.attributedText = NSAttributedString(string: text) - .adding( - attributes: [.font: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize)], - range: text.range(of: updatedThreadData.displayName) - .map { NSRange($0, in: text) } - .defaulting(to: NSRange(location: 0, length: 0)) - ) + emptyStateLabel.attributedText = text.formatted(in: emptyStateLabel) } if @@ -1479,10 +1479,9 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa } self.outdatedClientBanner.update( - message: String( - format: "DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER".localized(), - Profile.displayName(id: outdatedMemberId, threadVariant: self.viewModel.threadData.threadVariant) - ), + message: "disappearingMessagesLegacy" + .put(key: "name", value: Profile.displayName(id: outdatedMemberId, threadVariant: self.viewModel.threadData.threadVariant)) + .localized(), dismiss: self.removeOutdatedClientBanner ) @@ -1555,9 +1554,9 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: CommonStrings.errorAlertTitle, - body: .text("INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "theError".localized(), + body: .text("audioUnableToPlay".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -1725,7 +1724,7 @@ final class ConversationVC: BaseVC, LibSessionRespondingViewController, Conversa func updateUnreadCountView(unreadCount: UInt?) { let unreadCount: Int = Int(unreadCount ?? 0) let fontSize: CGFloat = (unreadCount < 10000 ? Values.verySmallFontSize : 8) - unreadCountLabel.text = (unreadCount < 10000 ? "\(unreadCount)" : "9999+") + unreadCountLabel.text = (unreadCount < 10000 ? "\(unreadCount)" : "9999+") // stringlint:disable unreadCountLabel.font = .boldSystemFont(ofSize: fontSize) unreadCountView.isHidden = (unreadCount == 0) } diff --git a/Session/Conversations/ConversationViewModel.swift b/Session/Conversations/ConversationViewModel.swift index abdeb58448..060ef3040e 100644 --- a/Session/Conversations/ConversationViewModel.swift +++ b/Session/Conversations/ConversationViewModel.swift @@ -7,7 +7,7 @@ import DifferenceKit import SessionMessagingKit import SessionUtilitiesKit -public class ConversationViewModel: OWSAudioPlayerDelegate { +public class ConversationViewModel: OWSAudioPlayerDelegate, NavigatableStateHolder { public typealias SectionModel = ArraySection // MARK: - FocusBehaviour @@ -46,6 +46,9 @@ public class ConversationViewModel: OWSAudioPlayerDelegate { public static let pageSize: Int = 50 + public let navigatableState: NavigatableState = NavigatableState() + public var disposables: Set = Set() + private var threadId: String public let initialThreadVariant: SessionThread.Variant public var sentMessageBeforeUpdate: Bool = false @@ -67,9 +70,9 @@ public class ConversationViewModel: OWSAudioPlayerDelegate { threadVariant: threadData.threadVariant ) - return "\(name) is blocked. Unblock them?" + return "blockBlockedDescription".localized() - default: return "Thread is blocked. Unblock it?" + default: return "Thread is blocked. Unblock it?" // Should not happen // stringlint:disable } }() @@ -642,7 +645,7 @@ public class ConversationViewModel: OWSAudioPlayerDelegate { $0.id, $0.messageViewModel.with( state: .failed, - mostRecentFailureText: "FAILED_TO_STORE_OUTGOING_MESSAGE".localized() + mostRecentFailureText: "shareExtensionDatabaseError".localized() ), $0.interaction, $0.attachmentData, @@ -877,6 +880,7 @@ public class ConversationViewModel: OWSAudioPlayerDelegate { guard self._threadData.wrappedValue.threadVariant == .contact else { return } let threadId: String = self.threadId + let displayName: String = self._threadData.wrappedValue.displayName Storage.shared.writeAsync { db in try Contact diff --git a/Session/Conversations/Emoji Picker/EmojiPickerCollectionView.swift b/Session/Conversations/Emoji Picker/EmojiPickerCollectionView.swift index 52477694e0..06611a28ee 100644 --- a/Session/Conversations/Emoji Picker/EmojiPickerCollectionView.swift +++ b/Session/Conversations/Emoji Picker/EmojiPickerCollectionView.swift @@ -56,13 +56,9 @@ class EmojiPickerCollectionView: UICollectionView { delegate = self dataSource = self - - register(EmojiCell.self, forCellWithReuseIdentifier: EmojiCell.reuseIdentifier) - register( - EmojiSectionHeader.self, - forSupplementaryViewOfKind: UICollectionView.elementKindSectionHeader, - withReuseIdentifier: EmojiSectionHeader.reuseIdentifier - ) + + register(view: EmojiCell.self) + register(view: EmojiSectionHeader.self, ofKind: UICollectionView.elementKindSectionHeader) themeBackgroundColor = .clear @@ -136,7 +132,7 @@ class EmojiPickerCollectionView: UICollectionView { func nameForSection(_ section: Int) -> String? { guard section > 0 || !hasRecentEmoji else { - return "EMOJI_CATEGORY_RECENTS_NAME".localized() + return "emojiCategoryRecentlyUsed".localized() } guard let category = Emoji.Category.allCases[safe: section - categoryIndexOffset] else { @@ -245,35 +241,20 @@ extension EmojiPickerCollectionView: UICollectionViewDataSource { } func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { - let cell = dequeueReusableCell(withReuseIdentifier: EmojiCell.reuseIdentifier, for: indexPath) - - guard let emojiCell = cell as? EmojiCell else { - Log.error("[EmojiPickerCollectionView] unexpected cell type") - return cell - } + let cell = dequeue(type: EmojiCell.self, for: indexPath) guard let emoji = emojiForIndexPath(indexPath) else { Log.error("[EmojiPickerCollectionView] unexpected indexPath") return cell } - emojiCell.configure(emoji: emoji) + cell.configure(emoji: emoji) return cell } func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView { - - let supplementaryView = dequeueReusableSupplementaryView( - ofKind: kind, - withReuseIdentifier: EmojiSectionHeader.reuseIdentifier, - for: indexPath - ) - - guard let sectionHeader = supplementaryView as? EmojiSectionHeader else { - Log.error("[EmojiPickerCollectionView] unexpected supplementary view type") - return supplementaryView - } + let sectionHeader = dequeue(type: EmojiSectionHeader.self, ofKind: kind, for: indexPath) sectionHeader.label.text = nameForSection(indexPath.section) @@ -296,8 +277,6 @@ extension EmojiPickerCollectionView: UICollectionViewDelegateFlowLayout { } private class EmojiCell: UICollectionViewCell { - static let reuseIdentifier = "EmojiCell" // stringlint:disable - let emojiLabel = UILabel() override init(frame: CGRect) { @@ -326,8 +305,6 @@ private class EmojiCell: UICollectionViewCell { } private class EmojiSectionHeader: UICollectionReusableView { - static let reuseIdentifier = "EmojiSectionHeader" // stringlint:disable - let label = UILabel() override init(frame: CGRect) { diff --git a/Session/Conversations/Input View/ExpandingAttachmentsButton.swift b/Session/Conversations/Input View/ExpandingAttachmentsButton.swift index 7509708d58..11eb67aefe 100644 --- a/Session/Conversations/Input View/ExpandingAttachmentsButton.swift +++ b/Session/Conversations/Input View/ExpandingAttachmentsButton.swift @@ -34,7 +34,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { lazy var documentButton: InputViewButton = { let result = InputViewButton(icon: #imageLiteral(resourceName: "actionsheet_document_black"), delegate: self, hasOpaqueBackground: true) result.accessibilityIdentifier = "Documents folder" - result.accessibilityLabel = "accessibility_document_button".localized() + result.accessibilityLabel = "Files" result.isAccessibilityElement = true return result @@ -43,7 +43,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { lazy var libraryButton: InputViewButton = { let result = InputViewButton(icon: #imageLiteral(resourceName: "actionsheet_camera_roll_black"), delegate: self, hasOpaqueBackground: true) result.accessibilityIdentifier = "Images folder" - result.accessibilityLabel = "accessibility_library_button".localized() + result.accessibilityLabel = "Photo library" result.isAccessibilityElement = true return result @@ -52,7 +52,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { lazy var cameraButton: InputViewButton = { let result = InputViewButton(icon: #imageLiteral(resourceName: "actionsheet_camera_black"), delegate: self, hasOpaqueBackground: true) result.accessibilityIdentifier = "Select camera button" - result.accessibilityLabel = "accessibility_camera_button".localized() + result.accessibilityLabel = "Camera" result.isAccessibilityElement = true return result @@ -60,7 +60,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { lazy var cameraButtonContainer = container(for: cameraButton) lazy var mainButton: InputViewButton = { let result = InputViewButton(icon: #imageLiteral(resourceName: "ic_plus_24"), delegate: self) - result.accessibilityLabel = "accessibility_expanding_attachments_button".localized() + result.accessibilityLabel = "Add attachment" return result }() @@ -111,7 +111,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { // MARK: Animation private func expandOrCollapse() { if isExpanded { - mainButton.accessibilityLabel = NSLocalizedString("accessibility_main_button_collapse", comment: "") + mainButton.accessibilityLabel = "Collapse attachment options" let expandedButtonSize = InputViewButton.expandedSize let spacing: CGFloat = 4 cameraButtonContainerBottomConstraint.constant = -1 * (expandedButtonSize + spacing) @@ -125,7 +125,7 @@ final class ExpandingAttachmentsButton: UIView, InputViewButtonDelegate { self.layoutIfNeeded() } } else { - mainButton.accessibilityLabel = NSLocalizedString("accessibility_expanding_attachments_button", comment: "") + mainButton.accessibilityLabel = "Add attachment" [ gifButtonContainerBottomConstraint, documentButtonContainerBottomConstraint, libraryButtonContainerBottomConstraint, cameraButtonContainerBottomConstraint ].forEach { $0.constant = 0 } diff --git a/Session/Conversations/Input View/InputTextView.swift b/Session/Conversations/Input View/InputTextView.swift index cba081e8e1..61889cacf4 100644 --- a/Session/Conversations/Input View/InputTextView.swift +++ b/Session/Conversations/Input View/InputTextView.swift @@ -15,7 +15,7 @@ public final class InputTextView: UITextView, UITextViewDelegate { private lazy var placeholderLabel: UILabel = { let result = UILabel() result.font = .systemFont(ofSize: Values.mediumFontSize) - result.text = "vc_conversation_input_prompt".localized() + result.text = "message".localized() result.themeTextColor = .textSecondary return result @@ -37,7 +37,7 @@ public final class InputTextView: UITextView, UITextViewDelegate { setUpViewHierarchy() self.delegate = self self.isAccessibilityElement = true - self.accessibilityLabel = "vc_conversation_input_prompt".localized() + self.accessibilityLabel = "Message" } public override init(frame: CGRect, textContainer: NSTextContainer?) { diff --git a/Session/Conversations/Input View/InputView.swift b/Session/Conversations/Input View/InputView.swift index 3d6ab83829..21bb2263c8 100644 --- a/Session/Conversations/Input View/InputView.swift +++ b/Session/Conversations/Input View/InputView.swift @@ -122,7 +122,7 @@ final class InputView: UIView, InputViewButtonDelegate, InputTextViewDelegate, M let adjustment = (InputViewButton.expandedSize - InputViewButton.size) / 2 let maxWidth = UIScreen.main.bounds.width - 2 * InputViewButton.expandedSize - 2 * Values.smallSpacing - 2 * (Values.mediumSpacing - adjustment) let result = InputTextView(delegate: self, maxWidth: maxWidth) - result.accessibilityLabel = "Message input box" + result.accessibilityLabel = "contentDescriptionMessageComposition".localized() result.accessibilityIdentifier = "Message input box" result.isAccessibilityElement = true diff --git a/Session/Conversations/Input View/VoiceMessageRecordingView.swift b/Session/Conversations/Input View/VoiceMessageRecordingView.swift index 2111d0d036..6a115a9a46 100644 --- a/Session/Conversations/Input View/VoiceMessageRecordingView.swift +++ b/Session/Conversations/Input View/VoiceMessageRecordingView.swift @@ -80,7 +80,7 @@ final class VoiceMessageRecordingView: UIView { private lazy var slideToCancelLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "vc_conversation_voice_message_cancel_message".localized() + result.text = "messageVoiceSlideToCancel".localized() result.themeTextColor = .textPrimary result.alpha = Values.mediumOpacity @@ -122,7 +122,7 @@ final class VoiceMessageRecordingView: UIView { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize) result.themeTextColor = .textPrimary - result.text = "0:00" + result.text = "0:00" // stringlint:disable return result }() diff --git a/Session/Conversations/Message Cells/Content Views/DeletedMessageView.swift b/Session/Conversations/Message Cells/Content Views/DeletedMessageView.swift index a261f7b9df..e0218e6580 100644 --- a/Session/Conversations/Message Cells/Content Views/DeletedMessageView.swift +++ b/Session/Conversations/Message Cells/Content Views/DeletedMessageView.swift @@ -44,7 +44,9 @@ final class DeletedMessageView: UIView { // Body label let titleLabel = UILabel() titleLabel.font = .systemFont(ofSize: Values.smallFontSize) - titleLabel.text = "message_deleted".localized() + titleLabel.text = "deleteMessageDeleted" + .putNumber(1) + .localized() titleLabel.themeTextColor = textColor titleLabel.lineBreakMode = .byTruncatingTail diff --git a/Session/Conversations/Message Cells/Content Views/MediaAlbumView.swift b/Session/Conversations/Message Cells/Content Views/MediaAlbumView.swift index c156edc494..e89315408e 100644 --- a/Session/Conversations/Message Cells/Content Views/MediaAlbumView.swift +++ b/Session/Conversations/Message Cells/Content Views/MediaAlbumView.swift @@ -122,11 +122,9 @@ public class MediaAlbumView: UIStackView { tintView.pin(to: self) let moreCount = max(1, items.count - MediaAlbumView.kMaxItems) - let moreText = String( - // Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. - format: "MEDIA_GALLERY_MORE_ITEMS_FORMAT".localized(), - "\(moreCount)" - ) + let moreText = "andMore" + .put(key: "count", value: moreCount) + .localized() let moreLabel: UILabel = UILabel() moreLabel.font = .systemFont(ofSize: 24) moreLabel.text = moreText diff --git a/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift b/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift index 7e2bfbea88..06f570b992 100644 --- a/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift +++ b/Session/Conversations/Message Cells/Content Views/MediaPlaceholderView.swift @@ -34,13 +34,13 @@ final class MediaPlaceholderView: UIView { cellViewModel.variant == .standardIncoming, let attachment: Attachment = cellViewModel.attachments?.first else { - return ("actionsheet_document_black", "file") // Should never occur + return ("actionsheet_document_black", "file".localized().lowercased()) // Should never occur } - if attachment.isAudio { return ("attachment_audio", "audio") } - if attachment.isImage || attachment.isVideo { return ("actionsheet_camera_roll_black", "media") } + if attachment.isAudio { return ("attachment_audio", "audio".localized().lowercased()) } + if attachment.isImage || attachment.isVideo { return ("actionsheet_camera_roll_black", "media".localized().lowercased()) } - return ("actionsheet_document_black", "file") + return ("actionsheet_document_black", "file".localized().lowercased()) }() // Image view @@ -62,7 +62,9 @@ final class MediaPlaceholderView: UIView { // Body label let titleLabel = UILabel() titleLabel.font = .systemFont(ofSize: Values.mediumFontSize) - titleLabel.text = "Tap to download \(attachmentDescription)" + titleLabel.text = "attachmentsTapToDownload" + .put(key: "file_type", value: attachmentDescription) + .localized() titleLabel.themeTextColor = textColor titleLabel.lineBreakMode = .byTruncatingTail diff --git a/Session/Conversations/Message Cells/Content Views/OpenGroupInvitationView.swift b/Session/Conversations/Message Cells/Content Views/OpenGroupInvitationView.swift index 85fe38d3df..67daec2f50 100644 --- a/Session/Conversations/Message Cells/Content Views/OpenGroupInvitationView.swift +++ b/Session/Conversations/Message Cells/Content Views/OpenGroupInvitationView.swift @@ -40,7 +40,7 @@ final class OpenGroupInvitationView: UIView { // Subtitle let subtitleLabel = UILabel() subtitleLabel.font = .systemFont(ofSize: Values.smallFontSize) - subtitleLabel.text = "view_open_group_invitation_description".localized() + subtitleLabel.text = "communityInvitation".localized() subtitleLabel.themeTextColor = textColor subtitleLabel.lineBreakMode = .byTruncatingTail @@ -48,7 +48,7 @@ final class OpenGroupInvitationView: UIView { let urlLabel = UILabel() urlLabel.font = .systemFont(ofSize: Values.verySmallFontSize) urlLabel.text = { - if let range = rawUrl.range(of: "?public_key=") { + if let range = rawUrl.range(of: "?public_key=") { // stringlint:disable return String(rawUrl[.. = shouldShowConfirmButton .removeDuplicates() - .map { [weak self] shouldShowConfirmButton in + .map { [weak self] shouldShowConfirmButton -> SessionButton.Info? in guard shouldShowConfirmButton else { return nil } return SessionButton.Info( style: .bordered, - title: "DISAPPERING_MESSAGES_SAVE_TITLE".localized(), + title: "set".localized(), isEnabled: true, accessibility: Accessibility( identifier: "Set button", @@ -127,8 +128,8 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga model: .type, elements: [ SessionCell.Info( - id: "DISAPPEARING_MESSAGES_OFF".localized(), - title: "DISAPPEARING_MESSAGES_OFF".localized(), + id: "off".localized(), + title: "off".localized(), rightAccessory: .radio( isSelected: { (self?.currentSelection.value.isEnabled == false) }, accessibility: Accessibility( @@ -150,9 +151,9 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga } ), SessionCell.Info( - id: "DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE".localized(), - title: "DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE".localized(), - subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION".localized(), + id: "disappearingMessagesDisappearAfterRead".localized(), + title: "disappearingMessagesDisappearAfterRead".localized(), + subtitle: "disappearingMessagesDisappearAfterReadDescription".localized(), rightAccessory: .radio( isSelected: { (self?.currentSelection.value.isEnabled == true) && @@ -183,9 +184,9 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga } ), SessionCell.Info( - id: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), - title: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), - subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION".localized(), + id: "disappearingMessagesDisappearAfterSend".localized(), + title: "disappearingMessagesDisappearAfterSend".localized(), + subtitle: "disappearingMessagesDisappearAfterSendDescription".localized(), rightAccessory: .radio( isSelected: { (self?.currentSelection.value.isEnabled == true) && @@ -261,8 +262,8 @@ class ThreadDisappearingMessagesSettingsViewModel: SessionTableViewModel, Naviga model: (isNoteToSelf ? .noteToSelf : .group), elements: [ SessionCell.Info( - id: "DISAPPEARING_MESSAGES_OFF".localized(), - title: "DISAPPEARING_MESSAGES_OFF".localized(), + id: "off".localized(), + title: "off".localized(), rightAccessory: .radio( isSelected: { (self?.currentSelection.value.isEnabled == false) }, accessibility: Accessibility( diff --git a/Session/Conversations/Settings/ThreadSettingsViewModel.swift b/Session/Conversations/Settings/ThreadSettingsViewModel.swift index 69205978e6..c4ec3ac980 100644 --- a/Session/Conversations/Settings/ThreadSettingsViewModel.swift +++ b/Session/Conversations/Settings/ThreadSettingsViewModel.swift @@ -186,8 +186,8 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi var title: String { switch threadVariant { - case .contact: return "vc_settings_title".localized() - case .legacyGroup, .group, .community: return "vc_group_settings_title".localized() + case .contact: return "sessionSettings".localized() + case .legacyGroup, .group, .community: return "deleteAfterGroupPR1GroupSettings".localized() } } @@ -279,7 +279,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi threadViewModel.displayName, font: .titleLarge, alignment: .center, - editingPlaceholder: "CONTACT_NICKNAME_PLACEHOLDER".localized(), + editingPlaceholder: "nicknameEnter".localized(), interaction: (threadViewModel.threadVariant == .contact ? .editable : .none) ), styling: SessionCell.StyleInfo( @@ -343,7 +343,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi .withRenderingMode(.alwaysTemplate) ), title: (threadViewModel.threadVariant == .community ? - "COPY_GROUP_URL".localized() : + "communityUrlCopy".localized() : "accountIDCopy".localized() ), accessibility: Accessibility( @@ -381,7 +381,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "actionsheet_camera_roll_black")? .withRenderingMode(.alwaysTemplate) ), - title: MediaStrings.allMedia, + title: "conversationsSettingsAllMedia".localized(), accessibility: Accessibility( identifier: "\(ThreadSettingsViewModel.self).all_media", label: "All media" @@ -403,7 +403,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "conversation_settings_search")? .withRenderingMode(.alwaysTemplate) ), - title: "CONVERSATION_SETTINGS_SEARCH".localized(), + title: "searchConversation".localized(), accessibility: Accessibility( identifier: "\(ThreadSettingsViewModel.self).search", label: "Search" @@ -420,14 +420,14 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "ic_plus_24")? .withRenderingMode(.alwaysTemplate) ), - title: "vc_conversation_settings_invite_button_title".localized(), + title: "membersInvite".localized(), accessibility: Accessibility( identifier: "\(ThreadSettingsViewModel.self).add_to_open_group" ), onTap: { [weak self] in self?.transitionToScreen( UserSelectionVC( - with: "vc_conversation_settings_invite_button_title".localized(), + with: "membersInvite".localized(), excluding: Set() ) { [weak self] selectedUsers in self?.addUsersToOpenGoup( @@ -447,19 +447,16 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(systemName: "timer")? .withRenderingMode(.alwaysTemplate) ), - title: "DISAPPEARING_MESSAGES".localized(), + title: "disappearingMessages".localized(), subtitle: { guard current.disappearingMessagesConfig.isEnabled else { - return "DISAPPEARING_MESSAGES_SUBTITLE_OFF".localized() + return "off".localized() } - return String( - format: (current.disappearingMessagesConfig.type == .disappearAfterRead ? - "DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ".localized() : - "DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND".localized() - ), - current.disappearingMessagesConfig.durationString - ) + return (current.disappearingMessagesConfig.type ?? .unknown) + .localizedState( + durationString: current.disappearingMessagesConfig.durationString + ) }(), accessibility: Accessibility( identifier: "Disappearing messages", @@ -488,7 +485,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "table_ic_group_edit")? .withRenderingMode(.alwaysTemplate) ), - title: "EDIT_GROUP_ACTION".localized(), + title: "groupEdit".localized(), accessibility: Accessibility( identifier: "Edit group", label: "Edit group" @@ -511,32 +508,19 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "table_ic_group_leave")? .withRenderingMode(.alwaysTemplate) ), - title: "LEAVE_GROUP_ACTION".localized(), + title: "groupLeave".localized(), accessibility: Accessibility( identifier: "Leave group", label: "Leave group" ), confirmationInfo: ConfirmationModal.Info( - title: "leave_group_confirmation_alert_title".localized(), - body: .attributedText({ - if currentUserIsClosedGroupAdmin { - return NSAttributedString(string: "admin_group_leave_warning".localized()) - } - - let mutableAttributedString = NSMutableAttributedString( - string: String( - format: "leave_community_confirmation_alert_message".localized(), - threadViewModel.displayName - ) - ) - mutableAttributedString.addAttribute( - .font, - value: UIFont.boldSystemFont(ofSize: Values.smallFontSize), - range: (mutableAttributedString.string as NSString).range(of: threadViewModel.displayName) - ) - return mutableAttributedString - }()), - confirmTitle: "LEAVE_BUTTON_TITLE".localized(), + title: "groupLeave".localized(), + body: .attributedText( + (currentUserIsClosedGroupAdmin ? "groupDeleteDescription" : "groupLeaveDescription") + .put(key: "group_name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) + ), + confirmTitle: "leave".localized(), confirmStyle: .danger, cancelStyle: .alert_text ), @@ -561,7 +545,7 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "table_ic_notification_sound")? .withRenderingMode(.alwaysTemplate) ), - title: "SETTINGS_ITEM_NOTIFICATION_SOUND".localized(), + title: "deleteAfterGroupPR1MessageSound".localized(), rightAccessory: .dropDown( .dynamicString { current.notificationSound.displayName } ), @@ -582,14 +566,16 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "NotifyMentions")? .withRenderingMode(.alwaysTemplate) ), - title: "vc_conversation_settings_notify_for_mentions_only_title".localized(), - subtitle: "vc_conversation_settings_notify_for_mentions_only_explanation".localized(), + title: "deleteAfterGroupPR1MentionsOnly".localized(), + subtitle: "deleteAfterGroupPR1MentionsOnlyDescription".localized(), rightAccessory: .toggle( .boolValue( threadViewModel.threadOnlyNotifyForMentions == true, oldValue: ((previous?.threadViewModel ?? threadViewModel).threadOnlyNotifyForMentions == true) ), - accessibility: Accessibility(identifier: "Notify for Mentions Only - Switch") + accessibility: Accessibility( + identifier: "Notify for Mentions Only - Switch" + ) ), isEnabled: ( ( @@ -625,13 +611,15 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "Mute")? .withRenderingMode(.alwaysTemplate) ), - title: "CONVERSATION_SETTINGS_MUTE_LABEL".localized(), + title: "notificationsMute".localized(), rightAccessory: .toggle( .boolValue( threadViewModel.threadMutedUntilTimestamp != nil, oldValue: ((previous?.threadViewModel ?? threadViewModel).threadMutedUntilTimestamp != nil) ), - accessibility: Accessibility(identifier: "Mute - Switch") + accessibility: Accessibility( + identifier: "Mute - Switch" + ) ), isEnabled: ( ( @@ -675,13 +663,15 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi UIImage(named: "table_ic_block")? .withRenderingMode(.alwaysTemplate) ), - title: "CONVERSATION_SETTINGS_BLOCK_THIS_USER".localized(), + title: "deleteAfterGroupPR1BlockThisUser".localized(), rightAccessory: .toggle( .boolValue( threadViewModel.threadIsBlocked == true, oldValue: ((previous?.threadViewModel ?? threadViewModel).threadIsBlocked == true) ), - accessibility: Accessibility(identifier: "Block This User - Switch") + accessibility: Accessibility( + identifier: "Block This User - Switch" + ) ), accessibility: Accessibility( identifier: "\(ThreadSettingsViewModel.self).block", @@ -691,22 +681,31 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi title: { guard threadViewModel.threadIsBlocked == true else { return String( - format: "BLOCK_LIST_BLOCK_USER_TITLE_FORMAT".localized(), + format: "block".localized(), threadViewModel.displayName ) } return String( - format: "BLOCK_LIST_UNBLOCK_TITLE_FORMAT".localized(), + format: "blockUnblock".localized(), threadViewModel.displayName ) }(), - body: (threadViewModel.threadIsBlocked == true ? .none : - .text("BLOCK_USER_BEHAVIOR_EXPLANATION".localized()) + body: (threadViewModel.threadIsBlocked == true ? + .attributedText( + "blockUnblockName" + .put(key: "name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) + ) : + .attributedText( + "blockDescription" + .put(key: "name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) + ) ), confirmTitle: (threadViewModel.threadIsBlocked == true ? - "BLOCK_LIST_UNBLOCK_BUTTON".localized() : - "BLOCK_LIST_BLOCK_BUTTON".localized() + "blockUnblock".localized() : + "block".localized() ), confirmAccessibility: Accessibility(identifier: "Confirm block"), confirmStyle: .danger, @@ -827,45 +826,13 @@ class ThreadSettingsViewModel: SessionTableViewModel, NavigationItemSource, Navi ) { guard oldBlockedState != isBlocked else { return } - dependencies.storage.writeAsync( - updates: { db in - try Contact - .filter(id: threadId) - .updateAllAndConfig( - db, - Contact.Columns.isBlocked.set(to: isBlocked) - ) - }, - completion: { [weak self] db, _ in - DispatchQueue.main.async { - let modal: ConfirmationModal = ConfirmationModal( - info: ConfirmationModal.Info( - title: (oldBlockedState == false ? - "BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE".localized() : - String( - format: "BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT".localized(), - displayName - ) - ), - body: (oldBlockedState == true ? .none : .text( - String( - format: "BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT".localized(), - displayName - ) - )), - accessibility: Accessibility( - identifier: "Test_name", - label: (oldBlockedState == false ? "User blocked" : "Confirm unblock") - ), - cancelTitle: "BUTTON_OK".localized(), - cancelAccessibility: Accessibility(identifier: "OK_BUTTON"), - cancelStyle: .alert_text - ) - ) - - self?.transitionToScreen(modal, transitionType: .present) - } - } - ) + dependencies.storage.writeAsync { db in + try Contact + .filter(id: threadId) + .updateAllAndConfig( + db, + Contact.Columns.isBlocked.set(to: isBlocked) + ) + } } } diff --git a/Session/Conversations/Views & Modals/ConversationTitleView.swift b/Session/Conversations/Views & Modals/ConversationTitleView.swift index 715de9a090..fa66701c14 100644 --- a/Session/Conversations/Views & Modals/ConversationTitleView.swift +++ b/Session/Conversations/Views & Modals/ConversationTitleView.swift @@ -157,7 +157,7 @@ final class ConversationTitleView: UIView { .foregroundColor: textPrimary ] ) - .appending(string: "Muted") + .appending(string: "notificationsMuted".localized()) labelInfos.append( SessionLabelCarouselView.LabelInfo( @@ -179,7 +179,7 @@ final class ConversationTitleView: UIView { let notificationSettingsLabelString = NSAttributedString(attachment: imageAttachment) .appending(string: " ") - .appending(string: "view_conversation_title_notify_for_mentions_only".localized()) + .appending(string: "notificationsMentionsOnly".localized()) labelInfos.append( SessionLabelCarouselView.LabelInfo( @@ -197,9 +197,9 @@ final class ConversationTitleView: UIView { case .legacyGroup, .group: labelInfos.append( SessionLabelCarouselView.LabelInfo( - attributedText: NSAttributedString( - string: "\(userCount) member\(userCount == 1 ? "" : "s")" - ), + attributedText: "members" + .putNumber(userCount) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.miniFontSize)), accessibility: nil, // TODO: Add accessibility type: .userCount ) @@ -208,9 +208,9 @@ final class ConversationTitleView: UIView { case .community: labelInfos.append( SessionLabelCarouselView.LabelInfo( - attributedText: NSAttributedString( - string: "\(userCount) active member\(userCount == 1 ? "" : "s")" - ), + attributedText: "membersActive" + .putNumber(userCount) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.miniFontSize)), accessibility: nil, // TODO: Add accessibility type: .userCount ) @@ -232,13 +232,12 @@ final class ConversationTitleView: UIView { SessionLabelCarouselView.LabelInfo( attributedText: NSAttributedString(attachment: imageAttachment) .appending(string: " ") - .appending(string: String( - format: (config.type == .disappearAfterRead ? - "DISAPPERING_MESSAGES_SUMMARY_READ".localized() : - "DISAPPERING_MESSAGES_SUMMARY_SEND".localized() - ), - floor(config.durationSeconds).formatted(format: .short) - )), + .appending( + string: (config.type ?? .unknown) + .localizedState( + durationString: floor(config.durationSeconds).formatted(format: .short) + ) + ), accessibility: Accessibility( identifier: "Disappearing messages type and time", label: "Disappearing messages type and time" diff --git a/Session/Conversations/Views & Modals/MessageRequestFooterView.swift b/Session/Conversations/Views & Modals/MessageRequestFooterView.swift index 80c94fa701..9ce29d2e68 100644 --- a/Session/Conversations/Views & Modals/MessageRequestFooterView.swift +++ b/Session/Conversations/Views & Modals/MessageRequestFooterView.swift @@ -2,6 +2,7 @@ import UIKit import SessionUIKit +import SessionUtilitiesKit class MessageRequestFooterView: UIView { private var onBlock: (() -> ())? @@ -61,7 +62,7 @@ class MessageRequestFooterView: UIView { result.translatesAutoresizingMaskIntoConstraints = false result.clipsToBounds = true result.titleLabel?.font = UIFont.boldSystemFont(ofSize: 16) - result.setTitle("TXT_BLOCK_USER_TITLE".localized(), for: .normal) + result.setTitle("deleteAfterGroupPR1BlockUser".localized(), for: .normal) result.setThemeTitleColor(.danger, for: .normal) result.addTarget(self, action: #selector(block), for: .touchUpInside) @@ -73,7 +74,7 @@ class MessageRequestFooterView: UIView { result.accessibilityLabel = "Accept message request" result.isAccessibilityElement = true result.translatesAutoresizingMaskIntoConstraints = false - result.setTitle("TXT_DELETE_ACCEPT".localized(), for: .normal) + result.setTitle("accept".localized(), for: .normal) result.addTarget(self, action: #selector(accept), for: .touchUpInside) return result @@ -84,7 +85,7 @@ class MessageRequestFooterView: UIView { result.accessibilityLabel = "Delete message request" result.isAccessibilityElement = true result.translatesAutoresizingMaskIntoConstraints = false - result.setTitle("TXT_DELETE_TITLE".localized(), for: .normal) + result.setTitle("decline".localized(), for: .normal) result.addTarget(self, action: #selector(decline), for: .touchUpInside) return result @@ -161,7 +162,7 @@ class MessageRequestFooterView: UIView { threadRequiresApproval ) self.descriptionLabel.text = (threadRequiresApproval ? - "MESSAGE_REQUEST_PENDING_APPROVAL_INFO".localized() : + "messageRequestPendingDescription".localized() : "messageRequestsAcceptDescription".localized() ) self.actionStackView.isHidden = threadRequiresApproval diff --git a/Session/Conversations/Views & Modals/ReactionListSheet.swift b/Session/Conversations/Views & Modals/ReactionListSheet.swift index 3ab37e2fa1..296fb1f0e4 100644 --- a/Session/Conversations/Views & Modals/ReactionListSheet.swift +++ b/Session/Conversations/Views & Modals/ReactionListSheet.swift @@ -83,7 +83,7 @@ final class ReactionListSheet: BaseVC { private lazy var clearAllButton: SessionButton = { let result: SessionButton = SessionButton(style: .destructiveBorderless, size: .small) result.translatesAutoresizingMaskIntoConstraints = false - result.setTitle("MESSAGE_REQUESTS_CLEAR_ALL".localized(), for: .normal) + result.setTitle("clearAll".localized(), for: .normal) result.addTarget(self, action: #selector(clearAllTapped), for: .touchUpInside) result.isHidden = true @@ -551,7 +551,7 @@ extension ReactionListSheet { emojiLabel.text = emoji numberLabel.text = (count < 1000 ? "\(count)" : - String(format: "%.1fk", Float(count) / 1000) + String(format: "%.1fk", Float(count) / 1000) // stringlint:disable ) snContentView.themeBorderColor = (isCurrentSelection ? .primary : .clear) } @@ -591,10 +591,10 @@ extension ReactionListSheet { } func update(moreReactorCount: Int, emoji: String) { - label.text = (moreReactorCount == 1 ? - String(format: "EMOJI_REACTS_MORE_REACTORS_ONE".localized(), "\(emoji)") : - String(format: "EMOJI_REACTS_MORE_REACTORS_MUTIPLE".localized(), "\(moreReactorCount)" ,"\(emoji)") - ) + label.text = "emojiReactsCountOthers" + .putNumber(moreReactorCount) + .put(key: "emoji", value: emoji) + .localized() } } } diff --git a/Session/Emoji/Emoji+Category.swift b/Session/Emoji/Emoji+Category.swift index ed3d9c6bc9..39233faa41 100644 --- a/Session/Emoji/Emoji+Category.swift +++ b/Session/Emoji/Emoji+Category.swift @@ -18,21 +18,21 @@ extension Emoji { var localizedName: String { switch self { case .smileysAndPeople: - return NSLocalizedString("EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME", comment: "The name for the emoji category 'Smileys & People'") + return NSLocalizedString("emojiCategorySmileys", comment: "The name for the emoji category 'Smileys & People'") case .animals: - return NSLocalizedString("EMOJI_CATEGORY_ANIMALS_NAME", comment: "The name for the emoji category 'Animals & Nature'") + return NSLocalizedString("emojiCategoryAnimals", comment: "The name for the emoji category 'Animals & Nature'") case .food: - return NSLocalizedString("EMOJI_CATEGORY_FOOD_NAME", comment: "The name for the emoji category 'Food & Drink'") + return NSLocalizedString("emojiCategoryFood", comment: "The name for the emoji category 'Food & Drink'") case .activities: - return NSLocalizedString("EMOJI_CATEGORY_ACTIVITIES_NAME", comment: "The name for the emoji category 'Activities'") + return NSLocalizedString("emojiCategoryActivities", comment: "The name for the emoji category 'Activities'") case .travel: - return NSLocalizedString("EMOJI_CATEGORY_TRAVEL_NAME", comment: "The name for the emoji category 'Travel & Places'") + return NSLocalizedString("emojiCategoryTravel", comment: "The name for the emoji category 'Travel & Places'") case .objects: - return NSLocalizedString("EMOJI_CATEGORY_OBJECTS_NAME", comment: "The name for the emoji category 'Objects'") + return NSLocalizedString("emojiCategoryObjects", comment: "The name for the emoji category 'Objects'") case .symbols: - return NSLocalizedString("EMOJI_CATEGORY_SYMBOLS_NAME", comment: "The name for the emoji category 'Symbols'") + return NSLocalizedString("emojiCategorySymbols", comment: "The name for the emoji category 'Symbols'") case .flags: - return NSLocalizedString("EMOJI_CATEGORY_FLAGS_NAME", comment: "The name for the emoji category 'Flags'") + return NSLocalizedString("emojiCategoryFlags", comment: "The name for the emoji category 'Flags'") } } diff --git a/Session/Home/GlobalSearch/EmptySearchResultCell.swift b/Session/Home/GlobalSearch/EmptySearchResultCell.swift index f605fbcc34..8633e9f67b 100644 --- a/Session/Home/GlobalSearch/EmptySearchResultCell.swift +++ b/Session/Home/GlobalSearch/EmptySearchResultCell.swift @@ -8,7 +8,7 @@ import NVActivityIndicatorView class EmptySearchResultCell: UITableViewCell { private lazy var messageLabel: UILabel = { let result = UILabel() - result.text = "CONVERSATION_SEARCH_NO_RESULTS".localized() + result.text = "searchMatchesNone".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.numberOfLines = 3 diff --git a/Session/Home/GlobalSearch/GlobalSearchViewController.swift b/Session/Home/GlobalSearch/GlobalSearchViewController.swift index a1292bee0a..b6d8d2e506 100644 --- a/Session/Home/GlobalSearch/GlobalSearchViewController.swift +++ b/Session/Home/GlobalSearch/GlobalSearchViewController.swift @@ -213,7 +213,7 @@ class GlobalSearchViewController: BaseVC, LibSessionRespondingViewController, UI // See more https://developer.apple.com/documentation/uikit/uisearchbar/1624283-showscancelbutton?language=objc if UIDevice.current.isIPad { let ipadCancelButton = UIButton() - ipadCancelButton.setTitle("Cancel", for: .normal) + ipadCancelButton.setTitle("cancel".localized(), for: .normal) ipadCancelButton.setThemeTitleColor(.textPrimary, for: .normal) ipadCancelButton.addTarget(self, action: #selector(cancel), for: .touchUpInside) searchBarContainer.addSubview(ipadCancelButton) @@ -462,13 +462,13 @@ extension GlobalSearchViewController { case .messages: guard !section.elements.isEmpty else { return UIView() } titleLabel.font = .boldSystemFont(ofSize: Values.largeFontSize) - titleLabel.text = "SEARCH_SECTION_MESSAGES".localized() + titleLabel.text = "messages".localized() break case .groupedContacts(let title): guard !section.elements.isEmpty else { return UIView() } if title.isEmpty { titleLabel.font = .boldSystemFont(ofSize: Values.largeFontSize) - titleLabel.text = "NEW_CONVERSATION_CONTACTS_SECTION_TITLE".localized() + titleLabel.text = "contactContacts".localized() } else { titleLabel.font = .systemFont(ofSize: Values.smallFontSize) titleLabel.text = title diff --git a/Session/Home/HomeVC.swift b/Session/Home/HomeVC.swift index 70f5c2fc3b..f9e5e732e5 100644 --- a/Session/Home/HomeVC.swift +++ b/Session/Home/HomeVC.swift @@ -51,12 +51,12 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS private lazy var seedReminderView: SeedReminderView = { let result = SeedReminderView() result.accessibilityLabel = "Recovery phrase reminder" - result.title = NSAttributedString(string: "onboarding_recovery_password_title".localized()) - result.subtitle = "onboarding_recovery_password_subtitle".localized() + result.title = NSAttributedString(string: "recoveryPasswordBannerTitle".localized()) + result.subtitle = "recoveryPasswordBannerDescription".localized() result.setProgress(1, animated: false) result.delegate = self result.isHidden = !self.viewModel.state.showViewedSeedBanner - + return result }() @@ -64,7 +64,7 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS let result: UILabel = UILabel() result.translatesAutoresizingMaskIntoConstraints = false result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "LOADING_CONVERSATIONS".localized() + result.text = "loading".localized() result.themeTextColor = .textSecondary result.textAlignment = .center result.numberOfLines = 0 @@ -92,11 +92,8 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS result.register(view: FullConversationCell.self) result.dataSource = self result.delegate = self - - if #available(iOS 15.0, *) { - result.sectionHeaderTopPadding = 0 - } - + result.sectionHeaderTopPadding = 0 + return result }() @@ -251,7 +248,10 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS let welcomeLabel = UILabel() welcomeLabel.font = .systemFont(ofSize: Values.smallFontSize) - welcomeLabel.text = "onboardingBubbleWelcomeToSession".localized() + welcomeLabel.text = "onboardingBubbleWelcomeToSession" + .put(key: "app_name", value: Constants.app_name) + .put(key: "emoji", value: "") + .localized() welcomeLabel.themeTextColor = .sessionButton_text welcomeLabel.textAlignment = .center @@ -750,7 +750,8 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS indexPath: indexPath, tableView: tableView, threadViewModel: threadViewModel, - viewController: self + viewController: self, + navigatableStateHolder: viewModel ) ) @@ -771,7 +772,8 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS indexPath: indexPath, tableView: tableView, threadViewModel: threadViewModel, - viewController: self + viewController: self, + navigatableStateHolder: viewModel ) ) @@ -800,7 +802,7 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS }() let destructiveAction: UIContextualAction.SwipeAction = { switch (threadViewModel.threadVariant, threadViewModel.threadIsNoteToSelf, threadViewModel.currentUserIsClosedGroupMember) { - case (.contact, true, _): return .hide + case (.contact, true, _): return .clear case (.legacyGroup, _, true), (.group, _, true), (.community, _, _): return .leave default: return .delete } @@ -817,7 +819,8 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS indexPath: indexPath, tableView: tableView, threadViewModel: threadViewModel, - viewController: self + viewController: self, + navigatableStateHolder: viewModel ) ) @@ -835,9 +838,9 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS } else { let targetViewController: UIViewController = ConfirmationModal( info: ConfirmationModal.Info( - title: "ALERT_ERROR_TITLE".localized(), - body: .text("LOAD_RECOVERY_PASSWORD_ERROR".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "theError".localized(), + body: .text("recoveryPasswordErrorLoad".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -897,7 +900,7 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS rootView: StartConversationScreen(), customizedNavigationBackground: .backgroundSecondary ) - viewController.setNavBarTitle("start_conversation_screen_title".localized()) + viewController.setNavBarTitle("conversationsStart".localized()) viewController.setUpDismissingButton(on: .right) let navigationController = StyledNavigationController(rootViewController: viewController) @@ -910,7 +913,11 @@ final class HomeVC: BaseVC, LibSessionRespondingViewController, UITableViewDataS func createNewDMFromDeepLink(sessionId: String) { let viewController: SessionHostingViewController = SessionHostingViewController(rootView: NewMessageScreen(accountId: sessionId)) - viewController.setNavBarTitle("vc_create_private_chat_title".localized()) + viewController.setNavBarTitle( + "messageNew" + .putNumber(1) + .localized() + ) let navigationController = StyledNavigationController(rootViewController: viewController) if UIDevice.current.isIPad { navigationController.modalPresentationStyle = .fullScreen diff --git a/Session/Home/HomeViewModel.swift b/Session/Home/HomeViewModel.swift index 47696560a4..92943a8c94 100644 --- a/Session/Home/HomeViewModel.swift +++ b/Session/Home/HomeViewModel.swift @@ -7,7 +7,9 @@ import SignalUtilitiesKit import SessionMessagingKit import SessionUtilitiesKit -public class HomeViewModel { +public class HomeViewModel: NavigatableStateHolder { + public let navigatableState: NavigatableState = NavigatableState() + public typealias SectionModel = ArraySection // MARK: - Section diff --git a/Session/Home/Message Requests/MessageRequestsViewModel.swift b/Session/Home/Message Requests/MessageRequestsViewModel.swift index 231bda97ed..95d96e1a15 100644 --- a/Session/Home/Message Requests/MessageRequestsViewModel.swift +++ b/Session/Home/Message Requests/MessageRequestsViewModel.swift @@ -132,9 +132,9 @@ class MessageRequestsViewModel: SessionTableViewModel, NavigatableStateHolder, O // MARK: - Content - public let title: String = "MESSAGE_REQUESTS_TITLE".localized() - public let initialLoadMessage: String? = "LOADING_CONVERSATIONS".localized() - public let emptyStateTextPublisher: AnyPublisher = Just("MESSAGE_REQUESTS_EMPTY_TEXT".localized()) + public let title: String = "sessionMessageRequests".localized() + public let initialLoadMessage: String? = "loading".localized() + public let emptyStateTextPublisher: AnyPublisher = Just("messageRequestsNonePending".localized()) .eraseToAnyPublisher() public let cellType: SessionTableViewCellType = .fullConversation public private(set) var pagedDataObserver: PagedDatabaseObserver? @@ -197,7 +197,7 @@ class MessageRequestsViewModel: SessionTableViewModel, NavigatableStateHolder, O return SessionButton.Info( style: .destructive, - title: "MESSAGE_REQUESTS_CLEAR_ALL".localized(), + title: "clearAll".localized(), isEnabled: !threadInfo.isEmpty, accessibility: Accessibility( identifier: "Clear all" @@ -205,11 +205,12 @@ class MessageRequestsViewModel: SessionTableViewModel, NavigatableStateHolder, O onTap: { [weak self] in let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE".localized(), + title: "clearAll".localized(), + body: .text("messageRequestsClearAllExplanation".localized()), accessibility: Accessibility( identifier: "Clear all" ), - confirmTitle: "MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON".localized(), + confirmTitle: "clear".localized(), confirmAccessibility: Accessibility( identifier: "Clear" ), @@ -275,7 +276,8 @@ class MessageRequestsViewModel: SessionTableViewModel, NavigatableStateHolder, O indexPath: indexPath, tableView: tableView, threadViewModel: threadViewModel, - viewController: viewController + viewController: viewController, + navigatableStateHolder: nil ) ) diff --git a/Session/Home/Message Requests/Views/MessageRequestsCell.swift b/Session/Home/Message Requests/Views/MessageRequestsCell.swift index 61feef7b31..58e5244441 100644 --- a/Session/Home/Message Requests/Views/MessageRequestsCell.swift +++ b/Session/Home/Message Requests/Views/MessageRequestsCell.swift @@ -5,8 +5,6 @@ import SessionUIKit import SignalUtilitiesKit class MessageRequestsCell: UITableViewCell { - static let reuseIdentifier = "MessageRequestsCell" - // MARK: - Initialization override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) { @@ -49,7 +47,7 @@ class MessageRequestsCell: UITableViewCell { result.setContentHuggingPriority(.defaultHigh, for: .horizontal) result.setContentCompressionResistancePriority(.defaultLow, for: .horizontal) result.font = .boldSystemFont(ofSize: Values.mediumFontSize) - result.text = "MESSAGE_REQUESTS_TITLE".localized() + result.text = "sessionMessageRequests".localized() result.themeTextColor = .textPrimary result.lineBreakMode = .byTruncatingTail diff --git a/Session/Home/New Conversation/InviteAFriendScreen.swift b/Session/Home/New Conversation/InviteAFriendScreen.swift index b3e7038393..fd2773d0ea 100644 --- a/Session/Home/New Conversation/InviteAFriendScreen.swift +++ b/Session/Home/New Conversation/InviteAFriendScreen.swift @@ -44,11 +44,15 @@ struct InviteAFriendScreen: View { .stroke(themeColor: .borderSeparator) ) - Text("invite_a_friend_explanation".localized()) - .font(.system(size: Values.verySmallFontSize)) - .multilineTextAlignment(.center) - .foregroundColor(themeColor: .textSecondary) - .padding(.horizontal, Values.smallSpacing) + Text( + "shareAccountIdDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() + ) + .font(.system(size: Values.verySmallFontSize)) + .multilineTextAlignment(.center) + .foregroundColor(themeColor: .textSecondary) + .padding(.horizontal, Values.smallSpacing) HStack( alignment: .center, diff --git a/Session/Home/New Conversation/NewMessageScreen.swift b/Session/Home/New Conversation/NewMessageScreen.swift index a7adc15b30..8dca8308c1 100644 --- a/Session/Home/New Conversation/NewMessageScreen.swift +++ b/Session/Home/New Conversation/NewMessageScreen.swift @@ -27,7 +27,7 @@ struct NewMessageScreen: View { tabIndex: $tabIndex, tabTitles: [ "accountIdEnter".localized(), - "vc_create_private_chat_scan_qr_code_tab_title".localized() + "qrScan".localized() ] ).frame(maxWidth: .infinity) @@ -97,7 +97,7 @@ struct NewMessageScreen: View { let message: String = { switch error { case SnodeAPIError.onsNotFound: - return "new_message_screen_error_msg_unrecognized_ons".localized() + return "onsErrorNotRecognized".localized() default: return "onsErrorUnableToSearch".localized() } @@ -148,17 +148,10 @@ struct EnterAccountIdScreen: View { ) ) { ZStack { - if #available(iOS 14.0, *) { - Text("\("new_message_screen_enter_account_id_explanation".localized())\(Image(systemName: "questionmark.circle"))") - .font(.system(size: Values.verySmallFontSize)) - .foregroundColor(themeColor: .textSecondary) - .multilineTextAlignment(.center) - } else { - Text("new_message_screen_enter_account_id_explanation".localized()) - .font(.system(size: Values.verySmallFontSize)) - .foregroundColor(themeColor: .textSecondary) - .multilineTextAlignment(.center) - } + Text("\("messageNewDescriptionMobile".localized())\(Image(systemName: "questionmark.circle"))") + .font(.system(size: Values.verySmallFontSize)) + .foregroundColor(themeColor: .textSecondary) + .multilineTextAlignment(.center) } .accessibility( Accessibility( diff --git a/Session/Home/New Conversation/StartConversationScreen.swift b/Session/Home/New Conversation/StartConversationScreen.swift index 5b73676f72..acc2774e47 100644 --- a/Session/Home/New Conversation/StartConversationScreen.swift +++ b/Session/Home/New Conversation/StartConversationScreen.swift @@ -19,12 +19,15 @@ struct StartConversationScreen: View { alignment: .center, spacing: 0 ) { + let title: String = "messageNew" + .putNumber(1) + .localized() NewConversationCell( image: "Message", - title: "vc_create_private_chat_title".localized() + title: title ) { let viewController: SessionHostingViewController = SessionHostingViewController(rootView: NewMessageScreen()) - viewController.setNavBarTitle("vc_create_private_chat_title".localized()) + viewController.setNavBarTitle(title) viewController.setUpDismissingButton(on: .right) self.host.controller?.navigationController?.pushViewController(viewController, animated: true) } @@ -41,7 +44,7 @@ struct StartConversationScreen: View { NewConversationCell( image: "Group", - title: "vc_create_closed_group_title".localized() + title: "groupCreate".localized() ) { let viewController = NewClosedGroupVC() self.host.controller?.navigationController?.pushViewController(viewController, animated: true) @@ -59,7 +62,7 @@ struct StartConversationScreen: View { NewConversationCell( image: "Globe", - title: "vc_join_public_chat_title".localized() + title: "communityJoin".localized() ) { let viewController = JoinOpenGroupVC() self.host.controller?.navigationController?.pushViewController(viewController, animated: true) @@ -77,10 +80,10 @@ struct StartConversationScreen: View { NewConversationCell( image: "icon_invite", - title: "vc_settings_invite_a_friend_button_title".localized() + title: "sessionInviteAFriend".localized() ) { let viewController: SessionHostingViewController = SessionHostingViewController(rootView: InviteAFriendScreen()) - viewController.setNavBarTitle("vc_settings_invite_a_friend_button_title".localized()) + viewController.setNavBarTitle("sessionInviteAFriend".localized()) viewController.setUpDismissingButton(on: .right) self.host.controller?.navigationController?.pushViewController(viewController, animated: true) } @@ -104,7 +107,7 @@ struct StartConversationScreen: View { QRCodeView( string: getUserHexEncodedPublicKey(), hasBackground: false, - logo: "SessionWhite40", + logo: "SessionWhite40", // stringlint:disable themeStyle: ThemeManager.currentTheme.interfaceStyle ) .aspectRatio(1, contentMode: .fit) diff --git a/Session/Media Viewing & Editing/AllMediaViewController.swift b/Session/Media Viewing & Editing/AllMediaViewController.swift index b7980ce331..fe38bc123b 100644 --- a/Session/Media Viewing & Editing/AllMediaViewController.swift +++ b/Session/Media Viewing & Editing/AllMediaViewController.swift @@ -17,12 +17,12 @@ public class AllMediaViewController: UIViewController, UIPageViewControllerDataS private lazy var tabBar: TabBar = { let result: TabBar = TabBar( tabs: [ - TabBar.Tab(title: MediaStrings.media) { [weak self] in + TabBar.Tab(title: "media".localized()) { [weak self] in guard let self = self else { return } self.pageVC.setViewControllers([ self.pages[0] ], direction: .forward, animated: false, completion: nil) self.updateSelectButton(updatedData: self.mediaTitleViewController.viewModel.galleryData, inBatchSelectMode: self.mediaTitleViewController.isInBatchSelectMode) }, - TabBar.Tab(title: MediaStrings.document) { [weak self] in + TabBar.Tab(title: "files".localized()) { [weak self] in guard let self = self else { return } self.pageVC.setViewControllers([ self.pages[1] ], direction: .forward, animated: false, completion: nil) self.endSelectMode() @@ -69,7 +69,7 @@ public class AllMediaViewController: UIViewController, UIPageViewControllerDataS ViewControllerUtilities.setUpDefaultSessionStyle( for: self, - title: MediaStrings.allMedia, + title: "conversationsSettingsAllMedia".localized(), hasCustomBackButton: false ) @@ -189,7 +189,7 @@ extension AllMediaViewController: MediaTileViewControllerDelegate { } else { self.navigationItem.rightBarButtonItem = UIBarButtonItem( - title: "BUTTON_SELECT".localized(), + title: "select".localized(), style: .plain, target: self, action: #selector(didTapSelect) diff --git a/Session/Media Viewing & Editing/CropScaleImageViewController.swift b/Session/Media Viewing & Editing/CropScaleImageViewController.swift index 9e311db732..80f3c1c74c 100644 --- a/Session/Media Viewing & Editing/CropScaleImageViewController.swift +++ b/Session/Media Viewing & Editing/CropScaleImageViewController.swift @@ -154,7 +154,7 @@ import SessionUtilitiesKit let titleLabel: UILabel = UILabel() titleLabel.font = .boldSystemFont(ofSize: Values.veryLargeFontSize) - titleLabel.text = "CROP_SCALE_IMAGE_VIEW_TITLE".localized() + titleLabel.text = "attachmentsMoveAndScale".localized() titleLabel.themeTextColor = .textPrimary titleLabel.textAlignment = .center contentView.addSubview(titleLabel) @@ -449,10 +449,10 @@ import SessionUtilitiesKit result.distribution = .fillEqually result.alignment = .fill - let cancelButton = createButton(title: CommonStrings.cancelButton, action: #selector(cancelPressed)) + let cancelButton = createButton(title: "cancel".localized(), action: #selector(cancelPressed)) result.addArrangedSubview(cancelButton) - let doneButton = createButton(title: CommonStrings.doneButton, action: #selector(donePressed)) + let doneButton = createButton(title: "done".localized(), action: #selector(donePressed)) doneButton.accessibilityLabel = "Done" result.addArrangedSubview(doneButton) diff --git a/Session/Media Viewing & Editing/DocumentTitleViewController.swift b/Session/Media Viewing & Editing/DocumentTitleViewController.swift index e3aadca1f8..9e197b8de9 100644 --- a/Session/Media Viewing & Editing/DocumentTitleViewController.swift +++ b/Session/Media Viewing & Editing/DocumentTitleViewController.swift @@ -63,11 +63,8 @@ public class DocumentTileViewController: UIViewController, UITableViewDelegate, result.dataSource = self // Feels a bit weird to have content smashed all the way to the bottom edge. result.contentInset = UIEdgeInsets(top: 0, left: 0, bottom: 20, right: 0) - - if #available(iOS 15.0, *) { - result.sectionHeaderTopPadding = 0 - } - + result.sectionHeaderTopPadding = 0 + return result }() @@ -84,7 +81,7 @@ public class DocumentTileViewController: UIViewController, UITableViewDelegate, ViewControllerUtilities.setUpDefaultSessionStyle( for: self, - title: MediaStrings.document, + title:"files".localized(), hasCustomBackButton: false ) @@ -302,9 +299,9 @@ public class DocumentTileViewController: UIViewController, UITableViewDelegate, headerView.configure( title: { switch section.model { - case .emptyGallery: return "DOCUMENT_TILES_EMPTY_DOCUMENT".localized() - case .loadOlder: return "DOCUMENT_TILES_LOADING_OLDER_LABEL".localized() - case .loadNewer: return "DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL".localized() + case .emptyGallery: return "attachmentsFilesEmpty".localized() + case .loadOlder: return "attachmentsLoadingOlderFiles".localized() + case .loadNewer: return "attachmentsLoadingNewerFiles".localized() case .galleryMonth: return "" // Impossible case } }() diff --git a/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift b/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift index ee4dcd3e93..6a0b88d9d2 100644 --- a/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift +++ b/Session/Media Viewing & Editing/GIFs/GifPickerViewController.swift @@ -97,7 +97,7 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect // Loki: Customize title let titleLabel: UILabel = UILabel() titleLabel.font = .boldSystemFont(ofSize: Values.veryLargeFontSize) - titleLabel.text = "accessibility_gif_button".localized().uppercased() + titleLabel.text = Constants.gif titleLabel.themeTextColor = .textPrimary navigationItem.titleView = titleLabel @@ -182,17 +182,17 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect logoImageView.set(.height, to: .height, of: bottomBanner, withOffset: -3) logoImageView.center(.horizontal, in: bottomBanner) - let noResultsView = createErrorLabel(text: "GIF_VIEW_SEARCH_NO_RESULTS".localized()) + let noResultsView = createErrorLabel(text: "searchMatchesNone".localized()) self.noResultsView = noResultsView self.view.addSubview(noResultsView) noResultsView.set(.width, to: .width, of: self.view, withOffset: -20) - noResultsView.center(.horizontal, in: self.collectionView) + noResultsView.center(in: self.collectionView) - let searchErrorView = createErrorLabel(text: "GIF_VIEW_SEARCH_ERROR".localized()) + let searchErrorView = createErrorLabel(text: "searchMatchesNone".localized()) self.searchErrorView = searchErrorView self.view.addSubview(searchErrorView) searchErrorView.set(.width, to: .width, of: self.view, withOffset: -20) - searchErrorView.center(.horizontal, in: self.collectionView) + searchErrorView.center(in: self.collectionView) searchErrorView.isUserInteractionEnabled = true searchErrorView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(retryTapped))) @@ -361,10 +361,10 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: "GIF_PICKER_FAILURE_ALERT_TITLE".localized(), + title: "errorUnknown".localized(), body: .text("\(error)"), - confirmTitle: CommonStrings.retryButton, - cancelTitle: CommonStrings.dismissButton, + confirmTitle: "retry".localized(), + cancelTitle: "dismiss".localized(), cancelStyle: .alert_text, onConfirm: { _ in self?.getFileForCell(cell) @@ -380,7 +380,6 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect return } - let filePath = asset.filePath let dataSource = DataSourcePath(filePath: asset.filePath, shouldDeleteOnDeinit: false) let attachment = SignalAttachment.attachment(dataSource: dataSource, dataUTI: rendition.utiType, imageQuality: .medium) @@ -448,9 +447,9 @@ class GifPickerViewController: OWSViewController, UISearchBarDelegate, UICollect let modal: ConfirmationModal = ConfirmationModal( targetView: self.view, info: ConfirmationModal.Info( - title: CommonStrings.errorAlertTitle, - body: .text("GIF_PICKER_VIEW_MISSING_QUERY".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "theError".localized(), + body: .text("searchEnter".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) diff --git a/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift b/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift index 0d7e93ba0d..f2bcff3a34 100644 --- a/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift +++ b/Session/Media Viewing & Editing/GIFs/GiphyAPI.swift @@ -11,17 +11,12 @@ enum GiphyFormat { case gif, mp4, jpg } -enum GiphyError: Error { +enum GiphyError: Error, CustomStringConvertible { case assertionError(description: String) case fetchFailure -} - -extension GiphyError: LocalizedError { - public var errorDescription: String? { - switch self { - case .assertionError: return "GIF_PICKER_ERROR_GENERIC".localized() - case .fetchFailure: return "GIF_PICKER_ERROR_FETCH_FAILURE".localized() - } + + var description: String { + return "errorUnknown".localized() } } diff --git a/Session/Media Viewing & Editing/GIFs/GiphyDownloader.swift b/Session/Media Viewing & Editing/GIFs/GiphyDownloader.swift index d215aab9b3..aff4814378 100644 --- a/Session/Media Viewing & Editing/GIFs/GiphyDownloader.swift +++ b/Session/Media Viewing & Editing/GIFs/GiphyDownloader.swift @@ -10,5 +10,5 @@ public class GiphyDownloader: ProxiedContentDownloader { // MARK: - Properties - public static let giphyDownloader = GiphyDownloader(downloadFolderName: "GIFs") + public static let giphyDownloader = GiphyDownloader(downloadFolderName: "GIFs") // stringlint:disable } diff --git a/Session/Media Viewing & Editing/ImagePickerController.swift b/Session/Media Viewing & Editing/ImagePickerController.swift index 12eab5a46b..1c4272013d 100644 --- a/Session/Media Viewing & Editing/ImagePickerController.swift +++ b/Session/Media Viewing & Editing/ImagePickerController.swift @@ -72,7 +72,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat // quickly toggle between the Capture and the Picker VC's, we use the same custom "X" // icon here rather than the system "stop" icon so that the spacing matches exactly. // Otherwise there's a noticable shift in the icon placement. - let cancelImage = UIImage(imageLiteralResourceName: "X") + let cancelImage = #imageLiteral(resourceName: "X") let cancelButton = UIBarButtonItem(image: cancelImage, style: .plain, target: self, action: #selector(didPressCancel)) cancelButton.themeTintColor = .textPrimary @@ -91,18 +91,14 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat self.selectionPanGesture = selectionPanGesture collectionView.addGestureRecognizer(selectionPanGesture) - if #available(iOS 14, *) { - if PHPhotoLibrary.authorizationStatus(for: .readWrite) == .limited { - let addSeletedPhotoButton = UIBarButtonItem.init(barButtonSystemItem: .add, target: self, action: #selector(addSelectedPhoto)) - self.navigationItem.rightBarButtonItem = addSeletedPhotoButton - } + if PHPhotoLibrary.authorizationStatus(for: .readWrite) == .limited { + let addSeletedPhotoButton = UIBarButtonItem.init(barButtonSystemItem: .add, target: self, action: #selector(addSelectedPhoto)) + self.navigationItem.rightBarButtonItem = addSeletedPhotoButton } } @objc func addSelectedPhoto(_ sender: Any) { - if #available(iOS 14, *) { - PHPhotoLibrary.shared().presentLimitedLibraryPicker(from: self) - } + PHPhotoLibrary.shared().presentLimitedLibraryPicker(from: self) } var selectionPanGesture: UIPanGestureRecognizer? @@ -377,10 +373,7 @@ class ImagePickerGridController: UICollectionViewController, PhotoLibraryDelegat return } - let toastFormat = NSLocalizedString("IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT", - comment: "Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared.") - - let toastText = String(format: toastFormat, NSNumber(value: SignalAttachment.maxAttachmentsAllowed)) + let toastText = "attachmentsErrorNumber".localized() let toastController = ToastController(text: toastText, background: .backgroundPrimary) diff --git a/Session/Media Viewing & Editing/MediaGalleryViewModel.swift b/Session/Media Viewing & Editing/MediaGalleryViewModel.swift index 8f6baedfae..787de54c49 100644 --- a/Session/Media Viewing & Editing/MediaGalleryViewModel.swift +++ b/Session/Media Viewing & Editing/MediaGalleryViewModel.swift @@ -174,7 +174,7 @@ public class MediaGalleryViewModel { let galleryDate: Date = (self.date ?? Date()) switch (isSameMonth, isCurrentYear) { - case (true, true): return "MEDIA_GALLERY_THIS_MONTH_HEADER".localized() + case (true, true): return "attachmentsThisMonth".localized() case (false, true): return GalleryDate.thisYearFormatter.string(from: galleryDate) default: return GalleryDate.olderFormatter.string(from: galleryDate) } diff --git a/Session/Media Viewing & Editing/MediaInfoVC+MediaPreviewView.swift b/Session/Media Viewing & Editing/MediaInfoVC+MediaPreviewView.swift deleted file mode 100644 index c1ccd4861f..0000000000 --- a/Session/Media Viewing & Editing/MediaInfoVC+MediaPreviewView.swift +++ /dev/null @@ -1,64 +0,0 @@ -// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved. - -import UIKit -import SessionUIKit -import SessionUtilitiesKit -import SessionMessagingKit - -extension MediaInfoVC { - final class MediaPreviewView: UIView { - private static let cornerRadius: CGFloat = 8 - - private let attachment: Attachment - private let isOutgoing: Bool - - // MARK: - UI - - private lazy var mediaView: MediaView = { - let result: MediaView = MediaView.init( - attachment: attachment, - isOutgoing: isOutgoing, - shouldSupressControls: false, - cornerRadius: 0 - ) - - return result - }() - - // MARK: - Lifecycle - - init(attachment: Attachment, isOutgoing: Bool) { - self.attachment = attachment - self.isOutgoing = isOutgoing - - super.init(frame: CGRect.zero) - self.accessibilityLabel = "Media info" - setUpViewHierarchy() - } - - override init(frame: CGRect) { - preconditionFailure("Use init(attachment:) instead.") - } - - required init?(coder: NSCoder) { - preconditionFailure("Use init(attachment:) instead.") - } - - private func setUpViewHierarchy() { - set(.width, to: MediaInfoVC.mediaSize) - set(.height, to: MediaInfoVC.mediaSize) - - addSubview(mediaView) - mediaView.pin(to: self) - - mediaView.loadMedia() - } - - // MARK: - Copy - - /// This function is used to make sure the carousel view contains this class can loop infinitely - func copyView() -> MediaPreviewView { - return MediaPreviewView(attachment: self.attachment, isOutgoing: self.isOutgoing) - } - } -} diff --git a/Session/Media Viewing & Editing/MediaPageViewController.swift b/Session/Media Viewing & Editing/MediaPageViewController.swift index cbb129810c..f5078835d2 100644 --- a/Session/Media Viewing & Editing/MediaPageViewController.swift +++ b/Session/Media Viewing & Editing/MediaPageViewController.swift @@ -132,7 +132,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou self.navigationItem.titleView = portraitHeaderView if showAllMediaButton { - self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: MediaStrings.allMedia, style: .plain, target: self, action: #selector(didPressAllMediaButton)) + self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "conversationsSettingsAllMedia".localized(), style: .plain, target: self, action: #selector(didPressAllMediaButton)) } // Even though bars are opaque, we want content to be layed out behind them. @@ -571,7 +571,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou let itemToDelete: MediaGalleryViewModel.Item = self.currentItem let actionSheet: UIAlertController = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) let deleteAction = UIAlertAction( - title: "delete_message_for_me".localized(), + title: "clearMessagesForMe".localized(), style: .destructive ) { _ in Storage.shared.writeAsync { db in @@ -598,7 +598,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou .deleteAll(db) } } - actionSheet.addAction(UIAlertAction(title: "TXT_CANCEL_TITLE".localized(), style: .cancel)) + actionSheet.addAction(UIAlertAction(title: "cancel".localized(), style: .cancel)) actionSheet.addAction(deleteAction) Modal.setupForIPadIfNeeded(actionSheet, targetView: self.view) @@ -877,7 +877,7 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou .defaulting(to: Profile.truncated(id: targetItem.interactionAuthorId, truncating: .middle)) case .standardOutgoing: - return "MEDIA_GALLERY_SENDER_NAME_YOU".localized() //"Short sender label for media sent by you" + return "you".localized() //"Short sender label for media sent by you" default: Log.error("[MediaPageViewController] Unsupported message variant: \(targetItem.interactionVariant)") @@ -892,8 +892,10 @@ class MediaPageViewController: UIPageViewController, UIPageViewControllerDataSou let formattedDate = dateFormatter.string(from: date) portraitHeaderDateLabel.text = formattedDate - let landscapeHeaderFormat = NSLocalizedString("MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT", comment: "embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29'") - let landscapeHeaderText = String(format: landscapeHeaderFormat, name, formattedDate) + let landscapeHeaderText = "attachmentsMedia" + .put(key: "name", value: name) + .put(key: "date_time", value: formattedDate) + .localized() self.title = landscapeHeaderText self.navigationItem.title = landscapeHeaderText } diff --git a/Session/Media Viewing & Editing/MediaTileViewController.swift b/Session/Media Viewing & Editing/MediaTileViewController.swift index 0c8dc7b4e2..c25ac30e64 100644 --- a/Session/Media Viewing & Editing/MediaTileViewController.swift +++ b/Session/Media Viewing & Editing/MediaTileViewController.swift @@ -132,7 +132,7 @@ public class MediaTileViewController: UIViewController, UICollectionViewDataSour ViewControllerUtilities.setUpDefaultSessionStyle( for: self, - title: MediaStrings.allMedia, + title: "conversationsSettingsAllMedia".localized(), hasCustomBackButton: false ) @@ -426,9 +426,9 @@ public class MediaTileViewController: UIViewController, UICollectionViewDataSour sectionHeader.configure( title: { switch section.model { - case .emptyGallery: return "GALLERY_TILES_EMPTY_GALLERY".localized() - case .loadOlder: return "GALLERY_TILES_LOADING_OLDER_LABEL".localized() - case .loadNewer: return "GALLERY_TILES_LOADING_MORE_RECENT_LABEL".localized() + case .emptyGallery: return "attachmentsMediaEmpty".localized() + case .loadOlder: return "attachmentsLoadingOlder".localized() + case .loadNewer: return "attachmentsLoadingNewer".localized() case .galleryMonth: return "" // Impossible case } }() @@ -680,16 +680,9 @@ public class MediaTileViewController: UIViewController, UICollectionViewDataSour let items: [MediaGalleryViewModel.Item] = indexPaths.map { self.viewModel.galleryData[$0.section].elements[$0.item] } - let confirmationTitle: String = { - if indexPaths.count == 1 { - return "MEDIA_GALLERY_DELETE_SINGLE_MESSAGE".localized() - } - - return String( - format: "MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT".localized(), - indexPaths.count - ) - }() + let confirmationTitle: String = "deleteMessage" + .putNumber(indexPaths.count) + .localized() let deleteAction = UIAlertAction(title: confirmationTitle, style: .destructive) { [weak self] _ in Storage.shared.writeAsync { db in @@ -725,7 +718,7 @@ public class MediaTileViewController: UIViewController, UICollectionViewDataSour let actionSheet = UIAlertController(title: nil, message: nil, preferredStyle: .actionSheet) actionSheet.addAction(deleteAction) - actionSheet.addAction(UIAlertAction(title: "TXT_CANCEL_TITLE".localized(), style: .cancel)) + actionSheet.addAction(UIAlertAction(title: "cancel".localized(), style: .cancel)) Modal.setupForIPadIfNeeded(actionSheet, targetView: self.view) self.present(actionSheet, animated: true) @@ -759,9 +752,6 @@ private class MediaTileViewLayout: UICollectionViewFlowLayout { } private class MediaGallerySectionHeader: UICollectionReusableView { - - static let reuseIdentifier = "MediaGallerySectionHeader" - // HACK: scrollbar incorrectly appears *behind* section headers // in collection view on iOS11 =( private class AlwaysOnTopLayer: CALayer { @@ -817,9 +807,6 @@ private class MediaGallerySectionHeader: UICollectionReusableView { } private class MediaGalleryStaticHeader: UICollectionViewCell { - - static let reuseIdentifier = "MediaGalleryStaticHeader" - let label = UILabel() override init(frame: CGRect) { diff --git a/Session/Media Viewing & Editing/MessageInfoScreen.swift b/Session/Media Viewing & Editing/MessageInfoScreen.swift index 62d2829e5d..73d57266d5 100644 --- a/Session/Media Viewing & Editing/MessageInfoScreen.swift +++ b/Session/Media Viewing & Editing/MessageInfoScreen.swift @@ -52,7 +52,8 @@ struct MessageInfoScreen: View { if isMessageFailed { let (image, statusText, tintColor) = messageViewModel.state.statusIconInfo( variant: messageViewModel.variant, - hasAtLeastOneReadReceipt: messageViewModel.hasAtLeastOneReadReceipt + hasAtLeastOneReadReceipt: messageViewModel.hasAtLeastOneReadReceipt, + hasAttachments: (messageViewModel.attachments?.isEmpty == false) ) HStack(spacing: 6) { @@ -135,7 +136,7 @@ struct MessageInfoScreen: View { alignment: .leading, spacing: Values.mediumSpacing ) { - InfoBlock(title: "ATTACHMENT_INFO_FILE_ID".localized() + ":") { + InfoBlock(title: "attachmentsFileId".localized()) { Text(attachment.serverId ?? "") .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) @@ -144,7 +145,7 @@ struct MessageInfoScreen: View { HStack( alignment: .center ) { - InfoBlock(title: "ATTACHMENT_INFO_FILE_TYPE".localized() + ":") { + InfoBlock(title: "attachmentsFileType".localized()) { Text(attachment.contentType) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) @@ -152,7 +153,7 @@ struct MessageInfoScreen: View { Spacer() - InfoBlock(title: "ATTACHMENT_INFO_FILE_SIZE".localized() + ":") { + InfoBlock(title: "attachmentsFileSize".localized()) { Text(Format.fileSize(attachment.byteCount)) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) @@ -167,7 +168,7 @@ struct MessageInfoScreen: View { guard let width = attachment.width, let height = attachment.height else { return "attachmentsNa".localized() } return "\(width)×\(height)" }() - InfoBlock(title: "ATTACHMENT_INFO_RESOLUTION".localized() + ":") { + InfoBlock(title: "attachmentsResolution".localized()) { Text(resolution) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) @@ -179,7 +180,7 @@ struct MessageInfoScreen: View { guard let duration = attachment.duration else { return "attachmentsNa".localized() } return floor(duration).formatted(format: .videoDuration) }() - InfoBlock(title: "ATTACHMENT_INFO_DURATION".localized() + ":") { + InfoBlock(title: "attachmentsDuration".localized()) { Text(duration) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) @@ -209,28 +210,28 @@ struct MessageInfoScreen: View { alignment: .leading, spacing: Values.mediumSpacing ) { - InfoBlock(title: "MESSAGE_INFO_SENT".localized() + ":") { + InfoBlock(title: "sent".localized()) { Text(messageViewModel.dateForUI.fromattedForMessageInfo) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) } - InfoBlock(title: "MESSAGE_INFO_RECEIVED".localized() + ":") { + InfoBlock(title: "received".localized()) { Text(messageViewModel.receivedDateForUI.fromattedForMessageInfo) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .textPrimary) } if isMessageFailed { - let failureText: String = messageViewModel.mostRecentFailureText ?? "SEND_FAILED_NOTIFICATION_BODY".localized() - InfoBlock(title: "ALERT_ERROR_TITLE".localized() + ":") { + let failureText: String = messageViewModel.mostRecentFailureText ?? "messageStatusFailedToSend".localized() + InfoBlock(title: "theError".localized() + ":") { Text(failureText) .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .danger) } } - InfoBlock(title: "MESSAGE_INFO_FROM".localized() + ":") { + InfoBlock(title: "from".localized()) { HStack( spacing: 10 ) { @@ -549,7 +550,7 @@ final class MessageInfoViewController: SessionHostingViewController Void)? - - var body: some View { - NavigationView { - ZStack (alignment: .topLeading) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } - - ScrollView(.vertical, showsIndicators: false) { - VStack( - alignment: .leading, - spacing: 10 - ) { - // Message bubble snapshot - if let body: String = messageViewModel.body, !body.isEmpty { - let (bubbleBackgroundColor, bubbleTextColor): (ThemeValue, ThemeValue) = ( - messageViewModel.variant == .standardIncoming || - messageViewModel.variant == .standardIncomingDeleted - ) ? - (.messageBubble_incomingBackground, .messageBubble_incomingText) : - (.messageBubble_outgoingBackground, .messageBubble_outgoingText) - - ZStack { - RoundedRectangle(cornerRadius: 18) - .fill(themeColor: bubbleBackgroundColor) - - Text(body) - .foregroundColor(themeColor: bubbleTextColor) - .padding( - EdgeInsets( - top: 8, - leading: 16, - bottom: 8, - trailing: 16 - ) - ) - } - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - .fixedSize(horizontal: true, vertical: true) - .padding( - EdgeInsets( - top: 8, - leading: 30, - bottom: 4, - trailing: 30 - ) - ) - } - - if isMessageFailed { - let (image, statusText, tintColor) = messageViewModel.state.statusIconInfo( - variant: messageViewModel.variant, - hasAtLeastOneReadReceipt: messageViewModel.hasAtLeastOneReadReceipt - ) - - HStack(spacing: 6) { - if let image: UIImage = image?.withRenderingMode(.alwaysTemplate) { - Image(uiImage: image) - .resizable() - .scaledToFit() - .foregroundColor(themeColor: tintColor) - .frame(width: 13, height: 12) - } - - if let statusText: String = statusText { - Text(statusText) - .font(.system(size: 11)) - .foregroundColor(themeColor: tintColor) - } - } - .padding( - EdgeInsets( - top: -8, - leading: 30, - bottom: 4, - trailing: 30 - ) - ) - } - - if let attachments = messageViewModel.attachments { - let attachment: Attachment = attachments[(index - 1 + attachments.count) % attachments.count] - - ZStack(alignment: .bottomTrailing) { - if attachments.count > 1 { - // Attachment carousel view - SessionCarouselView_SwiftUI( - index: $index, - isOutgoing: (messageViewModel.variant == .standardOutgoing), - contentInfos: attachments - ) - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - } else { - MediaView_SwiftUI( - attachment: attachments[0], - isOutgoing: (messageViewModel.variant == .standardOutgoing), - shouldSupressControls: true, - cornerRadius: 0 - ) - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - .aspectRatio(1, contentMode: .fit) - .clipShape(RoundedRectangle(cornerRadius: 15)) - .padding( - EdgeInsets( - top: 0, - leading: 30, - bottom: 0, - trailing: 30 - ) - ) - } - - Button { - self.viewControllerHolder?.present(style: .fullScreen) { - MediaGalleryViewModel.createDetailViewSwiftUI( - for: messageViewModel.threadId, - threadVariant: messageViewModel.threadVariant, - interactionId: messageViewModel.id, - selectedAttachmentId: attachment.id, - options: [ .sliderEnabled ] - ) - } - } label: { - ZStack { - Circle() - .foregroundColor(.init(white: 0, opacity: 0.4)) - Image(systemName: "arrow.up.left.and.arrow.down.right") - .font(.system(size: 13)) - .foregroundColor(.white) - } - .frame(width: 26, height: 26) - } - .padding( - EdgeInsets( - top: 0, - leading: 0, - bottom: 8, - trailing: 38 - ) - ) - } - .padding( - EdgeInsets( - top: 4, - leading: 0, - bottom: 4, - trailing: 0 - ) - ) - - // Attachment Info - ZStack { - RoundedRectangle(cornerRadius: 17) - .fill(themeColor: .backgroundSecondary) - - VStack( - alignment: .leading, - spacing: 16 - ) { - InfoBlock(title: "ATTACHMENT_INFO_FILE_ID".localized() + ":") { - Text(attachment.serverId ?? "") - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - HStack( - alignment: .center - ) { - InfoBlock(title: "ATTACHMENT_INFO_FILE_TYPE".localized() + ":") { - Text(attachment.contentType) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - Spacer() - - InfoBlock(title: "ATTACHMENT_INFO_FILE_SIZE".localized() + ":") { - Text(Format.fileSize(attachment.byteCount)) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - Spacer() - } - HStack( - alignment: .center - ) { - let resolution: String = { - guard let width = attachment.width, let height = attachment.height else { return "N/A" } - return "\(width)×\(height)" - }() - InfoBlock(title: "ATTACHMENT_INFO_RESOLUTION".localized() + ":") { - Text(resolution) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - Spacer() - - let duration: String = { - guard let duration = attachment.duration else { return "N/A" } - return floor(duration).formatted(format: .videoDuration) - }() - InfoBlock(title: "ATTACHMENT_INFO_DURATION".localized() + ":") { - Text(duration) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - Spacer() - } - } - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - .padding( - EdgeInsets( - top: 24, - leading: 24, - bottom: 24, - trailing: 24 - ) - ) - } - .frame(maxHeight: .infinity) - .fixedSize(horizontal: false, vertical: true) - .padding( - EdgeInsets( - top: 4, - leading: 30, - bottom: 4, - trailing: 30 - ) - ) - } - - // Message Info - ZStack { - RoundedRectangle(cornerRadius: 17) - .fill(themeColor: .backgroundSecondary) - - VStack( - alignment: .leading, - spacing: 16 - ) { - InfoBlock(title: "MESSAGE_INFO_SENT".localized() + ":") { - Text(messageViewModel.dateForUI.fromattedForMessageInfo) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - InfoBlock(title: "MESSAGE_INFO_RECEIVED".localized() + ":") { - Text(messageViewModel.receivedDateForUI.fromattedForMessageInfo) - .font(.system(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - - if isMessageFailed { - let failureText: String = messageViewModel.mostRecentFailureText ?? "Message failed to send" - InfoBlock(title: "ALERT_ERROR_TITLE".localized() + ":") { - Text(failureText) - .font(.system(size: 16)) - .foregroundColor(themeColor: .danger) - } - } - - InfoBlock(title: "MESSAGE_INFO_FROM".localized() + ":") { - HStack( - spacing: 10 - ) { - let (info, additionalInfo) = ProfilePictureView.getProfilePictureInfo( - size: .message, - publicKey: messageViewModel.authorId, - threadVariant: .contact, // Always show the display picture in 'contact' mode - customImageData: nil, - profile: messageViewModel.profile, - profileIcon: (messageViewModel.isSenderOpenGroupModerator ? .crown : .none) - ) - - let size: ProfilePictureView.Size = .list - - if let info: ProfilePictureView.Info = info { - ProfilePictureSwiftUI( - size: size, - info: info, - additionalInfo: additionalInfo - ) - .frame( - width: size.viewSize, - height: size.viewSize, - alignment: .topLeading - ) - } - - VStack( - alignment: .leading, - spacing: 4 - ) { - if !messageViewModel.authorName.isEmpty { - Text(messageViewModel.authorName) - .bold() - .font(.system(size: 18)) - .foregroundColor(themeColor: .textPrimary) - } - Text(messageViewModel.authorId) - .font(.spaceMono(size: 16)) - .foregroundColor(themeColor: .textPrimary) - } - } - } - } - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - .padding( - EdgeInsets( - top: 24, - leading: 24, - bottom: 24, - trailing: 24 - ) - ) - } - .frame(maxHeight: .infinity) - .fixedSize(horizontal: false, vertical: true) - .padding( - EdgeInsets( - top: 4, - leading: 30, - bottom: 4, - trailing: 30 - ) - ) - - // Actions - if !actions.isEmpty { - ZStack { - RoundedRectangle(cornerRadius: 17) - .fill(themeColor: .backgroundSecondary) - - VStack( - alignment: .leading, - spacing: 0 - ) { - ForEach( - 0...(actions.count - 1), - id: \.self - ) { index in - let tintColor: ThemeValue = actions[index].themeColor - Button( - action: { - actions[index].work() - dismiss?() - }, - label: { - HStack(spacing: 24) { - Image(uiImage: actions[index].icon!.withRenderingMode(.alwaysTemplate)) - .resizable() - .scaledToFit() - .foregroundColor(themeColor: tintColor) - .frame(width: 26, height: 26) - Text(actions[index].title) - .bold() - .font(.system(size: 18)) - .foregroundColor(themeColor: tintColor) - } - .frame(maxWidth: .infinity, alignment: .topLeading) - } - ) - .frame(height: 60) - - if index < (actions.count - 1) { - Divider() - .foregroundColor(themeColor: .borderSeparator) - } - } - } - .frame( - maxWidth: .infinity, - maxHeight: .infinity, - alignment: .topLeading - ) - .padding( - EdgeInsets( - top: 0, - leading: 24, - bottom: 0, - trailing: 24 - ) - ) - } - .frame(maxHeight: .infinity) - .fixedSize(horizontal: false, vertical: true) - .padding( - EdgeInsets( - top: 4, - leading: 30, - bottom: 4, - trailing: 30 - ) - ) - } - } - } - } - } - } -} - -struct InfoBlock: View where Content: View { - let title: String - let content: () -> Content - - var body: some View { - VStack( - alignment: .leading, - spacing: 4 - ) { - Text(self.title) - .bold() - .font(.system(size: 18)) - .foregroundColor(themeColor: .textPrimary) - self.content() - } - .frame( - minWidth: 100, - alignment: .leading - ) - } -} - -final class MessageInfoViewController: SessionHostingViewController { - init(actions: [ContextMenuVC.Action], messageViewModel: MessageViewModel) { - let messageInfoView = MessageInfoView( - actions: actions, - messageViewModel: messageViewModel - ) - - super.init(rootView: messageInfoView) - rootView.content.dismiss = dismiss - } - - @MainActor required dynamic init?(coder aDecoder: NSCoder) { - fatalError("init(coder:) has not been implemented") - } - - override func viewDidLoad() { - super.viewDidLoad() - - let customTitleFontSize = Values.largeFontSize - setNavBarTitle("message_info_title".localized(), customFontSize: customTitleFontSize) - } - - func dismiss() { - self.navigationController?.popViewController(animated: true) - } -} - -struct MessageInfoView_Previews: PreviewProvider { - static var messageViewModel: MessageViewModel { - let result = MessageViewModel( - optimisticMessageId: UUID(), - threadId: "d4f1g54sdf5g1d5f4g65ds4564df65f4g65d54gdfsg", - threadVariant: .contact, - threadExpirationType: nil, - threadExpirationTimer: nil, - threadOpenGroupServer: nil, - threadOpenGroupPublicKey: nil, - threadContactNameInternal: "Test", - timestampMs: SnodeAPI.currentOffsetTimestampMs(), - receivedAtTimestampMs: SnodeAPI.currentOffsetTimestampMs(), - authorId: "d4f1g54sdf5g1d5f4g65ds4564df65f4g65d54gdfsg", - authorNameInternal: "Test", - body: "Test Message", - expiresStartedAtMs: nil, - expiresInSeconds: nil, - state: .failed, - isSenderOpenGroupModerator: false, - currentUserProfile: Profile.fetchOrCreateCurrentUser(), - quote: nil, - quoteAttachment: nil, - linkPreview: nil, - linkPreviewAttachment: nil, - attachments: nil - ) - - return result - } - - static var actions: [ContextMenuVC.Action] { - return [ - .reply(messageViewModel, nil, using: Dependencies()), - .retry(messageViewModel, nil, using: Dependencies()), - .delete(messageViewModel, nil, using: Dependencies()) - ] - } - - static var previews: some View { - MessageInfoView( - actions: actions, - messageViewModel: messageViewModel - ) - } -} diff --git a/Session/Media Viewing & Editing/PhotoCaptureViewController.swift b/Session/Media Viewing & Editing/PhotoCaptureViewController.swift index a6de5d0215..dbe1ebe64d 100644 --- a/Session/Media Viewing & Editing/PhotoCaptureViewController.swift +++ b/Session/Media Viewing & Editing/PhotoCaptureViewController.swift @@ -16,16 +16,9 @@ enum PhotoCaptureError: Error, CustomStringConvertible { case assertionError(description: String) case initializationFailed case captureFailed - - var description: String { - switch self { - case .initializationFailed: - return NSLocalizedString("PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA", comment: "alert title") - case .captureFailed: - return NSLocalizedString("PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE", comment: "alert title") - case .assertionError: - return NSLocalizedString("PHOTO_CAPTURE_GENERIC_ERROR", comment: "alert title, generic error preventing user from capturing a photo") - } + + public var description: String { + return "cameraErrorUnavailable".localized() } } @@ -329,9 +322,9 @@ class PhotoCaptureViewController: OWSViewController { Log.error("[PhotoCaptureViewController] Error: \(error)") let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: CommonStrings.errorAlertTitle, + title: "theError".localized(), body: .text("\(error)"), - cancelTitle: CommonStrings.dismissButton, + cancelTitle: "dismiss".localized(), cancelStyle: .alert_text, afterClosed: { [weak self] in self?.dismiss(animated: true) } ) @@ -344,11 +337,11 @@ class PhotoCaptureViewController: OWSViewController { let imageName: String switch photoCapture.flashMode { case .auto: - imageName = "ic_flash_mode_auto" + imageName = "ic_flash_mode_auto" // stringlint:disable case .on: - imageName = "ic_flash_mode_on" + imageName = "ic_flash_mode_on" // stringlint:disable case .off: - imageName = "ic_flash_mode_off" + imageName = "ic_flash_mode_off" // stringlint:disable default: preconditionFailure() } @@ -653,7 +646,7 @@ class RecordingTimerView: UIView { private lazy var timeFormatter: DateFormatter = { let formatter = DateFormatter() formatter.dateFormat = "mm:ss" - formatter.timeZone = TimeZone(identifier: "UTC")! + formatter.timeZone = TimeZone(identifier: "UTC")! // stringlint:disable return formatter }() diff --git a/Session/Media Viewing & Editing/PhotoCollectionPickerViewModel.swift b/Session/Media Viewing & Editing/PhotoCollectionPickerViewModel.swift index e5c461e5b8..9cb4b787d9 100644 --- a/Session/Media Viewing & Editing/PhotoCollectionPickerViewModel.swift +++ b/Session/Media Viewing & Editing/PhotoCollectionPickerViewModel.swift @@ -40,7 +40,7 @@ class PhotoCollectionPickerViewModel: SessionTableViewModel, ObservableTableSour // MARK: - Content - let title: String = "NOTIFICATIONS_STYLE_SOUND_TITLE".localized() + let title: String = "notificationsSound".localized() lazy var observation: TargetObservation = ObservationBuilder .subject(photoCollections) diff --git a/Session/Media Viewing & Editing/PhotoLibrary.swift b/Session/Media Viewing & Editing/PhotoLibrary.swift index a7246013d7..7834c498cc 100644 --- a/Session/Media Viewing & Editing/PhotoLibrary.swift +++ b/Session/Media Viewing & Editing/PhotoLibrary.swift @@ -185,7 +185,7 @@ class PhotoCollectionContents { exportSession.outputFileType = AVFileType.mp4 exportSession.metadataItemFilter = AVMetadataItemFilter.forSharing() - let exportPath = FileSystem.temporaryFilePath(fileExtension: "mp4") + let exportPath = FileSystem.temporaryFilePath(fileExtension: "mp4") // stringlint:disable let exportURL = URL(fileURLWithPath: exportPath) exportSession.outputURL = exportURL @@ -250,7 +250,7 @@ class PhotoCollection { func localizedTitle() -> String { guard let localizedTitle = collection.localizedTitle?.stripped, localizedTitle.count > 0 else { - return NSLocalizedString("PHOTO_PICKER_UNNAMED_COLLECTION", comment: "label for system photo collections which have no name.") + return "attachmentsAlbumUnnamed".localized() } return localizedTitle } diff --git a/Session/Media Viewing & Editing/SendMediaNavigationController.swift b/Session/Media Viewing & Editing/SendMediaNavigationController.swift index 897c791480..61c567a47a 100644 --- a/Session/Media Viewing & Editing/SendMediaNavigationController.swift +++ b/Session/Media Viewing & Editing/SendMediaNavigationController.swift @@ -249,23 +249,7 @@ class SendMediaNavigationController: UINavigationController { } private func didRequestExit() { - guard attachmentDraftCollection.count > 0 else { - self.sendMediaNavDelegate?.sendMediaNavDidCancel(self) - return - } - - let modal: ConfirmationModal = ConfirmationModal( - info: ConfirmationModal.Info( - title: "SEND_MEDIA_ABANDON_TITLE".localized(), - confirmTitle: "SEND_MEDIA_CONFIRM_ABANDON_ALBUM".localized(), - confirmStyle: .danger, - cancelStyle: .alert_text, - onConfirm: { [weak self] _ in - self?.sendMediaNavDelegate?.sendMediaNavDidCancel(self) - } - ) - ) - self.present(modal, animated: true) + self.sendMediaNavDelegate?.sendMediaNavDidCancel(self) } } @@ -309,8 +293,8 @@ extension SendMediaNavigationController: PhotoCaptureViewControllerDelegate { if !pushApprovalViewController() { let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "attachmentsErrorMediaSelection".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -361,8 +345,8 @@ extension SendMediaNavigationController: ImagePickerGridControllerDelegate { let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: "IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "attachmentsErrorMediaSelection".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -378,8 +362,8 @@ extension SendMediaNavigationController: ImagePickerGridControllerDelegate { guard self?.pushApprovalViewController() == true else { let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "attachmentsErrorMediaSelection".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -429,8 +413,8 @@ extension SendMediaNavigationController: ImagePickerGridControllerDelegate { let modal: ConfirmationModal = ConfirmationModal( targetView: self.view, info: ConfirmationModal.Info( - title: "IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "attachmentsErrorMediaSelection".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) diff --git a/Session/Media Viewing & Editing/Transitions/MediaInteractiveDismiss.swift b/Session/Media Viewing & Editing/Transitions/MediaInteractiveDismiss.swift index ad1cb6fcd5..44841c2ab4 100644 --- a/Session/Media Viewing & Editing/Transitions/MediaInteractiveDismiss.swift +++ b/Session/Media Viewing & Editing/Transitions/MediaInteractiveDismiss.swift @@ -34,7 +34,7 @@ class MediaInteractiveDismiss: UIPercentDrivenInteractiveTransition { let gesture: DirectionalPanGestureRecognizer = DirectionalPanGestureRecognizer(direction: .vertical, target: self, action: #selector(handleGesture(_:))) // Allow panning with trackpad - if #available(iOS 13.4, *) { gesture.allowedScrollTypesMask = .continuous } + gesture.allowedScrollTypesMask = .continuous view.addGestureRecognizer(gesture) } diff --git a/Session/Meta/AppDelegate.swift b/Session/Meta/AppDelegate.swift index 5b615bc712..a7cb52029b 100644 --- a/Session/Meta/AppDelegate.swift +++ b/Session/Meta/AppDelegate.swift @@ -445,11 +445,11 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD /// This **must** be a standard `UIAlertController` instead of a `ConfirmationModal` because we may not /// have access to the database when displaying this so can't extract theme information for styling purposes let alert: UIAlertController = UIAlertController( - title: "Session", + title: Constants.app_name, message: error.message, preferredStyle: .alert ) - alert.addAction(UIAlertAction(title: "HELP_REPORT_BUG_ACTION_TITLE".localized(), style: .default) { _ in + alert.addAction(UIAlertAction(title: "helpReportABugExportLogs".localized(), style: .default) { _ in HelpViewModel.shareLogs(viewControllerToDismiss: alert) { [weak self] in // Don't bother showing the "Failed Startup" modal again if we happen to now // have an initial view controller (this most likely means that the startup @@ -469,7 +469,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD // Offer the 'Restore' option if it was a migration error case .databaseError: - alert.addAction(UIAlertAction(title: "vc_restore_title".localized(), style: .destructive) { [dependencies] _ in + alert.addAction(UIAlertAction(title: "onboardingAccountExists".localized(), style: .destructive) { [dependencies] _ in // Reset the current database for a clean migration dependencies.storage.resetForCleanMigration() @@ -502,12 +502,12 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD default: break } - alert.addAction(UIAlertAction(title: "APP_STARTUP_EXIT".localized(), style: .default) { _ in + alert.addAction(UIAlertAction(title: "quit".put(key: "app_name", value: Constants.app_name).localized(), style: .default) { _ in Log.flush() exit(0) }) - Log.info("Showing startup alert due to error: \(error.name)") + Log.info("Showing startup alert due to error: \(error.description)") self.window?.rootViewController?.present(alert, animated: animated, completion: presentationCompletion) } @@ -520,10 +520,9 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD Log.info("Exiting because we are in the background and the database password is not accessible.") let notificationContent: UNMutableNotificationContent = UNMutableNotificationContent() - notificationContent.body = String( - format: NSLocalizedString("NOTIFICATION_BODY_PHONE_LOCKED_FORMAT", comment: ""), - UIDevice.current.localizedModel - ) + notificationContent.body = "notificationsIosRestart" + .put(key: "device", value: UIDevice.current.localizedModel) + .localized() let notificationRequest: UNNotificationRequest = UNNotificationRequest( identifier: UUID().uuidString, content: notificationContent, @@ -923,37 +922,3 @@ private enum LifecycleMethod: Equatable { } } } - -// MARK: - StartupError - -private enum StartupError: Error { - case databaseError(Error) - case failedToRestore - case startupTimeout - - var name: String { - switch self { - case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED), .databaseError(StorageError.databaseSuspended): - return "Database startup failed" - - case .databaseError(StorageError.migrationNoLongerSupported): return "Unsupported version" - case .failedToRestore: return "Failed to restore" - case .databaseError: return "Database error" - case .startupTimeout: return "Startup timeout" - } - } - - var message: String { - switch self { - case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED), .databaseError(StorageError.databaseSuspended): - return "DATABASE_STARTUP_FAILED".localized() - - case .databaseError(StorageError.migrationNoLongerSupported): - return "DATABASE_UNSUPPORTED_MIGRATION".localized() - - case .failedToRestore: return "DATABASE_RESTORE_FAILED".localized() - case .databaseError: return "DATABASE_MIGRATION_FAILED".localized() - case .startupTimeout: return "APP_STARTUP_TIMEOUT".localized() - } - } -} diff --git a/Session/Meta/Images.xcassets/ic_bin.imageset/Contents.json b/Session/Meta/Images.xcassets/ic_bin.imageset/Contents.json new file mode 100644 index 0000000000..bfbeb098c2 --- /dev/null +++ b/Session/Meta/Images.xcassets/ic_bin.imageset/Contents.json @@ -0,0 +1,12 @@ +{ + "images" : [ + { + "filename" : "Icon.pdf", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Session/Meta/Images.xcassets/ic_bin.imageset/Icon.pdf b/Session/Meta/Images.xcassets/ic_bin.imageset/Icon.pdf new file mode 100644 index 0000000000..f7706d5005 Binary files /dev/null and b/Session/Meta/Images.xcassets/ic_bin.imageset/Icon.pdf differ diff --git a/Session/Meta/MainAppContext.swift b/Session/Meta/MainAppContext.swift index 31edf0b38f..af97629e80 100644 --- a/Session/Meta/MainAppContext.swift +++ b/Session/Meta/MainAppContext.swift @@ -37,7 +37,7 @@ final class MainAppContext: AppContext { var statusBarHeight: CGFloat { UIApplication.shared.statusBarFrame.size.height } var openSystemSettingsAction: UIAlertAction? { let result = UIAlertAction( - title: "OPEN_SETTINGS_BUTTON".localized(), + title: "sessionSettings".localized(), style: .default ) { _ in UIApplication.shared.openSystemSettings() } result.accessibilityIdentifier = "\(type(of: self)).system_settings" @@ -155,7 +155,7 @@ final class MainAppContext: AppContext { func ensureSleepBlocking(_ shouldBeBlocking: Bool, blockingObjects: [Any]) { if UIApplication.shared.isIdleTimerDisabled != shouldBeBlocking { if shouldBeBlocking { - var logString: String = "Blocking sleep because of: \(String(describing: blockingObjects.first))" + var logString: String = "Blocking sleep because of: \(String(describing: blockingObjects.first))" // stringlint:disable if blockingObjects.count > 1 { logString = "\(logString) (and \(blockingObjects.count - 1) others)" @@ -199,7 +199,7 @@ final class MainAppContext: AppContext { // b) modified time before app launch time. let filePath: String = URL(fileURLWithPath: dirPath).appendingPathComponent(fileName).path - if !fileName.hasPrefix("ows_temp") { + if !fileName.hasPrefix("ows_temp") { // stringlint:disable // It's fine if we can't get the attributes (the file may have been deleted since we found it), // also don't delete files which were created in the last N minutes guard diff --git a/Session/Meta/Session-Info.plist b/Session/Meta/Session-Info.plist index e8471f8614..bd9e0d8cd5 100644 --- a/Session/Meta/Session-Info.plist +++ b/Session/Meta/Session-Info.plist @@ -81,6 +81,8 @@ + NSAllowsArbitraryLoads + NSAppleMusicUsageDescription Session needs to use Apple Music to play media attachments. diff --git a/Session/Meta/SessionApp.swift b/Session/Meta/SessionApp.swift index fc02eb667c..10a53fa237 100644 --- a/Session/Meta/SessionApp.swift +++ b/Session/Meta/SessionApp.swift @@ -14,16 +14,16 @@ public struct SessionApp { static var versionInfo: String { let buildNumber: String = (Bundle.main.infoDictionary?["CFBundleVersion"] as? String) - .map { " (\($0))" } + .map { " (\($0))" } // stringlint:disable .defaulting(to: "") let appVersion: String? = (Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String) - .map { "App: \($0)\(buildNumber)" } + .map { "App: \($0)\(buildNumber)" } // stringlint:disable let commitInfo: String? = (Bundle.main.infoDictionary?["GitCommitHash"] as? String).map { "Commit: \($0)" } let versionInfo: [String] = [ - "iOS \(UIDevice.current.systemVersion)", + "iOS \(UIDevice.current.systemVersion)", // stringlint:disable appVersion, - "libSession: \(LibSession.libSessionVersion)", + "libSession: \(LibSession.libSessionVersion)", // stringlint:disable commitInfo ].compactMap { $0 } diff --git a/Session/Meta/StartupError.swift b/Session/Meta/StartupError.swift new file mode 100644 index 0000000000..6fa36dd4d6 --- /dev/null +++ b/Session/Meta/StartupError.swift @@ -0,0 +1,41 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. +// +// stringlint:disable + +import Foundation +import GRDB +import SessionUtilitiesKit + +internal enum StartupError: Error, CustomStringConvertible { + case databaseError(Error) + case failedToRestore + case startupTimeout + + public var description: String { + switch self { + case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED), .databaseError(StorageError.databaseSuspended): + return "Database startup failed" + case .databaseError(StorageError.migrationNoLongerSupported): return "Unsupported version" + case .failedToRestore: return "Failed to restore" + case .databaseError: return "Database error" + case .startupTimeout: return "Startup timeout" + } + } + + var message: String { + switch self { + case .databaseError(StorageError.startupFailed), .databaseError(DatabaseError.SQLITE_LOCKED), .databaseError(StorageError.databaseSuspended), .failedToRestore, .databaseError: + return "databaseErrorGeneric".localized() + + case .databaseError(StorageError.migrationNoLongerSupported): + return "databaseErrorUpdate" + .put(key: "app_name", value: Constants.app_name) + .localized() + + case .startupTimeout: + return "databaseErrorTimeout" + .put(key: "app_name", value: Constants.app_name) + .localized() + } + } +} diff --git a/Session/Meta/Translations/InfoPlist.xcstrings b/Session/Meta/Translations/InfoPlist.xcstrings new file mode 100644 index 0000000000..5c8246869f --- /dev/null +++ b/Session/Meta/Translations/InfoPlist.xcstrings @@ -0,0 +1 @@ +{"sourceLanguage":"en","version":"1.0","strings":{"NSHumanReadableCopyright":{"comment":"Copyright (human-readable)","localizations":{"en":{"stringUnit":{"state":"new","value":"com.loki-project.loki-messenger"}}},"extractionState":"extracted_with_value"},"NSCameraUsageDescription":{"extractionState":"manual","localizations":{"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova."}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"af":{"stringUnit":{"state":"translated","value":"Session het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer."}},"my":{"stringUnit":{"value":"Session က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"sh":{"stringUnit":{"value":"Session treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة."}},"de":{"stringUnit":{"value":"Session benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya kamera hewce dike da ku wêneyên û vedîdarên twist bike, an QR kodên scanner bike."}},"sr-CS":{"stringUnit":{"value":"Session treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR."}},"hi":{"stringUnit":{"state":"translated","value":"फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए Session को कैमरा एक्सेस की आवश्यकता है।"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionで写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR."}},"kn":{"stringUnit":{"value":"Session ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ.","state":"translated"}},"es-ES":{"stringUnit":{"value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։"}},"da":{"stringUnit":{"value":"Session kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов."}},"bal":{"stringUnit":{"value":"Session کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ.","state":"translated"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。"}},"en":{"stringUnit":{"value":"Session needs camera access to take photos and videos, or scan QR codes.","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй."}},"ps":{"stringUnit":{"state":"translated","value":"Session ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي."}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR."}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови.","state":"translated"}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa camera upang kumuha ng litrato at video, o mag-scan ng mga QR code.","state":"translated"}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди."}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder."}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要相机权限来拍摄照片和视频,或扫描二维码。","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes."}},"sk":{"stringUnit":{"state":"translated","value":"Session potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov."}},"be":{"stringUnit":{"state":"translated","value":"Session патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR."}},"it":{"stringUnit":{"value":"Session richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR.","state":"translated"}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu."}},"km":{"stringUnit":{"value":"Session ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR."}},"bn":{"stringUnit":{"value":"ছবি ও ভিডিও করার জন্য Session এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।","state":"translated"}},"hu":{"stringUnit":{"value":"Session alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához.","state":"translated"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔"}},"uz":{"stringUnit":{"state":"translated","value":"Session fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi."}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR"}},"ka":{"stringUnit":{"value":"Session-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად.","state":"translated"}},"nn-NO":{"stringUnit":{"value":"Session treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko."}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR."}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR."}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి Session కు కెమెరా యాక్సెస్ కావాలి."}},"fr":{"stringUnit":{"value":"Session a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus.","state":"translated"}},"ko":{"stringUnit":{"value":"Session은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다.","state":"translated"}},"si-LK":{"stringUnit":{"value":"Sessionට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger kameratilgang for å ta bilder og video, eller skanne QR-koder.","state":"translated"}},"ca":{"stringUnit":{"value":"Session necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR."}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen."}},"bg":{"stringUnit":{"state":"translated","value":"Session се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове."}},"vi":{"stringUnit":{"value":"Session cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR."}},"cy":{"stringUnit":{"value":"Mae angen mynediad i'r camera ar Session i dynnu lluniau a fideos, neu i sganio côd QR.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder."}},"ny":{"stringUnit":{"state":"translated","value":"Session iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes."}},"pl":{"stringUnit":{"value":"Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja Session potrzebuje dostępu do aparatu","state":"translated"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR."}}}},"CFBundleGetInfoString":{"extractionState":"extracted_with_value","localizations":{"en":{"stringUnit":{"state":"new","value":""}}},"comment":"Get Info string"},"NSPhotoLibraryAddUsageDescription":{"localizations":{"sr":{"stringUnit":{"value":"Session треба приступ складишту да сачува прилоге и медије.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi."}},"hu":{"stringUnit":{"value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez.","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다."}},"hr":{"stringUnit":{"value":"Session treba pristup memoriji za spremanje privitaka i medija.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionは添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。","state":"translated"}},"ta":{"stringUnit":{"value":"Session இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją."}},"te":{"stringUnit":{"state":"translated","value":"అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"pt-BR":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídias.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang i-save ang mga attachment at media."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện."}},"ps":{"stringUnit":{"value":"Session پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري.","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینەی فایل بۆ هەڵگرتنی پەیوەستەکان و میدیا ناردن"}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a salva atașamente și media."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ.","state":"translated"}},"bal":{"stringUnit":{"value":"Session ذخیرہ پاتبسینہ محفوظ عریض او ذرہے","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"Session doit accéder au stockage pour enregistrer les pièces jointes et les médias."}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para guardar adjuntos y multimedia."}},"ny":{"stringUnit":{"state":"translated","value":"Session imafuna mwayi wosungira kuti asunge attachments ndi media."}},"et":{"stringUnit":{"value":"Session vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat.","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要存储权限来保存附件和媒体。"}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai."}},"mn":{"stringUnit":{"state":"translated","value":"Session нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй."}},"hi":{"stringUnit":{"value":"Session को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។"}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限以保存附件和媒體。","state":"translated"}},"da":{"stringUnit":{"value":"Session skal have lageradgang for at gemme vedhæftninger og mediefiler.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina xelasî û medyayê hewce dike."}},"ru":{"stringUnit":{"state":"translated","value":"Session требуется доступ к хранилищу для сохранения вложений и медиафайлов."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად."}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro ukládání příloh a médií."}},"mk":{"stringUnit":{"state":"translated","value":"Session има потреба од пристап до складиштето за да зачува прилози и медиуми."}},"ca":{"stringUnit":{"value":"Session necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports.","state":"translated"}},"de":{"stringUnit":{"value":"Session benötigt Speicherzugriff, um Anhänge und Medien zu speichern.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до сховища для збереження вкладень та медіа."}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα.","state":"translated"}},"az":{"stringUnit":{"state":"translated","value":"Session qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i storio i gadw atodiadau a chyfryngau.","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para salvar anexos e mídia.","state":"translated"}},"my":{"stringUnit":{"state":"translated","value":"Session သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။"}},"gl":{"stringUnit":{"value":"Session necesita permiso para acceder ao almacenamento para gardar anexos e medios.","state":"translated"}},"nl":{"stringUnit":{"state":"translated","value":"Session heeft opslagtoegang nodig om bijlagen en media op te slaan."}},"he":{"stringUnit":{"value":"Session זקוק לגישה לאחסון כדי לשמור צרופות ומדיה.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya."}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k úložisku na uloženie príloh a médií.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Aby zapisywać załączniki i multimedia, aplikacja Session potrzebuje dostępu do pamięci."}},"bn":{"stringUnit":{"state":"translated","value":"সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za spremanje privitaka i medija.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session trenger lagringstilgang for å lagre vedlegg og media."}},"be":{"stringUnit":{"value":"Session патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Session potrebuje dostop do shrambe za shranjevanje prilog in medijev."}},"sv-SE":{"stringUnit":{"value":"Session behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media.","state":"translated"}},"en":{"stringUnit":{"value":"Session needs storage access to save attachments and media.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn.","state":"translated"}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om aanhegsels en media te stoor."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari."}},"es-ES":{"stringUnit":{"state":"translated","value":"Session necesita acceso de almacenamiento para guardar archivos adjuntos y medios."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da sačuva priloge i medije."}},"ms":{"stringUnit":{"value":"Session memerlukan akses storan untuk menyimpan lampiran dan media.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk menyimpan lampiran dan media.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා Sessionට ගබඩා ප්‍රවේශය අවශ්‍යවේ."}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso allo storage per salvare allegati e media."}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔"}},"fil":{"stringUnit":{"state":"translated","value":"Ang Session ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media."}}},"extractionState":"manual"},"NSPhotoLibraryUsageDescription":{"localizations":{"ku":{"stringUnit":{"state":"translated","value":"Session پێویستە بەکارهێنانی خزینە بۆ ناردنی وێنە و ڤیدیۆکان."}},"sq":{"stringUnit":{"value":"Session ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video.","state":"translated"}},"fi":{"stringUnit":{"state":"translated","value":"Session tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi."}},"lg":{"stringUnit":{"value":"Session yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo.","state":"translated"}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο."}},"ru":{"stringUnit":{"value":"Session требуется доступ к хранилищу для отправки фотографий и видео.","state":"translated"}},"ny":{"stringUnit":{"value":"Session imafuna mwayi wosungira kuti atumize zithunzi ndi makanema.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"ఫోటోలు మరియు వీడియోలను పంపడానికి Session కు నిల్వ యాక్సెస్ అవసరం."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo."}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।"}},"ta":{"stringUnit":{"state":"translated","value":"Session புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை."}},"ur-IN":{"stringUnit":{"value":"Session کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔","state":"translated"}},"th":{"stringUnit":{"state":"translated","value":"Session ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו."}},"az":{"stringUnit":{"state":"translated","value":"Session foto və videoları göndərmək üçün anbara müraciət etməlidir."}},"uz":{"stringUnit":{"value":"Session fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"fa":{"stringUnit":{"state":"translated","value":"Session برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد."}},"zh-CN":{"stringUnit":{"value":"Session需要存储权限以取用及发送照片或视频。","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Session het berging toegang nodig om foto's en video's te stuur."}},"pt-PT":{"stringUnit":{"value":"Session precisa de acesso ao armazenamento para enviar fotos e vídeos.","state":"translated"}},"hi":{"stringUnit":{"value":"Session को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"ছবি এবং ভিডিও প্রেরণ করতে Session এর স্টোরেজ অ্যাকসেস প্রয়োজন।"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés a l'emmagatzematge per enviar fotografies i vídeos."}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji ruhusa ya kuhifadhi ili kutuma picha na video."}},"km":{"stringUnit":{"state":"translated","value":"Session ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ."}},"hr":{"stringUnit":{"state":"translated","value":"Session treba pristup memoriji za slanje fotografija i videozapisa."}},"xh":{"stringUnit":{"value":"Session ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo.","state":"translated"}},"tr":{"stringUnit":{"value":"Session, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k úložišti pro odesílání fotografií a videí."}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до хранилището, за да изпраща снимки и видеота.","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو."}},"uk":{"stringUnit":{"value":"Session потребує доступу до сховища для відправлення фотографій та відео.","state":"translated"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer."}},"nb":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"nl":{"stringUnit":{"value":"Session heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae Session angen mynediad i storio i anfon lluniau a fideos."}},"zh-TW":{"stringUnit":{"value":"Session 需要存儲權限來發送照片和影片。","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।","state":"translated"}},"lv":{"stringUnit":{"value":"Session vajag pieeju failiem, lai sūtītu atēlus un video.","state":"translated"}},"tl":{"stringUnit":{"state":"translated","value":"Kailangan ng Session ng access sa storage upang mag-send ng mga larawan at video."}},"mn":{"stringUnit":{"state":"translated","value":"Session зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй."}},"hy-AM":{"stringUnit":{"value":"Session-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։","state":"translated"}},"da":{"stringUnit":{"value":"Session har brug for lageradgang for at sende billeder og videoer.","state":"translated"}},"fr":{"stringUnit":{"value":"Session a besoin d'un accès au stockage pour envoyer des photos et des vidéos.","state":"translated"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya hilkişina wêneyên û vedîdarên bişîne."}},"it":{"stringUnit":{"value":"Session richiede l'accesso all'archiviazione per inviare foto e video.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다."}},"pl":{"stringUnit":{"state":"translated","value":"Aby wysyłać zdjęcia i filmy, aplikacja Session potrzebuje dostępu do pamięci."}},"en":{"stringUnit":{"state":"translated","value":"Session needs storage access to send photos and videos."}},"eu":{"stringUnit":{"value":"Session(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko.","state":"translated"}},"no":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilder og videoer.","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita permiso para acceder ao almacenamento para enviar fotos e vídeos."}},"si-LK":{"stringUnit":{"value":"ඡායාරූප සහ වීඩියෝ යැවීමට Sessionට ගබඩා ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"id":{"stringUnit":{"value":"Session membutuhkan akses penyimpanan untuk mengirim foto dan video.","state":"translated"}},"vi":{"stringUnit":{"state":"translated","value":"Session cần quyền truy cập lưu trữ để gửi ảnh và video."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba pristup skladištu da šalje fotografije i videe."}},"sh":{"stringUnit":{"value":"Session treba pristup pohrani za slanje slika i videa.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup na disk na posielanie fotiek a videí.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses storan untuk menghantar foto dan video."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба дозволу за складиште да шаље слике и видео клипове."}},"de":{"stringUnit":{"state":"translated","value":"Session Benötigt Speicherzugriff, um Fotos und Videos zu senden."}},"lt":{"stringUnit":{"state":"translated","value":"Session reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus."}},"ps":{"stringUnit":{"state":"translated","value":"Session عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად."}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до складиштето за да испраќа фотографии и видеа.","state":"translated"}},"be":{"stringUnit":{"state":"translated","value":"Session патрабуе дазволу да сховішча каб дасылаць фота і відэа."}},"nn-NO":{"stringUnit":{"value":"Session trenger lagringstilgang for å sende bilete og videoar.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov.","state":"translated"}},"ja":{"stringUnit":{"state":"translated","value":"Sessionは写真や動画を送信するためにストレージへのアクセスが必要です"}},"eo":{"stringUnit":{"value":"Session bezonas aliron al memoro por sendi bildojn kaj videojn.","state":"translated"}},"my":{"stringUnit":{"value":"Session သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"Session necesita acceso al almacenamiento para enviar fotos y videos."}},"bal":{"stringUnit":{"state":"translated","value":"Session ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao seu armazenamento para enviar fotos e vídeos."}},"et":{"stringUnit":{"state":"translated","value":"Session vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso de almacenamiento para enviar fotos y videos.","state":"translated"}}},"extractionState":"manual"},"CFBundleName":{"localizations":{"en":{"stringUnit":{"value":"Session","state":"new"}}},"extractionState":"extracted_with_value","comment":"Bundle name"},"New Message":{},"NSFaceIDUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"The screen lock feature on Session uses Face ID."}},"hu":{"stringUnit":{"value":"A Session képernyőzár funkciója Face ID-t használ.","state":"translated"}},"mk":{"stringUnit":{"value":"Функцијата за заклучување екранот во Session користи Face ID.","state":"translated"}},"af":{"stringUnit":{"state":"translated","value":"Die skermsluitfunksie op Session gebruik Face ID."}},"ka":{"stringUnit":{"state":"translated","value":"ეკრანის დაბლოკვის ფუნქცია Session-ზე იყენებს Face ID-ს"}},"el":{"stringUnit":{"value":"Η λειτουργία κλειδώματος οθόνης στο Session χρησιμοποιεί το Face ID.","state":"translated"}},"cy":{"stringUnit":{"state":"translated","value":"Mae'r nodwedd cloi sgrin ar Session yn defnyddio ID Wyneb."}},"sr-CS":{"stringUnit":{"state":"translated","value":"Funkcija zaključavanja ekrana na Session koristi Face ID."}},"hi":{"stringUnit":{"state":"translated","value":"Session पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।"}},"vi":{"stringUnit":{"value":"Tính năng khóa màn hình trên Session sử dụng Face ID.","state":"translated"}},"tl":{"stringUnit":{"value":"Ang feature ng screen lock sa Session ay gumagamit ng Face ID.","state":"translated"}},"sr":{"stringUnit":{"value":"Функција закључавања екрана на Session користи Face ID.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"La funzione di blocco schermo su Session usa il Face ID."}},"bg":{"stringUnit":{"value":"Функцията за заключване на екрана в Session използва Face ID.","state":"translated"}},"eu":{"stringUnit":{"value":"Session-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du.","state":"translated"}},"pl":{"stringUnit":{"state":"translated","value":"Funkcja blokady ekranu w aplikacji Session używa Face ID."}},"fil":{"stringUnit":{"state":"translated","value":"Ang screen lock feature ng Session ay gumagamit ng Face ID."}},"th":{"stringUnit":{"value":"ฟีเจอร์ล็อกหน้าจอใน Session ใช้ Face ID","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"Session এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।"}},"my":{"stringUnit":{"state":"translated","value":"Session တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။"}},"ny":{"stringUnit":{"state":"translated","value":"Ntchito yotseka chinsalu pa Session imagwiritsa ntchito Face ID."}},"ca":{"stringUnit":{"state":"translated","value":"La funció de bloqueig de pantalla en Session utilitza Face ID."}},"fa":{"stringUnit":{"value":"ویژگی قفل صفحه در Session از Face ID استفاده می‌کند.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"La ŝlosila ekrano en Session uzas Vizaĝo-ID."}},"ha":{"stringUnit":{"state":"translated","value":"Tsarin kulle allo akan Session yana amfani da Face ID."}},"gl":{"stringUnit":{"value":"A funcionalidade de bloqueo de pantalla en Session usa Face ID.","state":"translated"}},"sl":{"stringUnit":{"state":"translated","value":"Funkcija zaklepanja zaslona na Session uporablja Face ID."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session的屏幕锁功能使用 Face ID。"}},"ne-NP":{"stringUnit":{"value":"Sessionको स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।","state":"translated"}},"ko":{"stringUnit":{"value":"Session의 화면 잠금 기능은 Face ID를 사용합니다.","state":"translated"}},"si-LK":{"stringUnit":{"state":"translated","value":"Session මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි."}},"hr":{"stringUnit":{"value":"Funkcija zaključavanja zaslona na Session koristi Face ID.","state":"translated"}},"az":{"stringUnit":{"value":"Session tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir.","state":"translated"}},"da":{"stringUnit":{"value":"Skærmlåsfunktionen på Session bruger Face ID.","state":"translated"}},"lg":{"stringUnit":{"value":"Enkozesa y'ekiwandiiko k'amaaso ekiriko Session ekosa Face ID.","state":"translated"}},"fr":{"stringUnit":{"state":"translated","value":"La fonctionnalité de verrouillage d'écran sur Session utilise Face ID."}},"uk":{"stringUnit":{"value":"Функція блокування екрана в Session використовує Face ID.","state":"translated"}},"es-419":{"stringUnit":{"state":"translated","value":"La función de pantalla bloqueada en Session usa Face ID."}},"no":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"pt-PT":{"stringUnit":{"value":"A funcionalidade de bloqueio de ecrã Session usa Face ID.","state":"translated"}},"tr":{"stringUnit":{"state":"translated","value":"Session ekran kilidi özelliği Face ID kullanır."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Skjermlåsfunksjonen på Session bruker Face ID."}},"kmr":{"stringUnit":{"state":"translated","value":"Taybetmendiya serrnderkî ya Session bi Face ID bicîh dike."}},"nb":{"stringUnit":{"value":"Skjermlåsfunksjonen på Session bruker Face ID.","state":"translated"}},"ru":{"stringUnit":{"state":"translated","value":"Функция блокировки экрана в Session использует Face ID."}},"ta":{"stringUnit":{"state":"translated","value":"Session இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது."}},"km":{"stringUnit":{"value":"The screen lock feature on Session uses Face ID.","state":"translated"}},"et":{"stringUnit":{"state":"translated","value":"Session ekraaniluku funktsioon kasutab Face ID-d."}},"sk":{"stringUnit":{"state":"translated","value":"Funkcia zámku obrazovky na Session používa Face ID."}},"ms":{"stringUnit":{"state":"translated","value":"Ciri kunci skrin pada Session menggunakan Face ID."}},"lt":{"stringUnit":{"state":"translated","value":"Ekrano užraktas Session naudoja Face ID."}},"pt-BR":{"stringUnit":{"value":"A funcionalidade de bloqueio de tela no Session usa reconhecimento facial.","state":"translated"}},"ro":{"stringUnit":{"state":"translated","value":"Funcția de blocare a ecranului din Session folosește Face ID."}},"te":{"stringUnit":{"state":"translated","value":"Sessionలో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది."}},"bal":{"stringUnit":{"value":"Session رو پیلناکردگ لاگو کردانت پاس ID.","state":"translated"}},"nl":{"stringUnit":{"value":"De vergrendelfunctie op Session gebruikt Face ID.","state":"translated"}},"ps":{"stringUnit":{"state":"translated","value":"د Session سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي."}},"be":{"stringUnit":{"state":"translated","value":"Функцыя блакіроўкі экрана ў Session выкарыстоўвае Face ID."}},"ur-IN":{"stringUnit":{"value":"Session پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔","state":"translated"}},"de":{"stringUnit":{"state":"translated","value":"Die Bildschirmsperrfunktion von Session verwendet Face ID."}},"fi":{"stringUnit":{"value":"Näytön lukitusominaisuus Session käyttää Face ID:tä.","state":"translated"}},"ar":{"stringUnit":{"value":"ميزة قفل الشاشة على Session تستخدم Face ID.","state":"translated"}},"ja":{"stringUnit":{"value":"Session の画面ロック機能はFace IDを使用します。","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 上的螢幕鎖功能使用 Face ID。","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ."}},"lv":{"stringUnit":{"value":"Ekrāna bloķēšanas funkcija lietotnē Session izmanto Face ID.","state":"translated"}},"cs":{"stringUnit":{"value":"Funkce zamčení obrazovky Session používá Face ID.","state":"translated"}},"sw":{"stringUnit":{"value":"Kipengele cha kufuli skrini kwenye Session kinatumia Face ID.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:"}},"id":{"stringUnit":{"state":"translated","value":"Fitur kunci layar pada Session menggunakan Face ID."}},"sq":{"stringUnit":{"value":"Veçoria e mbylljes së ekranit në Session përdor Face ID.","state":"translated"}},"he":{"stringUnit":{"value":"תכונת נעילת המסך ב-Session משתמשת בזיהוי פנים.","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi."}},"mn":{"stringUnit":{"state":"translated","value":"Session дэлгэц түгжихэд Face ID ашиглана."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Skärmlåsfunktionen på Session använder Face ID."}},"ku":{"stringUnit":{"state":"translated","value":"فەرمۆن جێگیرکردنی تابلەکردنی سکرین ناستەوەی Session پێی ئەنجامدەدرێت."}},"sh":{"stringUnit":{"state":"translated","value":"Značajka zaključavanja ekrana na Session koristi Face ID."}},"xh":{"stringUnit":{"state":"translated","value":"Umsebenzi wokutshixa isikrini kwi-Session usebenzisa i-Face ID."}},"es-ES":{"stringUnit":{"state":"translated","value":"La función de bloqueo de pantalla en Session usa Face ID."}}},"extractionState":"manual"},"CFBundleDisplayName":{"localizations":{"en":{"stringUnit":{"state":"new","value":"Session"}}},"extractionState":"extracted_with_value","comment":"Bundle display name"},"NSMicrophoneUsageDescription":{"localizations":{"en":{"stringUnit":{"state":"translated","value":"Session needs microphone access to make calls and record audio messages."}},"cy":{"stringUnit":{"value":"Mae Session angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain.","state":"translated"}},"vi":{"stringUnit":{"value":"Session cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại.","state":"translated"}},"it":{"stringUnit":{"state":"translated","value":"Session richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio."}},"id":{"stringUnit":{"state":"translated","value":"Session membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio."}},"nl":{"stringUnit":{"value":"Session heeft toegang tot de microfoon nodig om audioberichten op te nemen.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к микрофону для совершения звонков и записи голосовых сообщений.","state":"translated"}},"uz":{"stringUnit":{"state":"translated","value":"Session qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi."}},"lv":{"stringUnit":{"state":"translated","value":"Session ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas."}},"lo":{"stringUnit":{"value":"Session ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ.","state":"translated"}},"el":{"stringUnit":{"value":"Το Session χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων.","state":"translated"}},"et":{"stringUnit":{"value":"Session vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid.","state":"translated"}},"pt-PT":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"ny":{"stringUnit":{"value":"Session iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu.","state":"translated"}},"bn":{"stringUnit":{"state":"translated","value":"কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য Session এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।"}},"mk":{"stringUnit":{"value":"Session има потреба од пристап до микрофонот за да врши повици и снима аудио пораки.","state":"translated"}},"ur-IN":{"stringUnit":{"value":"Session کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔","state":"translated"}},"eu":{"stringUnit":{"state":"translated","value":"Session(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko."}},"tr":{"stringUnit":{"state":"translated","value":"Session, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar."}},"ta":{"stringUnit":{"value":"Session அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень."}},"de":{"stringUnit":{"value":"Session benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session ng access sa mikropono upang makagawa ng mga tawag at mag-record ng mga mensaheng audio.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។","state":"translated"}},"pa-IN":{"stringUnit":{"value":"Session ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।","state":"translated"}},"ar":{"stringUnit":{"state":"translated","value":"Session يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية."}},"be":{"stringUnit":{"value":"Session патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні.","state":"translated"}},"te":{"stringUnit":{"state":"translated","value":"కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి Session మైక్రోఫోన్ యాక్సెస్ అవసరం."}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike."}},"no":{"stringUnit":{"value":"Session trenger mikrofontilgang for å foreta samtaler og ta opp lydmeldinger.","state":"translated"}},"bg":{"stringUnit":{"value":"Session се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения.","state":"translated"}},"eo":{"stringUnit":{"state":"translated","value":"Session bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn."}},"ha":{"stringUnit":{"state":"translated","value":"Session yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio."}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger mikrofontilgang for å ringe og ta opp lydmeldinger."}},"mn":{"stringUnit":{"value":"Session дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй.","state":"translated"}},"ja":{"stringUnit":{"value":"Sessionで通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。","state":"translated"}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要麦克风访问权限来进行语音通话及录制语音消息。"}},"si-LK":{"stringUnit":{"value":"ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා Sessionට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි.","state":"translated"}},"hu":{"stringUnit":{"state":"translated","value":"Session alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére."}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden."}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio."}},"zh-TW":{"stringUnit":{"state":"translated","value":"Session 需要麥克風存取權來語音通話和錄製語音訊息。"}},"lg":{"stringUnit":{"state":"translated","value":"Session yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze."}},"ne-NP":{"stringUnit":{"value":"Session लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง","state":"translated"}},"ku":{"stringUnit":{"state":"translated","value":"Session دەتوانێت بەکارهێنانی داده‌یەکیی وەکو پەیوەستەکان بکات بۆ پەیوەندیش"}},"ko":{"stringUnit":{"value":"Session은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"sl":{"stringUnit":{"value":"Session potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil.","state":"translated"}},"sw":{"stringUnit":{"value":"Session inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti.","state":"translated"}},"cs":{"stringUnit":{"state":"translated","value":"Session potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv."}},"fil":{"stringUnit":{"value":"Ang Session ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio.","state":"translated"}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ."}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio."}},"es-ES":{"stringUnit":{"value":"Session necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio.","state":"translated"}},"ca":{"stringUnit":{"state":"translated","value":"Session necessita accés al micròfon per fer trucades i gravar missatges d'àudio."}},"af":{"stringUnit":{"value":"Session het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem.","state":"translated"}},"xh":{"stringUnit":{"state":"translated","value":"Session ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi."}},"az":{"stringUnit":{"state":"translated","value":"Session zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir."}},"lt":{"stringUnit":{"value":"Session reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes.","state":"translated"}},"sr-CS":{"stringUnit":{"value":"Session treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke.","state":"translated"}},"pl":{"stringUnit":{"value":"Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja Session potrzebuje dostępu do mikrofonu.","state":"translated"}},"sr":{"stringUnit":{"value":"Session треба дозволу за микрофон да би обављао позиве и снимао аудио поруке.","state":"translated"}},"my":{"stringUnit":{"value":"Session မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။","state":"translated"}},"hi":{"stringUnit":{"value":"कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए Session को माइक्रोफोन एक्सेस की आवश्यकता है।","state":"translated"}},"gl":{"stringUnit":{"state":"translated","value":"Session necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio."}},"fr":{"stringUnit":{"value":"Session a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session צריך הרשאת מיקרופון לשיחות ולהודעות שמע."}},"fi":{"stringUnit":{"value":"Session tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen.","state":"translated"}},"ms":{"stringUnit":{"state":"translated","value":"Session memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio."}},"hr":{"stringUnit":{"value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka.","state":"translated"}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად."}},"bal":{"stringUnit":{"value":"Session مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت","state":"translated"}},"fa":{"stringUnit":{"value":"Session برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد.","state":"translated"}},"sh":{"stringUnit":{"state":"translated","value":"Session treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka."}},"nb":{"stringUnit":{"value":"Session trenger mikrofontilgang for å ringe og spille inn lydmeldinger.","state":"translated"}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։"}},"sk":{"stringUnit":{"value":"Session potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ.","state":"translated"}},"da":{"stringUnit":{"state":"translated","value":"Session kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser."}},"ps":{"stringUnit":{"state":"translated","value":"Session د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري."}}},"extractionState":"manual"},"NSAppleMusicUsageDescription":{"extractionState":"manual","localizations":{"pt-PT":{"stringUnit":{"value":"Session precisa usar o Apple Music para reproduzir anexos de multimédia.","state":"translated"}},"pa-IN":{"stringUnit":{"state":"translated","value":"Session ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।"}},"kmr":{"stringUnit":{"state":"translated","value":"Session permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne."}},"ny":{"stringUnit":{"value":"Session iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media.","state":"translated"}},"bg":{"stringUnit":{"state":"translated","value":"Session трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове."}},"my":{"stringUnit":{"state":"translated","value":"Session သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။"}},"es-ES":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos de medios.","state":"translated"}},"fa":{"stringUnit":{"value":"Session باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند.","state":"translated"}},"bal":{"stringUnit":{"state":"translated","value":"Session xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے"}},"sv-SE":{"stringUnit":{"state":"translated","value":"Session behöver åtkomst till Apple Music för att spela upp bifogade mediafiler."}},"id":{"stringUnit":{"value":"Session membutuhkan Apple Music untuk memutar lampiran media.","state":"translated"}},"lt":{"stringUnit":{"value":"Session reikia naudoti Apple Music, kad galėtų leisti medijos priedus.","state":"translated"}},"uk":{"stringUnit":{"state":"translated","value":"Session потребує використовувати Apple Music для відтворення медіавкладень."}},"ro":{"stringUnit":{"state":"translated","value":"Session are nevoie de acces la Apple Music pentru a reda atașamente media."}},"sl":{"stringUnit":{"value":"Session potrebuje uporabo Apple Music za predvajanje medijskih prilog.","state":"translated"}},"mk":{"stringUnit":{"value":"Session има потреба од Apple Music за да ги репродуцира медиумските прилози.","state":"translated"}},"nn-NO":{"stringUnit":{"state":"translated","value":"Session trenger Apple Music for å spille av media-vedlegg."}},"ka":{"stringUnit":{"state":"translated","value":"Session-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ."}},"ku":{"stringUnit":{"value":"Session پێویستە بە پارێزمەنیی ژمارەی تەلەفۆنەکان بۆ بەکردنەوەی هەموو پەیوەستەکان.","state":"translated"}},"ko":{"stringUnit":{"state":"translated","value":"Session은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다."}},"zh-CN":{"stringUnit":{"state":"translated","value":"Session需要使用Apple Music来播放媒体附件。"}},"et":{"stringUnit":{"state":"translated","value":"Session vajab Apple Musici kasutamist, et esitada meediamanuseid."}},"ms":{"stringUnit":{"state":"translated","value":"Session perlu menggunakan Apple Music untuk memainkan lampiran media."}},"az":{"stringUnit":{"value":"Session media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir.","state":"translated"}},"th":{"stringUnit":{"value":"Session ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา","state":"translated"}},"lo":{"stringUnit":{"state":"translated","value":"Session ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ."}},"vi":{"stringUnit":{"state":"translated","value":"Session cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện."}},"ja":{"stringUnit":{"state":"translated","value":"Sessionはメディア添付ファイルを再生するためにApple Musicを使用する必要があります"}},"fi":{"stringUnit":{"value":"Session tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen.","state":"translated"}},"es-419":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir archivos adjuntos multimedia.","state":"translated"}},"sr-CS":{"stringUnit":{"state":"translated","value":"Session treba da koristi Apple Music za reprodukciju medijskih priloga."}},"it":{"stringUnit":{"state":"translated","value":"Session deve utilizzare Apple Music per riprodurre gli allegati multimediali."}},"ps":{"stringUnit":{"state":"translated","value":"Session میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي."}},"tr":{"stringUnit":{"value":"Session, medya eklerini çalmak için Apple Music'i kullanmak zorunda.","state":"translated"}},"hu":{"stringUnit":{"value":"Session-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához.","state":"translated"}},"km":{"stringUnit":{"value":"Session ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់","state":"translated"}},"lg":{"stringUnit":{"state":"translated","value":"Session keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu."}},"ca":{"stringUnit":{"value":"Session necessita utilitzar Apple Music per reproduir fitxers adjunts de suports.","state":"translated"}},"en":{"stringUnit":{"state":"translated","value":"Session needs to use Apple Music to play media attachments."}},"de":{"stringUnit":{"state":"translated","value":"Session benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen."}},"sr":{"stringUnit":{"state":"translated","value":"Session треба да користи Apple Music да би репродуковао медијске прилоге."}},"uz":{"stringUnit":{"value":"Session media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak.","state":"translated"}},"hi":{"stringUnit":{"value":"मीडिया संलग्नक बजाने के लिए Session को Apple Music के उपयोग की आवश्यकता है।","state":"translated"}},"mn":{"stringUnit":{"state":"translated","value":"Session медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй."}},"xh":{"stringUnit":{"state":"translated","value":"Session kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya."}},"el":{"stringUnit":{"state":"translated","value":"Το Session χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων."}},"kn":{"stringUnit":{"state":"translated","value":"Session ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು."}},"bn":{"stringUnit":{"state":"translated","value":"মিডিয়া সংযুক্তি প্লে করার জন্য Session কে Apple Music ব্যবহার করতে হবে।"}},"ur-IN":{"stringUnit":{"state":"translated","value":"Session کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔"}},"eu":{"stringUnit":{"value":"Session(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko.","state":"translated"}},"hr":{"stringUnit":{"state":"translated","value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka."}},"te":{"stringUnit":{"state":"translated","value":"మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి Session Apple Musicను ఉపయోగించాలి."}},"sh":{"stringUnit":{"value":"Session treba koristiti Apple Music za reprodukciju medijskih privitaka.","state":"translated"}},"fr":{"stringUnit":{"value":"Session doit accéder à Apple Music pour lire les pièces jointes multimédias.","state":"translated"}},"pl":{"stringUnit":{"value":"Do odtwarzania załączników multimedialnych aplikacja Session potrzebuje używać aplikacji Apple Music.","state":"translated"}},"ru":{"stringUnit":{"value":"Session требуется доступ к Apple Music для воспроизведения медиафайлов.","state":"translated"}},"fil":{"stringUnit":{"value":"Kinakailangang magamit ng Session ang Apple Music upang magpatugtog ng mga media attachment.","state":"translated"}},"ne-NP":{"stringUnit":{"value":"Session लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।","state":"translated"}},"af":{"stringUnit":{"value":"Session moet Apple Music gebruik om media-aanhegsels te speel.","state":"translated"}},"pt-BR":{"stringUnit":{"state":"translated","value":"Session precisa usar a Apple Music para reproduzir anexos de mídia."}},"ta":{"stringUnit":{"value":"Session மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்.","state":"translated"}},"gl":{"stringUnit":{"value":"Session necesita usar Apple Music para reproducir anexos multimedia.","state":"translated"}},"cy":{"stringUnit":{"value":"Mae angen i Session ddefnyddio Apple Music i chwarae atodiadau cyfryngau.","state":"translated"}},"tl":{"stringUnit":{"value":"Kailangan ng Session na gumamit ng Apple Music para mag-play ng mga media attachment.","state":"translated"}},"sw":{"stringUnit":{"state":"translated","value":"Session inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari."}},"ha":{"stringUnit":{"value":"Session yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai.","state":"translated"}},"cs":{"stringUnit":{"value":"Session potřebuje použít Apple Music pro přehrávání mediálních příloh.","state":"translated"}},"da":{"stringUnit":{"value":"Session skal bruge Apple Music for at afspille medievedhæftninger.","state":"translated"}},"sq":{"stringUnit":{"state":"translated","value":"Session ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje."}},"nb":{"stringUnit":{"state":"translated","value":"Session trenger å bruke Apple Music for å spille av mediavedlegg."}},"lv":{"stringUnit":{"value":"Session nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus.","state":"translated"}},"he":{"stringUnit":{"state":"translated","value":"Session זקוק ל-Apple Music כדי להפעיל צרופות מדיה."}},"si-LK":{"stringUnit":{"state":"translated","value":"මාධ්‍ය ඇමුණුම් වාදනය කිරීමට Session ට Apple Music භාවිත කිරීම අවශ්‍යයි."}},"hy-AM":{"stringUnit":{"state":"translated","value":"Session-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։"}},"ar":{"stringUnit":{"value":"Session يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط.","state":"translated"}},"be":{"stringUnit":{"value":"Session патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні.","state":"translated"}},"zh-TW":{"stringUnit":{"value":"Session 需要使用 Apple Music 來播放媒體附件。","state":"translated"}},"nl":{"stringUnit":{"value":"Session moet Apple Music gebruiken om mediabijlagen af te spelen.","state":"translated"}},"eo":{"stringUnit":{"value":"Session bezonas uzi Apple Music por ludi aŭdvidaĵojn.","state":"translated"}},"sk":{"stringUnit":{"value":"Session potrebuje používať Apple Music na prehrávanie mediálnych príloh.","state":"translated"}},"no":{"stringUnit":{"state":"translated","value":"Session må bruke Apple Music for å spille medievedlegg."}}}}}} \ No newline at end of file diff --git a/Session/Meta/Translations/Localizable.xcstrings b/Session/Meta/Translations/Localizable.xcstrings new file mode 100644 index 0000000000..69a1cc57e1 --- /dev/null +++ b/Session/Meta/Translations/Localizable.xcstrings @@ -0,0 +1,389816 @@ +{ + "sourceLanguage" : "en", + "strings" : { + "%@%@" : { + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "new", + "value" : "%1$@%2$@" + } + } + } + }, + "about" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "oor" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqqında" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "About" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аб праграме" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Относно" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "About" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quant a" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ynghylch" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Om" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "App-Info" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σχετικά" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "About" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pri" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acerca de" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teave" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Honi buruz" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درباره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tungkol sa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "À propos" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acerca de" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Game" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אודות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हमारे बारे में" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "O Programu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Névjegy" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մեր մասին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informazioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sessionについて" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სინათლის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អំពី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಗ್ಗೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정보" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەربارەی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumanya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເກີດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apie" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Par" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "За" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тухай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengenai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကြောင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Om" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "About" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Over" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Om" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਲੱਗ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O aplikacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غونډال" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sobre" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sobre" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Despre" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "О программе" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "O aplikaciji" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිළිබඳව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O programu" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "О контакту" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "O nama" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Om" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuhusu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இதைப் பற்றி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గురించి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกี่ยวกับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakkında" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Про" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "About" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqida" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giới thiệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malunga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "关于" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關於" + } + } + } + }, + "accept" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "aanvaar" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اِقبَل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qəbul et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accept" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прыняць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приемам" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accept" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepta" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přijmou" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Derbyn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akzeptieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποδοχή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accept" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akcepti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceptar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceptar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nõustu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onartu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پذیرفتن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyväksy" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tangapin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceptar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amincewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वीकृत" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvati" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elfogadás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընդունել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terima" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accetta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "許可" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიღება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទទួលយក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಂಗೀಕರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "수락" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قبوولکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakkirizza" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຍອມຮັບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priimti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieņemt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прифати" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвшөөрөх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terima" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လက်ခံပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Godta" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accept" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepteer" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Godta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Landirani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਵੀਕਾਰ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaakceptuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ومنئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceitar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceitar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acceptă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Принять" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvati" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිළිගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprejmi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прихвати" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvati" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acceptera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kubali" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஏற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒప్పుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยอมรับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kabul Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прийняти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accept" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qabul qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chấp nhận" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuma" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "接受" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "接受" + } + } + } + }, + "accountIdCopied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekening gekopieer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم نسخ معرف الحساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyi kopyalandı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID kopeke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ідэнтыфікатар уліковага запісу скапіраваны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID на акаунтът е копиран" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট আইডি কপি করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID del compte copiat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID účtu zkopírováno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Cyfrif wedi'i gopïo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto-ID kopieret" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID kopiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το ID Λογαριασμού Αντιγράφηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID Copied" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto-identigilo kopiita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de cuenta copiada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de cuenta copiada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto ID kopeeritud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu ID kopiatu da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شناسه حساب کپی شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilin tunnus kopioitu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakopya na ang Account ID" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de compte copié" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da conta copiado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idan Asusu An Kwafi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קוד חשבון הועתק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी कॉपी की गई" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Računa Kopiran" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó ID másolva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաշվի ID-ն պատճենված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Akun Disalin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID utente copiato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントIDがコピーされました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიშის ID დაკოპირდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID បានចម្លង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ID ನಕಲಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 ID 복사됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناسنامەی هەژمار کۆپی کرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID Yasibwako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກົດລະເບີຕິ້ກໍໃຫ້ຊື່ໃຫ້ສະເພາະ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paskyros ID nukopijuotas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konts ID kopēts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Акаунт ID копирано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэлийн ID хуулсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Akaun Disalin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့်အိုင်ဒီ ကူးယူပြီးပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontonummer kopiert" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी कपी गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID gekopieerd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto-ID kopiert" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID ya Akaunti Yaki embossed" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ਆਈ.ਡੀ. ਕਾਪੀ ਕੀਤੀ ਗਈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopiowano identyfikator konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د حساب آی ډي نقل شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da Conta Copiado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da Conta Copiado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID cont copiat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID аккаунта скопирован" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID računa kopiran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID පිටපත් කරන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID účtu skopírované" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID računa kopiran" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy ID të llogarisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идентификација налога је копирана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID naloga je kopiran" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontonummer Kopierat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitambulisho cha Akaunti Imenakiliwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கு அடையாளம் நகலெடுக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఖాతా ఐడి కాపీ చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คัดลอก ID บัญชีแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Kimliği Kopyalandı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID облікового запису скопійовано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID کو کاپی کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akkaunt ID nusxalandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Tài khoản đã sao chép" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iakhawunti ye-ID ikopiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "账户ID已复制" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "帳號 ID 已複製" + } + } + } + }, + "accountIDCopy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer Rekening ID" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخ معرف الحساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyini kopyala" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب کارت آئی ڈی کاپی کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіяваць Account ID" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирай Account ID" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট আইডি কপি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID del compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovat ID účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïo ID Cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiér Account ID" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID kopieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγραφή ID Λογαριασμού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Account ID" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopii identigilon de konto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID de cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID de cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri konto ID" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu IDa kopiatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی کردن ID حساب کاربری" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi Account ID" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin ang Account ID" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copier l'ID de compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID de Conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi ID na Asusun" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק מזהה חשבון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी कॉपी करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj ID računa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó ID másolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենել հաշվի ID-ն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin ID Akun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia ID utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウント ID をコピー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აკაუნტის ID-ის დაკოპირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Account ID" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ಐಡಿಯನ್ನು ನಕಲು ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 ID 복사" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبەرگەی ناونیشانی هەژمار" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa Account ID" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບເອີຢ໇ລໍ່ອີພອ່ຍ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopijuoti paskyros ID" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopēt Konta ID" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај ИД на Сметка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID-г хуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin Akaun ID" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ကို ကူးယူပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier kontoid" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी प्रतिलिपि गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer Account-ID" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier konto-ID" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Akaunti ID" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਕਾਊਂਟ ID ਕਾਪੀ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiuj identyfikator konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ټولنې URL کاپي کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID da Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar ID da Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiază ID-ul contului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопировать ID аккаунта" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj Account ID" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID පිටපත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovať ID účtu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj ID računa" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjo ID-në e llogarisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај Account ID" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj ID naloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera Konto-ID" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili ID ya Akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கு அடையாளத்தை நகலெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అకౌంట్ ID కాపీ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Account ID" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap ID'sini Kopyala" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копіювати ID облікового запису" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ آئی ڈی کاپی کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID sini nusxalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép Account ID" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa i i-ID yeAkhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制帐户ID" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "複製帳號 ID" + } + } + } + }, + "accountIdCopyDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer jou Rekening ID en deel dit met jou vriende sodat hulle vir jou boodskappe kan stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انسخ معرف حسابك ثم شاركه مع أصدقائك حتى يتمكنوا من مراسلتك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyinizi kopyalayın və dostlarınızla paylaşın ki, sizə mesaj göndərə bilsinlər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنی حساب کارت آئی ڈی کاپی کریں پھر اپانی دوستان کے ساتھ شیئر کریں تاکہ وئی پیغام بھیج سکیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіюйце ваш Account ID і падзяліцеся ім з сябрамі, каб яны змаглі вам напісаць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирайте своя Account ID и го споделете с приятелите си, за да могат да ви пишат." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার অ্যাকাউন্ট আইডি কপি করুন তারপর আপনার বন্ধুদের সাথে শেয়ার করুন যাতে তারা আপনাকে মেসেজ করতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia el teu ID de compte i comparteix-lo amb els teus amics perquè et puguin enviar missatges." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkopírujte své ID účtu a pak ho sdílejte s přáteli, aby vám mohli poslat zprávu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïwch eich ID Cyfrif wedyn rhannwch efo eich ffrindiau fel y gallant anfon neges atoch." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiér din Account ID og del den med dine venner, så de kan sende dig en besked." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiere deine Account-ID und teile sie mit deinen Freunden, damit sie dir schreiben können." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγράψτε το ID Λογαριασμού σας και στη συνέχεια μοιραστείτε το με τους φίλους σας ώστε να μπορούν να σας στείλουν μήνυμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy your Account ID then share it with your friends so they can message you." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiu vian Konto-ID-on kaj dividu ĝin kun viaj amikoj tiel ke ili povas mesaĝi al vi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia tu ID de cuenta y compártelo con tus amigos para que te puedan enviar mensajes." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia tu ID de cuenta y compártelo con tus amigos para que puedan enviarte mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri oma konto ID ja jaga seda oma sõpradega, et nad saaksid sulle sõnumeid saata." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiatu zure kontu IDa eta partekatu zure lagunekin, mezuak bidal diezazkizuketen." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID حسابت رو کپی کن و به دوستات بده که بتونن بهت پیام بدن." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi Account ID ja jaa se ystävillesi, jotta he voivat lähettää sinulle viestejä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin ang iyong Account ID at i-share ito sa iyong mga kaibigan upang sila ay makipag-ugnayan sayo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiez votre ID de compte puis partagez-le avec vos amis pour qu'ils puissent vous envoyer des messages." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia o teu ID de Conta e compárteo cos teus amizades para que poidan enviarte mensaxes." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi ID na Asusunku sannan ku raba shi da abokanku don su iya tura muku saƙonni." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק את מזהה החשבון שלך ושתף אותו עם חבריך כדי שיוכלו לשלוח לך הודעות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपनी खाता आईडी कॉपी करें और इसे अपने दोस्तों के साथ साझा करें ताकि वे आपको संदेश भेज सकें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirajte svoj ID računa zatim ga podijelite s prijateljima kako bi vam mogli poslati poruku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Másold ki a Felhasználó ID-dat, majd oszd meg barátaiddal, hogy üzenetet küldhessenek neked." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենեք ձեր հաշվի ID-ն այնուհետև բաժանվեք ձեր ընկերների հետ, որպեսզի նրանց հաղորդագրություններ ուղարկեք։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin ID Akun Anda lalu bagikan dengan teman Anda sehingga mereka dapat mengirim Anda pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia il tuo ID utente e condividilo con i tuoi amici in modo che possano mandarti un messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントIDをコピーして友達と共有し、メッセージを送ることができます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააკოპირეთ თქვენი Account ID და გაუზიარეთ თქვენს მეგობრებს, რომ მათ შეძლონ გაცნობოთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy your Account ID then share it with your friends so they can message you." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆ ಐಡಿಯನ್ನು ನಕಲು ಮಾಡಿ ಮತ್ತು ನಿಮ್ಮ ಸ್ನೇಹಿತರ ಜೊತೆ ಹಂಚಿಕೊಳ್ಳಿ ताकि ಅವರು ನಿಮಗೆ ಸಂದೇಶ ಕಳುಹಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 ID를 복사한 후 친구들에게 공유하여 메시지를 받을 수 있도록 하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبەرگرتنی ناسنامەی ناونیشانی هەژمارەکەت پاشان پەيوەندیکانەوە هەڵبژێری، دەتوانن پەیام بۆ تۆ بنێرن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa Account ID wo n’omuwe era obabule naye basobole okukuwandiikira." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບໂລ້ຍາລໍ້າເອີຮຶ້" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nukopijuokite savo paskyros ID ir pasidalinkite juo su draugais, kad jie galėtų jums parašyti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nokopējiet savu konta ID un dalieties ar saviem draugiem, lai viņi varētu jums nosūtīt ziņas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај го твојот ИД на Сметка и сподели го со твоите пријатели за да можат да ти праќаат пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID-г хуулж, найзууддаа илгээгээд таныг мессеж бичнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin Akaun ID anda lalu kongsikan dengan rakan-rakan supaya mereka boleh menghantar mesej kepada anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့် ID ကို ကူးယူပြီးနောက် သင်၏သူငယ်ချင်းများကို မက်ဆေ့ချ်ပို့နိုင်အောင် မျှဝေပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier din kontoid og del den med vennene dine så de kan sende deg meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पहिले तपाईंको खाता आईडी प्रतिलिपि गर्नुहोस अनि यसलाई तपाईंको साथिहरूलाई साझेदारी गर्नुहोस ताकि तिनीहरूले तपाईंलाई सन्देश पठाउन सक्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer je Account-ID en deel het met je vrienden zodat ze je berichten kunnen sturen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier din konto-ID og del den med vennene dine slik at dei kan sende deg ei melding." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani akaunti yanu ID kenaka mugawane ndi anzanu kuti akupatseni uthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਅਕਾਊਂਟ ID ਕਾਪੀ ਕਰੋ ਤੇ ਇਸ ਨੂੰ ਆਪਣੇ ਦੋਸਤਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰੋ ਤਾਂ ਜੋ ਉਹ ਤੁਹਾਨੂੰ ਸੁਨੇਹਾ ਭੇਜ ਸਕਣ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopiuj swój identyfikator konta, a następnie udostępnij go znajomym, aby mogli wysłać do Ciebie wiadomość." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "جوړ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copie seu ID da Conta e compartilhe com seus amigos para que possam te enviar mensagens." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copie o seu ID da Conta e partilhe-o com os seus amigos para que eles possam enviar mensagens para si." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiază ID-ul tău de cont și apoi distribuie-l prietenilor pentru a-ți putea trimite mesaje." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопируйте ID вашего аккаунта и поделитесь им с друзьями, чтобы они могли отправлять вам сообщения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirajte svoj Account ID i podijelite ga sa prijateljima kako bi vam mogli poslati poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ මිතුරන්ට එය හුවමාරු කිරීමෙන් ඔබේ ගිණුම් හැඳුනුම්පත පිටපත් කර මාංකරින් යවන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopírujte si ID účtu a potom ho zdieľajte s priateľmi, aby vám mohli posielať správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj svoj ID računa in ga deli s svojimi prijatelji, da ti bodo lahko pošiljali sporočila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjo ID-në e llogarisë pastaj ndajeni atë me miqtë tuaj që ata të mund t'ju dërgojnë mesazhe." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирајте ваш Account ID и поделите га са вашим пријатељима како би могли да вам пошаљу поруку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj svoj ID naloga i podeli ga sa prijateljima kako bi mogli da ti šalju poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera ditt Konto-ID och dela det med dina vänner så de kan skicka meddelanden till dig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili ID yako ya Akaunti kisha ushiriki na marafiki zako ili waweze kukutumia ujumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கு அடையாளத்தை நகலெடுத்து அதை உங்கள் நண்பர்களுடன் பகிருங்கள், அவர்கள் உங்களுக்கு செய்தி அனுப்பக் கூடிய வகையில்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ అకౌంట్ ID కాపీ చేసి, మీ స్నేహితులతో పంచుకోండి తద్వారా వారు మీకు సందేశం పంపగలరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy your Account ID then share it with your friends so they can message you." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap ID'nizi kopyalayıp arkadaşlarınızla paylaşarak size mesaj göndermelerini sağlayabilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопіюйте свій Account ID, а потім поділіться ним зі своїми друзями, щоб вони могли надіслати вам повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنی اکاؤنٹ آئی ڈی کاپی کریں اور اسے اپنے دوستوں کے ساتھ شیئر کریں تاکہ وہ آپ کو پیغام بھیج سکیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID ni nusxalab, do'stlaringiz bilan ulashishingiz mumkin, shunda ular sizga xabar yuborishlari mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép Account ID của bạn sau đó chia sẻ nó với bạn bè của bạn để họ có thể nhắn tin cho bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa I-ID ye-akhawunti yakho uze uyithumele kubahlobo bakho ukuze bakuthumele umyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制您的账户ID并分享给您的朋友,以便他们能够响您发送消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "複製您的帳號 ID 並把它分享給您的好友,這樣他們就能給您發訊息。" + } + } + } + }, + "accountIdEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Rekening-ID in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل معرف الحساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyini daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ ID درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце Account ID" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете Account ID" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix Account ID" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte ID účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch ID Cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast Kontonummer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε Account ID" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Account ID" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigi Account ID" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce la ID de cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingresar ID de Cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta Account ID" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu Kontu IDa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شناسه حساب را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä Account ID" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang Account ID" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez l'ID de compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o ID da Conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da Account ID" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Account ID" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite Account ID" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a Felhasználó ID-t" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք Account ID" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Account ID" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci ID utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウント ID" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ ანგარიში ID" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល Account ID" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ID ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "IDی ئەژمێر بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Account ID" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນ Account ID" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite Account ID" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet Account ID" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете ID на сметка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийн ID оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan ID Akaun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn Konto-ID" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Account-ID in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn konto-ID" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani Account ID yanu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ID ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź identyfikator konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite o ID da Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o ID da Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți ID-ul contului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите Account ID" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi Account ID" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ඇතුලත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte ID vášho účtu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite Account ID" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni ID-në e llogarisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите Account ID" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite Account ID" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange Account ID" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingiza Account ID" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ని ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อน Account ID" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Kimliğini Girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть Account ID" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID sini kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập Account ID" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-ID yeAkhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入账户ID" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入帳號 ID" + } + } + } + }, + "accountIdErrorInvalid" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie Rekening-ID is ongeldig. Gaan dit asseblief na en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معرف الحساب هذا غير صالح. يرجى التحقق والمحاولة مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Hesab Kimliyi yararsızdır. Lütfən yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ اکاؤنٹ ID بش درست نہ ہے. براہ کرم چک کریں و دوبارہ کوشش کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "This Account ID is invalid. Please check and try again." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Този идентификатор на акаунт не е валиден. Моля, проверете и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই অ্যাকাউন্ট আইডি অকার্যকর। দয়া করে চেক করুন এবং পুনরায় চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest ID de compte no és vàlid. Comproveu-ho i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto ID účtu je neplatné. Zkontrolujte to prosím a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r ID Cyfrif hwn yn annilys. Gwiriwch a rhowch gynnig arall arni os gwelwch yn dda." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne kontoid er ugyldig. Kontroller den og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Account-ID ist ungültig. Bitte überprüfe sie und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό το ID λογαριασμού είναι άκυρο. Παρακαλώ ελέγξτε και δοκιμάστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This Account ID is invalid. Please check and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu Konto IDENT. estas nevalida. Bonvolu kontroli kaj reprovi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este Account ID es inválido. Por favor verifica e inténtalo de nuevo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este ID de cuenta no es válido. Por favor verifica e intenta nuevamente." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See kontotuvastusnumber on vale. Palun kontrollige ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu ID hau baliogabea da. Mesedez, egiaztatu eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این شناسه حساب کاربری معتبر نیست. لطفا بررسی کنید و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syöttämäsi tilitunnus on virheellinen. Tarkista ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang Account ID na ito ay invalid. Paki-check at subukan muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cet ID de compte est invalide. Veuillez vérifier et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este Account ID non é válido. Por favor, comproba e tenta de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan ID na Asusu ba daidai ba ne. Da fatan a duba kuma a sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תעודת חשבון זו אינה חוקית. אנא בדוק ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह Account ID अमान्य है। कृपया जांचें और पुनः प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj ID računa nije valjan. Provjerite i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Felhasználó ID érvénytelen. Ellenőrizd, majd próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս հաշվեհամարի ID-ն սխալ է։ Խնդրում ենք ստուգեք և նորից փորձեք։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Akun ini tidak valid. Silakan periksa dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo ID utente non è valido. Controlla e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このアカウントIDは無効です。確認して再試行してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს ანგარიშის ID არასწორია. გთხოვთ გადაამოწმეთ და სცადეთ თავიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This Account ID is invalid. Please check and try again." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಅಕೌಂಟ್ ಐಡಿ ಅಮಾನ್ಯವಾಗಿದೆ. ಪರಿಶೀಲಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 계정 ID는 유효하지 않습니다. 확인 후 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم ناسنامەی هەژمارە نادروستە. تکایە ئاماژە بکە و دووبارە هەوڵبدەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akazambi ka akawunti kye kegwo. Kebera kyusa lowooza edaako." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis Account ID yra neteisingas. Patikrinkite ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis konta ID ir nederīgs. Lūdzu, pārbaudiet un mēģiniet vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа ID на сметката е неважечко. Проверете и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ Account ID буруу байна. Шалгаж дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Akaun ini tidak sah. Sila semak dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤAccount IDမသန်ချင်း။ ကျေးဇူးပြု၍ စစ်စစ်နှင့် ပြန်တှေ့ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne kontoen ID er ugyldig. Vennligst sjekk og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो अकाउन्ट ID अमान्य छ। कृपया जाँच गर्नुहोस् अनि फेरि प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit Account-ID is ongeldig. Controleer en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne kontoid-en er ugyldig. Vennligst sjekk og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID ya Akaunti iyi siilonse bwino. Chonde fufuzani ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਖਾਤਾ ID ਅਵੈਧ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprawidłowy identyfikator konta. Sprawdź i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا حساب آی ډی غلط دی. مهرباني وکړئ چک کړئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esse ID de Conta é inválido. Por favor, verifique e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este ID da Conta é inválido. Por favor, verifique e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest ID de cont este incorect. Te rugăm să verifici și să încerci din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Этот ID аккаунта неверен. Пожалуйста, проверьте и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID računa je nevažeći. Provjerite i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම ගිණුම් ஐ ڈی වලංගු නැත. කරුණාකර පිරික්සා නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto ID účtu je neplatné. Skontrolujte to a skúste znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta ID računa je neveljaven. Preverite in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky ID i Llogarisë është i pavlefshëm. Ju lutem kontrolloni dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овај Account ID је неважећи. Молимо проверите и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj Account ID nije važeći. Molimo proverite i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta konto-ID är ogiltigt. Kontrollera och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaunti ID hii si sahihi. Tafadhali angalia na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த கணக்கு ஐடி தவறானது. தயவுசெய்து சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ ఖాతా ఐడి చెల్లుబాటులో లేదు. దయచేసి తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID นี้ไม่ถูกต้อง กรุณาตรวจสอบแล้วลองใหม่อีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Hesap Kimliği geçersiz. Lütfen kontrol edip tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей Account ID недійсний. Будь ласка, перевірте і повторіть спробу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ اکاؤنٹ آئی ڈی غیر درست ہے۔ براہ کرم چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu Account ID noto'g'ri. Iltimos, tekshirib qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mã Tài Khoản này không hợp lệ. Vui lòng kiểm tra và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le-ID ye-Akhawunti ayisebenzi. Nceda ujonge uze uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此账号ID无效。请检查后重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個帳號 ID 無效。請檢查並重試。" + } + } + } + }, + "accountIdOrOnsEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Rekening-ID of ONS in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل معرف الحساب أو ONS" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyini və ya ONS-si daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ ID یا ONS درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце Account ID або ONS" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете Account ID или ONS" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID অথবা ONS লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix Account ID o ONS" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte ID účtu nebo ONS" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch ID Cyfrif neu ONS" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast Kontonummer eller ONS" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID oder ONS eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε Account ID ή ONS" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Account ID or ONS" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eniri Account ID aŭ ONS" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce la ID de cuenta o el ONS" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrese ID de Cuenta o ONS" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta Account ID või ONS" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu Kontu IDa edo ONS" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شناسه حساب یا ONS را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä Account ID tai ONS" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang Account ID o ONS" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez l'ID de compte ou ONS" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o ID da Conta ou ONS" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da Account ID ko ONS" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Account ID or ONS" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी या ओएनएस दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite Account ID ili ONS" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a Felhasználó ID-t vagy ONS-t" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք Account ID կամ ONS" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Account ID atau ONS" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci ID utente o ONS" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウント ID または ONS" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ ანგარიში ID ან ONS" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល Account ID ឬ ONS" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ಅಥವಾ ONS ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID 또는 ONS 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "IDی ئەژمێر یان ONS بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Account ID oba ONS" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນ Account ID ຫຼື ONS" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite Account ID arba ONS" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet Account ID vai ONS" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете ID на сметка или ONS" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийн ID эсвэл ONS оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan ID Akaun atau ONS" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID သို့မဟုတ် ONS ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn Konto-ID eller ONS" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी वा ONS प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Account-ID of ONS in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn konto-ID eller ONS" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani Account ID yanu kapena ONS" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ID ਜਾਂ ONS ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź identyfikator konta lub ONS" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID یا ONS ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite o ID da Conta ou ONS" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira o ID da Conta ou o ONS" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți ID-ul contului sau ONS" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите Account ID или ONS" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi Account ID ili ONS" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID හෝ ONS ඇතුලත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte ID vášho účtu alebo ONS" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite Account ID ali ONS" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni ID-në e llogarisë ose ONS" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите Account ID или ONS" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite Account ID ili ONS" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange Account ID eller ONS" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingiza Account ID au ONS" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID அல்லது ONS உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID లేదా ONS ని ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อน Account ID หรือ ONS" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Kimliğini veya ONS'yi Girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть Account ID або ONS" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID یا ONS درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID yoki ONS kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập Account ID hoặc ONS" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-ID yeAkhawunti okanye i-ONS" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入账户ID或ONS" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入帳號 ID 或 ONS" + } + } + } + }, + "accountIdOrOnsInvite" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi Rekening ID of ONS" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوة باستخدام معرف الحساب أو ONS" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab kimliyi və ya ONS dəvət et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ آئی ڈی یا ONS کو مدعو کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрасіць Account ID або ONS" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покана за ИД Акаунт или ONS" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID বা ONS আমন্ত্রণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convida identificació de compte o ONS" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvat ID účtu nebo ONS" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahodd ID Cyfrif neu ONS" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite Account ID eller ONS" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite Account ID or ONS" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόσκληση Account ID ή ONS" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite Account ID or ONS" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviti Account ID aŭ ONS" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar ID de Cuenta o ONS" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar ID de Cuenta o ONS" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu Account ID või ONS" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu ID edo ONS gonbidatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت شناسه ی کاربری یا ONS" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu Account ID tai ONS" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbita ng Account ID o ONS" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter ID de compte ou ONS" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar Account ID ou ONS" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gayyaci Account ID ko ONS" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמן את מספר הזיהוי או ה-ONS" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID या ONS आमंत्रित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi Account ID ili ONS" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó ID vagy ONS meghívása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրել Account ID կամ ONS" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undang ID Akun atau ONS" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita ID utente o ONS" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントIDまたはONSを招待" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვიე Account ID ან ONS" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញ Account ID ឬ ONS" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಷಮಿಸಿ ಖಾತೆ ID ಅಥವಾ ONS ಆಮಂತ್ರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 ID 또는 ONS 초대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانێ شناسیەتی حساب یان ONS" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita Account ID oba ONS" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakviesti Account ID arba ONS" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaicināt konta ID vai ONS" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканете Сметка ИД или ONS" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэлийн ID эсвэл ONS урилга" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemput ID Akaun atau ONS" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID သို့မဟုတ် ONS ကို ဖိတ်ကြားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitere Account ID eller ONS" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी वा ओएनएसलाई निमन्त्रणा गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodigen Account-ID of ONS" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitér Account ID eller ONS" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina Account ID kapena ONS" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਕਾਊਂਟ ਆਈਡੀਆ ਜਾਂ ਥਾਂ ਨੂੰ ਸੱਦਣ ਲਈ ਸੱਦੇ ਬਟਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproś na podstawie identyfikatora konta lub ONS" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب ID یا ONS بلنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar ID da Conta ou ONS" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar ID da Conta ou ONS" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invită ID-ul de cont sau ONS" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пригласить Account ID или ONS" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi Account ID ili ONS" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගිණුම් ID හෝ ONS ආරාධනා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvať Account ID alebo ONS" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabi Account ID ali ONS" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fto Account ID ose ONS" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позови Account ID или ONS" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi Account ID ili ONS" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bjud in Account ID eller ONS" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alika kitambulisho cha Akaunti au ONS" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கு ஐடி அல்லது ONS அழைக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఖాతా ID లేదా ONSని ఆహ్వానించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญ Account ID หรือ ONS" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap ID veya ONS Davet Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросити Account ID або ONS" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite Account ID یا ONS" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID yoki ONS taklif qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời Account ID hoặc ONS" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mema i-akhawunti yesazisi okanye i-ONS" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请帐号ID或ONS" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請帳號ID或ONS" + } + } + } + }, + "accountIdShare" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, ek gebruik {app_name} om met volledige privaatheid en sekuriteit te gesels. Kom sluit aan by my! My Rekening ID is

{account_id}

Laai dit af by {session_download_url}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salam, {app_name} ilə tam məxfilik və təhlükəsizliklə söhbət edirəm. Mənə qoşul! Hesab kimliyim

{account_id}

Endirmə keçidi: {session_download_url}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہی، من {app_name} کامل پرائیویسی و سیکورٹی استفاده کت. مئے سروں آیی! مئی اکاؤنٹ ID ہے

{account_id}

اے ابتکار {session_download_url}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Здравей, използвам {app_name} за напълно поверителен и защитен чат. Присъедини се към мен! Моят Account ID е

{account_id}

Изтегли го от {session_download_url}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "হাই, আমি সম্পূর্ণ গোপনীয়তা এবং নিরাপত্তার সাথে চ্যাট করতে {app_name} ব্যবহার করছি। আমার সাথে যোগ দিন! আমার একাউন্ট আইডি হল

{account_id}

{session_download_url} এ ডাউনলোড করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei, he estat utilitzant {app_name} per a xatejar amb seguretat i privacitat completes. Uneix-t'hi! L'identificador del meu compte és

{account_id}

Descarregueu-vos a {session_download_url}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahoj, používám {app_name} k rychlou komunikaci s úplným soukromím a bezpečností. Připoj se ke mě! Moje ID účtu je

{account_id}

Adresa pro stažení je {session_download_url}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hei, rydw i wedi defnyddio {app_name} i sgwrsio gyda chyfrinachedd a diogelwch llwyr. Dewch i ymuno â mi! Fy ID Cyfrif yw

{account_id}

Lawrlwythwch ef yn {session_download_url}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, jeg har brugt {app_name} til at chatte med fuld fortrolighed og sikkerhed. Kom og join mig! Mit Account ID er

{account_id}

Download det på {session_download_url}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, ich nutze {app_name} für sicheres und privates Chatten. Schließe dich mir an! Meine Account-ID ist:

{account_id}

Lade die App hier herunter: {session_download_url}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γεια, χρησιμοποιώ το {app_name} για να συνομιλώ με πλήρη ιδιωτικότητα και ασφάλεια. Έλα μαζί μου! Το ID του Λογαριασμού μου είναι

{account_id}

Κατεβάστε το στο {session_download_url}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, Mi uzas {app_name} por babili kun plena privateco kaj sekureco. Venu aliĝi! Mia Konto ID estas

{account_id}

Elŝutu ĝin ĉe {session_download_url}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Hola! He estado usando {app_name} para chatear con total privacidad y seguridad. ¡Chatea conmigo! Mi ID de cuenta es

{account_id}

Descárgala en {session_download_url}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hola, he estado usando {app_name} para chatear con completa privacidad y seguridad. ¡Únete a mí! Mi ID de Cuenta es

{account_id}

Descarga la aplicación en {session_download_url}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hei, olen kasutanud {app_name} privaatsuseteks ja turvalisteks vestlusteks. Liitu minuga! Minu Konto ID on

{account_id}

Lae alla siit {session_download_url}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaixo, ni {app_name} erabiltzen ari naiz guztiz pribatutasuna eta segurtasuna dituen txat zerbitzua erabiliz. Zatoz nirekin! Nire Kontu IDa da

{account_id}

Deskargatu helbide honetan {session_download_url}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سلام، من از {app_name} برای چت کردن با حداکثر حریم خصوصی و امنیت استفاده می‌کنم. به من بپیوند! شناسه حساب من

{account_id}

آن را از {session_download_url} دانلود کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hei, olen käyttänyt {app_name} keskustellakseni täydellä yksityisyydellä ja turvallisuudella. Liity mukaan! Tilini ID on

{account_id}

Lataa se osoitteessa {session_download_url}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salut, j'utilise {app_name} pour discuter en toute confidentialité et sécurité. Venez me rejoindre ! Mon identifiant est

{account_id}

Télécharger l'app sur {session_download_url}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, na kasance ina amfani da {app_name} don yin hira tare da cikakken sirri da tsaro. Ku zo ku zo min! ID na Asusuna ita ce

{account_id}

Zazzage ta daga {session_download_url}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "היי, אני משתמש ב-{app_name} כדי לשוחח בפרטיות ובביטחון מוחלטים. הצטרף אליי! מזהה החשבון שלי הוא

{account_id}

הורד אותו ב-{session_download_url}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अरे, मैं पूर्ण गोपनीयता और सुरक्षा के साथ चैट करने के लिए {app_name} का उपयोग कर रहा हूँ। मेरे साथ जुड़ें! मेरी Account ID है

{account_id}

इसे डाउनलोड करें {session_download_url}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, koristim {app_name} za razgovor sa potpunom privatnošću i sigurnošću. Dođi mi se pridružiti! Moj ID računa je

{account_id}

Preuzmi ga na {session_download_url}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szia, a {app_name} alkalmazást használom, hogy teljes biztonságban és anonimitásban csevegjek. Csatlakozz hozzám! Az én Felhasználó ID-m

{account_id}

Töltsd le innen: {session_download_url}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բարև, ես օգտագործում եմ {app_name} անխափան գաղտնիության և անվտանգության համար: Միացեք ինձ! Իմ Account ID-ն է

{account_id}

Ներբեռնեք այն {session_download_url}-ում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi, saya menggunakan {app_name} untuk mengobrol dengan privasi dan keamanan penuh. Ayo bergabunglah dengan saya! ID Akun saya adalah

{account_id}

Unduh di {session_download_url}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ciao! Sto usando {app_name} per chattare in completa privacy e sicurezza. Unisciti a me! Il mio ID utente è

{account_id}

Scaricalo da qui: {session_download_url}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "こんにちは、{app_name}を使って完全にプライバシーとセキュリティを守りながらチャットしています。一緒に使ってみませんか?私のアカウントIDは

{account_id}

です。こちらからダウンロードしてください: {session_download_url}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೇ, ನಾನು {app_name} ಕೊಂಡು ಪೂರ್ಣ ಖಾಸಗಿತನ ಮತ್ತು ಭದ್ರತೆ ಹೊಂದಿರುವ ಸಂವಹನ ಮಾಡುತ್ತಿರುವೆನು. ನಾನೊಂದಿಗೆ ಸೇರಿ! ನನ್ನ ಖಾತೆ ಐಡಿ

{account_id}

ಇಲ್ಲಿ ಡೌನ್‌ಲೋಡ್ ಮಾಡಿ {session_download_url}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "안녕하세요, 저는 {app_name}을 사용하여 완전한 프라이버시와 보안 속에서 채팅하고 있어요. 함께 하세요! 제 계정 ID는

{account_id}

다운로드 링크: {session_download_url}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڵاو, من بەکار ئەهێنمەوەی {app_name} بۆ گفتووگۆکردن بە تەواوی تایبەتمەندی و سوپایەتی. بۆ سەردانی پەیوەندنە. ناسنامەی ئەژماریم

{account_id}

داگرتن لە {session_download_url}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, nkozesezza {app_name} okwogera n'obukuumi obuweddemu ebyama. Jangala! Akonto ID yange eri

{account_id}

Dowaana yi eri {session_download_url}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, I've been using {app_name} to chat with complete privacy and security. Come join me! My Account ID is

{account_id}

Download it at {session_download_url}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sveiki, es izmantoju {app_name}, lai sazinātos ar pilnīgu privātumu un drošību. Nāc pievienojies! Mans Account ID ir

{account_id}

Lejupielādēt to {session_download_url}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Здраво, јас го користам {app_name} за комуницирање со целосна приватност и сигурност. Придружете ми се! Мојот Account ID е

{account_id}

Превземете го на {session_download_url}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сайн уу, би {app_name}-ийг ашиглан аюулгүй, нууцлалтайгаар харилцаж байна. Надтай нэгдээрэй! Миний Account ID

{account_id}

{session_download_url}-ээс татаж авах боломжтой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, Saya telah menggunakan {app_name} untuk bersembang dengan privasi dan keselamatan sepenuhnya. Sertai saya! ID Akaun saya ialah

{account_id}

Muat turun di {session_download_url}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟေ့၊ ကျွန်ုပ်တယ် {app_name} အားလုံး ပုရိသတို့၊ လုံခြုံရေးနဲ့တကွ ချက်ချင်းမက်ဆေ့ချ်တွေလာလို့မဟုတ်ပါ၊ ကျွန်ုပ်တို့ထံ လာပါ! ကျွန်ုပ်တို့၏ အကောင့် ID က

{account_id}

ဒါတွဲပါ။ {session_download_url} တွေ့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hei, jeg har brukt {app_name} til å chatte med fullstendig personvern og sikkerhet. Kom og bli med! Min Account ID er

{account_id}

Last den ned på {session_download_url}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हे, म पूर्ण गोपनीयता र सुरक्षा सहित च्याट गर्न {app_name} प्रयोग गर्दैछु। मलाई सामेल गर्नुहोस्! मेरो खाता ID छ

{account_id}

यसलाई {session_download_url} मा डाउनलोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, ik gebruik {app_name} om volledig privé en veilig te chatten. Doe mee! Mijn Account ID is

{account_id}

Download het op {session_download_url}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hei, eg har brukt {app_name} til å chatte med full personvern og tryggleik. Bli med meg! Min Account ID er

{account_id}

Last det ned på {session_download_url}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndadzidzidzi, ndakhala ndikugwiritsa ntchito {app_name} kuti ndikambirane motalika ndikutetezeka. Bwerani kudzathamanga ndi ine! ID ya akaunti yanga ndi

{account_id}

Koperani ku {session_download_url}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੈਲੋ, ਮੈਂ ਪੂਰੀ ਗੁਪਤਗਤੀ ਅਤੇ ਸੁਰੱਖਿਆ ਨਾਲ ਗੱਲਬਾਤ ਕਰਨ ਲਈ {app_name} ਦੀ ਵਰਤੋਂ ਕਰ ਰਿਹਾ ਹਾਂ। ਮੇਰੇ ਸਾਥ ਸ਼ਾਮਲ ਹੋਵੋ! ਮੇਰਾ ਅਕਾਉਂਟ ID ਹੈ

{account_id}

{session_download_url} 'ਤੇਡਾਊਨਲੋਡ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, używam aplikacji {app_name} do czatów. Daje ona pełną prywatność i jest kompletnie bezpieczna. Dołącz do mnie! Mój identyfikator konta to

{account_id}

Pobierz aplikację pod adresem {session_download_url}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هی، ما {app_name} کارولی ترڅو په بشپړ محرمیت او امنیت سره خبرې وکړم. راځئ چې ما سره یوځای کړئ! زما حساب ID دی

{account_id}

دا ډاونلوډ کړئ {session_download_url}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei, estou usando {app_name} para conversar com completa privacidade e segurança. Junte-se a mim! Meu ID de Conta é

{account_id}

Baixe em {session_download_url}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olá, tenho usado {app_name} para conversar com total privacidade e segurança. Junta-te a mim! O meu ID da Conta é

{account_id}

Faz download em {session_download_url}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salut, folosesc {app_name} pentru a discuta în completă confidențialitate și siguranță. Vino alături de mine! ID-ul contului meu este

{account_id}

Descarcă la adresa {session_download_url}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Привет, я использую {app_name} для конфиденциального общения с максимальной защищенностью. Присоединяйся ко мне! Мой ID аккаунта:

{account_id}

Загрузи приложение по ссылке {session_download_url}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, koristim {app_name} da razgovaram uz potpunu privatnost i sigurnost. Pridruži mi se! Moj ID naloga je

{account_id}

Preuzmi ga na {session_download_url}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආයුබෝ! මම {app_name} භාවිතා කරමින් පෞද්ගලිකත්වය සහ ආරක්‍ෂාව සමග කතාබස් කරමි. මා සමඟ එක්වන්න! මගේ ගිණුම් හැඳුනුම් අංකය

{account_id}

එය {session_download_url} වෙතින් භාගත කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahoj, používam {app_name} na chatovanie s úplným súkromím a bezpečnosťou. Pridaj sa ku mne! Moje ID účtu je

{account_id}

Stiahni si ho na {session_download_url}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, uporabljam {app_name} za popolnoma zasebne in varne pogovore. Pridruži se mi! Moj ID računa je

{account_id}

Prenesi na {session_download_url}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, unë kam përdorur {app_name} për të biseduar me plotësisht privatësi dhe siguri. Bëhu pjesë! ID-ja ime e llogarisë është

{account_id}

Shkarkoje atë në {session_download_url}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хеј, користим {app_name} да ћаскам уз потпуну приватност и сигурност. Придружи ми се! Мој ID налога је

{account_id}

Преузмите га на {session_download_url}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, koristim {app_name} da razgovaram sa potpunom privatnošću i sigurnošću. Pridruži mi se! Moj ID naloga je

{account_id}

Preuzmi ga na {session_download_url}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hej, jag har använt {app_name} för att chatta med fullständig integritet och säkerhet. Kom och gå med! Mitt Account ID är

{account_id}

Ladda ner från {session_download_url}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, nimekuwa nikitumia {app_name} kupiga gumzo na kupata faragha kabisa na usalama. Njoo ujiunge nami! Kitambulisho changu cha Akaunti ni

{account_id}

Pakua kwenye {session_download_url}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஹே, நான் {app_name} பயன்படுத்தி முழுமையான தனிப்பட்ட மற்றும் பாதுகாப்பான உரையாடலை செய்துகொள்கிறேன். என்னுடன் சேருங்கள்! எனது கணக்கு ஐடி

{account_id}

இதை {session_download_url}ல் பதிவிறக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "హే, నేను {app_name} ను పూర్తిగా గోప్యత మరియు భద్రతతో చాట్ చేయడానికి ఉపయోగిస్తున్నాను. నాతో చేరండి! నా ఖాతా ID

{account_id}

దానిని {session_download_url} లో డౌన్‌లోడ్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เฮ้! ฉันกำลังใช้งาน {app_name} เพื่อแชทด้วยความเป็นส่วนตัวและความปลอดภัย มาร่วมกับฉันสิ! รหัสบัญชีของฉันคือ

{account_id}

ดาวน์โหลดได้ที่ {session_download_url}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, {app_name} uygulamasını tam gizlilik ve güvenlik ile sohbet etmek için kullanıyorum. Bana katıl! Hesap ID'm

{account_id}

{session_download_url} bağlantısını ziyaret ederek indir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Привіт, я використовую {app_name} задля повністю приватного та безпечного спілкування. Долучайтесь! Мій Account ID

{account_id}

Завантажуйте на {session_download_url}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارے، میں مکمل پرائیویسی اور سیکیورٹی کے ساتھ چیٹ کرنے کے لئے {app_name} کا استعمال کر رہا ہوں۔ آئیں میرے ساتھ شامل ہوں! میری یعنی اکاؤنٹ آئی ڈی ہے

{account_id}

{session_download_url} پر ڈاؤن لوڈ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hey, men {app_name} dan foydalanib, to'liq maxfiylik va xavfsizlik bilan suhbatlashmoqdaman. Menga qoshiling! Mening Hisob ID im

{account_id}

Yuklab olish uchun {session_download_url}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Này, tôi đã sử dụng {app_name} để trò chuyện với sự riêng tư và bảo mật hoàn toàn. Hãy tham gia cùng tôi! ID tài khoản của tôi là

{account_id}

Tải về tại {session_download_url}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molo, bendisebenzisa i-{app_name} ukuncokola ngokupheleleyo ngokukhuselekileyo. Yiza ujoyine nam! ID yami yeAkhawunti ngu

{account_id}

Khuphela kwi {session_download_url}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "嗨,我在使用{app_name}进行完全私密和安全的聊天。快来加入我吧!我的帐户ID是

{account_id}

,在{session_download_url}下载这个应用" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "嘿,我一直在使用 {app_name} 進行完全隱私和安全的聊天。快來加入我吧!我的帳號ID 是

{account_id}

在此下載:{session_download_url}" + } + } + } + }, + "accountIdYours" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou Rekening ID" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معرف حسابك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab kimliyiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تُں اکاونٹ دی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш ідэнтыфікатар уліковага запісу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето идентификационно име на акаунта" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার অ্যাকাউন্ট আইডি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "El vostre Identificador de Compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID vašeho účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eich ID Cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din Konto ID" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deine Account-ID" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το ID του Λογαριασμού σας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your Account ID" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via Konta ID" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Su ID de cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Su ID de cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie konto ID" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure Kontuaren IDa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your Account ID" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your Account ID" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iyong Account ID" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre ID de compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O Teu Identificador de Conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID na Asusunku" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מזהה החשבון שלך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका खाता ID" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš Account ID" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Felhasználó ID-d" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հաշվի ID-ն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID akun anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il tuo ID utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウント ID" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი Account ID" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID របស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆ ID" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your Account ID" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID ی ئەژمێرەک" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID Yo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų paskyros ID" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu Konta ID" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашиот Account ID" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны Account ID" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Akaun Anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် အကောင့် ID" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din kontoid" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको खाता आईडी" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw Account-ID" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din kontoid" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nambala yanu ya Akaunti" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਖਾਤਾ ID" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twój identyfikator konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو حساب ID" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da sua Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "O seu ID de Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID-ul contului tău" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID вашего аккаунта" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoj ID Računa" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ ගිණුම් හැඳුනුම් අංකය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID vášho účtu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš Account ID" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID-ja juaj e Llogarisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш ID налога" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID vašeg naloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din Account ID" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaunti ID yako" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கு ஐடி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఖాతా ID" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID ของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Kimliğiniz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш ідентифікатор облікового запису" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا اکاؤنٹ آئی ڈی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi xabarlar Google ning notification servers orqali toʻgʻri va darhol bildiriladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Tài khoản của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-Account ID yakho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的账户ID" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "你的帳號 ID" + } + } + } + }, + "accountIdYoursDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie is jou Rekening-ID. Ander gebruikers kan dit skandeer om 'n gesprek met jou te begin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذا معرف الحساب الخاص بك. يمكن للمستخدمين الآخرين مسحه ضوئيا لبدء محادثة معك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, sizin Hesab Kimliyinizdir. Digər istifadəçilər onu skan edərək sizinlə danışıq başlada bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کا اکاؤنٹ ID ہی۔ دوسرے صارفین اسے اسکین کر سکتے ہیں تاکہ وہ آپ کے ساتھ ایک گفتگو شروع کر سکیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your Account ID. Other users can scan it to start a conversation with you." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това е вашият идентификатор на акаунт. Други потребители могат да го сканират, за да започнат разговор с вас." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি আপনার অ্যাকাউন্ট আইডি। অন্য ইউজাররা এটি স্ক্যান করতে পারে সাথে কথোপকথন শুরু করতে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest és el vostre ID de compte. Els altres usuaris el poden escanejar per a encetar una conversa amb vós." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto je vaše ID účtu. Ostatní uživatelé jej mohou naskenovat, aby s vámi mohli zahájit konverzaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dyma eich ID Cyfrif. Gall defnyddwyr eraill ei sganio i ddechrau sgwrs gyda chi." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette er din kontoid. Andre brugere kan scanne den for at starte en samtale med dig." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dies ist deine Account-ID. Andere Benutzer können sie scannen, um eine Unterhaltung mit dir zu beginnen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό είναι το ID λογαριασμού σας. Άλλοι χρήστες μπορούν να το σαρώσουν για να ξεκινήσουν μια συνομιλία μαζί σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your Account ID. Other users can scan it to start a conversation with you." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tio estas via Konto IDENT. Aliaj uzantoj povas skani ĝin por komenci konversacion kun vi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este es tu Account ID. Otros usuarios pueden escanearlo para iniciar una conversación contigo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este es tu ID de cuenta. Otros usuarios pueden escanearlo para iniciar una conversación contigo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See on teie kontotuvastusnumber. Teised kasutajad saavad seda skaneerida, et alustada teiega vestlust." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hau zure Kontu ID-a da. Beste erabiltzaileek eskaneatu dezakete zurekin erlazionatzeagatik." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این شناسه حساب کاربری شماست. کاربران دیگر می‌توانند آن را اسکن کنند تا با شما مکالمه را آغاز کنند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä on tilitunnuksesi. Muut käyttäjät voivat skannata sen aloittaakseen keskustelun kanssasi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ito ang iyong Account ID. Maaaring i-scan ito ng ibang mga user upang magsimula ng pag-uusap sa iyo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceci est votre ID de compte. Les autres utilisateurs peuvent le scanner pour démarrer une conversation avec vous." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este é o teu Account ID. Outros usuarios poden escanealo para comezar unha conversa contigo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan shine ID na Asusu naka. Wasu masu amfani na iya bincika shi don fara hira tare da kai." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "זוהי תעודת החשבון שלך. משתמשים אחרים יכולים לסרוק אותה כדי להתחיל איתך שיחה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह आपका Account ID है। अन्य उपयोगकर्ता आपके साथ बातचीत शुरू करने के लिए इसे स्कैन कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je vaš ID računa. Drugi korisnici ga mogu skenirati kako bi započeli razgovor s vama." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a te Felhasználó ID-d. Más felhasználók beszkennelhetik, hogy egy beszélgetést indítsanak el veled." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա ձեր հաշվի ID-ն է։ Այլ օգտատերերը կարող են սկանավորել այն՝ ձեզ հետ խոսակցություն սկսելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini adalah ID akun anda. Pengguna lain bisa memindainya untuk memulai percakapan dengan anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo è il tuo ID utente. Altri utenti possono scansionarlo per iniziare una conversazione con te." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "これはあなたのアカウントIDです。他のユーザーはこれをスキャンしてあなたと会話を始めることができます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს არის თქვენი ანგარიშის ID. სხვა მომხმარებლებს შეუძლიათ სკანირებას ჩატრების დასაწყებად თქვენი სკანირება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your Account ID. Other users can scan it to start a conversation with you." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇದು ನಿಮ್ಮ ಅಕೌಂಟ್ ಐಡಿ ಆಗಿದೆ. ಇತರ ಬಳಕೆದಾರರು ನಿಮ್ಜೊಡನೆ ಸಂಭಾಷಣೆ ಪ್ರಾರಂಭಿಸಲು ಇದನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이는 당신의 계정 ID입니다. 다른 사용자가 이를 스캔하여 당신과 대화를 시작할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەمە ناسنامەی هەژمارەکەتە. بەکارهێنەران دیگرە بەسەرەدانی ئێوە کاری پەیوەندیدانی پەیامیەک ناردنی تێوافێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kiri kawunti kyo kayinza okugisorana okukuba embaga eeraluuyi naawe." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai jūsų Account ID. Kiti naudotojai gali jį nuskenuoti ir pradėti pokalbį su jumis." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis ir tavs konta ID. Citi lietotāji to var noskenēt, lai uzsāktu sarunu ar tevi." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова е вашето ID на сметката. Другите корисници можат да го скенираат за да започнат разговор со вас." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ таны Account ID. Хэрэглэгчид үүнийг скан хийж тантай яриа эхлүүлж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini adalah ID Akaun anda. Pengguna lain boleh mengimbasnya untuk memulakan perbualan dengan anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသည်မှာ သင့်၏ Account ID ဖြစ်သည်။ အခြားအသုံးပြုသူများသည် ၎င်းကိုစကန်ဖတ်စီးပြီး သင့်နှင့် စကားပြော ဆိုမှုကို စတင်နိုင်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette er din Kontoinformasjon. Andre brukere kan skanne den for å starte en samtale med deg." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो तपाईंको खाता आईडी हो। अन्य प्रयोगकर्ताहरूले तपाईं संग कुरा गर्न यस स्क्यान गर्न सक्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit is uw Account-ID. Andere gebruikers kunnen het scannen om een gesprek met u te beginnen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette er din kontoid. Andre brukere kan skanne den for å starte en samtale med deg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iyi ndi ID yanu ya Akaunti. Ogwiritsa ntchito ena amatha kujambula chizindikiro ichi kuti ayambe kulankhula nanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਤੁਹਾਡਾ ਖਾਤਾ ID ਹੈ। ਹੋਰ ਵਰਤੇ ਇਸਨੂੰ ਸਕੈਨ ਕਰਕੇ ਤੁਹਾਡੇ ਨਾਲ ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰ ਸਕਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To Twój identyfikator konta. Inni użytkownicy mogą go zeskanować, aby rozpocząć z Tobą rozmowę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا ستاسو حساب آی ډی دی. نور کاروونکي کولی شي دا سکين کړي ترڅو له تاسو سره خبرې پیل کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este é o seu ID de Conta. Outros usuários podem escaneá-lo para iniciar uma conversa com você." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este é o seu ID da Conta. Outros utilizadores podem verificá-lo para iniciar uma conversa consigo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acesta este ID-ul tău de cont. Alți utilizatori îl pot scana pentru a începe o conversație cu tine." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это ваш ID аккаунта. Другие пользователи могут сканировать его, чтобы начать беседу с вами." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je tvoj ID računa. Ostali korisnici mogu ga skenirati kako bi započeli razgovor s tobom." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය ඔබගේ ගිණුම් ஐ ڈی වයි. වෙනත් පරිශීලකයින්ට එය ස්කෑන් කළ හැක, ඔබ සමඟ සංවාදයක් ආරම්භ කිරීමට." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto je vaše ID účtu. Ostatní používatelia ho môžu oskenovať, aby mohli s vami začať konverzáciu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To je vaš Account ID. Drugi uporabniki ga lahko skenirajo za začetek pogovora z vami." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky është ID i Llogarisë tuaj. Përdoruesit e tjerë mund ta skanojnë atë për të filluar një bisedë me ju." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово је ваш Account ID. Други корисници могу да га скенирају да започну разговор са вама." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je vaš Account ID. Drugi korisnici mogu da ga skeniraju da bi započeli razgovor sa vama." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta är ditt konto-ID. Andra användare kan skanna det för att starta en konversation med dig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huu ni ID yako ya Akaunti. Watumiaji wengine wanaweza kuuchanganua kuanzisha zungumzo na wewe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது உங்கள் கணக்கு ஐடி. பிற பயனர்கள் உங்களை தொடர்பு கொள்ள அதை ஸ்கேன் செய்யலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది మీ ఖాతా ఐడి. ఇతర వినియోగదారులు దీనిని స్కాన్ చేసి మీతో సంభాషణ చేయవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "นี่คือ Account ID ของคุณ ผู้ใช้รายอื่นสามารถสแกนเพื่อเริ่มการสนทนากับคุณได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizin Hesap Kimliğiniz. Diğer kullanıcılar, sizinle bir oturum başlatmak için tarayabilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це ваш Account ID. Інші користувачі можуть просканувати його, щоб почати розмову з вами." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کی اکاؤنٹ آئی ڈی ہے۔ دوسرے صارفین آپ سے بات چیت شروع کرنے کے لیے اس کو اسکین کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizning Account IDingiz. Boshqa foydalanuvchilar buni skanerlab siz bilan suhbatni boshlashi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đây là Mã Tài Khoản của bạn. Những người khác có thể quét nó để bắt đầu trò chuyện với bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le yi-ID yakho ye-Akhawunti. Abanye abasebenzisi banokuyiskena ukuqalisa incoko nawe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "这是您的账户ID。其他用户可以扫描它来与您开始会话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這是您的帳號 ID。其他使用者可以掃描來與你對話。" + } + } + } + }, + "actualSize" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Werklike Grootte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الحجم الحقيقي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktual həcmi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلی گوک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зыходны памер" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фактический размер" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actual Size" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mida actual" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Běžná velikost" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maint Go Iawn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faktisk størrelse" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalgröße" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πραγματικό Μέγεθος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actual Size" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Efektiva grandeco" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño original" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño original" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegelik suurus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaina Erreala" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سایز واقعی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alkuperäinen koko" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Totoong Laki" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taille réelle" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño real" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Girman Gaskiya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גודל ממשי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वास्तविक आकार" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvarna veličina" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eredeti méret" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իրական չափս" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuran Sebenarnya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dimensione attuale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "実サイズ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "რეალური ზომა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទំហំជាក់ស្តែង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವास्तವಿಕ ಗಾತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실제 크기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قەبارەی ڕاستەقینە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obunene Obwa Nnaku" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂະໜາດທີ່" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įprastas dydis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reālais izmērs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вистинска големина" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бодит хэмжээ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saiz Sebenar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တိကျသည့် အရွယ်အစား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprinnelig størrelse" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "असली आकार" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Werkelijke grootte" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprinnelig størrelse" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukula Kwenikweni" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਾਸਤਵਿਕ ਆਕਾਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rzeczywisty rozmiar" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حقیقی اندازه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho normal" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho Real" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mărime actuală" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фактический размер" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvarna Veličina" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සැබෑ ප්‍රමාණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skutočná veľkosť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privzeta velikost" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Madhësi Faktike" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тачна величина" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvarna veličina" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktuella storlek" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukubwa Halisi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சரியான அளவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "యధాతధ పరిమాణం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดจริง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Normal Boyut" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Актуальний розмір" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حقیقی سائز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hozirgi Hajmi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kích thước thật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubukhulu Banga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "实际尺寸" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "實際大小" + } + } + } + }, + "add" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voeg by" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "َأَضف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əlavə et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "زیاد کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадаць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добави" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afegir" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přidat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ychwanegu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilføj" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hinzufügen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσθήκη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aldoni" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisa" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gehitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "افزودن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisää" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idagdag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engadir" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙara" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הוסף" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hozzáadás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambahkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiungi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "追加" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დამატება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បន្ថែម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸೇರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "추가" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زیاد بکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongera" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເພີ່ມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienot" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэмэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထည့်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "थप्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toevoegen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjezerani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸ਼ਾਮਿਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اضافه کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adaugă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "එකතු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shto" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lägg till" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeza" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேர்க்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జోడించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพิ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شامل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'shish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thêm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongeza" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "添加" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "新增" + } + } + } + }, + "adminCannotBeRemoved" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins kan nie verwyder word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لايمكن ازاله الادمن." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminlər çıxarıla bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن ختم نہیں کیا جا سکتا۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адміністратары не могуць быць выдаленыя." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторите не могат да бъдат премахнати." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন রিমুভ করা যাবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els administradors no es poden eliminar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správce nelze odebrat." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ellir dileu gweinyddwyr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins kan ikke fjernes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins können nicht entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι διαχειριστές δεν μπορούν να αφαιρεθούν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins cannot be removed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administrantoj ne povas esti forigitaj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los administradores no pueden ser eliminados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los administradores no pueden ser eliminados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminneid ei saa eemaldada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaileak ezin dira kendu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ادمین‌ها نمی‌توانند حذف شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylläpitäjiä ei voida poistaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi maaaring alisin ang mga admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les administrateurs ne peuvent pas être supprimés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se poden eliminar os admins." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya cire masu kula ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן להסיר מנהלים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन हटाए नहीं जा सकते।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratori ne mogu biti uklonjeni." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminokat nem lehet eltávolítani." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ադմիններին չի թույլատրվում հեռացնել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin tidak dapat dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gli amministratori non possono essere rimossi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アドミンを削除することはできません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინები ვერ წაიშლება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកគ្រប់គ្រងមិនអាចត្រូវបានដកចេញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ವಾಹಕರನ್ನು ಕೈಬಿಡಲಾಗದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins cannot be removed." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوانرێ بەڕێوەبەران لابدرنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannannyini tebayinza kujjulukiddwaako." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຜູ້ຄຸ້ມການບໍ່ສາມາດຖຶກຖອນໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoriai negali būti pašalinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminus nevar noņemt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторите не може да бидат отстранети." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админууд устгагдах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pentadbir tidak boleh dibuang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin များကို ဖယ်ရှား၍မရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorer kan ikke fjernes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासकहरू हटाउन सकिँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins kunnen niet worden verwijderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoren kan ikkje fjernast." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maboma sangachotsedwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਚਾਲਕਾਂ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można usuwać administratorów." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اډمینونه د لرې کولو وړ نه دي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administradores não podem ser removidos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins não podem ser removidos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorii nu pot fi eliminați." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторов нельзя удалить." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratori se ne mogu ukloniti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලකයින් ඉවත් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správcovia nemôžu byť odstránení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrbniki ne morejo biti odstranjeni." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorët nuk mund të hiqen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администратори не могу бити уклоњени." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratori ne mogu biti uklonjeni." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratörer kan inte tas bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wasimamizi hawawezi kuondolewa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகிகளை நீக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రశాసకులు తీయబడలేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถลบผู้ดูแลได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yöneticiler kaldırılamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адміністратори не можуть бути видалені." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمنز کو ہٹایا نہیں جا سکتا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorlarni olib tashlash mumkin emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quản trị viên không thể bị xoá." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abaphathi abanakususwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理员无法被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除管理員。" + } + } + } + }, + "adminMorePromotedToAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander is bevorder tot Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} آخرين تمت ترقيتهم إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}başqa {count} nəfər Admin olaraq yüksəldildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg rīhīyā Admin šumār." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых былі павышаны да адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други бяха повишени в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্যরা অ্যাডমিন হিসেবে উন্নীত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han estat ascendits a Admin." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších byli povýšeni na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {count} eraill penodwyd i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere wurden zu Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλα προωθήθηκαν στον Διαχειριστή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others were promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj estis promociitaj al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron promovidos a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron promovidos a Administradores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist määrati adminiks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta beste {count} kide Admin izendatu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} نفر دیگر به مدیر ارتقاء یافتند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta ylennettiin ylläpitäjiksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa na-promote sa Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont été promus en tant qu'administrateurs." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} máis foron ascendidos a Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu an tayar musu zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ קודמו למנהלים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi promovirani su u Admina." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy adminisztrátorrá lettek előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ բարձրացվել են որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} sono ora amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}人 がアドミンに昇格しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {count} სხვებს მიენიჭათ ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {count} គេផ្សង ទៀត‍ ត្រូវណានបិស្មីជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {count} ಇತರೆರು ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{count}명이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە بە بەڕێوەبەر هەڵبژێردران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala baakyusibwa okufuuka Admin." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ແລະ {count} \"," + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti buvo paskirti adminais." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {count} citi tika paaugstināti par administrētāju." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други беа промовирани во Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့ဝင်များကို အုပ်ချုပ်ရေးမှူးအဖြစ် တက်လာသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble forfremmet til Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्यलाई Admin मा बढुवा गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart promoterte til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena akwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{count}ਹੋਰਾਂਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych zostali awansowani na administratów." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور مدیر ته وده ورکړه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram promovidos a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram promovidos a administradores." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {count} alții au fost promovați la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других пользователей назначены администраторами." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su unaprijeđeni u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය පරිපාලක (Admin) තනතුරට උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší boli povýšení na správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so bili promovirani v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë u promovuan në Administratorë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су унапређени у администраторе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su unapredjeni u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra blev befordrade till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wamepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் நிர்வாகியாக உயர்த்தப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు అడ్మిన్ కీ ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} อื่นๆ ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer yönetici olarak terfi etti." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших було підвищено до адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqa Administrator sifatida ko'tarildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} người khác được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}名成员被设置为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 位其他成員 被設置為管理員。" + } + } + } + }, + "adminPromote" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevorder Admins" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترقية المشرفين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminləri yüksəlt" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمنزءِ ترقی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павышэнне адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промотирайте администратори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিনদের প্রোমোট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promociona Administradors" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšit na správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyrwyddo Gweinyddwyr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forfrem administratorer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admins befördern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προώθηση Διαχειριστών" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promote Admins" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocii administrantojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover Administradores" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover Administradores" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edenda administraatoreid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaileak sustatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء مدیران" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylennä ylläpitäjäksi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-promote ang Mga Admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promouvoir les administrateurs" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover administradores" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haɓɓaka Admins" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קדם למנהלים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन को पदोन्नत करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj administratore" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátorok előléptetése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խթանել ադմիններին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosikan Admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promuovi amministratori" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理者を昇格" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაწინაურების ადმინები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដំណើរការអ្នកគ្រប់គ្រង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡ್ಮಿನ್‌ಗಳನ್ನು ಬೆಳೆಸಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자 승격" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەرەبەندەکان پەرەبکەرەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulumiza Abakulu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaukštinti administratorius" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaugstināt administratorus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промовирај администратори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админыг дэвшүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosikan Pentadbir" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တပ်မသက်ရှိများကို တိုးဆုံးမှုပေးသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoter Administratorer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासकहरूलाई उन्नति गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beheerders promoveren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fremj Administrators" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limbikitsani Mabwana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਡਮਿਨ ਨੂੰ ਪਦੋਨਤ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awansuj administratorów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اداري ترقي ورکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover Administradores" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover Admins" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovează administratorii" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назначать администраторов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviši administratore" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලකයන් උසස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšiť správcov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napredovanje skrbnikov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovo Adminstratorë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промовиши администраторе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviši administratore" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uppgradera administratörer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamisha Wasimamizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகிகளை உயர்த்தவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అడ్మిన్లను ప్రమోట్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกระดับเป็นผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yöneticileri Terfi Ettir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підвищити адміністратора" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمنز کو پروموٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorlarni ko'tarish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đề bạt quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phakamisa Abalawuli" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "授权为管理员" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "提升為管理員" + } + } + } + }, + "adminPromoteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} bevorder tot admin? Admins kan nie verwyder word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد ترقية {name} إلى مشرف؟ لا يمكن إزالة المشرفين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini admin etmək istədiyinizə əminsiniz? Adminlər çıxarıla bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {name} بہ ادمین ترتیب بی؟ ایڈمینز نہ بٹباختن." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце павысіць {name} да адміністратараў? Адміністратараў нельга будзе выдаліць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да повишиш {name} на администратор? Администраторите не могат да бъдат премахнати." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} কে অ্যাডমিন হিসেবে প্রমোট করতে নিশ্চিত? অ্যাডমিনদের সরানো যাবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu promoure {name} a administradors? Els administradors no es poden eliminar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete povýšit {name} na správce? Správci nemohou být odstraněni." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am hyrwyddo {name} i admin? Ni ellir tynnu gweinyddwyr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil promovere {name} til administrator? Administratorer kan ikke fjernes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} wirklich zum Admin befördern? Admins können nicht entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να προάγετε τον/την {name} σε διαχειριστή/ρια; Οι διαχειριστές δε μπορούν να αφαιρεθούν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to promote {name} to admin? Admins cannot be removed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas promocion al {name} al admin? Adminoj ne povas esti forigitaj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas promocionar a {name} a administrador? Los administradores no pueden ser eliminados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres promover a {name} a administrador? Los administradores no pueden ser eliminados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kasutajat {name} adminiks määrata? Adminkasutajaid ei saa eemaldada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} administratzaile izateko igo nahi duzula? Administratzaileak ezin dira kendu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید {name}‍ را به عنوان مدیر ارتقا دهید؟ مدیرها نمی‌توانند حذف شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti ylentää {name} valvojaksi? Valvojia ei voi poistaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-promote si {name} bilang admin? Ang mga admin ay hindi maaaring tanggalin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir promouvoir {name} en tant qu'administrateur ? Les administrateurs ne peuvent pas être supprimés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer promover a {name} a admin? Os admins non se poden eliminar." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka ƙara {name} a matsayin admin? Admin ba za a iya cirewa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לקדם את {name} למנהל? מנהלים לא ניתן להסרה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} को एडमिन के रूप में बढ़ावा देना चाहते हैं? एडमिन्स को हटाया नहीं जा सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite unaprijediti {name} u administratora? Administratori ne mogu biti uklonjeni." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy elő akarod léptetni {name}-t adminisztrátorrá? Az adminisztrátorok nem távolíthatók el." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք բարձրացնել {name}֊ին որպես ադմին: Ադմինները չեն կարող հեռացվել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin mempromosikan {name} menjadi admin? Admin tidak dapat dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler promuovere {name} ad amministratore? Gli amministratori non possono essere rimossi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}をアドミンに昇格しますか? アドミンは削除できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name} ადმინად დაწინაურება? ადმინებს ვერ ამოიღებთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ដាក់តំណែង {name} ឲ្យជាអ្នកគ្រប់គ្រង? អ្នកគ្រប់គ្រងមិនអាចដកចេញបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಅನ್ನು ಆಡ್ಮಿನ್‌ಗೆ ಬಡ್ತಿ ನೀಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ಆಡ್ಮಿನ್‌ಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}를 관리자(Admin)로 승격하시겠습니까? 관리자는 제거될 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت {name} بەرز بکەیت بۆ ئەدمین؟ زانیاریەکان ناتوانن بڕداریبن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuteeka {name} ku admin? Abakulu tekinasibulwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້າຍເຢັນໄປໃຫ້ {name}? ຄວາມສາມາດບໍ່ອາດຖືກຢຽບເມືອນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite paskirti {name} adminu? Adminai negali būti pašalinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties paaugstināt {name} par administratoru? Administratorus nevarēs noņemt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го промовирате {name} во администратор? Администраторите не може да се отстранат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} -г админд дэвших ээ итгэж байна уу? Админуудыг зайлуулах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu melantik {name} sebagai pentadbir? Pentadbir tidak boleh dibuang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကို အုပ်ချုပ်ရေးမှူး ခန့်ချင်သည်မှာ သေချာပါသလား။ အုပ်ချုပ်ရေးမှူးများကို ဖယ်မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil gjøre {name} til administrator? Administratorer kan ikke fjernes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name}लाई प्रशासक बनाउन निश्चित हुनुहुन्छ? प्रशासकहरू हटाउन सकिँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} wilt promoten tot beheerder? Beheerders kunnen niet verwijderd worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å promotere {name} til admin? Administratorar kan ikkje fjernast." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kukweza {name} kukhala olamulira? Olamulira sangachotsedwe." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਨੂੰ ਐਡਮਿਨ ਵਰਗੇ ਅਧਿਕਾਰੀ ਬਣਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਐਡਮਿਨ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz awansować użytkownika {name} na administratora? Administratorów nie można usunąć." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ {name} ته اډمین ترویج کړئ؟ اډمینونه نشي لرې کیدلی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja promover {name} a administrador? Administradores não podem ser removidos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que pretende promover {name} para admin? Os admins não podem ser removidos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să promovezi pe {name} la nivel de administrator? Administratorii nu pot fi eliminați." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите повысить статус {name} до администратора? Администраторов нельзя будет удалить." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš unaprijediti {name} u admina? Admini ne mogu biti uklonjeni." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} පරිපාලවරයාට උසස් කිරීමට අවශ්‍ය බව විශ්වාසද? පරිපාලකයින් ඉවත් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete povýšiť {name} na správcu? Správcovia nemôžu byť odstránení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite promovirati {name} v admina? Adminov ni mogoče odstraniti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të promovoni {name} në administrator? Administratorët nuk mund të hiqen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да унапредите {name} у admin? Администратори не могу бити уклоњени." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da promovišete {name} u admin? Admini ne mogu biti uklonjeni." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill befordra {name} till admin? Admins kan inte tas bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kumpandisha {name} kuwa admin? Maimi hawawezi kuondolewa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} நிர்வாகியாக பதவி உயர்த்த விரும்புகிறீர்களா? நிர்வாகிகளை நீக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} ను యాడ్మిన్‌గా ప్రమోట్ చేయాలనుకుంటున్నారా? యాడ్మిన్‌లను తీసివేయడం సాధ్యం కాదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลื่อนตำแหน่ง {name} ให้เป็นแอดมิน? แอดมินไม่สามารถถูกลบออกได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'i admin olarak terfi ettirmek istediğinizden emin misiniz? Adminler kaldırılamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете підвищити {name} до адміністратора? Адміністраторів не можна вилучити." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} کو اڈمن کے طور پر فروغ دینا چاہتے ہیں؟ اڈمن کو ہٹایا نہیں جا سکتا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} ni administrator sifatida ko'tarish xohlaysizmi? Administratorlarni olib tashlash mumkin emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn nâng cấp {name} lên quản trị viên? Các quản trị viên không thể bị gỡ bỏ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukunyusa {name} kube yintloko? Abalawuli abanakususwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要将{name}授权为管理员吗?管理员不能被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要將{name}設置為管理員嗎?管理員無法被移除。" + } + } + } + }, + "adminPromotedToAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is bevorder tot Admin" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تم ترقيته إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Admin olaraq yüksəldildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} rīhīyā Admin šumār." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} быў павышаны да адміністратара." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше повишен в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} অ্যাডমিন হিসেবে উন্নীত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha estat ascendit a Admin." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} byl/a povýšen/a na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y penodwyd i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wurde zu Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} έγινε Διαχειριστής." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} was promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estis promociita al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue promovido a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue promovido a Administrador." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} määrati adminiks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Admin izendatu dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} به مدیر ارتقاء یافت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ylennettiin ylläpitäjäksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-promote si {name} sa Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a été promu en tant qu'administrateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi ascendido a Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an tayar masa zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ קודמ/ה למנהל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je promoviran u Admina." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} adminisztrátorrá lett előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը բարձրացվել է որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} è ora amministratore." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} がアドミンに昇格しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს მიენიჭა ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ ត្រូវបានបដិស្មីជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بە بەڕێوەبەر هەڵبژێردرا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yakyusibwa okufuuka Admin." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ໄດ້ຮັບການແຕັຄອດເປັນAdmin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} buvo paskirtas adminu." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tika paaugstināts par administrētāju." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше промовиран во Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကို အုပ်ချုပ်ရေးမှူးအဖြစ် တိုးတက်လာပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble forfremmet til Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}लाई Admin मा बढुवा गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart promotert til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} akwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} został(a) administratorem." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اډمین ته لوړ شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi promovido a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi promovido a Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost promovat la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} назначен(а) администратором." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je unaprijeđen u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} පරිපාලක (Admin) තනතුරට උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bol/a povýšený/á na správcu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je bil_a promoviran_a v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u promovua në Administrator." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је унапређен у администратора." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je unapredjen u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev befordrad till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} நிர்வாகியாக உயர்த்தப்பட்டார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} అడ్మిన్ గా ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yönetici olarak terfi etti." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} було підвищено до адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Administrator sifatida ko'tarildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} inyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}被设置为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 被設置為管理員。" + } + } + } + }, + "adminPromoteMoreDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} en {count} ander bevorder tot admin? Admins kan nie verwyder word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد ترقية {name} و {count} آخرين إلى مشرف؟ لا يمكن إزالة المشرفين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}başqa {count} nəfəri admin etmək istədiyinizə əminsiniz? Adminlər çıxarıla bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {name} و {count} others بہ ادمین ترتیب بی؟ ایڈمینز نہ بٹباختن." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце павысіць {name} і {count} іншых да адміністратараў? Адміністратараў нельга будзе выдаліць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да повишиш {name} и {count} други на администратор? Администраторите не могат да бъдат премахнати." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} এবং {count} অন্যান্যদের অ্যাডমিন হিসেবে প্রমোট করতে নিশ্চিত? অ্যাডমিনদের সরানো যাবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu promoure {name} i {count} més a administradors? Els administradors no es poden eliminar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete povýšit {name} a {count} dalších na správce? Správci nemohou být odstraněni." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am hyrwyddo {name} a {count} eraill i admin? Ni ellir tynnu gweinyddwyr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil promovere {name} og {count} andre til administrator? Administratorer kan ikke fjernes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} und {count} andere wirklich zu Admins befördern? Admins können nicht entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να προάγετε τον/την {name} και {count} άλλους/ες σε διαχειριστή/ρια; Οι διαχειριστές δε μπορούν να αφαιρεθούν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to promote {name} and {count} others to admin? Admins cannot be removed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas promocion al {name} kaj {count} aliaj al admin? Adminoj ne povas esti forigitaj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas promocionar a {name} y {count} otros a administrador? Los administradores no pueden ser eliminados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres promover a {name} y {count} otros a administradores? Los administradores no pueden ser eliminados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kasutajad {name} ja {count} teist adminiks määrata? Adminkasutajaid ei saa eemaldada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} eta {count} beste batzuk administratzaile izateko igo nahi dituzula? Administratzaileak ezin dira kendu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید {name} و {count} نفر دیگر را به عنوان مدیر ارتقا دهید؟ مدیرها نمی‌توانند حذف شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti ylentää {name} ja {count} muuta valvojaksi? Valvojia ei voi poistaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-promote si {name} at {count} others bilang admin? Ang mga admin ay hindi maaaring tanggalin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir promouvoir {name} et {count} autres en tant qu'administrateurs ? Les administrateurs ne peuvent pas être supprimés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer promover a {name} e {count} máis a admins? Os admins non se poden eliminar." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka ƙara {name} da wasu {count} a matsayin admin? Admin ba za a iya cirewa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לקדם את {name} ו־{count} נוספים למנהל? מנהלים לא ניתן להסרה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} और {count} अन्य को एडमिन के रूप में बढ़ावा देना चाहते हैं? एडमिन्स को हटाया नहीं जा सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite unaprijediti {name} i {count} drugih u administratore? Administratori ne mogu biti uklonjeni." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy elő akarod léptetni {name}-t és {count} másik személyt adminisztrátorrá? Az adminisztrátorok nem távolíthatók el." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք բարձրացնել {name}֊ին և ևս {count}֊ին որպես ադմին: Ադմինները չեն կարող հեռացվել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin mempromosikan {name} dan {count} lainnya menjadi admin? Admin tidak dapat dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler promuovere {name} e altri {count} ad amministratori? Gli amministratori non possono essere rimossi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}{count}人の他の人をアドミンに昇格しますか? アドミンは削除できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name} და {count} სხვების ადმინად დაწინაურება? ადმინებს ვერ ამოიღებთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ដាក់តំណែង {name} និង {count} នាក់ផ្សេងទៀត ឲ្យជាអ្នកគ្រប់គ្រង? អ្នកគ្រប់គ្រងមិនអាចដកចេញបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {count} ಇತರರನ್ನು ಆಡ್ಮಿನ್‌ಗೆ ಬಡ್ತಿ ನೀಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ಆಡ್ಮಿನ್‌ಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}{count}명을 관리자(Admin)로 승격하시겠습니까? 관리자는 제거될 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma hûn pê bawer in ku hûn dixwazin {name} û {count} kesên din ji rêveberiyê re pêşve bibin? Rêvebir nayê rakirin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuteeka {name} ne {count} abalala ku admin? Abakulu tekinasibulwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້າຍເຢັນໄປໃຫ້ {name} ແລະ {count} ຫຼາຍເພື່ອນ? ຄວາມສາມາດບໍ່ອາດຖືກຢຽບເມືອນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite paskirti {name} ir {count} kitus adminais? Adminai negali būti pašalinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties paaugstināt {name} un {count} citus par administratoriem? Administratorus nevarēs noņemt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги промовирате {name} и {count} други во администратори? Администраторите не може да се отстранат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} -ыг болон {count} бусад -ыг админд дэвших ээ итгэж байна уу? Админуудыг зайлуулах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu melantik {name} dan {count} orang lain sebagai pentadbir? Pentadbir tidak boleh dibuang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး ကို အုပ်ချုပ်ရေးမှူး ခန့်ချင်သည်မှာ သေချာပါသလား။ အုပ်ချုပ်ရေးမှူးများကို ဖယ်မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil gjøre {name} og {count} andre til administratorer? Administratorer kan ikke fjernes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name}{count} अन्यहरूलाई प्रशासक बनाउन निश्चित हुनुहुन्छ? प्रशासकहरू हटाउन सकिँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} en {count} anderen wilt promoten tot beheerder? Beheerders kunnen niet verwijderd worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å promotere {name} og {count} andre til admin? Administratorar kan ikkje fjernast." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kukweza {name} ndi {count} ena kukhala olamulira? Olamulira sangachotsedwe." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਅਤੇ {count} ਹੋਰ ਲੋਕਾਂ ਨੂੰ ਐਡਮਿਨ ਵਰਗੇ ਅਧਿਕਾਰੀ ਬਣਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਐਡਮਿਨ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz awansować użytkownika {name} i {count} innych użytkowników na administratora? Administratorów nie można usunąć." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ {name} او {count} نور ته اډمین ترویج کړئ؟ اډمینونه نشي لرې کیدلی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja promover {name} e {count} outros a administrador? Administradores não podem ser removidos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende promover {name} e {count} outros para admins? Os admins não podem ser removidos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să promovezi pe {name} și alți {count} la nivel de administrator? Administratorii nu pot fi eliminați." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите повысить статус {name} и {count} других до администратора? Администраторов нельзя будет удалить." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš unaprijediti {name} i {count} drugih u admina? Admini ne mogu biti uklonjeni." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ {count} අය පරිපාලවරයාට උසස් කිරීමට අවශ්‍ය බව විශ්වාසද? පරිපාලකයින් ඉවත් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete povýšiť {name} a {count} ďalších na správcu? Správcovia nemôžu byť odstránení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite promovirati {name}? in {count} drugih? Adminov ni mogoče odstraniti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të promovoni {name} dhe {count} të tjerë në administrator? Administratorët nuk mund të hiqen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да унапредите {name} и {count} осталих у admin? Администратори не могу бити уклоњени." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da promovišete {name} i {count} drugih u admin? Admini ne mogu biti uklonjeni." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill befordra {name} och {count} andra till admin? Admins kan inte tas bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kumpandisha {name} na {count} wengine kuwa admin? Maimi hawawezi kuondolewa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} மற்றவர்கள் நிர்வாகியாக பதவி உயர்த்த விரும்புகிறீர்களா? நிர்வாகிகளை நீக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {count} ఇతరులను యాడ్మిన్‌గా ప్రమోట్ చేయాలనుకుంటున్నారా? యాడ్మిన్‌లను తీసివేయడం సాధ్యం కాదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลื่อนตำแหน่ง {name} และ {count} อื่นๆ ให้เป็นแอดมิน? แอดมินไม่สามารถถูกลบออกได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'i ve {count} diğerini admin olarak terfi ettirmek istediğinizden emin misiniz? Adminler kaldırılamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете підвищити {name} і {count} інших до адміністратора? Адміністраторів не можна вилучити." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} اور {count} دیگر کو اڈمن کے طور پر فروغ دینا چاہتے ہیں؟ اڈمنز کو ہٹایا نہیں جا سکتا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} va {count} boshqa ni administrator sifatida ko'tarish xohlaysizmi? Administratorlarni olib tashlash mumkin emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn nâng cấp {name} {count} người khác lên quản trị viên? Các quản trị viên không thể bị gỡ bỏ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukunyusa {name} n {count} abanye kube yintloko? Abalawuli abanakususwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要将{name}和其他{count}人授权为管理员吗?管理员不能被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要將{name}{count} 其他人設置為管理員嗎?管理員無法被移除。" + } + } + } + }, + "adminPromoteToAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevorder na Admin" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترقية إلى مشرف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin olaraq yüksəlt" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمنءِ ترقی دهید" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павысіць да адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промотирайте към администратор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন হিসেবে প্রোমোট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promociona a Administrador" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšit na správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyrwyddo i Weinyddwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forfrem til administrator" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Admin befördern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προώθηση σε Διοικητή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promote to Admin" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocii al administranto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover a Administrador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover a Administrador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edenda administraatoriks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaile bihurtu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء به مدیر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylennä ylläpitäjäksi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-promote bilang Admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promouvoir en tant qu'administrateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascender a administrador" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haɓɓaka zuwa Admin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קדם למנהל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन में पदोन्नत करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj u administratora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátorrá léptetés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խթանել ադմին դառնալու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosikan menjadi Admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promuovi ad amministratore" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理者に昇格" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაწინაურება ადმინად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដំណើរការជាអ្នកគ្រប់គ្រង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡ್ಮಿನ್‌ಗೆ ಬೆಳೆಸಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자로 승격" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەرەکردن بۆ پەرەبەندە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulumiza okubeera omukulu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaukštinti iki administratoriaus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaugstināt par administratoru" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промовирај во администратор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ болгон дэвшүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosikan kepada Pentadbir" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တပ်မသက်ရှိအဖြစ် တန်းထွက်ပေးမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forfrem til Administrator" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासकमा उन्नति गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoveren tot beheerder" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fremj til Administrators" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limbikitsani Kukhala Bwana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਡਮਿਨ ਬਨਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awansuj na administratora" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اداري ته ترقي ورکړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover a Administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover a Admin" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovează la nivel de administrator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назначить Администратором" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviši u administratora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලකයාට උසස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšiť na správcu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj v skrbnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovo në Administrator" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промовиши у администратора" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviši u administratora" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uppgradera till administratör" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamisha kuwa Msimamizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகியாக உயர்த்தவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అడ్మిన్ గా ప్రమోట్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกระดับเป็นผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici Olarak Terfi Ettir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підвищити до адміністратора" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن میں پروموٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin qilib tayinlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đề bạt thành Quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phakamisa ku-Admin" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "授权为管理员" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "提升為管理員" + } + } + } + }, + "adminPromoteTwoDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} en {other_name} bevorder tot admin? Admins kan nie verwyder word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد ترقية {name} و {other_name} إلى مشرف؟ لا يمكن إزالة المشرفين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} admin etmək istədiyinizə əminsiniz? Adminlər silinə bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {name} و {other_name} بہ ادمین ترتیب بی؟ ایڈمینز نہ بٹباختن." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце павысіць {name} і {other_name} да адміністратараў? Адміністратараў нельга будзе выдаліць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да повишиш {name} и {other_name} на администратор? Администраторите не могат да бъдат премахнати." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} এবং {other_name} কে অ্যাডমিন হিসেবে প্রমোট করতে নিশ্চিত? অ্যাডমিনদের সরানো যাবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu promoure {name} i {other_name} a administradors? Els administradors no es poden eliminar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete povýšit {name} a {other_name} na správce? Správci nemohou být odstraněni." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am hyrwyddo {name} a {other_name} i admin? Ni ellir tynnu gweinyddwyr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil promovere {name} og {other_name} til administrator? Administratorer kan ikke fjernes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} und {other_name} wirklich zu Admins befördern? Admins können nicht entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να προάγετε τον/την {name} και {other_name} σε διαχειριστή/ρια; Οι διαχειριστές δε μπορούν να αφαιρεθούν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to promote {name} and {other_name} to admin? Admins cannot be removed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas promocion al {name} kaj {other_name} al admin? Adminoj ne povas esti forigitaj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas promocionar a {name} y {other_name} a administrador? Los administradores no pueden ser eliminados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres promover a {name} y {other_name} a administradores? Los administradores no pueden ser eliminados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kasutajad {name} ja {other_name} adminiks määrata? Adminkasutajaid ei saa eemaldada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} eta {other_name} administratzaile izateko igo nahi dituzula? Administratzaileak ezin dira kendu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید {name} و {other_name}‍ را به عنوان مدیر ارتقا دهید؟ مدیرها نمی‌توانند حذف شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti ylentää {name} ja {other_name} valvojaksi? Valvojia ei voi poistaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-promote si {name} at {other_name} bilang admin? Ang mga admin ay hindi maaaring tanggalin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir promouvoir {name} et {other_name} en tant qu'administrateur ? Les administrateurs ne peuvent pas être supprimés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer promover a {name} e {other_name} a admins? Os admins non se poden eliminar." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka ƙara {name} da {other_name} a matsayin admin? Admin ba za a iya cirewa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לקדם את {name} ו־{other_name} למנהל? מנהלים לא ניתן להסרה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} और {other_name} को एडमिन के रूप में बढ़ावा देना चाहते हैं? एडमिन्स को हटाया नहीं जा सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite unaprijediti {name} i {other_name} u administratore? Administratori ne mogu biti uklonjeni." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy elő akarod léptetni {name}-t és {other_name}-t adminisztrátorrá? Az adminisztrátorok nem távolíthatók el." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք բարձրացնել {name}֊ին և {other_name}֊ին որպես ադմին: Ադմինները չեն կարող հեռացվել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin mempromosikan {name} dan {other_name} menjadi admin? Admin tidak dapat dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler promuovere {name} e {other_name} ad amministratori? Gli amministratori non possono essere rimossi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}{other_name}をアドミンに昇格しますか? アドミンは削除できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name} და {other_name} ადმინად დაწინაურება? ადმინებს ვერ ამოიღებთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ដាក់តំណែង {name} និង {other_name} ឲ្យជាអ្នកគ្រប់គ្រង? អ្នកគ្រប់គ្រងមិនអាចដកចេញបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {other_name} ಆಡ್ಮಿನ್‌ಗೆ ಬಡ್ತಿ ನೀಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ಆಡ್ಮಿನ್‌ಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}{other_name}를 관리자(Admin)로 승격하시겠습니까? 관리자는 제거될 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت {name} و {other_name} بەرز بکەیت بۆ ئەدمین؟ زانیاریەکان ناتوانن بڕداریبن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuteeka {name} ne {other_name} ku admin? Abakulu tekinasibulwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້າຍເຢັນໄປໃຫ້ {name} ແລະ {other_name}? ຄວາມສາມາດບໍ່ອາດຖືກຢຽບເມືອນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite paskirti {name} ir {other_name} adminais? Adminai negali būti pašalinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties paaugstināt {name} un {other_name} par administratoriem? Administratorus nevarēs noņemt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги промовирате {name} и {other_name} во администратори? Администраторите не може да се отстранат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-ыг болон {other_name}-ыг админд дэвших ээ итгэж байна уу? Админуудыг зайлуулах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu melantik {name} dan {other_name} sebagai pentadbir? Pentadbir tidak boleh dibuang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} ကို အုပ်ချုပ်ရေးမှူး ခန့်ချင်သည်မှာ သေချာပါသလား။ အုပ်ချုပ်ရေးမှူးများကို ဖယ်မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil gjøre {name} og {other_name} til administratorer? Administratorer kan ikke fjernes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name}{other_name}लाई प्रशासक बनाउन निश्चित हुनुहुन्छ? प्रशासकहरू हटाउन सकिँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} en {other_name} wilt promoten tot beheerder? Beheerders kunnen niet verwijderd worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å promotere {name} og {other_name} til admin? Administratorar kan ikkje fjernast." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kukweza {name} ndi {other_name} kukhala olamulira? Olamulira sangachotsedwe." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਅਤੇ {other_name} ਨੂੰ ਐਡਮਿਨ ਵਰਗੇ ਅਧਿਕਾਰੀ ਬਣਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਐਡਮਿਨ ਨੂੰ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz awansować użytkowników {name} i {other_name} na administratorów? Administratorów nie można usunąć." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ {name} او {other_name} ته اډمین ترویج کړئ؟ اډمینونه نشي لرې کیدلی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja promover {name} e {other_name} a administrador? Administradores não podem ser removidos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que pretende promover {name} e {other_name} para admins? Os admins não podem ser removidos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să promovezi pe {name} și {other_name} la nivel de administrator? Administratorii nu pot fi eliminați." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите повысить статус {name} и {other_name} до администратора? Администраторов нельзя будет удалить." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš unaprijediti {name} i {other_name} u admina? Admini ne mogu biti uklonjeni." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ {other_name} පරිපාලවරයාට උසස් කිරීමට අවශ්‍ය බව විශ්වාසද? පරිපාලකයින් ඉවත් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete povýšiť {name} a {other_name} na správcu? Správcovia nemôžu byť odstránení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite promovirati {name} in {other_name}? Adminov ni mogoče odstraniti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të promovoni {name} dhe {other_name} në administrator? Administratorët nuk mund të hiqen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да унапредите {name} и {other_name} у admin? Администратори не могу бити уклоњени." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da promovišete {name} i {other_name} u admin? Admini ne mogu biti uklonjeni." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill befordra {name} och {other_name} till admin? Admins kan inte tas bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kumpandisha {name} na {other_name} kuwa admin? Maimi hawawezi kuondolewa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} நிர்வாகியாக பதவி உயர்த்த விரும்புகிறீர்களா? நிர்வாகிகளை நீக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {other_name} ను యాడ్మిన్‌గా ప్రమోట్ చేయాలనుకుంటున్నారా? యాడ్మిన్‌లను తీసివేయడం సాధ్యం కాదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลื่อนตำแหน่ง {name} และ {other_name} ให้เป็นแอดมิน? แอดมินไม่สามารถถูกลบออกได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'i ve {other_name}'i admin olarak terfi ettirmek istediğinizden emin misiniz? Adminler kaldırılamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете підвищити {name} і {other_name} до адміністратора? Адміністраторів не можна вилучити." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} اور {other_name} کو اڈمن کے طور پر فروغ دینا چاہتے ہیں؟ اڈمنز کو ہٹایا نہیں جا سکتا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} va {other_name} ni administrator sifatida ko'tarish xohlaysizmi? Administratorlarni olib tashlash mumkin emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn nâng cấp {name} {other_name} lên quản trị viên? Các quản trị viên không thể bị gỡ bỏ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukunyusa {name} n {other_name} kube yintloko? Abalawuli abanakususwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要将{name}{other_name}授权为管理员吗?管理员不能被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要將{name}{other_name}設置為管理員嗎?管理員無法被移除。" + } + } + } + }, + "adminPromotionFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-promosie het misluk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل الترقيه كمسئول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin təyinatı uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن ترقی ناکام ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збой павышэння адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Провал на администраторска промоция" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন প্রমোশন ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat la promoció de l'admin" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšení na správce selhalo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methodd dyrchafiad gweinyddwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promovering mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-Beförderung fehlgeschlagen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία προώθησης Διαχειριστή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pli altnivela administranto malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo en la promoción del administrador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La promoción a administrador falló" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admini edutamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaile mailara igotzearen huts egitea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء ادمین ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylläpitoylennyksen lähetys epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang pag-promote ng admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La promotion en tant qu'administrateur a échoué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na promoción a Admin" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rashin nasarar kaddamar da mutum maiyanzu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קידום מנהל נכשל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन पदोन्नति विफल रही" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija admina nije uspjela" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátori előléptetés nem sikerült" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion failed" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosi admin gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promozione ad amministratore fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アドミン権限の昇格に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინის სტატუსის შეცვლა ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការដំឡើងជាអ្នកគ្រប់គ្រងបានបរាជ័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ವಾಹಕ ಪ್ರಚಾರ ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion failed" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەروەردەکردنی بەڕێوەبەر سۆکەوت هەڵە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okulonda obwannannyinjaamu kunaggwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການເສຍຄຳສັ້ນເລືອດເວົງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoriaus pakėlimas nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratora veicināšana neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унапредувањето на администраторот не успеа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ болгон дэвшүүлэх амжилтгүй боллоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kenaikan pangkat pentadbir gagal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin အဆင့်မြှင့်တင်မှု မဖြစ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotering mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासक प्रवर्धन असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotie mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoropprykk feila" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kulephera kukweza boma" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਚਾਲਕ ਪ੍ਰਫ਼ੋਸ਼ਨ ਫੇਲ ਹੋ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awans na administratora się nie powiódł" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اډمین ترفیع ناکامه شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao promover como administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A promoção do Admin falhou" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovarea administratorului a eșuat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повышение до администратора не удалось" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija administratora nije uspjela" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලක ප්‍රවර්ධනය අසාර්ථකයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvýšenie úrovne správcu zlyhalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povečanje skrbnika ni uspelo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovimi i administratorit dështoi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ промоција није успела" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj dodeljivanja administratora nije uspeo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion failed" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusimishwa kwa Msimamizi kumeenda kombo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகி பதவி உயர்வு தோல்வியடைந்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రశాసక ప్రమోషన్ విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเลื่อนตำแหน่งผู้ดูแลล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici terfisi başarısız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося надіслати права адміністратора" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن پروموشن ناکام ہو گئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administrator ko'tarilishi muvaffaqiyatsiz bo'ldi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thăng chức quản trị viên thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuphakanyiswa komlawuli kuhlulekile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理员授权失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理員設置失敗" + } + } + } + }, + "adminPromotionFailedDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} in {group_name} bevorder nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في ترقية {name} في {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini {group_name} qrupunda yüksəltmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو {group_name} میں پروموٹ کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася прасунуць {name} у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно повишаване на {name} в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} কে {group_name} তে এডমিন প্রোমোট করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de promoció de {name} a administrador de {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo povýšení {name} v {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dyrchafu {name} yn {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promovere {name} i {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Beförderung von {name} in {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία προαγωγής {name} στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to promote {name} in {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis promocii {name} en {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo promover a {name} en {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al promover a {name} en {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus edutada {name} gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan {name} {group_name}(e)n Administrari mailara igotzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء {name} در {group_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän {name} ylennys epäonnistui ryhmässä {group_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-promote kay {name} sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de promouvoir {name} dans {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido promover a {name} en {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa haɓaka {name} a {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לקדם את {name} ב-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को {group_name} में पदोन्नत करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija u administratora nije uspjela za {name} u {group_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült {name}-t adminisztrátorrá léptetni a {group_name} csoportban" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց առաջ տանել {name}-ին {group_name} խմբում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} di {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile promuovere {name} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} で {name} をアドミンとして昇進できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} ჯგუფში {group_name} ადმინისტრატორებთან წაწიეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការបំលែង {name} នៅក្នុង {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ರನ್ನು {group_name} ನಲ್ಲಿ ನಿರ್ವಾಹಕರನ್ನಾಗಿ ಭರ್ಜೆಯಾಗಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님을 {group_name}의 관리자로 승격하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی دخستن {name} لە {group_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ku {name} mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເອີ້ ລົ້ມເຫລວໃນການສົ່ງໃສ່ {name} ເຂົ້າ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko paaukštinti {name} į {group_name} grupėje" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās paaugstināt {name} par administratoru {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно унапредување на {name} во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} хэрэглэгчийг {group_name} дахь Админ болоход алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} dalam {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကို {group_name} တွင် လူကြီးထားတာ မအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promotere {name} i {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} लाई {group_name} मा प्रोमोट गर्न असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het promoveren van {name} in {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje forfremma {name} i {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kukweza {name} mu {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ਵਿੱਚ {name} ਨੂੰ ਤਰੱਕੀ ਦੇਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się awansować użytkownika {name} w grupie {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} په {group_name} کې ترفیع کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao promover {name} no {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao promover {name} no {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut promova {name} în {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось повысить статус {name} в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo promoviranje {name} u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} තුල {name} පරිපාලකත්වයට උසස් කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zlyhalo zvýšenie úrovne používateľa {name} v {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo promovirati {name} v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi promovimi i {name} në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у унапређивању {name} у {group_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo promoviranje {name} kao administratora u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att befordra {name} i {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kupandisha daraja {name} katika {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} யில் {name} நிர்வாகியாகக் கைப்பற்றுவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ను {group_name}లో ప్రమోట్ చేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโปรโมต {name} เป็นแอดมินใน {group_name} ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {group_name} yönetici olarak yükseltilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося підвищити {name} до адміністратора у {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو {group_name} میں ایڈمن کے طور پر ترقی دینے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ni {group_name} ga administratsiyaga ko'tarishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thăng cấp {name} lên Admin trong nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukukhuthaza {name} ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将{name}授权为{group_name}的管理员失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法將 {name} 設置為 {group_name} 的管理員" + } + } + } + }, + "adminPromotionFailedDescriptionMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {count} ander in {group_name} bevorder nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في ترقية {name} و {count} آخرين في {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və digər {count} nəfəri {group_name} qrupunda yüksəltmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر افراد کو {group_name} میں پروموٹ کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася прасунуць {name}, {count} і іншых у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно повишаване на {name} и {count} други в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} অন্যান্যকে {group_name} তে এডমিন প্রোমোট করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de promoció de {name} i {count} altres a administrador de {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo povýšení {name} a {count} dalších v {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dyrchafu {name} a {count} arall yn {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promovere {name} og {count} andre i {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Beförderung von {name} und {count} anderen in {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία προαγωγής {name} και {count} άλλων στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to promote {name} and {count} others in {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis promocii {name} kaj {count} aliajn en {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo promover a {name} y {count} otros en {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo promover a {name} y a {count} otros en {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus edutada {name} ja {count} teisi gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan {name} eta {count} beste batzuk {group_name}(e)n Administrari mailara igotzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء {name} و {count} نفر دیگر به دستیار در {group_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjien {name} ja {count} muun ylennykset epäonnistuivat ryhmässä {group_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-promote kay {name} at {count} iba pa sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de promouvoir {name} et {count} autres dans {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido promover a {name} e {count} máis en {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa haɓaka {name} da {count} wasu a {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לקדם את {name} ו-{count} אחרים ב-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को {group_name} में पदोन्नत करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija u administratora nije uspjela za {name} i {count} drugih u {group_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült {name}-t és {count} másik személyt adminisztrátorrá léptetni a {group_name} csoportban" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց առաջ տանել {name}-ին և ևս {count}-ին {group_name} խմբում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} dan {count} lainnya di {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile promuovere {name} e altri {count} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} で {name} と他 {count} 人をアドミンとして昇進できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} და {count} სხვა პირი ჯგუფში {group_name} ადმინისტრატორებთან წაწიეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការបំលែង {name} និង {count} នាក់ផ្សេងទៀតនៅក្នុង {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು {group_name} ಇಲ್ಲಿ ಉತ್ತೇಜಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님 및 {count}명의 다른 사람들을 {group_name}의 관리자로 승격하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی دخستن {name} و {count} هاوپەیوانەکەی {group_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ku {name} ne {count} abalala mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດທຳການປູກມຫຼາຍມະຈູກ {name} ແລະ {count} ອືນໆຫາ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko paaukštinti {name} ir {count} kitų {group_name} grupėje" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās paaugstināt {name} un {count} citus par administratoriem {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно унапредување на {name} и {count} други лица во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад хүмүүсийг {group_name} дахь Админ болоход алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} dan {count} lain dalam {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} နှင့်တကွ အခြားသူများကို {group_name} တွင် ဝင်ရောက်ခန့်အပ်မှု မအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promotere {name} og {count} andre i {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र {count} अरूलाई {group_name} मा प्रोमोट गर्न असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het promoveren van {name} en {count} anderen in {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje forfremma {name} og {count} andre til admin i {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kukweza {name} ndi {count} ena mu {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ਵਿੱਚ {name} ਅਤੇ {count} ਹੋਰਾਂ ਨੂੰ ਤਰੱਕੀ ਦੇਣ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się awansować użytkownika {name} i {count} innych użytkowników w grupie {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} او نورو {count} په {group_name} کې ترفیع کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao promover {name} e {count} outros no {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao promover {name} e {count} outros no {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut promova {name} și {count} alții în {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось повысить статус {name} и {count} других в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo promoviranje {name} i {count} drugih u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} තුල {name} සහ {count} තවත් අය පරිපාලකත්වයට උසස් කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zlyhalo zvýšenie úrovne používateľa {name} a {count} ďalších v {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo promovirati {name} in {count} drugih v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi promovimi i {name} dhe {count} të tjerëve në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у унапређивању {name} и {count} других у {group_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo promoviranje {name} i {count} drugih kao administratora u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att befordra {name} och {count} andra i {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kupandisha daraja {name} na wengine {count} katika {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} யில் {name} மற்றும் {count} பிறரை நிர்வாகியாகக் கைப்பற்றுவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులను {group_name}లో ప్రమోట్ చేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโปรโมต {name} และอีก {count} คนเป็นแอดมินใน {group_name} ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğerleri {group_name} yönetici olarak yükseltilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося підвищити {name} та ще {count} інших до адміністратора у {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} اراکین کو {group_name} میں ایڈمن کے طور پر ترقی دینے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} a'zoni {group_name} ga administratsiyaga ko'tarishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thăng cấp {name} và {count} người khác lên Admin trong nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukukhuthaza {name} kunye {count} nabanye ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将{name}和其他{count}人授权为{group_name}的管理员失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法將 {name} 和 {count} 個其他人設置為 {group_name} 的管理員" + } + } + } + }, + "adminPromotionFailedDescriptionTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {other_name} in {group_name} bevorder nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في ترقية {name} و {other_name} في {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və {other_name} istifadəçilərini {group_name} qrupunda yüksəltmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو {group_name} میں پروموٹ کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася прасунуць {name} і {other_name} у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно повишаване на {name} и {other_name} в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} কে {group_name} তে এডমিন প্রোমোট করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de promoció de {name} i {other_name} a administrador de {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo povýšení {name} a {other_name} v {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dyrchafu {name} a {other_name} yn {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promovere {name} og {other_name} i {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Beförderung von {name} und {other_name} in {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία προαγωγής {name} και {other_name} στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to promote {name} and {other_name} in {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis promocii {name} kaj {other_name} en {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo promover a {name} y {other_name} en {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al promover a {name} y {other_name} en {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus edutada {name} ja {other_name} gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan {name} eta {other_name} {group_name}(e)n Administrari mailara igotzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء {name} و {other_name} در {group_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjien {name} ja {other_name} ylennykset epäonnistuivat ryhmässä {group_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-promote kay {name} at {other_name} sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de promouvoir {name} et {other_name} dans {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido promover a {name} e {other_name} en {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa haɓaka {name} da {other_name} a {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לקדם את {name} ו-{other_name} ב-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} को {group_name} में पदोन्नत करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija u administratora nije uspjela za {name} i {other_name} u {group_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült {name}-t és {other_name}-t adminisztrátorrá léptetni a {group_name} csoportban" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց առաջ տանել {name}-ին և {other_name}-ին {group_name} խմբում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} dan {other_name} di {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile promuovere {name} e {other_name} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} で {name} と {other_name} をアドミンとして昇進できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} და {other_name} ჯგუფში {group_name} ადმინისტრატორებთან წაწიეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការបំលែង {name} និង {other_name} នៅក្នុង {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {other_name} ರನ್ನು {group_name} ನಲ್ಲಿ ನಿರ್ವಾಹಕರನ್ನಾಗಿ ಭರ್ಜೆಯಾಗಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {other_name}님을 {group_name}의 관리자로 승격하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی دخستن {name} و {other_name} لە {group_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ku {name} ne {other_name} mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍສາມາດທຳການປູກມະຈິກ {name} ແລະ {other_name} ຫາ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko paaukštinti {name} ir {other_name} į {group_name} grupėje" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās paaugstināt {name} un {other_name} par administratoriem {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно унапредување на {name} и {other_name} во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} дагчин {group_name} дахь Админ болоход алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mempromosikan {name} dan {other_name} dalam {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} တွင် {name} နှင့် {other_name} တို့ကို အိုင်ဒီရန် ဦးစီးအဖြစ် တိုးမြှင့်ရန်မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke promotere {name} og {other_name} i {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र {other_name} लाई {group_name} मा प्रोमोट गर्न असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het promoveren van {name} en {other_name} in {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje forfremma {name} og {other_name} i {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kukweza {name} ndi {other_name} mu {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ਵਿੱਚ {name} ਅਤੇ {other_name} ਨੂੰ ਤਰੱਕੀ ਦੇਣ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się awansować użytkowników {name} i {other_name} w grupie {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} او {other_name} په {group_name} کې ترفیع کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao promover {name} e {other_name} no {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao promover {name} e {other_name} no {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut promova {name} și {other_name} în {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось повысить статус {name} и {other_name} в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo promoviranje {name} i {other_name} u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} තුල {name} සහ {other_name} පරිපාලකත්වයට උසස් කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zlyhalo zvýšenie úrovne používateľa {name} a {other_name} v {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo promovirati {name} in {other_name} v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi promovimi i {name} dhe {other_name} në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у унапређивању {name} и {other_name} у {group_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo promoviranje {name} i {other_name} kao administratora u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att befordra {name} och {other_name} i {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kupandisha daraja {name} na {other_name} katika {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} யில் {name} மற்றும் {other_name} நிர்வாகியாகக் கைப்பற்றுவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} {group_name}లో ప్రమోట్ చేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโปรโมต {name} และ {other_name} เป็นแอดมินใน {group_name} ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} {group_name} yönetici olarak yükseltilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося підвищити {name} та {other_name} до адміністратора у {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو {group_name} میں ایڈمن کے طور پر ترقی دینے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name}ni {group_name} ga administratsiyaga ko'tarishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thăng cấp {name} và {other_name} lên Admin trong nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukukhuthaza {name} kunye {other_name} ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将{name}和{other_name}授权为{group_name}的管理员失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法將 {name} 和 {other_name} 設置為 {group_name} 的管理員" + } + } + } + }, + "adminPromotionSent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-promosie gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم إرسال الترقيه كمسئول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin təyinatı göndərildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن ترقی بھیجی گئی ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павышэнне адміністратара адпраўлена" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторска промоция изпратена" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন প্রমোশান পাঠানো হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha enviat la promoció de l'admin" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšení na správce odesláno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfonwyd dyrchafiad gweinyddwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promovering sendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-Beförderung gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η προώθηση Διαχειριστή εστάλη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion sent" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pli altnivela administranto sendita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoción del administrador enviada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoción a administrador enviada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admini edutamine saadeti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaile mailara igotzearen bidaltzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء ادمین ارسال شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylläpitoylennys on lähetetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naipadala na pag-promote ng admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promotion en tant qu'administrateur envoyée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoción a Admin enviada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An aika da kaddamar da mutum maiyanzu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קידום מנהל נשלח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन पदोन्नति भेजी गई" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija admina poslana" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátori előléptetés elküldve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion sent" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosi admin terkirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promozione ad amministratore inviata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アドミン権限の昇格を送信しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინის სტატუსის შეცვლა გაიგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការដំឡើងជាអ្នកគ្រប់គ្រងបានផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ವಾಹಕ ಪ್ರಚಾರ ಕಳುಹಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion sent" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەروەردەکردنی بەڕێوەبەر سۆکەوت نێردرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okulonda obwannannyinjaamu kusindikiddwamu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການ​ຍ້ອງ​ສົ່ງ​ໄປ​ແລ້ວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoriaus pakėlimas išsiųstas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratora veicināšana nosūtīta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унапредувањето на администраторот е испратено" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ болгон дэвшүүлэх илгээгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kenaikan pangkat pentadbir dihantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin အဆင့်မြှင့်တင်မှု ပေးပို့ပြီး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotering sendt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासक प्रवर्धन पठाइएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotie verzonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoropprykk sendt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukweza boma kutumizidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਚਾਲਕ ਪ੍ਰਫ਼ੋਸ਼ਨ ਭੇਜਿਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysłano awans na administratora" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اډمین ترفیع ولېږل شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado Promover a Administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A promoção do Admin foi enviada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovare administrator trimisă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повышение до администратора отправлено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocija administratora poslana" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලක ප්‍රවර්ධනය යවන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvýšenie úrovne správcu odoslané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povečanje skrbnika poslano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovimi i administratorit u dërgua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ промоција послата" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj dodeljivanja administratora poslat" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promotion sent" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuenezwa kwa Msimamizi kumeenda" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகி பதவி உயர்வு அனுப்பப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రశాసక ప్రమోషన్ పంపబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเลื่อนตำแหน่งผู้ดูแลถูกส่งไปแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin terfisi gönderildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Права адміністратора надіслано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن پروموشن بھیج دی گئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administrator ko'tarilishi yuborildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã gửi yêu cầu thăng chức quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuphakanyiswa komlawuli kuthunyelwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理员授权已发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理員設置已發出" + } + } + } + }, + "adminRemove" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder Administrateurs" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة مشرفين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminləri çıxart" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدیریاں برس ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць адміністратараў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на администратори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন অপসারণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimir Administradors" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odebrat správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu Gweinyddwyr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern administratorer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoren entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση Διαχειριστών" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Admins" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi Administrantojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Administradores" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Administradores" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda administraatoreid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendu Administratzaileak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف مدیران" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista valvoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin ang Mga Admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retirer des administrateurs" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar administradores" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire Admins" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר מנהלים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन को हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni administratore" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminok eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել ադմիններին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi amministratori" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理者権限を削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინების წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកអ្នកគ្រប់គ្រងចេញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡ್ಮಿನ್‌ಗಳನ್ನು ತೆಗೆದುಹಾಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자 제거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی پەرەبەندەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo Abakulu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti administratorius" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt administratorus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани администратори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админыг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar Pentadbir" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တပ်မသက်ရှိများကို ဖယ်ရှားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern Administratorer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासकहरूलाई हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beheerders verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern Administrators" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Mabwana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਡਮਿਨ ਨੂੰ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń administratorów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اداري لرې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Administradores" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Admins" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină administratorii" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить администраторов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni administratore" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලකයින් ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť správcov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani skrbnike" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiq Adminët" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони администраторе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni administratore" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort administratörer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa Wasimamizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகிகளை அகற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అడ్మిన్లను తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити адміністраторів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمنز کو حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorlarni olib tashlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa ulawulo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除管理员" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除管理員" + } + } + } + }, + "adminRemoveAsAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder as Administrateur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة كمشرف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin olaraq sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "برس ک پاکستان مدیر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць як адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване като администратор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন হিসেবে অপসারণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix com a Admin" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odebrat jako správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu fel Gweinyddwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern som administrator" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Als Administrator entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση ως Διοικητής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove as Admin" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi kiel Administranto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar como Administrador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar como Administrador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda administraatorina" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzaile bezala kendu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف به عنوان مدیر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista valvojana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin bilang Admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retirer en tant qu'administrateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar como administrador" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire a matsayin Admin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר כמנהל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन के रूप में हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni s mjesta administratora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin jogosultság eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել ադմինից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus sebagai Admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi come amministratore" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理者として削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინის სტატუსის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកចេញពីអ្នកគ្រប់គ្រង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡ್ಮಿನ್‌ನಿಂದ ತೆಗೆದುಹಾಕಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자에서 제거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردن وەک پەرەبەندە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo nga Omukulu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pašalinti kaip administratorių" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt kā administratoru" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани како администратор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ байхаас устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar sebagai Pentadbir" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တပ်မသက်ရှိအဖြစ်မှ ဖယ်ရှားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern som Administrator" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासकको रूपमा हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijderen als beheerder" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern som Administrators" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani monga Bwana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਡਮਿਨ ਵਜੋਂ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń jako administrator" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اداري په حیث لرې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover como Administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover como Admin" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină ca administrator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить из администраторов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni kao administratora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලಕයෙකු ලෙස ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť ako správcu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani kot skrbnik" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe nga Admini" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони као администратора" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni kao administrator" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort som administratör" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa kama Msimamizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகி நிலையில் இருந்து அகற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అడ్మిన్ గా తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบสถานะผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici olarak kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити з адміністраторів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن کے طور پر حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratordan olib tashlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa quyền Quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa njenge-Admin" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "作为管理员移除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "以管理員身分移除" + } + } + } + }, + "adminRemoveCommunityNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar is geen Administrateurs in hierdie Gemeenskap nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يوجد مسؤولين في هذا المجتمع." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu İcmada heç bir Admin yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "� کمیونٹی میں کوئی ایڈمن نہ ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У гэтай Community няма Admins." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма администратори в тази общност." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই কমিউনিটিতে কোনো অ্যাডমিন নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha administradors en aquesta Comunitat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "V této komunitě nejsou žádní správci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes unrhyw Weinyddwyr yn y Gymuned hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der er ingen administratorer i dette Community." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es gibt keine Administratoren in dieser Community." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν υπάρχουν διαχειριστές σε αυτή την Κοινότητα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There are no Admins in this Community." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne estas Dummy-antoj en ĉi tiu Komunumo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay Administradores en esta Comunidad." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay Administradores en esta Comunidad." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selles kogukonnas pole administraatoreid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago Adminik Komunitate honetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ ادمینی در این انجمن وجود ندارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tässä yhteisössä ei ole ylläpitäjiä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang Admins sa Komunidad na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il n'y a aucun admins dans cette Communauté." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai Admins nesta Comunidade." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu Shuwaga a cikin Wannan Community." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין מנהלים ב-Community זה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस Community में कोई Admins नहीं हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema administratora u ovoj zajednici." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek adminisztrátorok ebben a közösségben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս համայնքում ադմիններ չկան." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada Admin di Komunitas ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non ci sono amministratori in questa Comunità." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このコミュニティには管理者がいません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ საზოგადოებაში ადმინისტრატორები არ არიან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "There are no Admins in this Community." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಮುದಾಯದಲ್ಲಿ ಯಾವುದೇ ಆಡ್ಮಿನ್‌ಗಳು ಇಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 커뮤니티에 관리자가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ بەڕێوەبرێکان چاندە كەوەم کۆمەڵگا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali baddukanya mu Community eno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra adminų šioje Community." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā Kopienā nav administratoru." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Во оваа заедница нема администратори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ Community-д Админы эрхтэй хэрэглэгч алга." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada Admin di dalam Komuniti ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ Community တွင် Admin မရှိပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen administratorer i dette samfunnet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस समुदायमा कुनै प्रशासकहरू छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er zijn geen beheerders in deze Community." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen administratorer i denne Samfunnet." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Admins mu Community imeneyi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ Community ਵਿੱਚ ਕੋਈ ਐਡਮਿਨ ਨਹੀਂ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "W społeczności nie ma administratorów." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په دې ټولنه کې هیڅ ادمن نشته." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há Administradores nesta Comunidade." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há Admins nesta comunidade." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu există administratori în această comunitate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В этом сообществе нет администраторов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "U ovoj zajednici nema administratora." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම ප්‍රජාවේ පරිපාලකයන් නැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tejto komunite nie sú žiadni administrátori." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tej Skupnosti ni skrbnikov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk ka Admina në këtë Community." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема администратора у овој заједници." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema Administratora u ovom Community." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finns inga administratörer i denna Community." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna Wasimamizi kwenye Community hii." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த சமூகம்(Community) இல் நிர்வாகிகள்(Admin) இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ కమ్యూనిటీలో ఎలాంటి అడ్మిన్లు లేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีแอดมินใน Community นี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Toplulukta hiçbir Yönetici yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У цій спільноті немає Адмінів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس کمیونٹی میں کوئی منتظم نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu Jamiyatda hech qanday administratorlar yo'q." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có Admin trong Community này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho balawuli kwi-Community." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此社群没有管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "此社群中沒有管理員。" + } + } + } + }, + "adminRemovedUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is as Admin verwyder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تم إزالته كمشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} artıq Admin deyil." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gōra Admin." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} быў выдалены як Адміністратар." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше премахнат като Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} অ্যাডমিন হিসেবে থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha estat eliminat com a Admin." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} byl/a odebrán/a jako správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y wedi cael ei dynnu fel admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev fjernet som Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wurde als Admin entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} αφαιρέθηκε ως Διαχειριστής." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} was removed as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estis deprenita kiel Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue removido como Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue destituido como Administrador." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eemaldati administraatorina." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Admin izateko kendu dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} از مدیریت حذف شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} poistettiin ylläpitäjänä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinanggal si {name} bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a été retiré en tant qu'administrateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi eliminado como Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an cire shi a matsayin Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הוסר/ה כמנהל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को Admin से हटा दिया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je uklonjen kao Admin." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} el lett távolítva mint adminisztrátor." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը հեռացվել է ադմինից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dihapus sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} è stato rimosso come amministratore." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} はアドミンから削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს აღარ არის ადმინისტრატორი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ ត្រូវបានដកចេញពីការកាន់តំណែងជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ನಿರ್ವಾಹಕರನ್ನಾಗಿ ತೆಗೆದುಹಾಕಲ್ಪಟ್ಟಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 관리자에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} لە بەڕێوەبەری لابرا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yasasulwa okuva ku kifo kya Admin." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ແມ່ນໄດ້ຖືກລຶບເຖິງAdmin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} buvo pašalintas kaip adminas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tika noņemts no administrēšanas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше отстранет како Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Админ зургаас хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dikeluarkan sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကို အုပ်ချုပ်ရေးမှူးအဖြစ်မှ ဖယ်ရှားခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble fjernet som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}लाई Admin बाट हटाइएको थियो।." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is verwijderd als Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart fjerna som admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} achotsedwa monga Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਵਜੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Usunięto z roli administratora: {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د اډمین په توګه لرې کړل شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi removido como Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi removido(a) como Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost eliminat ca administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} был(а) снят(а) с должности администратора." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je uklonjen kao Admin." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} පරිපාලක ආධිකාරීත්වයෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bol/a odstránený/á ako správca." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ni več administrator." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u largua si Administrator." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је уклоњен као администратор." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je uklonjen kao admin." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev borttagen som Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ameondolewa kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} நிர்வாகி பதவியில் இருந்து நீக்கப்பட்டார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} అడ్మిన్ గా తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ถูกปลดออกจากผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yönetici olarak kaldırıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} було вилучено із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو ایڈمن کے عہدہ سے ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Administrator sifatida olib tashlandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã bị loại khỏi Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ikhutshelwe ngaphandle kwindawo ye-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}被移除了管理员身份。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 被撤下管理員的身份。" + } + } + } + }, + "adminRemovedUserMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander is verwyder as Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت إزالة {name} و{count} آخرين من منصبهم كمسؤولين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}digər {count} nəfər Adminlikdən çıxarıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg gōra Admin." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і яшчэ {count} іншых былі паніжаны на пасадзе адміністратара." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други бяха премахнати като администратори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্য সদস্য অ্যাডমিন হিসেবে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han estat eliminats com a administradors." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalším bylo odebráno správcovství." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {count} eraill wedi cael eu symud o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre blev fjernet som Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere wurden als Admin entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλοι αφαιρέθηκαν ως Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others were removed as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj estis forigitaj kiel Admoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron removidos como Admins." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y otros {count} fueron eliminados como moderadores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist eemaldati Administraatori kohalt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste Admin moduan kendu dituzte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و{count} سایرین از مدیریت حذف شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta poistettiin ylläpitäjästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay tinanggal bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont été supprimé·e·s en tant qu'administrateur." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu an cire su daga zama Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ הוסרו מניהול." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को व्यवस्थापक पद से हटा दिया गया |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi su uklonjeni kao administratori." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy el lettek távolítva adminisztrátorként." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ հեռացվել են որպես ադմին՝ Administrator:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya telah dihapus sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} sono stati rimossi come Amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}名 がAdminから削除されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {count} სხვა წაიშალნენ ადმინისტრატორის როლიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {count} គេផ្សេងទៀត ត្រូវបានដកចេញពីតួនាទី Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {count} 명의 사람들의 관리자 직책이 제거되었습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە وەرگیندران وەک بەڕێوەبەر." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala basasulwa nga Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir dar {count} buvo pašalinti iš administratorių." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други беа отстранети како Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад Админ эрхээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dikeluarkan sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အုပ်ချုပ်ရေးမှူးအဖြစ် တန်းမြင့်နေသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble fjernet som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्यलाई प्रशासकबाट हटाइयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn verwijderd als beheerder." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart fjerna som Admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena adachotsedwa monga Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰ ਨੂੰ ਐਡਮਿਨ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników nie są już administratorami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور د ایډمین څخه لرې کړل شوی دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram removidos como Admin." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram removidos de Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au fost eliminați ca administratori." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других пользователей были удалены админом." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su uklonjeni kao Admin." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය පරිපාලක තනතුරින් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší boli odstránení ako správcovia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so bili odstranjeni kot administratorji." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë u larguan nga roli i Admin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су уклоњени као администратори." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su uklonjeni kao admini." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra togs bort som Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wameondolewa kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் நிர்வாகியிலிருந்து நீக்கப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు అడ్మిన్ స్థాయి నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {count} คนอื่นๆ ถูกลบออกจากสถานะ Admin." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} üye Yönetici seviyesinden düşürüldü." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших було вилучено з переліку адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر کو ایڈمن کے طور پر ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalar Administrator sifatida olib tashlandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} người khác đã bị xoá khỏi vai trò Quản trị viên." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu basusiwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}人的管理身份被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 位其他成員 被移除管理員身份。" + } + } + } + }, + "adminRemovedUserOther" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} is verwyder as Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت إزالة {name} و{other_name} من منصبي المسؤول." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} Adminlikdən çıxarıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} gōra Admin." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} былі паніжаны на пасадзе адміністратара." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} бяха премахнати като администратори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} অ্যাডমিন হিসেবে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han estat eliminats com a administradors." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} bylo odebráno správcovství." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {other_name} wedi cael eu symud o'r grŵp fel Admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} blev fjernet som Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} wurden als Administrator entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} αφαιρέθηκαν ως Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} were removed as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} estis forigitaj kiel Admoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron removidos como Admins." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron eliminados como moderadores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} eemaldati Administraatori kohalt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} Admin moduan kendu dituzte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} از مدیریت حذف شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} poistettiin ylläpitäjästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay tinanggal bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name}ont été supprimé·e·s en tant qu'administrateur." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} an cire su daga zama Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ הוסרו מניהול." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} को व्यवस्थापक पद से हटा दिया गया |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni kao administratori." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} el lettek távolítva adminisztrátorként." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը հեռացվել են որպես ադմին՝ Administrator:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} telah dihapus sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} sono stati rimossi come amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がAdminに昇格しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {other_name} წაიშალნენ ადმინისტრატორის როლიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {other_name} ត្រូវបានដកចេញពីតួនាទី Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} ಅವರಿಗೆ ನಿರ್ವಾಹಕರಾಗಿ ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {other_name}님의 관리자 직책이 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} وەرگیندران وەک بەڕێوەبەر." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} basasulwa nga Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} buvo pašalinti iš administratorių." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} беа отстранени како администратори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} Админ эрхээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dikeluarkan sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}နှင့် {other_name} အုပ်ချုပ်ရေးမှူးအဖြစ် တန်းမြင့်နေသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble fjernet som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}लाईप्रशासकबाट हटाइयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn verwijderd als beheerder." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart fjerna som Admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} adachotsedwa monga Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਤੇ {other_name} ਨੂੰ ਐਡਮਿਨ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} i {other_name} nie są już administratorami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} د ایډمین څخه لرې کړل شوی دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram removidos como Admin." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram removidos de Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au fost eliminați ca administratori." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пользователи {name} и {other_name} были удалены админом." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni kao Admin." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} පරිපාලක තනතුරින් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} boli odstránení ako správcovia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta bila odstranjena kot administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} u larguan nga roli i Admin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су уклоњени као администратори." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni kao admini." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} togs bort som Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wameondolewa kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} நிர்வாகியிலிருந்து நீக்கப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} అడ్మిన్ స్థాయి నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ถูกลบออกจากสถานะ Admin." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} Yönetici seviyesinden düşürüldü." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} було вилучено з переліку адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو ایڈمن کے طور پر ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} Administrator sifatida olib tashlandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã bị xoá khỏi vai trò Quản trị viên." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} basusiwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}的管理身份被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 被移除管理員身份。" + } + } + } + }, + "adminRemoveFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} as Admin verwyder nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إزالة {name} كمدير." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini Admin olaraq çıxartma uğursuz oldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو ایڈمن کے طور پر ہٹانے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць {name} як Адміна." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно премахване на {name} като администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} কে এডমিন থেকে সরাতে ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut eliminar {name} com a administrador." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se odebrat {name} jako správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd tynnu {name} fel Admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} som administrator." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Entfernen von {name} als Admin." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία κατάργησης {name} ως Διαχειριστής." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to remove {name} as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi {name} kiel Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al remover a {name} como Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al remover a {name} como Administrador." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus eemaldada {name} administraatoriks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan {name} Administrari bezala kentzea." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف {name} به عنوان مدیر ناموفق بود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän {name} poisto valvojana epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-alis kay {name} bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de supprimer {name} en tant qu'administrateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido eliminar a {name} como Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa cire sunan {name} a matsayin Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להסיר את {name} כאדמין." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को एडमिन के रूप में हटाने में विफल।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje {name} kao administratora nije uspjelo." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült eltávolítani {name}-t mint adminisztrátor." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել {name}-ին որպես Admin։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus {name} sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere {name} come amministratore." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} をアドミンから解除できませんでした。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} ადმინისტრატორთან მოცილება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការដក {name} ជាអ្នកគ្រប់គ្រង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ರನ್ನು ನಿರ್ವಾಹಕರ ಸ್ಥಾನದಿಂದ ತೆಗೆದುಹಾಕಲು ವಿಫಲವಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님을 관리자로 제거하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی پاشەکەوتکردنی {name} وه‌ک بەرگ واهێشتە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza {name} nga Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pašalinti {name} kaip administratoriaus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās noņemt {name} kā administratoru." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на {name} како адм." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ийг Админаас хасахад алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengeluarkan {name} sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အနေဖြင့် အသိအမှတ်များကို ဖယ်ရန်မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} लाई Admin मा हटाउन असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het verwijderen van {name} als Admin is mislukt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje fjernha {name} som admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa {name} ngati Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ ਐਡਮਿਨ ਦੇ ਰੂਪ ਵਿੱਚ ਹਟਾਉਣ ਵਿੱਚ ਅਸਫਲ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć użytkownika {name} z roli administratora." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د ایډمین څخه لرې کولو کې ناکام." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover {name} como Admin." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao remover {name} como Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut elimina {name} ca administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить статус администратора для {name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo uklanjanje {name} kao administratora." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} පරිපාලක ලෙස ඉවත් කිරීමට අසමත් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odstrániť používateľa {name} ako Admin." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo odstraniti {name} kot Admin." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi heqja e {name} si Admin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у уклањању {name} као администратора" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo uklanjanje {name} kao administratora." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att ta bort {name} som administratör." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kumwondoa {name} kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ஐ நிர்வாகியாக இருந்து நீக்குவதில் தவறிவிட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ను అడ్మిన్ గా తొలగించడంలో విఫలమైంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การลบ {name} จากแอดมินล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yönetici olarak kaldırılamadı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити {name} як адміністратора" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin کے طور پر {name} کو ہٹانے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ni administrativ vazifasidan olib tashlashda muammo chiqdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xóa {name} khỏi Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukususa {name} njenge Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除{name}管理员身份失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除 {name} 的管理者身分。" + } + } + } + }, + "adminRemoveFailedMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {count} ander as Admin verwyder nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إزالة {name} و{count} آخرين كمسؤول." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}digər {count} nəfər Adminlikdən çıxarılmadı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg gōra Admin intixabi agah kean gwašnī." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць {name} і {count} іншых з адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно премахване на {name} и {count} други като администратори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্য সদস্য অ্যাডমিন হিসেবে সরাতে ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut eliminar {name} i {count} altres com a administradors." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo odebrání správcovství {name} a {count} dalším." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd tynnu {name} a {count} eraill fel Admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} og {count} andre som Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Entfernen von {name} und {count} anderen als Admin." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αφαίρεσης {name} και {count} άλλων ως Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to remove {name} and {count} others as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi {name} kaj {count} aliaj kiel Admoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar a {name} y a otros {count} Admins más." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar {name} y {count} otros más administradores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus {name} ja {count} teise eemaldamine Administraatori kohalt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste Admin moduan kentzea huts egin du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف {name} و {count} سایرین از مدیریت ناموفق بود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän {name} ja {count} muun poistaminen valvojana epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong tanggalin sina {name} at {count} iba pa bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la suppression de {name} et {count} autres en tant qu'administrateur." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa cire {name} da {count} wasu daga zama Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בהסרת {name}‏ ו{count} אחרים‏ מניהול." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को व्यवस्थापक पद से हटाने में विफल |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje {name} i {count} drugi kao administratora nije uspjelo." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült eltávolítani őket adminisztrátorként: {name} és {count} másik személy." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել {name}֊ին և {count} ուրիշներ որպես ադմին՝ Administrator:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus {name} dan {count} lainnya sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere {name} e altri {count} come amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}名 をAdminから削除できませんでした。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ მოვახერხეთ {name}-ის და {count} სხვა-ის ადმინისტრატორის როლიდან წაშლა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការដក {name} និង {count} គេផ្សេងទៀត ចេញពីតួនាទី Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ತೆಗೆದುಹಾಕಲು ವಿಫಲವಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 님과 {count} 명의 사람들의 관리자 직책을 제거하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی وەرگرتنی {name} و {count} کەس دیکە وەک بەڕێوەبەر." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okwogolola {name} ne {count} abalala nga Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pašalinti {name} ir dar {count} iš administratorių." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на {name} и {count} други како администратори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад Админ эрхээс хасагдахад алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengeluarkan {name} dan {count} lainnya sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}နှင့် {count} ဦး ကို အုပ်ချုပ်ရေးမှူး အဖြစ် ဖွဲခြင်းမအောင်မြင်ဘူး။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} og {count} andre som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्यलाई प्रशासकबाट हटाउन असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mislukt om {name} en {count} anderen om te verwijderen als beheerder." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å fjerna {name} og {count} andre som Admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa {name} ndi {count} ena monga Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰ ਨੂੰ ਐਡਮਿਨ ਤੋਂ ਹਟਾਉਣ ਵਿੱਚ ਅਸਫਲ ਰਿਹਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć użytkownika {name} oraz {count} innych użytkowników z roli administratora." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور د ایډمین څخه لرې کولو کې ناکام." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover {name} e {count} outros como Admin." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover {name} e {count} outros de Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la eliminarea {name} și a altor {count} ca administratori." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить {name} и {count} других пользователей с правами Администратора." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ukloniti {name} i {count} drugih kao Admin." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය පරිපාලක තනතුරින් ඉවත් කිරීමට අසමත් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odstrániť {name} a {count} ďalší ako správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo odstraniti {name} in {count} drugih kot administratorji." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi largimi i {name} dhe {count} të tjerë si Admin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно уклањање {name} и {count} осталих као администратори." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo uklanjanje {name} i {count} drugih kao admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att ta bort {name} och {count} andra som Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuwaondoa {name} na {count} wengine kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் நிர்வாகத்திலிருந்து நீக்குவதில் தவறிவிட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు అడ్మిన్ స్థాయి నుంచి తొలగించడంలో విఫలమైంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถลบ {name} และ {count} คนอื่นๆ ออกจากสถานะ Admin ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} üye Yönetici seviyesinden düşürülemedi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося вилучити {name} та ще {count} інших з переліку адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر کو ایڈمن کے طور پر ہٹانے میں ناکامی ہوئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqa Administrator sifatida olib tashlashda xatolik." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xoá {name}{count} người khác khỏi vai trò Quản trị viên." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukususa {name} kunye {count} abanye abantu kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除{name}和其他{count}人的管理员身份失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除 {name}{count} 位其他成員 的管理員身份。" + } + } + } + }, + "adminRemoveFailedOther" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {other_name} as Admin verwyder nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إزالة {name} و{other_name} كمسؤول." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} Adminlikdən çıxarılmadı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} gōra Admin intixabi agah kean gwašnī." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць {name} і {other_name} з адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно премахване на {name} и {other_name} като администратори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} অ্যাডমিন হিসেবে সরাতে ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut eliminar {name} i {other_name} com a administradors." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo odebrání {name} a {other_name} jako správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd tynnu {name} a {other_name} fel Admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} og {other_name} som Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Entfernen von {name} und {other_name} als Admin." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αφαίρεσης {name} και {other_name} ως Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to remove {name} and {other_name} as Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi {name} kaj {other_name} kiel Admoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo eliminar a {name} y {other_name} como administradores." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar a {name} y a {other_name} como moderadores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus {name} ja {other_name} eemaldamine Administraatori kohalt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} Admin moduan kentzea huts egin du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف {name}و{other_name} از مدیریت ناموفق بود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjien {name} ja {other_name} poistaminen ylläpitäjänä epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong tanggalin sina {name} at {other_name} bilang Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la suppression de {name} et {other_name} en tant qu'administrateur." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa cire {name} da {other_name} daga zama Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בהסרת {name}‏ ו{other_name}‏ מניהול." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} व्यवस्थापक पद से हटाने में विफल |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje {name} i {other_name} kao administratora nije uspjelo." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült eltávolítani őket adminisztrátorként: {name} és {other_name}." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել {name}֊ին և {other_name}֊ին որպես ադմին՝ Administrator:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus {name} dan {other_name} sebagai Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere {name} e {other_name} come amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}は、Adminとして削除できませんでした。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ მოვახერხეთ {name}-ის და {other_name}-ის ადმინისტრატორის როლიდან წაშლა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការដក {name} និង {other_name} ចេញពីតួនាទី Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} ಅವರನ್ನು ನಿರ್ವಾಹಕರಾಗಿ ತೆಗೆದುಹಾಕಲು ವಿಫಲವಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {other_name}님의 관리자 직책을 제거하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی وەرگرتنی {name} و {other_name} وەک بەڕێوەبەر." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okwogolola {name} ne {other_name} nga Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pašalinti {name} ir {other_name} iš administratorių." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на {name} и {other_name} како администратори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} Админ эрхээс хасагдахад алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengeluarkan {name} dan {other_name} sebagai Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} ကို အုပ်ချုပ်ရေးမှူး အဖြစ် ဖွဲခြင်းမအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne {name} og {other_name} som Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}लाईप्रशासकबाट हटाउन असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mislukt om {name} en {other_name} als beheerder te verwijderen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å fjerna {name} og {other_name} som Admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa {name} ndi {other_name} monga Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਤੇ {other_name} ਨੂੰ ਐਡਮਿਨ ਤੋਂ ਹਟਾਉਣ ਵਿੱਚ ਫੇਲ੍ਹ ਹੋਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć użytkowników {name} i {other_name} z roli administatora." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} د ایډمین څخه لرې کولو کې ناکام." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover {name} e {other_name} como Admin." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover {name} e {other_name} de Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la eliminarea {name} și {other_name} ca administratori." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить {name} и {other_name} с правами Администратора." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ukloniti {name} i {other_name} kao Admin." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} පරිපාලක තනතුරින් ඉවත් කිරීමට අසමත් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odstrániť {name} a {other_name} ako správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo odstraniti {name} in {other_name} kot administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi largimi i {name} dhe {other_name} si Admin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно уклањање {name} и {other_name} као администратори." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo uklanjanje {name} i {other_name} kao admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att ta bort {name} och {other_name} som Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuwaondoa {name} na {other_name} kama Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} நிர்வாகியிலிருந்து நீக்குவதில் தவறிவிட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} అడ్మిన్ గా తొలగించడంలో విఫలమైంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถลบ {name} และ {other_name} ออกจากสถานะ Admin ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} Yönetici seviyesinden düşürülemedi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалось видалити {name} та {other_name} як Адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو ایڈمن کے طور پر ہٹانے میں ناکامی ہوئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} Administrator sifatida olib tashlashda xatolik." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xoá {name}{other_name} khỏi vai trò Quản trị viên." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukususa {name} kunye {other_name} kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除{name}{other_name}的管理员身份失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除 {name}{other_name} 的管理員身份。" + } + } + } + }, + "adminSendingPromotion" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevordering van admin word gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال ترقية المشرف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin təyinatı göndərilir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج رہا ہے ایڈمن پروموشن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адпраўка прасоўвання адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане на администраторска промоция" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এডমিন পদোন্নতি প্রেরণ করা হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviant promoció d'administrador" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesílání povýšení na správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon dyrchafiad gweinyddol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender admin forfremmelse" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorenbeförderung wird gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται αποστολή προαγωγής διαχειριστή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending admin promotion" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendante administran promocion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando promoción a admin" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando promoción de administrador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administraatori edutamine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin promozioa bidaltzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال ترفیع ادمین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylläpitoylennystä lähetetään" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending admin promotion" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoi de la promotion administrateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A enviar a promoción a administrador" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana aika ƙara wa girma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שליחת קידום למנהל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन प्रमोशन भेजा जा रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje promocije administracije" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátori előléptetés küldése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկվում է ադմինիստրատորի առաջխաղացումը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengirim promosi admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invio promozione ad amministratore" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理者への昇進を送信中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინად დაწინაურების გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ញើការផ្សព្វផ្សាយរបស់អ្នកគ្រប់គ្រង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ವಹಣಾ ಪ್ರಚಾರವನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자 권한 전송 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردنی تەبنی بەڕێوەبەری" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusindika okuwagira" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiama administratoriams" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sūta administratora paaugstinājumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се испраќа унапредување на администратор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ түвшний дахин томилгоо илгээж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghantar promosi admin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်ချုပ်ရေးမတက္ကသိုလ် သတင်းပေးမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender admin-forfremmelse" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासन प्रमोशन पठाउने" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beheerder promotie versturen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender admin promotering" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending admin promotion" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਡਮਿਨ ਪ੍ਰੋਮੋਸ਼ਨ ਭੇਜ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysyłanie awansu na administratora" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د مدیر پرمختګ لیږل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando promoção do administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A enviar promoção de administrador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se trimite promovarea la nivel de administrator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изменение статуса до уровня администратора" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje promaknuća u administratora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලක උසස්වීම යවන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odosiela sa povýšenie správcu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošiljanje promocije skrbnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgimi i promovimit të administratorit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слање унапређења администратора" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje unapređenja na administratora" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sänder administratörsbefordran" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inatuma msimamizi kutumwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாக முன்னேற்றம் அனுப்புகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అడ్మిన్ ప్రమోషన్‌ను పంపుతోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งโปรโมชันผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici terfisi gönderiliyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилання прав адміністратора" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن کی پروموشن بھیجی جا رہی ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin lavozimiga yuborish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang gửi khuyến mại quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuthumela ukuqina komlawuli" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理员授权中" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "晉升中" + } + } + } + }, + "adminSettings" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-instellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعدادات المسؤول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin ayarları" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن تنظیم" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налады адміністратара" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторски настройки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাডমিন সেটিংস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuració d'Admins" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavení správce" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosodiadau Gweinyddwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin indstillinger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-Einstellungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ρυθμίσεις Διαχειριστή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin Settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administraj Agordoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuración del administrador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuración de administrador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admini seaded" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratzailearen Ezarpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیمات ادمین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-asetukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Setting ng Admin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paramètres d’administrateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axustes de Admin" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saitunan Admin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרות מנהל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एडमिन सेटिंग्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke za administratore" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adminisztrátor beállítások" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin Settings" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengaturan Admin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impostazioni amministratore" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アドミン設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ადმინის პარამეტრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការកំណត់អ្នកគ្រប់គ្រង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ವಾಹಕ ಸೆಟ್ಟಿಂಗ್ಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin Settings" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕێکخستنەکانی بەڕێوەبەر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebijjukizo bya Bannannyini Byebibuzibwako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການຕັ້ງຄ່າຂອງ​ຜູ້ຄຸ້ມຄອງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratoriaus nustatymai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratora iestatījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Администраторски поставки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админы тохиргоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan Pentadbir" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin ဆက်တင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin-innstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रशासक सेटिङहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin instellingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administratorinnstillingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zokonda za Boma" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਚਾਲਕ ਸੈਟਿੰਗਜ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienia administratora" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اډمین تنظیمات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurações do Administrador" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definições Admin" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setări administrator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настройки администратора" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke Administratora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිපාලන සැකසුම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavenia správcu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavitve skrbnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rregullimet e Administratorit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Админ подешавања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke administratora" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Admin Settings" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mipangilio ya Msimamizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நிர்வாகி அமைப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రశాసక సెట్టింగ్‌లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่าผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici Ayarları" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адміністраторські налаштування" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایڈمن سیٹنگز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Administrator Sozlamalari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cài đặt quản trị viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izilungiselelo zabaAdmin" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理员设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "管理員設定" + } + } + } + }, + "adminTwoPromotedToAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} is bevorder tot Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} تم ترقيتهم إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} Admin olaraq yüksəldildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} rīhīyā Admin šumār." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} былі павышаны да адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} бяха повишени в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} অ্যাডমিন হিসেবে উন্নীত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han estat ascendits a Admin." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} byli povýšeni na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {other_name} penodwyd i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} wurden zu Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} προωθήθηκαν στο Admin." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} were promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} estis promociitaj al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron promovidos a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron promovidos a Administradores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} määrati adminiks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} Admin izendatu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} به مدیر ارتقاء یافتند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} ylennettiin ylläpitäjiksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} na-promote sa Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont été promus en tant qu'administrateurs." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foron ascendidos a Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} an tayar musu zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ קודמו למנהלים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} promovirani su u Admina." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} adminisztrátorrá lettek előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name} բարձրացվել են որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} sono ora amministratori." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {other_name}ს მიენიჭათ ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {other_name}‍ ត្រូវណានបិស្មីជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {other_name} ಪ್ರ ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} بە بەڕێوەبەر هەڵبژێردران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} baakyusibwa okufuuka Admin." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ{other_name} ໄດ້ຮັບການເລື່ອນຊັ້ນເປັນAdmin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} buvo paskirti adminais." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {other_name} tika paaugstināti par administrētāju." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} беа промовирани во Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အုပ်ချုပ်ရေးမှူး အဖြစ်တိုးတက်လာသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble forfremmet til Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}लाई Admin मा बढुवा गरियो।." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart promoterte til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} akwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{other_name}ਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} i {other_name} zostali administratorami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} مدیر ته وده ورکړه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram promovidos a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram promovidos a Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au fost promovați la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} назначены администраторами." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su unaprijeđeni u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} පරිපාලක (Admin) තනතුරට උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} boli povýšení na správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta bila promovirana v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} u promovuan në Administratorë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су унапређени у администраторе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su unapredjeni u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} blev befordrade till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wamepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} நிர்வாகியாக உயர்த்தப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} అడ్మిన్ కీ ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} yönetici olarak terfi etti." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} було підвищено до адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} Administrator sifatida ko'tarildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}被设置为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 被設置為管理員" + } + } + } + }, + "andMore" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "+{count}" + } + } + } + }, + "anonymous" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anoniem" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجهول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گمنام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymous" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анонимен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যানোনিমাস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anònim" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymní" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dienw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonym" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonym" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ανώνυμος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymous" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonima" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anónimo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anónimo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonüümne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonimoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناشناس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonyymi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi kilala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonyme" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anónimo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a san sunan ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנונימי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गुमनाम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anoniman" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Névtelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անանուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonimo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "匿名" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანონიმური" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អនាមិក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನಾಮಧೇಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "익명" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بێناونیشان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekimanyiddwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ຮູ້ຈັກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymous" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonīms" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анонимен" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэргүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymous" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မသိ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonym" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गुमनाम" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anoniem" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonym" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osadziwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੁੰਨਾਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بې نوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anônimo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anónimo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анонимно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonimno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිර්නාමික" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymné" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonimno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анониман" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonimno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonym" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonymous" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஸ்தனமானவனே" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అజ్ఞాతం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ถูกปิดบัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анонімно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گمنام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anonim" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn danh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogama lingaziwayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "匿名用戶" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "匿名" + } + } + } + }, + "appearanceAutoDarkMode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto donker-modus" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الوضع المظلم تلقائياً" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avto qaranlıq rejim" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو ڈارک موڈ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычны цёмная тэма" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматичен тъмен режим" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode fosc automàtic" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatický tmavý režim" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto ddull tywyll" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto mørk tilstand" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatischer Dunkler Modus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη σκοτεινή λειτουργία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomata malhela reĝimo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo oscuro automático" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo oscuro automático" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autom. tumerežiim" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالت تیرهٔ خودکار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaattinen tumma tila" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thème sombre automatique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo escuro automático" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanayin duhu-atomatik" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מצב כהה אוטומטי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वचालित डार्क-मोड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski tamni način" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatikus sötét mód" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավտոմատ մութ ռեժիմ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode gelap otomatis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modalità scura automatica" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オートダークモード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატიკური დაბნელების რეჟიმი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ម៉ូដងងឹតដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂ ಡಾರ್ಕ್ ಮೋಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "자동 다크 모드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئۆتۆ مود - تەختە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໂໂມດມືດອັດຕະໂນມັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatinis tamsus režimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiska tumša tēma" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски темен режим" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автомат бараан горим" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto mode-gelap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အလိုအလျောက် အမှောင်-mode" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk mørkmodus" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वतः अँध्यारो मोड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatische nachtmodus" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk mørkmodus" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Self mode yowala yowala" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਟੋ ਡਾਰਕ-ਮੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczny tryb ciemny" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto dark-mode" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo escuro automático" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo escuro automático" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mod întunecat automat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматический темный режим" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski tamni mod" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්වයං අඳුරු ප්‍රකාරය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatický tmavý režim" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejni temni način" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modaliteti automatik i errësirës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматски тамни режим" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski režim tamne teme" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiskt mörkläge" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njia ya giza ya kiotomatiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானியங்கு இருண்ட பயன்முறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆటో డార్క్-మోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหมดมืดอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otomatik karanlık-mod" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматичний темний режим" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو ڈارک موڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik qorong'u rejim" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chế độ tối tự động" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imowudi emnyama ngokuzenzekelayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动开启深色模式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動深色模式" + } + } + } + }, + "appearanceHideMenuBar" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek Kieslysbalk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء شريط القائمة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyu çubuğunu gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدارہء مینو ہڑین" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схаваць панэль меню" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрий лентата с менюта" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মেনু বার লুকান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga la barra de menú" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrýt menu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio Bar Dewislen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Menulinje" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menüleiste ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη Γραμμής Μενού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Menu Bar" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi Menuan Stangon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar barra de menú" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esconder barra de menú" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida menüüriba" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezkutatu Menu Barra" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پنهان کردن نوار منو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota valikkopalkki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago ang Menu Bar" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacher la barre de menu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agochar a barra de menú" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boye Menu Bar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר את סרגל התפריטים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेनू बार छुपाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij traku izbornika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menüsor elrejtése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թաքցնել ընտրացանկը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Meny Bar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi la barra dei menu" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メニューバーを隠す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მენიუს ზოლში დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់របារម៉ឺនុយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೆನೂ ಬಾರ್ ಅನ್ನು ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메뉴 바 숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارەوەی منیووبار" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka Menu Bar" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paslėpti meniu juostą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slēpt izvēlnes joslu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сокриј мени бар" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цэсний самбарыг нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Bar Menu" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Menu Bar" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul menylinjen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेनु बार लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menubalk verbergen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul menylinjen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa Menu Bar" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੈਨੂ ਬਾਰ ਥੱਲੇ ਖਿਸਕਾਉ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj pasek menu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د مینو بار پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Barra de Menu" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Barra de Menu" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde bara de meniu" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спрятать системное меню" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij traku sa menijem" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙනු තීරුව සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť panel ponuky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij menijsko vrstico" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshihi shiritin e menusë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакријте мени бар" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij meni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj menyfältet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha Mwambaa wa Menyu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மெனு பட்டியை மறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మెను బార్ దాచు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อนแถบเมนู" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menü Çubuğunu Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сховати панель меню" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مینیو بار چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyu panelini yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn thanh Menu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla iiMenyu Bar" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐藏菜单栏" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱藏選單列" + } + } + } + }, + "appearanceLanguage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اللغة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "زبان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мова" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Език" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভাষা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llengua" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jazyk" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iaith" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprog" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprache" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γλώσσα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Language" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lingvo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idioma" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idioma" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keel" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hizkuntza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "زبان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kieli" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wika" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langue" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idioma" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yare" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שפה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भाषा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jezik" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyelv" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լեզու" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bahasa" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lingua" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "言語" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ენა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ភាសា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಭಾಷೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "언어" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زمان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lungirira Olulimi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalba" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valoda" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Јазик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bahasa" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဘာသာစကား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Språk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भाषा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taal" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Språk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luumba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੰਜਾਬੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Język" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ژبه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Língua" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idioma" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limba" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Язык" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jezik" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "භාෂාව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jazyk" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jezik" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjuhë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Језик" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jezik" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Språk" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lugha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மொழி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "భాష" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ภาษา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мова" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "زبان" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Til" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngôn ngữ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulwimi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语言" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語言" + } + } + } + }, + "appearanceLanguageDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies jou taalinstelling vir {app_name}. {app_name} sal herbegin wanneer jy jou taalinstelling verander." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر إعدادات اللغة الخاصة بك لتطبيق {app_name}. سيعيد {app_name} التشغيل عند تغيير إعدادات اللغة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} üçün dil ayarlarınızı seçin. Dil ayarlarını dəyişdirdikdə {app_name} yenidən başladılacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کے لے آپنی زبان کے ترتیب کو منتخب کریں۔ جب آپ اپنی زبان کی ترتیب بدلیں گے، {app_name} دوبارہ شروع ہوگا۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абярыце налады мовы для {app_name}. {app_name} перазапусціцца пасля змены налад мовы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете езиковите настройки за {app_name}. {app_name} ще се рестартира при промяна на езиковите настройки." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} জন্য আপনার ভাষা সেটিং নির্বাচন করুন। আপনার ভাষা সেটিং পরিবর্তন করলে {app_name} পুনরায় শুরু হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trieu la configuració de l'idioma per a {app_name}. {app_name} es reiniciarà quan canvieu la configuració de l'idioma." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte jazykové nastavení pro {app_name}. {app_name} se restartuje, když změníte jazykové nastavení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch eich gosodiad iaith ar gyfer {app_name}. Bydd {app_name} yn ailgychwyn pan fyddwch chi'n newid eich gosodiad iaith." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg din sproglige indstilling for {app_name}. {app_name} vil genstarte, når du ændrer dine sprogindstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wähle deine Spracheinstellung für {app_name}. {app_name} wird neu gestartet, wenn du deine Spracheinstellung änderst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλέξτε τις γλωσσικές ρυθμίσεις για το {app_name}. Το {app_name} θα επανεκκινήσει όταν αλλάξετε τις γλωσσικές σας ρυθμίσεις." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose your language setting for {app_name}. {app_name} will restart when you change your language setting." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elektu vian lingv-agordon por {app_name}. {app_name} rekomenciĝos kiam vi ŝanĝos vian lingv-agordon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige la configuración de idioma para {app_name}. {app_name} se reiniciará cuando cambies tu configuración de idioma." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elija su configuración de idioma para {app_name}. {app_name} se reiniciará cuando cambie su configuración de idioma." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valige {app_name} keele seade. {app_name} taaskäivitub, kui muudate oma keele seadet." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aukeratu zure hizkuntza ezarpena {app_name} rako. {app_name} berrabiaraziko da hizkuntza ezarpena aldatzen duzunean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم زبان خود را برای {app_name} انتخاب کنید. هنگامی که تنظیم زبان خود را تغییر دهید، {app_name} مجدداً راه‌اندازی خواهد شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse kielen asetus {app_name} varten. {app_name} käynnistyy uudelleen, kun muutat kieliasetuksesi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumili ng setting ng wika para sa {app_name}. Ang {app_name} ay magre-restart kapag binago mo ang setting ng wika." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choisissez les paramètres de langue pour {app_name}. {app_name} redémarrera lorsque vous changerez les paramètres de langue." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elixe a configuración de idioma para {app_name}. {app_name} reiniciarase ao cambiar a configuración de idioma." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi saitin yarenku don {app_name}. {app_name} zai sake farawa lokacin da kuka canza saitin yaranku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר את הגדרת השפה שלך עבור {app_name}. {app_name} יופעל מחדש כאשר תשנה את הגדרת השפה שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} के लिए अपनी भाषा सेटिंग चुनें. जब आप अपनी भाषा सेटिंग बदलेंगे तो {app_name} पुनः प्रारंभ हो जाएगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite postavku jezika za {app_name}. {app_name} će se ponovno pokrenuti kada promijenite postavku jezika." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válaszd ki a nyelvi beállításaidat a {app_name} alkalmazáshoz. A {app_name} újraindul, amikor megváltoztatod a nyelvi beállítást." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրեք Ձեր լեզվի կարգավորումը {app_name}-ի համար։ {app_name}-ը վերագործարկվելու է, երբ փոխեք Ձեր լեզվի կարգավորումը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih pengaturan bahasa Anda untuk {app_name}. {app_name} akan dimulai ulang ketika Anda mengubah pengaturan bahasa." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli la lingua per {app_name}. {app_name} si riavvierà ogni volta che la cambierai." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}の言語設定を選択してください。言語設定を変更すると{app_name}が再起動されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეარჩიეთ თქვენი ენის პარამეტრები {app_name}-ისთვის. {app_name} გადატვირთება საჭირო იქნება ენის პარამეტრებისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសការកំណត់ភាសាសម្រាប់ {app_name}។ {app_name} នឹងចាប់ផ្តើមឡើងវិញនៅពេលអ្នកផ្លាស់ប្តូរការកំណត់ភាសារបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ಗಾಗಿ ನಿಮ್ಮ ಭಾಷಾ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ. {app_name} ನಿಮ್ಮ ಭಾಷಾ ಸೆಟ್ಟಿಂಗ್ ಬದಲಾಯಿಸಿದಾಗ ಪುನರಾರಂಭಗೊಳ್ಳುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}의 언어 설정을 선택하십시오. 언어 설정을 변경하면 {app_name}이 재시작됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ئەنجومەنی دەبیو بە کراوەکردنی {app_name} بگۆڕە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose your language setting for {app_name}. {app_name} will restart when you change your language setting." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເລືອກຕັ້ງຄ່າພາສາຂອງທ່ານສຳຫຼັບ {app_name}. {app_name} ຈະຟື້ນຄືນໃໝ່ເມື່ອທ່ານປ່ຽນຕັ້ງຄ່າພາສາ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite kalbos nustatymus programėlei {app_name}. Programėlė {app_name} bus paleista iš naujo, kai pakeisite kalbos nustatymus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlieties valodu uzstādījumus {app_name}. {app_name} restartēsies, kad mainīsiet valodas uzstādījumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете го јазичното поставување за {app_name}. {app_name} ќе се рестартира кога ќе ги промените јазичните поставувања." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} хэлний тохиргоог сонгоно уу. Хэлний тохиргоог солих үед {app_name} дахин ачаалагдана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih tetapan bahasa anda untuk {app_name}. {app_name} akan dimulakan semula apabila anda menukar tetapan bahasa anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ၏ ဘာသာစကား ဆက်တင် ရွေးချယ်ပါ။ ဘာသာစကား ဆက်တင်ပြောင်းလဲပါက {app_name} သည် ပြန်စမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg språket for {app_name}. {app_name} vil starte på nytt når du endrer språket." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को लागी तपाइँको भाषा सेटिङ छान्नुहोस्। तपाइँको भाषा सेटिङ परिवर्तन गर्दा {app_name} पुनः सुरु हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies je taalinstelling voor {app_name}. {app_name} wordt opnieuw gestart wanneer je je taalinstelling wijzigt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel språkinstillinga di for {app_name}. {app_name} vil starte på nytt når du endrar språkinstillinga." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose your language setting for {app_name}. {app_name} will restart when you change your language setting." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਲਈ ਆਪਣੀ ਭਾਸ਼ਾ ਸੈਟਿੰਗ ਚੁਣੋ। ਜਦੋਂ ਤੁਸੀਂ ਆਪਣੀ ਭਾਸ਼ਾ ਸੈਟਿੰਗ ਬਦਲਦੇ ਹੋ ਤਾਂ {app_name} ਮੁੜ ਸ਼ੁਰੂ ਹੋ ਜਾਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz ustawienie języka dla aplikacji {app_name}. Po zmianie ustawienia języka aplikacja {app_name} uruchomi się ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {app_name} ژبې تنظیمات غوره کړئ. {app_name} به بیا پیل شي کله چې تاسو خپل ژبې تنظیمات بدل کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha a configuração de idioma para {app_name}. {app_name} reiniciará quando você alterar a configuração de idioma." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha a configuração de idioma para {app_name}. {app_name} reiniciará quando alterar a configuração de idioma." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alegeți setarea limbii pentru {app_name}. {app_name} se va reporni atunci când schimbați setarea limbii." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберите языковые настройки для {app_name}. {app_name} будет перезапущен при изменении языковой настройки." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite postavku jezika za {app_name}. {app_name} će se restartovati kada promenite jezičke postavke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} සඳහා ඔබගේ භාෂා සැකසුම තෝරන්න. {app_name} ඔබගේ භාෂා සැකසුම වෙනස් කරන විට නැවත ආරම්භ කිරීමට අවශ්ය වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte jazykové nastavenie pre {app_name} . {app_name} sa po zmene jazykového nastavenia reštartuje." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberite jezikovne nastavitve za {app_name}. {app_name} se bo ponovno zagnal, ko spremenite jezikovne nastavitve." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjidhni cilësimin e gjuhës për {app_name}. {app_name} do të riniset kur të ndryshoni cilësimin e gjuhës." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изаберите језичке поставке за {app_name}. {app_name} ће се поново покренути када промените језичке поставке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite jezik za {app_name}. {app_name} će se restartovati kada promenite podešavanje jezika." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj din språkinställning för {app_name}. {app_name} kommer att startas om när du ändrar din språkinställning." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua mpangilio wa lugha yako kwa {app_name}. {app_name} itaanza tena unapobadilisha mpangilio wa lugha lako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} க்கான மொழி அமைப்புகளைத் தேர்ந்தெடுக்கவும். உங்கள் மொழி அமைப்பை மாற்றும் போது {app_name} மீண்டும் தொடங்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} కోసం మీ భాష సెట్టింగ్ ఎంచుకోండి. భాష సెట్టింగ్ మార్పినప్పుడు {app_name} రీస్టార్ట్ అవుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกการตั้งค่าภาษาสำหรับ {app_name} {app_name} จะรีสตาร์ทเมื่อเปลี่ยนการตั้งค่าภาษา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dil ayarınızı seçin. Dil ayarınızı değiştirdiğinizde {app_name} yeniden başlatılacak." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виберіть мовні налаштування для {app_name}. {app_name} перезапуститься при зміні мовного налаштування." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کے لیے اپنی زبان کی ترتیب منتخب کریں۔ جب آپ اپنی زبان کی ترتیب تبدیل کریں گے تو {app_name} دوبارہ شروع ہو جائے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uchun til sozlamangizni tanlang. Tilingizni o'zgartirganingizda {app_name} qayta ishga tushadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn cài đặt ngôn ngữ của bạn cho {app_name}. {app_name} sẽ khởi động lại khi bạn thay đổi cài đặt ngôn ngữ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha useto lolwimi lwakho lwe-{app_name}. {app_name} iya kuqalisa kwakhona xa utshintsha useto lolwimi lwakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择{app_name}的语言设置。更改语言设置后{app_name}将重新启动。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選擇您的語言設定 {app_name}。更改語言設置後 {app_name} 會重新啟動。" + } + } + } + }, + "appearancePreview1" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoe gaan dit?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كيف حالك؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necəsən?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاؤں شہی کہتگیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Як справы?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Как си?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কেমন আছেন?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Com estàs?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jak se máte?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sut wyt ti?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hvordan har du det?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wie geht's dir?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πώς είσαι;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "How are you?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiel vi fartas?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Cómo estás?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Cómo estás?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuidas sul läheb?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zelan zaude?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالت چطور است؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitä kuuluu?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamusta ka?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comment ça va ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Como estás?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaya kake?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מה שלומך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप कैसे हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kako si?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hogy vagy?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ինչպե՞ս ես:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apa kabarmu?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Come stai?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "調子はどうだい?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "როგორ ხარ?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកសុខសប្បាយទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೇಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "어떻게 지내세요?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ چۆنی؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli otya?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaip sekasi?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kā tev iet?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Како си?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Яаж байна?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apa khabar?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နေကောင်းလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hvordan har du det?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तिमीलाई कस्तो छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoe gaat het?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korleis går det?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muli bwanji?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਕਿਵੇਂ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jak się masz?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسه څنګه یاست؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Como você está?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Como estás?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce mai faci?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Как дела?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kako si?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට කෙසේද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ako sa máš?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kako si?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si je?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Како си?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kako si?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hur mår du?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "U hali gani?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எப்படி இருக்கிறீர்கள்?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు యలా ఉన్నారు?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณเป็นอย่างไรบ้าง?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nasılsın?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Як справи?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کیسے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qandaysan?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn khoẻ không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unjani?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "你好吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "你好嗎?" + } + } + } + }, + "appearancePreview2" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit gaan goed met my, en met jou?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنا بخير، شكراً، وأنت؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxşıyam, təşəkkürlər. Bəs sən?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مانی حال خیر ہے، شہی کہتگیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Я ў парадку, дзякуй. Што наконт цябе?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добре съм, благодаря, а ти?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমি ভাল ধন্যবাদ, আপনি?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estic bé gràcies, i tu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobře, jak vy?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rwy'n dda diolch, ti?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeg har det fint, tak, og du?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mir geht's gut, danke. Und dir?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είμαι καλά ευχαριστώ, εσύ;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "I'm good thanks, you?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mi fartas bone, dankon. Vi?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estoy bien, ¿y tú?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estoy bien, ¿y tú?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mul on hästi, aitäh, kuidas sinul?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongiz, zu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "من خوبم ممنون، تو چی؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyvää, kiitos. Mitäs sinne?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabuti ako salamat, ikaw?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je vais bien merci, et toi ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estou ben, grazas. E ti?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ina lafiya nagode, kai fa?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אני בסדר תודה, אתה?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मैं अच्छा हूँ धन्यवाद, आप?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobro sam, hvala, a ti?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Én jól, és te?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ես լավ եմ, դու՞:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kabar saya baik, kamu bagaimana?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sto bene, grazie. Tu?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "いい感じだよ、どう?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კარგად ვარ, თქვენ?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្ញុំសុខសប្បាយ អរគុណ, អ្នកវិញ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾನು ಚೆನ್ನಾಗಿ ಇದ್ದೇನೆ, ನೀವು ಹೇಗಿದ್ದೀರಿ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저도 좋아요, 당신은요?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "باشم، سوپاس، تۆ؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndi bulungi webale, ggwe?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Man viskas gerai, ačiū. O jums?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Man labi, paldies, un tev?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добро сум, благодарам, ти?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Би сайхан байна, чи яаж байна?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saya baik, terima kasih. Anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျေးဇူးပြု၍ ရှေ့နေရှာပေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeg har det bra takk, og du?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "म ठिक छु धन्यवाद, तिमी?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goed, dank je. En met jou?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eg har det fint, takk. Og du?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndili bwino, zikomo, inu bwanji?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੈਂ ਚੰਗਾ ਹਾਂ, ਖੁਦ ਦਾ ਖਿਆਲ ਰੱਖੋ ਤੁਸੀਂ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobrze, dzięki. A Ty?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زه ښه یم مننه، ته څنګه یې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eu estou bem, obrigado, e você?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estou bem obrigado, e tu?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunt bine, mulțumesc, dumneata?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Я в порядке, спасибо, а ты?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobro sam, hvala, kako si ti?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මට හොඳයි ස්තුතියි. ඔබට?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som v pohode, vďaka, a ty?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V redu sem, hvala, ti?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unë jam mirë, faleminderit, ti?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добро сам, хвала, како ти?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobro sam, hvala, ti?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jag mår bra, tack, du?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niko salama, wewe je?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நான் நன்றாக இருக்கிறேன், நீங்களே?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నేను బాగున్నాను ధన్యవాదాలు, మీరు యలా ఉన్నారు?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฉันก็ดี ขอบคุณ, คุณล่ะ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İyiyim, teşekkürler, ya sen?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У мене все гаразд, дякую. А в тебе?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میں ٹھیک ہوں شکریہ، آپ؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxshi, rahmat, sen-chi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tôi ổn, cảm ơn, còn bạn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndiyaphila enkosi, wena?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我很好,谢谢,你呢?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我很好,謝謝,你呢?" + } + } + } + }, + "appearancePreview3" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit gaan goed met my, dankie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنا بخير، شكراً." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxşıyam, təşəkkürlər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مانی حال خیر ہے، مہربانی." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Я ў парадку, дзякуй." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чувствам се чудесно, благодаря." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমি খুব ভালো আছি, ধন্যবাদ।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estic molt bé, gràcies." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skvěle, děkuji." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rwy'n gwneud yn wych, diolch." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeg har det godt, tak." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mir geht's prima, danke." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα πάω τέλεια, ευχαριστώ." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "I'm doing great, thanks." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mi fartas bonege, dankon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estoy bien, gracias." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estoy bien, gracias." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mul läheb suurepäraselt, aitäh." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oso ondo nago, eskerrik asko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "من عالی‌ام، ممنون." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinomaista, kiitos." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabuti naman ako, salamat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je vais bien, merci." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estounme ben, grazas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ina jin dadi, na gode." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלומי מצוין, תודה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मैं बहुत अच्छा हूँ, धन्यवाद।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odlično sam, hvala." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minden remek, köszi hogy kérdezted." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ինձ լավ եմ զգում, շնորհակալություն." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saya baik-baik saja, terima kasih." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sto benissimo, grazie." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "絶好調だよ!" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კარგად ვარ, გმადლობ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្ញុំមែនសុខសប្បាយ, អរគុណ." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾನು ಚೆನ್ನಾಗಿ ಇದ್ದೇನೆ, ಧನ್ಯವಾದಗಳು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘 지내고 있어요, 고마워요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زۆرم باشە، سوپاس." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndi bulungi, webale." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Man puikiai sekasi, ačiū." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Man iet lieliski, paldies." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одлично сум, благодарам." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надад сайхан байна, баярлалаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saya baik, terima kasih." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ငါ့ဟာ အမှန်တကယ်ကောင်းပါတယ်၊ ကျေးဇူးတင်ပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det går bra, takk." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "म राम्रो गरिरहेको छु, धन्यवाद।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het gaat goed, dank je." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det går bra, takk." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndili bwino, zikomo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੈਂ ਚੰਗਾ ਹਾਂ, ਧੰਨਵਾਦ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Świetnie, dziękuję." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زه ښه یم، مننه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eu estou muito bem, obrigado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estou bem, obrigado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mă simt minunat, mulțumesc." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У меня все отлично, спасибо." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvrsno sam, hvala." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මට හොඳයි. ස්තුතියි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mám sa skvele, vďaka." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Super sem, hvala." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ndihem mirë, faleminderit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одлично сам, хвала." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odlično sam, hvala." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jag mår bra, tack." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nilivyo, asante." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நான் நல்லா இருக்கேன், நன்றி." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నేను చల్లగానే ఉన్నాను, థ్యాంక్స్." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฉันก็ดี ขอบคุณ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çok iyiyim, teşekkürler." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У мене все чудово, дякую." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میں بہت اچھا ہوں، شکریہ۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Juda yaxshi, rahmat." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tôi rất tốt, cảm ơn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndiyaphila, enkosi." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我很好,谢谢。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我很好,謝謝。" + } + } + } + }, + "appearancePrimaryColor" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primêre Kleur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اللون الأساسي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əsas rəng" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلی رنگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Асноўны колер" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Основен цвят" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রাথমিক রং" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color primari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Výchozí barva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lliw Cynradd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primærfarve" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauptfarbe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κύριο Χρώμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primary Color" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉefkoloro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color primario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color primario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Põhivärv" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kolore nagusia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رنگ اصلی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pääväri" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangunahing Kulay" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couleur primaire" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor Primaria" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Launi na farko" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צבע ראשי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्राथमिक रंग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primarna boja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elsődleges szín" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հիմնական գույն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warna Utama" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colore primario" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プライマリーカラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირველფერი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពណ៌ចម្បង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기본 색" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕەنگی سەرەتا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkulungo Ey’Omusingi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pagrindinė spalva" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primārā krāsa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примарна боја" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үндсэн өнгө" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warna Primer" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အေရာင်ပုံစံအသစ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primærfarge" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्राथमिक रंग" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoofdkleur" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primærfarge" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu Woyamba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਾਇਮਰੀ ਰੰਗ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kolor podstawowy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلي رنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor Primária" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor principal" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Culoare primară" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Основной цвет" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primarna boja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රාථමික වර්ණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlavná farba" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primarna barva" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngjyra kryesore" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примарна боја" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primarna boja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primärfärg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rangi ya Msingi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "primari நிறம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రాధాన్య రంగు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สีหลัก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana renk" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Основний колір" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرائمری کلر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asosiy rang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Màu chính" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umbala Oyingundoqo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "主色调" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "主要色調" + } + } + } + }, + "appearanceThemes" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "السمات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temalar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тэмы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Теми" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "থিমস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motivy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Themâu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temaer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Design" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θέματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Themes" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aspektoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teemad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaiak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پوسته ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teemat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga tema" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thèmes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jigo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ערכות נושא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "थीम्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teme" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Színsémák" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ոճեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "テーマ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თემები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទម្រង់រចនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಥೀಮ್‌ಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "테마" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "رەنگەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emwoyo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tēmas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Теми" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэдэвүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အပြင်အဆင်ပုံစံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temaer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "थीमहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thema's" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temaer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitundu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਥੀਮਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motywy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټیم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teme" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Темы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teme" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තේමා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motívy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teme" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Теме" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teme" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teman" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mandhari" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தீம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "థీమ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ธีม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temalar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Теми" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تھیمز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mavzular" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hình nền" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imixholo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "主题" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "主題" + } + } + } + }, + "appearanceThemesClassicDark" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassieke Donker" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "داكن كلاسيكي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassik qaranlıq" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسک ڈارک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класічная цёмная" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класически тъмен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ক্লাসিক ডার্ক" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fosc clàssic" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasický tmavý" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clasurol Tywyll" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk mørk" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisch Dunkel" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλασσικό Σκούρο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasike malhela" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema Clásico Oscuro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassikaline tume" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسیک تیره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumma klassinen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasikong Madilim" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sombre classique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escuro clásico" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קלאסית כהה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्लासिक डार्क" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasszikus Sötét" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դասական մութ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gelap Klasik" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classico Scuro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "クラシック ダーク" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კლასიკური მუქი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ទៃចាស់ស្រអាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಲಾಸಿಕ್ ಡಾರ್ಕ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클래식 다크" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاریکی کلاسیکی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasikinis tamsus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasiskais tumšais" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична темна" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сонгодог Хар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik Gelap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဝါရောင် မှောင်မိုက်ရောင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk Mørk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुरानो कालो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassiek donker" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk Mørk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Dark" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਲਾਸਿਕ ਡਾਰਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasyczny ciemny" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسيک تیاره" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clássico Escuro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clássico Escuro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clasic Întunecat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Классическая темная" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična tamna" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්ප්‍රදායික අඳුරු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasická tmavá" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična temna" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik e Errët" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична тамна" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična tamna" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk mörk" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mandhari Nyeusi ya Kawaida" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கிளாசிக் டார்க்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "క్లాసిక్ డార్క్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดาร์กคลาสสิค" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik koyu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична темна" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسک ڈارک" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassik qorong'u" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tối cổ điển" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ithem yeClassic Mnyama" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "经典深色" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "經典深色" + } + } + } + }, + "appearanceThemesClassicLight" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassieke Lig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فاتح كلاسيكي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassik işıqlı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسک لائٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класічная светлая" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класически светъл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ক্লাসিক লাইট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llum clàssica" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasický světlý" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clasurol Golau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk lys" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisch Hell" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλασσικό Φωτεινό" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasike luma" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema Clásico Claro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassikaline hele" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسیک روشن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaalea klassinen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasikong Maliwanag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clair classique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Claro clásico" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קלאסית בהירה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्लासिक लाइट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasszikus Világos" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դասական լույս" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terang Klasik" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classico Chiaro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "クラシック ライト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კლასიკური ნათელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពន្លឺក្លាស៊ិក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಲಾಸಿಕ್ ಲೈಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클래식 라이트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئاڕاسته کەی کلاسیکی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຄລາສສິກແສງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasikinis šviesus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasiskais gaišais" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична светла" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сонгодог Цайвар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik Terang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဝါရောင် လင်းလတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk Lys" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुरानो सेतो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassiek licht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk Lys" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਲਾਸਿਕ ਲਾਈਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasyczny jasny" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسيک رڼا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clássico Claro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clássico Claro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clasic Luminos" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Классическая светлая" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična svetla" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්ප්‍රදායික ලබන" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasická svetlá" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična svetla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik e Ndritshme" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична светла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasična svetla" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassisk ljus" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mandhari Nyepesi ya Kawaida" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கிளாசிக் லைட்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "క్లాసిక్ లైట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไลท์คลาสสิค" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasik açık" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Класична світла" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلاسک لائٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klassik yorug'lik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sáng cổ điển" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classic Light" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "经典浅色" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "經典淺色" + } + } + } + }, + "appearanceThemesOceanDark" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oseaan donker" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "محيطي داكن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okean Qaranlıq" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تھیمں تاریکجو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean цёмная" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Темна океан" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceà fosc" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tmavý oceán" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Môr Tywyll" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Mørk" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σκοτεινό Ωκεανού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceane malhela" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema Océano Oscuro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ookeani tume" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ozeano Iluna" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اقیانوسی تیره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumma valtameri" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Madilim na Karagatan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Océan sombre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Océano Oscuro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bakin Ruwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सागर अंधेरा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamna ocean" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sötét Óceán" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օվկիանոսի մութ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lautan Gelap" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Scuro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーシャンダーク" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შავი ოკეანე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមុទ្រស្រអាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಭ Dark" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오션 다크" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەحرە تۆخ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekiyonjo Ekiwulumu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumšais okeāns" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Длабоко сино" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хар далай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lautan Gelap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Mørkt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "महासागर गाढा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceaan donker" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Mørkt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mdima wa Nyanja" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਓਸ਼ਨ ਡਾਰਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ciemny ocean" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تیاره سمندر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Escuro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Escuro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean întunecat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Темный океан" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamni ocean" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tmavý oceán" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oqeani i Errët" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Океанска тамна" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamni okean" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mörkt hav" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bahari giza" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடலின் இருள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒకేసారి మాయమయ్యే రంగు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okyanus Karanlık" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Океанічна темна" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okean qorong'i" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Dark" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "海洋深蓝" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "海洋深色" + } + } + } + }, + "appearanceThemesOceanLight" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oseaan lig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "محيطي فاتح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okean İşıqlı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تھیمں روشنی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean светлая" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Светла океан" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceà clar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Světlý oceán" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Môr Ysgafn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Lys" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φωτεινό Ωκεανού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceane luma" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tema Océano Claro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ookeani hele" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ozeano Argia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اقیانوسی روشن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaalea valtameri" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maliwanag na Karagatan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Océan lumineux" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Océano Claro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruwan Hasken" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सागर प्रकाश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svijetla ocean" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Világos Óceán" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օվկիանոսի լույս" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lautan Cerah" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Chiaro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーシャンライト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მსუბუქი ოკეანე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមុទ្រភ្លឺថ្លា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಭ Light" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오션 라이트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەحرە ڕوون" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekiyonjo Eky’omugga ekyerekeza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaišais okeāns" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Светло сино" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэрэлтэй Далай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lautan Terang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Lys" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "महासागर उज्यालो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceaan licht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hav Lys" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyanja Kuwala" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਓਸ਼ਨ ਲਾਈਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jasny ocean" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "روښانه سمندر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Claro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oceano Claro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean luminos" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Светлый океан" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svetli ocean" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svetlý oceán" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oqeani i Ndritshëm" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Океанска светла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svetli okean" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljust hav" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bahari mwangaza" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடலின் வெளிச்சம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒకేసారి స్వలంభన రంగు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okyanus Açığı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Океанічна світла" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okean nuri" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocean Light" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "海洋浅蓝" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "海洋淺色" + } + } + } + }, + "appearanceZoom" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كبِر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxınlaşdırma" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی قریب." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Маштаб" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увеличить" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "জুম" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escala" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lupa" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwyddo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μεγέθυνση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zomi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suurenda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suurenna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-zoom" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agrandir" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Girma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ריחוק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ज़ूम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagyítás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խոշորացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perbesar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrandisci" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ズーム" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მასშტაბი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពង្រីក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವೃದ್ಧಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "줌(확대/축소)" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulikira" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mastelis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuvināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зумирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Томруулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အရွယ်သေး / အရွယ်ကြီး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoomen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukulitsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜ਼ੂਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiększ" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom (Ampliar)" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ampliação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mărește" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увеличить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zumiranje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "විශාලනය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lupa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povečava" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmadhoni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зумирање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zumiraj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zooma" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuza" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெரிதாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జూమ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซูม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yakınlaştır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збільшити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوم" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolingiz saqlandi. Iltimos, uni xavfsiz joyda saqlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phóng to" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "缩放" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "縮放" + } + } + } + }, + "appearanceZoomIn" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تكبير" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxınlaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی قریب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павялічыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увеличить" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "জুম ইন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apropa't" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přiblížit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwyddo Mewn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom ind" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Darstellung vergrößern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μεγέθυνση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alzomi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ampliar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aumentar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suurenda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurbildu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بزرگ نمایی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähennä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-zoom In" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom avant" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Achegar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kara Girma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התקרב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ज़ूम इन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagyítás növelése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խոշորացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memperbesar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aumenta ingrandimento" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "拡大" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოახლოვება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពង្រីក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಂದೆ ಸರಿಸಲು ವೃದ್ಧಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "확대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garakako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Didinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palielināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зумирај внатре" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Томруулна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Masuk" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထဲဝင်ရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom inn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inzoomen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom inn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukulitsa Choncho" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜ਼ੂਮ ਇਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przybliż" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نزدې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aumentar zoom" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aumentar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mărește" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увеличить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvećaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "විශාලනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priblížiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Približaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmadhoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увећај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvećaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zooma in" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuza Ndani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெரிதாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జూమ్ ఇన్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซูมเข้า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yakınlaştır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збільшити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوم ان" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaqinlashtirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phóng to" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "放大" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "放大" + } + } + } + }, + "appearanceZoomOut" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصغير" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaqlaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی دور" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паменшыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уменьшить" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "জুম আউট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allunya't" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oddálit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwyddo Allan" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom ud" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Darstellung verkleinern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σμίκρυνση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Out" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elzomi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reducir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reducir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vähenda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Urrundu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوچک نمایی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loitonna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-zoom Out" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom arrière" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afastar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rage Girma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התרחק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ज़ूम आउट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Out" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagyítás csökkentése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մանրացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memperkecil" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diminuisci ingrandimento" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "縮小" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაშორება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្រួម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಿಂದೆ ಸರಿಸಲು ವೃದ್ಧಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "축소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Out" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garambye" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mažinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samazināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зумирај надвор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Томруулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Keluar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထဲမဝင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom ut" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Out" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitzoomen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom ut" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuchepa Choncho" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜ਼ੂਮ ਆਉਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oddal" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لرې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diminuir zoom" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diminuir" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micșorează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уменьшить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smanji" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කුඩාලනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oddialiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oddalji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvogëloje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Умањи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umanji" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zooma ut" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuza Nje" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிறிதாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జూమ్ ఔట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซูมออก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaklaştır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зменшити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوم آؤٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaqinlashtirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thu nhỏ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom Out" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "缩小" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "縮小" + } + } + } + }, + "attachment" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanhegsel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşma" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسٹیکچر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далучэнне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачен файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Příloha" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedhæftning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhang" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συνημμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunsendaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskina" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga isinama" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pièce jointe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haɗi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अटैचमेंट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privitak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melléklet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიმაგრებული ფაილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារ​ភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوپێچ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເອືອລວາທິດາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priedas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pielikums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပူးတွဲပါဖိုင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संम्लगन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlage" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chokwanira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਨਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Załącznik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atașament" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Príloha" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priloga" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bashkëngjitje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilaga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ambatisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilova" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isihombiso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "附件" + } + } + } + }, + "attachmentsAdd" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voeg aanhegsel by" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إضافة مرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşma əlavə et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ضمیمہ آزار" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадаць укладанне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачване на файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাটাচমেন্ট যোগ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afegeix un adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přidat přílohu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ychwanegu atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedhæft fil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhang hinzufügen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσθήκη συνημμένου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aldoni kunsendaĵon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir archivo adjunto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir archivo adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisa manus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskina gehitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "افزودن پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisää liite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idagdag ang attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouter une pièce jointe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engadir anexo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙara abin da aka haɗa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הוסף צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अटैचमेंट जोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj privitak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melléklet hozzáadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելացնել կցորդ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiungi allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルを付ける" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დანართის დამატება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ភ្ជាប់ឯកសារបន្ថែម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಗತ್ತು ಸೇರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوپێچ زیاد بکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongeza ekibanja" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເພີ່ມ attachment" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridėti priedą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienot pielikumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додади прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралт нэмэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တွဲချိတ်မှု ထည့်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संलग्नकर्ता थप्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlage toevoegen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjezerani zolemba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਸ਼ਾਮਿਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj załącznik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ضمیمه اضافه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adaugă atașament" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавить вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ැමුණුම එකතු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridať prílohu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj prilogo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shto bashkëngjitje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај прилог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj prilog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lägg till bilaga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeza Kiambatanisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பை சேர்க்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అటాచ్మెంట్ జోడించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพิ่มไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eklenti ekle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسلکہ شامل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'shish ilovasi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thêm tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gatako ekigatiddwako" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "添加附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "新增附件" + } + } + } + }, + "attachmentsAlbumUnnamed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naamlose Album" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ألبوم بدون إسم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adsız Albom" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بے نام البم" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Безыменны альбом" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Албум без име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নামহীন অ্যালবাম" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Àlbum sense nom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepojmenované album" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Albwm Dienw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unavngivet Album" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbenanntes Album" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άλμπουμ Χωρίς Όνομα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unnamed Album" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen nomita Albumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Álbum sin nombre" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Álbum sin nombre" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimeta album" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izenik gabeko albuma" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آلبوم بی نام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimetön albumi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi napangalanan ang Album" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album sans nom" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Álbum sen nome" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rumbun hotuna mara suna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אלבום ללא שם" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनाम एल्बम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neimenovani album" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Névtelen album" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անանուն ալբոմ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album tanpa nama" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album senza nome" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "無名のアルバム" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უსახელო ალბომი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អាល់ប៊ុំ ដែលមិនបានដាក់ឈ្មោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್ನಾಮಧೇಯ ಆಲ್ಬಮ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이름 없는 앨범" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئه‌لبومى بێناو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alibamu Ekitasaniddwako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Albumas be pavadinimo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenosaukts albums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Безимеен албум" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэргүй цомог" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album Tanpa Nama" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မပေးရသေးသော Album" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navnløst bildealbum" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नाम नभएको एल्बम" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naamloos Album" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navlaust biletalbum" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album Yosatchulidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਨਾਮੀ ਐਲਬਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album bez nazwy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بې نومه البم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Álbum sem nome" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Álbum sem nome" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album fără nume" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Безымянный альбом" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neimenovani album" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නම් නොකළ ඇල්බමය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepomenovaný album" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neimenovan album" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album i Paemër" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неименовани албум" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez naslova album" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Namnlöst Album" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Albamu isiyo na jina" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெயரிடப்படாத ஆல்பம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పేరులేని ఆల్బమ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อัลบั้มที่ไม่มีชื่อ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adsız Albüm" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Альбом без імені" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بے نام البم" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nomsiz albom" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Album không tên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ialbhamu engachazwanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未命名的相册" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未命名相簿" + } + } + } + }, + "attachmentsAutoDownload" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Outomaties Bylaes Af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنزيل المرفقات تلقائيًا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşmaları avto-endir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسلکات خودکار ڈاؤنلوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычнае спампаванне ўкладанняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично изтегляне на прикачени файлове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্বয়ংক্রিয়ভাবে সংযুক্তি ডাউনলোড" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarrega automàtica d'adjunts" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické stahování příloh" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho Atodiadau Auto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk download af vedhæftninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhänge automatisch herunterladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη Λήψη Συνημμένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomata Elŝuto de Aldonaĵoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar automáticamente los archivos adjuntos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarga automática de adjuntos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manuste automaatne allalaadimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانلود خودکار فایل‌های پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa liitteet automaattisesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléchargement automatique des pièces jointes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar anexos automaticamente" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zazzage Maƙallafa Kai tsaye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הורדת קבצים אוטומטית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वचालित रूप से डाउनलोड अनुलग्नक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko preuzimanje privitaka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csatolmányok automatikus letöltése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կցորդներ ավտոմատ ներբեռնում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unduh Lampiran Otomatis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scarica automaticamente gli allegati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルの自動ダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატური ჩამოტვირთვა მედიაფაილების" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាញយកឯកសារភ្ជាប់ដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂ ಡೌನ್ಲೋಡ್ ಲಗತ್‌ಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일 자동 다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بە شێوەی خۆکار هاوپێچەكان دابەزاندن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂໍ້ເເນບທີ່ດາວໂຫຼດອັດຕະໂນມັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai atsisiųsti priedus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski lejupielādēt pielikumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматско преземање приложенија" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралтуудыг автоматаар татаж авах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat Turun Lampiran Auto" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အလိုအလျောက် ဒေါင်းလုဒ်ဆွဲရန် ပူးတွဲဖိုင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संलग्नक स्वतः डाउनलोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch downloaden bijlagen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk nedlasting av vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਟੋ-ਡਾਊਨਲੋਡ ਅਟੈਚਮੈਂਟਸ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne pobieranie załączników" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اتوماتیک اAttachmentsخل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download Attachments" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferir Automaticamente Anexos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descărcare automată atașamente" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автозагрузка вложений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko preuzimanje priloga" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම් ස්වයංක්‍රීයව බාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické sťahovanie príloh" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno prenašaj priponke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarko Automatikisht Bashkëngjitjet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматско преузимање прилога" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski preuzmi priloge" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-hämtning av bilagor" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua Viambatisho Moja kwa Moja" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானாக இணைப்புகளை கையாவில் பதிவிறக்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జోడింపులను ఆటో-డౌన్లోడ్ చేయు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดาวน์โหลดสิ่งแนบอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eklentileri Otomatik İndir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматичне завантаження вкладень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو ڈاؤن لوڈ منسلکات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik ravishda ilova qo'shish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động tải về Tệp tin Đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuphela ngokuzenzekelayo izinto ezincamathiselweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动下载附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動下載附件" + } + } + } + }, + "attachmentsAutoDownloadDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai outomaties media en lêers van hierdie kletskamer af." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنزيل الوسائط والملفات من هذه الدردشة تلقائيًا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu söhbətdəki media və faylları avto-endir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس چیٹ سے میڈیا اور فائلوں کو خود بخود ڈاؤنلوڈ کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычна загружаць медыя і файлы з гэтага чата." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично изтегляне на медия и файлове от този чат." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই চ্যাট থেকে স্বয়ংক্রিয়ভাবে মিডিয়া এবং ফাইল ডাউনলোড করা হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixa automàticament els mitjans i fitxers d'aquest xat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky stahovat média a soubory z tohoto chatu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho cyfryngau a ffeiliau'n awtomatig o'r sgwrs hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download automatisk medier og filer fra denne chat." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medien und Dateien aus diesem Chat automatisch herunterladen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη λήψη πολυμέσων και αρχείων από αυτή τη συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically download media and files from this chat." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate elŝuti aŭdvidaĵojn kaj dosierojn el ĉi tiu babilo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar automáticamente medios y archivos de este chat." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar automáticamente medios y archivos de este chat." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadi automaatselt alla meediume ja faile sellest vestlusest." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically download media and files from this chat." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانلود خودکار رسانه‌ها و فایل‌ها از این چت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa media ja tiedostot tästä keskustelusta automaattisesti." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically download media and files from this chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Télécharger automatiquement les médias et fichiers de cette conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar automaticamente multimedia e ficheiros deste chat." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauke fayiloli da kafofin watsa labarai kai tsaye daga wannan tattaunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הורדה אוטומטית של מדיה וקבצים מהצ'אט הזה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस चैट से स्वचालित रूप से मीडिया और फाइलें डाउनलोड करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski preuzmi medije i datoteke iz ovog chata." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Média és fájlok automatikus letötltése ebből a beszélgetésből." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ինքնաբերաբար ներբեռնել մեդիան և ֆայլերը այս զրուցարանից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Secara otomatis mengunduh media dan berkas dari obrolan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scarica automaticamente contenuti multimediali e file da questa chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このチャットからメディアとファイルを自動的にダウンロードします" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატურად ჩამოტვირთეთ მედია და ფაილები ამ პირად საუბრიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាញយកព័ត៌មាន និងឯកសារចេញពីកិច្ចសន្ទនានេះដោយស្វ័យប្រវត្តិ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಚಾಟ್ನಿಂದ ಮಾಧ್ಯಮ ಮತ್ತು ಕಡತಗಳನ್ನು ಸ್ವಯಂ ಡೌನ್ಲೋಡ್ ಮಾಡು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 채팅에서 미디어 및 파일 자동 다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بە شێوەی خۆکار میدیە و فایلەکان لەو چەتە دەبەزاندن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically download media and files from this chat." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ດາວໂຫຼດສື່ຂ່າວແລະໄຟລ໌ຈາກການເສັງນີ້ໂດຍອັດຕະໂນມັດ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai atsisiųsti mediją ir failus iš šio pokalbio." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski lejupielādēt medijus un failus no šīs sarunu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски преземање медиуми и датотеки од овој чат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ чатаас медиа болон файлуудыг автоматаар татаж авах." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat turun media dan fail dari sembang ini secara automatik." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤစကားပြောမှုမှ မီဒီယာများနှင့် ဖိုင်များကို အလိုအလျောက် ဒေါင်းလုပ်ဆွဲပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned media og filer fra denne samtalen automatisk." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस कुराकानीबाट मिडिया र फाइलहरू स्वतः डाउनलोड गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch media en bestanden van deze chat downloaden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned medier og filer frå denne chatten automatisk." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically download media and files from this chat." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਚੈਟ ਤੋਂ ਮੀਡੀਆ ਅਤੇ ਫਾਇਲਾਂ ਆਪਣੇ ਆਪ ਡਾਊਨਲੋਡ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne pobieranie multimediów i plików z tego czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په اتومات ډول د دې چیټ څخه میډیا او فایلونه ډاونلوډ کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixar mídia e arquivos automaticamente deste chat." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferir automaticamente multimédia e ficheiros deste chat." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarcă automat media și fișiere din acest chat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматически загружать медиафайлы и файлы из этого чата." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski preuzmi medije i datoteke iz ovog četa." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම කතාබහෙන් මාධ්‍ය සහ ගොනු ස්වයංක්‍රීයව බාගත කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické sťahovanie médií a súborov z tohto chatu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno prenesi medije in datoteke iz tega klepeta." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarkoni automatikisht mediat dhe dosjet nga kjo bisedë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматски преузми медије и фајлове из овог чата." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski preuzima medije i fajlove iz ovog čata." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hämta automatiskt media och filer från denna chatt." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua moja kwa moja vyombo vya habari na faili kutoka kwenye chat hii." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த முறையிலிருந்து ஊடகங்களையும் கோப்புகளையும் தானாக பதிவிறக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ చాట్ నుండి మీడియా మరియు ఫైళ్ళను ఆటోమేటిక్‌గా డౌన్లోడ్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดาวน์โหลดมีเดียและไฟล์จากการสนทนานี้โดยอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sohbetten medya ve dosyaları otomatik olarak indir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично завантажувати медіа і файли з цього чату." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس چیٹ سے میڈیا اور فائلز کو خودکار ڈاؤن لوڈ کرنا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu suhbatdan media va fayllarni avtomatik ravishda yuklab oling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động tải về phương tiện và các tập tin từ cuộc trò chuyện này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuphela ngokuzenzekelayo imidiya kunye neefayile ezivela kule ngxoxo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动下载此聊天的媒体和文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動從此聊天下載媒體和檔案。" + } + } + } + }, + "attachmentsAutoDownloadModalDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy al die lêers outomaties aflaai vanaf {conversation_name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود تنزيل كافة الملفات تلقائيًا من {conversation_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} danışığındakı bütün faylları avtomatik endirmək istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شمای چس بیتھہ آ نال اُپلوڈ بکود جیکت ہوئیگ بیتنگ اتہ {conversation_name}؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце аўтаматычна загружаць усе файлы з {conversation_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли автоматично да изтегляте всички файлове от {conversation_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to automatically download all files from {conversation_name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu descarregar automàticament tots els fitxers de {conversation_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete automaticky stahovat všechny soubory z {conversation_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi lawrlwytho'r holl ffeiliau o {conversation_name} yn awtomatig?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du automatisk downloade alle filer fra {conversation_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du alle Dateien von {conversation_name} automatisch herunterladen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να κατεβάζετε αυτόματα όλα τα αρχεία από {conversation_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to automatically download all files from {conversation_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus aŭtomate elŝuti ĉiujn dosierojn de {conversation_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría descargar automáticamente todos los archivos de {conversation_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría descargar automáticamente todos los archivos de {conversation_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite automaatselt alla laadida kõik failid vestlusest {conversation_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}-tik fitxategi guztiak automatikoki deskargatu nahi dituzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید به‌طور خودکار تمامی فایل‌ها از {conversation_name} دانلود شوند؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko ladata automaattisesti kaikki tiedostot {conversation_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang i-auto download ang lahat ng files mula kay {conversation_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous télécharger automatiquement tous les fichiers de {conversation_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés descargar automaticamente todos os ficheiros de {conversation_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a saukar da duk fayilolin daga {conversation_name} ta atomatik?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך להוריד אוטומטית את כל הקבצים מ-{conversation_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {conversation_name} से सभी फ़ाइलों को स्वचालित रूप से डाउनलोड करना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li automatski preuzeti sve datoteke iz {conversation_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szeretnéd automatikusan letölteni az összes fájlt a {conversation_name} beszélgetésből?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք ավտոմատ կերպով ներբեռնել բոլոր ֆայլերը {conversation_name} զրույցից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin mengunduh otomatis semua file dari {conversation_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vorresti scaricare automaticamente tutti i file da {conversation_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}のすべてのファイルを自動的にダウンロードしますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ ავტომატურად ჩამოტვირთოთ ყველა ფაილი {conversation_name}-დან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ទាញយកឯកសារទាំងអស់ពី {conversation_name} ដោយស្វ័យប្រវត្តិទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಕ್ರೋಸಿನ ಎಲ್ಲಾ ಫೈಲುಗಳನ್ನು ವ್ಯವಸ್ಥಾಪನಾತ್ಮಕವಾಗಿ ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಇಚ್ಚಿಸುತ್ತೀರಾ {conversation_name}?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}의 모든 파일을 자동 다운로드하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت هەموو فایلەکان خۆکارانە دابەزەنەوە لە {conversation_name}؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okukutula fayiro zonna okuva e {conversation_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte automatiškai atsisiųsti visus failus iš {conversation_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties automātiski lejupielādēt visus failus no {conversation_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате автоматски да ги преземате сите датотеки од {conversation_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} бүх файлыг автомат татаж авахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin memuat turun semua fail dari {conversation_name} secara automatik?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to automatically download all files from {conversation_name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du automatisk laste ned alle filer fra {conversation_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाईं {conversation_name} बाट सबै फाइलहरू स्वत: डाउनलोड गर्न चाहन्छु?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u automatisch alle bestanden van {conversation_name} downloaden?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du automatisk laste ned alle filer frå {conversation_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kutsitsa mafayilo onse a {conversation_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {conversation_name} ਤੋਂ ਸਾਰੇ ਫਾਇਲਾਂ ਆਪੋ-ਆਪਣੀ ਨਹੀਂ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz automatycznie pobierać wszystkie pliki z konwersacji {conversation_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ چې د {conversation_name}. څخه ټول فایلونه په اوتومات ډول ډاونلوډ کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de baixar automaticamente todos os arquivos de {conversation_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deseja descarregar automaticamente todos os ficheiros de {conversation_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să descărcați automat toate fișierele din {conversation_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите автоматически загружать все файлы из {conversation_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da automatski preuzmete sve datoteke iz {conversation_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {conversation_name} වෙතින් සියලුම ගොනු ස්වයංක්‍රීයව බාගත කිරීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete automaticky sťahovať všetky súbory z {conversation_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite samodejno prenesti vse datoteke iz {conversation_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të shkarkoni automatikisht të gjitha skedarët nga {conversation_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите аутоматски преузети све датотеке из {conversation_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da automatski preuzmete sve datoteke sa {conversation_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du automatiskt ladda ner alla filer från {conversation_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kuhifadhi kiotomatiki faili zote kutoka {conversation_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {conversation_name} இன் அனைத்து கோப்புக்களை தானாக பதிவிறக்கம் செய்ய விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {conversation_name} నుండి అన్ని ఫైళ్ళను ఆటోమేటిక్‌గా డౌన్‌లోడ్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการดาวน์โหลดไฟล์ทั้งหมดจาก {conversation_name} โดยอัตโนมัติหรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} içindeki tüm dosyaları otomatik olarak indirmek ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте автоматично завантажувати всі файли з {conversation_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {conversation_name} سے تمام فائلیں خودکار طور پر ڈاؤن لوڈ کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} barcha fayllarini avtomatik yuklab olmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn tự động tải về tất cả các tệp từ {conversation_name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukulayisha yonke ifayile isuka kwi-{conversation_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望自动下载来自{conversation_name}的所有文件吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想自動下載 {conversation_name} 中的所有檔案?" + } + } + } + }, + "attachmentsAutoDownloadModalTitle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outomatiese Aflaai" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنزيل تلقائي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avto-endirmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو ڈاؤنلوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаскачванне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично изтегляне" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Download" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descàrrega Automàtica" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické stahování" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho Auto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk download" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Download" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη Λήψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Download" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomata elŝuto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarga automática" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarga automática" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autom. allalaadimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-download eranskinak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارگیری خودکار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaattinen lataus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong pag-download" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléchargement automatique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarga automática" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zazzage atomatik" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הורדה אוטומטית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वचालित डाउनलोड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko preuzimanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatikus letöltés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավտոմատ ներբեռնում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unduhan Otomatis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download automatico" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動ダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატური ჩამოტვირთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាញយកដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂ ಡೌನ್ಲೋಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "자동 다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەشی هەڵەپشانەوە خۆکار" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Download" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການດາວໂຫຼດອັດຕະໂນມັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatinis siuntimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiska lejupielāde" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматско преземање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автомат татан авалт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat Turun Automatik" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အလိုအလျောက် ဒေါင်းလုတ်ဆွဲပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk nedlasting" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वतः डाउनलोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch downloaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk nedlasting" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsitsa Kwama media mwachangu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਟੋ ਡਾਊਨਲੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne pobieranie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Download" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download automático" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download Automático" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descărcare automată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматическая загрузка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko preuzimanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්වයං බාගැනීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické sťahovanie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejni prenos" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarkim automatik" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматско преузимање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko preuzimanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk nedladdning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua Kiotomatiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானியங்கு பதிவிறக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆటో డౌన్లోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดาวน์โหลดอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otomatik İndirme" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматичне завантаження" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو ڈاؤن لوڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik yuklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động tải xuống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukukhuphela ngokuzenzekelayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动下载" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動下載" + } + } + } + }, + "attachmentsClearAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee Alle Bylaes uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح جميع المرفقات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün qoşmaları təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام منسلکات کو صاف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ачысціць усе ўкладанні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчисти всички прикачени файлове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব সংযুক্তি পরিষ্কার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra tots els adjunts" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat všechny přílohy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio Pob Atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd alle vedhæftninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Anhänge löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Όλων των Συνημμένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Attachments" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi Ĉiujn Aldonaĵojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todos los archivos adjuntos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar Todos Los Archivos Adjuntos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda kõik manused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Attachments" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن همه فایل‌های پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä kaikki liitteet" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin Lahat ng Attachments" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer toutes les pièces jointes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar todos os ficheiros adxuntos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayarwa Duk Maƙallafa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה את כל הצרופות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी अटैचमेंट्स साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve privitke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes melléklet törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել բոլոր կցորդները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Semua Lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina tutti gli allegati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべての添付ファイルを消去する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველა მიმაგრებული ფაილის გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះឯកសារភ្ជាប់ទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲಾ ಅಟಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 첨부파일 지우기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاکردنەوەی هەموو هاوپێچەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Attachments" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງແມ່ນເເນ່" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti visus priedus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt visus pielikumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти ги сите приложенија" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүх хавсралтыг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Semua Lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အားလုံးကို ရှင်းပစ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm alle vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै संलग्नकहरू मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle bijlagen wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm alle vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Attachments" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰੇ ਅਟੈਚਮੈਂਟਸ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść wszystkie załączniki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولې اAttachmentsخلې پاکې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Attachments" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Todos os Anexos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge toate atașamentele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить все вложения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve priloge" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලුම ඇමුණුම් මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť všetky prílohy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti vse priponke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastro Të Gjitha Bashkëngjitjet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти све прилоге" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve priloge" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa alla bilagor" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Viambatisho Vyote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனைத்து இணைப்புகளை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని జోడింపులను స్పష్టంచేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เคลียร์สิ่งแนบทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm Eklentileri Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити всі вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام منسلکات کو صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barchasini tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa Tất cả Tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacisa Zonke Izincamathiselwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有附件" + } + } + } + }, + "attachmentsClearAllDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle aanhegsels verwyder? Boodskappe met aanhegsels sal ook verwyder word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح كافة المرفقات؟ سيتم أيضًا حذف الرسائل ذات المرفقات." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün qoşmaları silmək istədiyinizə əminsiniz? Qoşmaları olan mesajlar da silinəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً تمام ضمیمے صاف کرنا چاہتے ہیں؟ ضمیموں کے ساتھ پیغامات بھی حذف ہو جائیں گے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе ўкладанні? Паведамленні з укладаннямі таксама будуць выдаленыя." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички прикачени файлове? Съобщения с прикачени файлове също ще бъдат изтрити." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি সমস্ত সংযুক্তি মুছে ফেলতে চান? সংযুক্তি সহ বার্তাগুলি মুছেও যাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els adjunts? També s'eliminaran els missatges amb adjunts." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete vymazat všechny přílohy? Zprávy s přílohami budou také smazány." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl atodiadau? Bydd negeseuon gydag atodiadau hefyd yn cael eu dileu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle vedhæftninger? Beskeder med vedhæftninger vil også blive slettet." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sich sicher, dass du alle Anhänge löschen möchtest? Nachrichten mit Anhängen werden ebenfalls gelöscht." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα συνημμένα; Τα μηνύματα με συνημμένα θα διαγραφούν επίσης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all attachments? Messages with attachments will also be deleted." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn kunsendaĵojn? Mesaĝoj kun kunsendaĵoj ankaŭ estos forigitaj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los archivos adjuntos? Los mensajes con archivos adjuntos también se eliminarán." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de querer borrar todos los archivos adjuntos? Los mensajes con archivos adjuntos también se eliminarán." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kõik manused kustutada? Sõnumid manustega kustutatakse samuti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude eranskin guztiak ezabatu nahi dituzula? Eranskinak dituzten mezuak ere ezabatuko dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیوست‌ها را پاک کنید؟ پیام‌های با پیوست نیز حذف خواهند شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki liitetiedostot? Viestit, joissa on liitetiedostoja, poistetaan myös." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-clear ang lahat ng mga attachment? Ang mga mensahe na may attachment ay matatanggal din." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer toutes les pièces jointes? Les messages avec pièces jointes seront également supprimés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de que queres eliminar todos os anexos? As mensaxes con anexos tamén se eliminarán." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk abubuwan da aka haɗa? Hakanan za a goge saƙonni tare da abubuwan da aka haɗa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל הצרופות? הודעות עם קבצים מצורפים יימחקו גם כן." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई सभी अटैचमेंट्स साफ़ करना चाहते हैं? अटैचमेंट्स वाले संदेश भी हटा दिए जाएंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite obrisati sve privitke? Poruke s privicima će također biti izbrisane." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes mellékletet törölni szeretnéd? A melléklettel ellátott üzenetek is törölve lesznek." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր կցորդները: Հաղորդագրությունները կցորդներով նույնպես կջնջվեն:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua lampiran? Pesan dengan lampiran juga akan dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti gli allegati? I messaggi con allegati verranno eliminati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべての添付ファイルを削除してもよろしいですか?添付ファイル付きのメッセージも削除されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ყველა დანართის წაშლა? შეტყობინებები დანართებით ასევე წაიშლება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះឯកសារភ្ជាប់ទាំងអស់? សារជាមួយឯកសារភ្ជាប់នឹងត្រូវបានលុបផងដែរ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ ಲಗತ್ತುಗಳನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ? ಲಗತ್ತಿರುವ ಸಂದೇಶಗಳನ್ನು ಕೂಡ ಅಳಿಸಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all attachments? Messages with attachments will also be deleted." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت بۆ سڕینەوەی هەموو هاوپێچەکان؟ نامەکان بەم هاوپێچەکانیش پاش سڕدرێتەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ku mikutu gyonna? Obubaka ne mimikutu ba mikutu bijja okusulibwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຕ້ອງການລ້າງໄຟລ໌ແນບທັງຫມົດຫຼາຍແທ້? ຂໍ້ຄວາມທີ່ມີໄຟລ໌ແນບຈະຖືກລຶບເຊັ່ນກັນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visus priedus? Žinutės su priedais taip pat bus ištrintos." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visus pielikumus? Ziņojumi ar pielikumiem arī tiks dzēsti." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите прилози? Пораките со прилози исто така ќе бидат избришани." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүх хавсралтуудыг устгахыг хүсэж байна уу? Хавсралттай мессежүүд нь бас устгагдах болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua lampiran? Mesej dengan lampiran juga akan dipadamkan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်တွဲပါဖိုင်အသေးစိတ်ကို ရှင်းချင်တာ သေချာပါသလား? ပူးတွဲပါမက်ဆေ့ချ်မှုများလည်း ဖျက်မှာဖြစ်ပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle vedlegg? Meldinger med vedlegg vil også bli slettet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई सबै संलग्न तत्वहरू हटाउन चाहनुहुन्छ? संलग्न तत्वहरू भएको सन्देशहरू पनि मेटाइनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle bijlagen wilt wissen? Berichten met bijlagen zullen ook worden verwijderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle vedlegg? Meldinger med vedlegg vil også bli slettet." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa zithunzi zonse? Mauthenga okhala ndi zithunzi adzachotsedwanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਸਾਰੀਆਂ ਅਟੈਚਮੈਂਟਸ ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਸੁਨੇਹਿਆਂ ਦੇ ਨਾਲ ਅਟੈਚਮੈਂਟਸ ਵੀ ਮਿਟਾਈਆਂ ਜਾਣਗੀਆਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć wszystkie załączniki? Wiadomości z załącznikami również zostaną usunięte." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې ټول ضمیمې پاکول غواړې؟ پیغامونه چې ضمیمې لري هم به پاک شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja limpar todos os anexos? Mensagens com anexos também serão apagadas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende limpar todos os anexos? Mensagens com anexos também serão eliminadas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur că vrei să ștergi toate atașamentele? Mesajele cu atașamente vor fi de asemenea șterse." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все вложения? Сообщения с вложениями также будут удалены." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve priloge? Poruke s prilozima također će biti izbrisane." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට සියලු ඇමුණුම් මකීමට අවශ්‍ය බව විශ්වාසද? ඇමුණුම් සහිත පණිවිඩ ද මකා දමනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky prílohy? Správy s prílohami budú tiež odstránené." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vse priloge? Sporočila s prilogami bodo tudi izbrisana." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha bashkëngjitjet? Mesazhet me bashkëngjitje gjithashtu do të fshihen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све прилоге? Поруке са прилозима ће такође бити обрисане." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve priloge? Poruke sa prilozima će takođe biti obrisane." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla bilagor? Meddelanden med bilagor kommer också att raderas." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta viambatanisho vyote? Jumbe zenye viambatanisho pia zitafutwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக அனைத்து இணைப்புகளை அழிக்க விரும்புகிறீர்களா? இணைப்புகளுடன் உள்ள தகவல்களும் நீக்கப்படும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అందరి జోడింపులను ఖాళీ చేసాలనుకుంటున్నారా? జోడింపుల ద్వారా సందేశాలు కూడా తొలగించబడతాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ไฟล์แนบทั้งหมด? ข้อความที่มีไฟล์แนบจะถูกลบเช่นกัน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm eklentileri silmek istediğinizden emin misiniz? Ekli mesajlar da silinecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете очистити всі вкладення? Повідомлення з вкладеннями також буде видалено." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی تمام منسلکات صاف کرنا چاہتے ہیں؟ میسیجیز جن میں منسلکات ہیں وہ بھی ڈیلیٹ ہو جائیں گی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha ilovalar, xabarlarni va qo'shimchalarni o'chirayapsizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc rằng bạn muốn xoá tất cả tệp đính kèm? Các tin nhắn có tệp đính kèm cũng sẽ bị xoá." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima onke amazibuko? Imilayezo enezibuko nayo iyakucinywa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除所有附件吗?包含附件的消息也将一并删除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有附件嗎?帶附件的消息也會被刪除。" + } + } + } + }, + "attachmentsClickToDownload" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klik om {file_type} af te laai" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اضغط لتنزيل {file_type}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} endirmək üçün toxun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤنلوڈ کریں {file_type}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даткніцеся каб загрузіць {file_type}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Кликнете, за да изтеглите {file_type}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ডাউনলোড করতে ক্লিক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cliqueu per descarregar {file_type}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikni pro stáhnutí {file_type}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cliciwch i lawrlwytho {file_type}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klik for at downloade {file_type}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klicken, um {file_type} herunterzuladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Click to download {file_type}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Click to download {file_type}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alklaku por elŝuti {file_type}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haga clic para descargar {file_type}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haga clic para descargar {file_type}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Click to download {file_type}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egin klik {file_type} deskargatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بارگیری {file_type} کلیک کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa koskettamalla {file_type}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-click para i-download {file_type}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cliquez pour télécharger {file_type}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fai clic para descargar {file_type}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danna don sauke {file_type}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לחץ להוריד {file_type}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} डाउनलोड करने के लिए क्लिक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknite za preuzimanje {file_type}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kattintson a(z) {file_type} letöltéséhez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սեղմեք՝ {file_type}֊ը ներբեռնելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klik untuk mengunduh {file_type}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clicca per scaricare {file_type}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "クリックして{file_type}をダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააწკაპუნეთ რომ გადმოწეროთ {file_type}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចុចទាញយក {file_type}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಕ್ಲಿಕ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클릭하여 {file_type} 다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلیک بکە بۆ داگرتنی {file_type}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuba okudownloadinga {file_type}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກົດໄປສືບເຫັນຂໍ້ມູນ {file_type}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spustelėkite norėdami atsisiųsti {file_type}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noklikšķināt, lai lejupielādētu {file_type}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Кликни за преземање {file_type}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type}-г татаж авахын тулд дарна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klik untuk muat turun {file_type}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေါင်းလုတ်ရန်နှိပ်ပါ {file_type}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikk for å laste ned {file_type}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} डाउनलोड गर्न क्लिक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klik om {file_type} te downloaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikk for å laste ned {file_type}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dinani kuti mutsitse {file_type}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ {file_type}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknij, aby pobrać {file_type}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلیک وکړئ ترڅو {file_type} ډاونلوډ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clique para baixar {file_type}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clique para transferir {file_type}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apasă pentru a descărca {file_type}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нажмите, чтобы скачать {file_type}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikni za preuzimanje {file_type}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} බාගැනීමට තට්ටු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknite pre stiahnutie {file_type}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknite za prenos {file_type}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikoni për të shkarkuar {file_type}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Кликните да преузмете {file_type}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknite za preuzimanje {file_type}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klicka för att ladda ned {file_type}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusa ili kupakua {file_type}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ஐ பதிவிறக்க கிளிக் செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} డౌన్‌లోడ్ చేయడానికి క్లిక్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Click to download {file_type}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndirmek için tıklayın {file_type}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натисніть, щоб завантажити {file_type}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤن لوڈ کرنے کے لئے کلک کریں {file_type}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type}ni yuklash uchun bosing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bấm để tải {file_type}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cofa ukuze ulehlise {file_type}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "点击下载{file_type}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輕觸即可下載 {file_type}" + } + } + } + }, + "attachmentsCollapseOptions" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vou aanhangsel opsies toe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إغلاق خيارات المرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşma seçimlərini yığcamlaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment کے options کو Collapse کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згарнуць параметры далучэння" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Свиване на опциите за прикачени файлове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তির বিকল্পগুলি সংকুচিত করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redueix les opcions d'adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sbalit možnosti přílohy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cau opsiynau atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul vedhæftnings muligheder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optionen für Anhänge einklappen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σύμπτυξη επιλογών συνημμένου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collapse attachment options" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faldeto de kunsendaĵa opcioj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colapsar opciones de adjuntar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colapsar opciones de adjuntar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collapse attachment options" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskin aukerak txikitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوچک کردن گزینه‌های پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiivistä liiteasetukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-collapse ang mga pagpipilian para sa attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Réduire les options de pièces jointes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contraer opcións de anexo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rufe zaɓuɓɓukan haɗin gwiwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כווץ אפשרויות צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अटैचमेंट विकल्पों को संकुचित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sažmi opcije privitka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mellékleti lehetőségek becsukása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծալել կցումները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kecilkan opsi lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comprimi opzioni allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルのオプションを閉じる" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შესავსობი ოფციების დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collapse attachment options" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಟಾಚ್‌ಮೆಂಟ್ ಆಯ್ಕೆಗಳನ್ನು ಕುಗ್ಗಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일 옵션 축소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قەبارەکردنی هەڵبژاردنەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaka awamu ebiri eby'ekwatako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຍໍາໃກ້ປະໄວແຕກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sutraukti priedų parinktis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakļaut pielikumu iespējas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преклопи ги опциите за прилози" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралтын сонголтуудыг хэсэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kecilkan pilihan lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆွဲထည့်ရန် ရွေးချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul vedleggsalternativer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अट्याचमेन्ट विकल्पहरू सङ्कुचित गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlage-opties inklappen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul vedleggsalternativ" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chepetsani zoti mugwiritse ntchito zomwe mwatsitsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਵਿਕਲਪਾਂ ਨੂੰ ਛੋਟਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zwiń opcje załączników" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ضمیمه راټولول..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recolher opções de anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recolher opções de anexos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restrânge opțiunile de atașare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Свернуть параметры вложений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smanji opcije privitka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම් විකල්ප හකුළන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbaliť možnosti príloh" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strni možnosti prilog" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbështill opsionet e bashkëngjitjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакупљам прилоге" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sažmi opcije priloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimera bilagoalternativ" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fupisha chaguzi za kiambatisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்புகள் விருப்பங்களைச் சுருக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జతచేసిన ఎంపికలను సంకోచించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collapse attachment options" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ek seçeneklerini daralt" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згорнути параметри вкладень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسلکات کے اختیارات بند کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilova imkoniyatlarini qisqartirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thu gọn tùy chọn đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrolela ezantsi ukhetho lwezinto ezisecaleni" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "收起附件选项" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "摺疊附件選項" + } + } + } + }, + "attachmentsCollecting" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versamel aanhegsels..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ جمع المرفقات..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşmalar yığılır..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments جمع ہو رہے ہیں..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збіранне далучэнняў..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Събиране на прикачени файлове..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তিগুলি সংগ্রহ করা হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'estan adjuntant els fitxers..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shromažďuji přílohy…" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Casglu atodiadau..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samler vedhæftninger..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhänge werden gesammelt …" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συλλογή συνημμένων..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collecting attachments..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kolektante kunsendaĵojn..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recopilando adjuntos ..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recopilando adjuntos..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogun manuseid..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskinak biltzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال جمع‌آوری پیوست‌ها..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kerätään liitetiedostoja..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inihahanda ang attachments..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Récupération des pièces jointes..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recompilando anexos..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana tattara haɗe-haɗe..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אוסף צרופות..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुलग्नक एकत्रित किए जा रहे हैं..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikupljanje privitaka..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mellékletek gyűjtése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կցորդների հավաքում..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengumpulkan lampiran..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recupero allegati..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルを集めています..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შესავსობების შეგროვება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងប្រមូលឯកសារភ្ជាប់..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಟಾಚ್‌ಮೆಂಟ್‌ಗಳನ್ನು ಸಂಗ್ರಹಿಸುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일 저장 준비 중…" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کۆکردنەوەی هاوپێچ..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mundu ebiri eky'okufulumya..." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກຳລັງນຳໄປໄວຄົນຈິ່ງ..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renkami priedai..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sagatavo pielikumus..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се собираат прилозите..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралтуудыг цуглуулж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengumpulkan lampiran..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပူးတွဲပါဖိုင်များကို စုဆောင်းနေပါသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Henter vedlegg …" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अट्याचमेन्टहरू सङ्कलन गर्दै..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlagen aan het verzamelen..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hentar vedlegg..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusonkhetsa zomwe mwatsitsa..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਇਕੱਠੇ ਕਰ ਰਹੇ ਹਾਂ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbieranie załączników..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "جوامع" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coletando anexos..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A recolher anexos..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se colectează atașamentele..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подготовка вложений..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikupljanje privitaka..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම් එකතු කරමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukladám prílohy..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbiram priloge..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po mblidhen bashkëngjitje…" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакупљам прилоге..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakupljaju se prilozi..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samlar bifogade filer..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "kukusanya viambatisho..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்புகளை சேகரிக்கிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జోడింపుల సేకరణ..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รวบรวมสิ่งแนบ..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eklentiler toplanıyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збираю вкладення..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسلکات کو جمع کرنے کا عمل جاری ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilovalarni yig'ish..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang thu thập đính kèm..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qokelela izilungiso..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载附件..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "收集附件中..." + } + } + } + }, + "attachmentsDownload" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Aanhangsel Af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نَزِل المرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşmanı endir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اٹیچمنٹ ڈاؤن لوڈ کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спампаваць укладанне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтегляне на прикачен файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তি ডাউনলোড করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixa l'adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stáhnout přílohu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho i lawr Atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download vedhæftet fil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhang herunterladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λήψη Συνημμένου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download Attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elŝuti kunsendaĵon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar adjunto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadi manus alla" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskinak Deskargatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانلود ضمیمه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa liite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-download ang attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Télécharger la pièce jointe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar anexo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zazzage Haɗewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הורד צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुलग्नक डाउनलोड करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmi privitak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melléklet letöltése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ներբեռնել կցորդը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unduh Lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scarica allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルをダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიმაგრებული ფაილის გადმოტვირთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាញយកឯកសារភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಟ್ಯಾಚ್ಮೆಂಟ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일 다운로드 하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داگرتنی هاوپەیوەندی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essabura" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ດາວໂຫລດເອກະສານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsisiųsti priedą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejupielādēt pielikumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Симни прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралт татаж авах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat Turun Lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်ဒေါင်းလုဒ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संलग्नक डाउनलोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlage downloaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsitsani Zowonjezera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਡਾਊਨਲੋਡ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pobierz załącznik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوستون ښکته کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixar anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferir Anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarcă atașamentul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузить вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmi prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම බාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stiahnuť prílohu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prenesi priponko" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarko Bashkëngjitjen" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преузми прилог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmite prilog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hämta bifogad fil" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua Kiambatanisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு பதிவிறக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అటాచ్‌మెంట్‌ను డౌన్‌లోడ్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดาวน์โหลดไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eklentiyi İndir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантажити вкладений файл" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اٹیچمنٹ ڈاؤن لوڈ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilovani yuklab olish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tải về Tệp tin Đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuphela unyathelo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "下载附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "下載附件" + } + } + } + }, + "attachmentsDuration" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duur:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المدة:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Müddət:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دورانیہ:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Працягласць:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продължителност:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্থিতিকাল:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durada:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doba trvání:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyd:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varighed:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dauer:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διάρκεια:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duration:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daŭro:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duración:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duración:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kestus:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iraupena:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدت زمان:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesto:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tagal:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durée :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duración:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsawon lokaci:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "משך זמן:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अवधि:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajanje:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Időtartam:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տևողություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durasi:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durata:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "持続期間:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხანგრძლივობა:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ថិរវេលា៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅವಧಿ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "길이:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ماوە:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lwe ssamu:" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໃນວັນໄລຍະ:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trukmė:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilgums:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Траење:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үргэлжлэх хугацаа:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tempoh:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကြာမြင့်ချိန်:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varighet:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अवधि:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duur:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varigheit:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutalika:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਵਧੀ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czas trwania:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موده:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duração:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duração:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durata:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продолжительность:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajanje:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කාලය:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trvanie:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajanje:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kohëzgjatja:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Трајање:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajanje:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varaktighet:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muda:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காலவீண்ணின் மொத்த அளவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వ్యవధి:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ระยะเวลา:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Süre:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тривалість:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دورانیہ:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davomiyligi:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thời lượng:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ixesha:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "时长:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "時長:" + } + } + } + }, + "attachmentsErrorLoad" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout tydens toevoeg van lêer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ في إرفاق الملف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl əlavə edilərkən xəta" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل منسلک کرنے میں خرابی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка прымацавання файла" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при прикачване на файла" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল সংযোজন ত্রুটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en adjuntar el fitxer" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba při přikládání souboru" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall yn atodi'r ffeil" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fejl ved vedhæftning af fil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Anhängen der Datei" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα κατά την επισύναψη του αρχείου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error attaching file" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eraro dum aldonado de dosiero" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al adjuntar archivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al adjuntar archivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tõrge faili manustamisel" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errorea fitxategia atxikiz" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در پیوست فایل" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virhe tiedostoa liitettäessä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sa pag-attach ng file" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur lors de l'attachement du fichier" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao anexar ficheiro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskure cikin ɗora fayil" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאה בהוספת הקובץ" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल संलग्न करने में त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška pri dodavanju datoteke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba a fájl csatolása közben" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ ֆայլի կցման ժամանակ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan melampirkan file" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore nell'allegare il file" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルの添付エラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომა ფაილის მიმაგრებისას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានបញ្ហាពាក់ឯកសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತ ಲಗತ್ತಿಸುವ ಕ್ರಮದಲ್ಲಿ ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 첨부 중 오류 발생" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵە لە هاوپەیوەندیی فایلی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi nga osiba fayiro" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການບັນທຶກໄຟລ໇ວມາໄຟລ໇" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klaida pridedant failą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kļūda, pievienojot failu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при прикачување датотека" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл хавсаргахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat melampirkan fail" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်တပ်ဆင်သည်မှာ အမှားဖြစ်နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved vedlegg av fil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाईल जोड्दा त्रुटि।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout bij toevoegen bestand" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved vedlegg av fil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cholakwika chotsekera fayilo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਈਲ ਨੱਥੀ ਕਰਨ ਵਿੱਚ ਗਲਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd podczas załączania pliku" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوتنه ضمیمه کولو تېروتنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao anexar arquivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao anexar ficheiro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la atașarea fișierului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при прикреплении файла" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška pri priloženju datoteke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුව ඇමයෙන් දෝෂයක් ඇති විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba pri pripojení súboru" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka pri pripenjanju datoteke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim gjatë bashkangjitjes së kartelës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при прилогу фајла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška u dodavanju fajla" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fel vid bifogning av fil" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa kwenye kushirikisha faili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பை இணைக்கப் போதியதில் கோளாறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ అటాచింగ్ లోపం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya eklenirken hata" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка прикріплення файлу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل منسلک کرنے میں غلطی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faylni qo'shish vaqtida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi khi đính kèm tệp tin" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impazamo yokufaka ifayile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "附加文件错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "附加檔案出錯" + } + } + } + }, + "attachmentsErrorMediaSelection" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie aanhegsel selekteer nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في تحديد المرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşma seçmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مہاجیر باند کردءِ اِنتخاب ناکام بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося выбраць далучэнне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фаилът не може да бъде прикачен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তি নির্বাচন করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut seleccionar el fitxer adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se vybrat přílohu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd dewis atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Den vedhæftede fil kunne ikke indlæses" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Auswählen des Anhangs" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία επιλογής συνημμένου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to select attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis elekti enmetitaĵon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al seleccionar el archivo adjunto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al seleccionar el archivo adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manuse valimine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da eranskina hautatzerakoan" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب پیوست ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitteen valinta epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong piliin ang attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Echec de chargement de la pièce jointe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa zaɓar abin ɗaure" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בבחירת קובץ מצורף" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अटैचमेंट का चयन करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odabir privitka nije uspio" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melléklet kiválasztása sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց կցվածքը ընտրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memilih lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si è verificato un errore durante la selezione dell'allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルを選択できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ ავირჩიე მიმაგრებული ფაილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការជ្រើសរើសឯកសារភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಟ್ಯಾಚ್ಮೆಂಟ್ ಆಯ್ಕೆ ಮಾಡುವುದು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 선택 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی هەڵبژاردنەوەی فایل" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okwogolola ekifo ky'ebifaananyi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pasirinkti priedo" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешен обид за избор на прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралтыг сонгоход алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memilih lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပူးတွဲမှု ရွေးချယ်ရန် မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mislyktes i å legge til vedleggsfil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुलग्नक छान्न असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het is mislukt om de bijlage te selecteren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mislyktes i å legge til vedleggsfil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kusankha chophatikiza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਚੋਣ ਕਰਨ ਵਿੱਚ ਨਾਕਾਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się wybrać załącznika" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment انتخاب ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao selecionar anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao selecionar anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la selectarea atașamentului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось выбрать вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće odabrati prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම තේරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa vybrať prílohu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo izbrati priloge" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi përzgjedhja e bashkëngjitjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно одабирање прилога" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo biranje priloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte välja bilaga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuchagua kiambatanisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அட்டி தேர்வதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అటాచ్మెంట్ ఎంచుకోవడం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเลือกไฟล์แนบได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ek seçilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося обрати вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسلکہ انتخاب کرنے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muhimmi tanlashda xatolik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không chọn tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukukhetha isihlomelo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法选择附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法選取此附件" + } + } + } + }, + "attachmentsErrorNoApp" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie 'n app vind om media te kies nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم يتم العثور على أي تطبيق لاختيار الوسائط." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medianı seçmək üçün tətbiq tapıla bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "میڈیا کو منتخب کرنے کے لئے ایپلی کیشن نہیں مل سکی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма знайсці праграму для выбару мультымедыя." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно откриване на папка за избор на файл." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল নির্বাচনের জন্য কোনো আ্যাপ পাওয়া যায়নি ।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha trobat cap aplicació compatible." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze nalézt aplikaci pro výběr médií." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu canfod rhaglen i ddewis cyfryngau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke finde en app til at vælge medier." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine App zum Auswählen von Medien gefunden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορεί να βρεθεί εφαρμογή για επιλογή πολυμέσων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't find an app to select media." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas trovi aplikaĵon por malfermi aŭdvidaĵon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo encontrar una aplicación para seleccionar archivos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se ha podido encontrar una aplicación para seleccionar archivos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei leia rakendust meediumi valimiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't find an app to select media." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برنامه‌ای برای انتخاب رسانه پیدا نشد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Median valintaan ei löytynyt sovellusta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang mahanap na app para pumili ng media." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de trouver une application pour sélectionner le média." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se atopa unha app para seleccionar contido multimedia." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya samo manhaja don zaɓar ɗab'i ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן למצוא יישום לבחירת מדיה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मीडिया चुनने के लिए कोई ऐप्लिकेशन नहीं मिल रहा है." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne mogu pronaći aplikaciju za odabrani medij." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem található alkalmazás a médiafájl kiválasztásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց գտնել հավելված՝ մեդիան ընտրելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak menemukan aplikasi untuk memilih media." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile trovare un'app per selezionare i contenuti multimediali." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メディアを選択できるアプリが見つかりません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ ვპოულობ მედიამისაღებად აპლიკაციას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចស្វែងរកកម្មវិធីដើម្បីជ្រើសរើសព័ត៌មាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾಧ್ಯಮ ಆಯ್ಕೆ ಮಾಡುವ ಅಪ್ಲಿಕೇಶನ್ ಕಂಡುಬರಲಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "미디어를 선택할 수 있는 앱이 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : ".تۆتوانیت ئەپێك بنەوە بۆ هەڵبژاردنی میدیە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't find an app to select media." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ພົບລາຍການແອັບທີ່ເຫື່ອນບໍລິການ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nerasta programėlė medijos pasirinkimui." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar atrast programmu multivides atlasīšanai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можам да најдам апликација за селектирање медиуми." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиа сонгохын тулд програм олдохгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat mencari aplikasi untuk memilih media." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မီဒီယာ ရွေးရန် အက်ပ် ရှာမတွေ့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fant ingen programmer for valg av medier." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिडिया चयन गर्न अनुप्रयोग फेला पार्न सकिएन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen app gevonden om media te selecteren." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fann ingen program for valt medium." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't find an app to select media." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੀਡੀਆ ਚੁਣਨ ਲਈ ਕੋਈ ਐਪ ਨਹੀਂ ਮਿਲੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można znaleźć aplikacji, która otworzyłaby tę zawartość." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د رسنیو د ټاکلو لپاره اپلیکشن نشي موندل کیدی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível encontrar um app para selecionar mídia." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível encontrar uma aplicação para selecionar a multimédia." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu se poate găsi o aplicație pentru selectarea fișierelor media." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не найдено приложение для выбора медиафайлов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće pronaći aplikaciju za odabir medija." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාධ්‍ය තේරීමට යෙදුමක් සොයාගත නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenašla sa aplikácia pre výber médií." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morem najti aplikacije za izbiro medijev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’gjendet dot aplikacion për përzgjedhje mediash." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема апликације за избор медијума." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne može da pronađe aplikaciju za odabir medija." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan inte hitta app för att välja media." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nashindwa kupata app ya kuchagua habari." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீடியா தேர்ந்தெடுக்க ஒரு பயன்பாட்டைக் கண்டுபிடிக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీడియాను ఎంచుకోవడానికి అనువర్తనం దొరకదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบแอปสำหรับสื่อที่เลือก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medya seçebilecek uygulama bulunamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неможливо знайти програму для обраного медіа." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میڈیا کو منتخب کرنے کے لیے ایپ نہیں مل سکی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media tanlash uchun ilova topilmadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy ứng dụng để chọn dữ liệu truyền thông." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andikwazi ukufumana usetyenziso rhoqo sele ukhetha imidiya." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到用于选择媒体的应用。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "沒有合適的程式可以選取媒體檔案。" + } + } + } + }, + "attachmentsErrorNotSupported" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie lêertipe word nie ondersteun nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوع الملف هذا غير مدعوم." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu fayl növü dəstəklənmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ فائل کی قسم سپورٹ نہ بس." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты тып файла не падтрымліваецца." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Този тип файл не се поддържа." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই ফাইল প্রকার সমর্থিত নয়।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest tipus d'arxiu no és compatible." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento typ souboru není podporován." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw'r math o ffeil hwn yn cael ei gefnogi." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne filtype understøttes ikke." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dieser Dateityp wird nicht unterstützt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτός ο τύπος αρχείου δεν υποστηρίζεται." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file type is not supported." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu dosierformato ne estas subtenata." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este tipo de archivo no es compatible." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este tipo de archivo no es compatible." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seda failitüüpi ei toetata." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi mota hau ez da onartzen." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این نوع فایل پشتیبانی نمی‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedostotyyppi ei ole tuettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi sinusuportahan ang file type na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce type de fichier n'est pas pris en charge." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este tipo de ficheiro non é compatible." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan nau'in fayil ba a ɗauka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סוג קובץ זה אינו נתמך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस प्रकार की फ़ाइल समर्थित नहीं है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj tip datoteke nije podržan." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a fájltípus nem támogatott." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս ֆայլատեսակը չի աջակցվում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jenis berkas ini tidak didukung." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo tipo di file non è supportato." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このファイル形式はサポートされていません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს ფაილის ტიპი არ არის მხარდაჭერილი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file type is not supported." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಕಡತ ಪ್ರಕಾರವನ್ನು ಬೆಂಬಲಿಸಲಾಗುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 파일 형식은 지원되지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "جۆری ئەم فایلە پشتگیری ناکات." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omugatte gwa fayiro yono tegukiriziddwawo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šio failo formato nepalaikoma." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis faila veids netiek atbalstīts." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овој тип на датотека не се поддржува." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ файлын төрөл дэмжигддэггүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jenis fail ini tidak disokong." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဖိုင် အမျိုးအစားကို အထောက်အပံ့ မပြုပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne filtypen støttes ikke." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो फाइल प्रकार समर्थित छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit bestandstype wordt niet ondersteund." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne filtypen støttes ikke." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu wa faili uwu suthandizidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਫਿਲੇ ਕਿਸਮ ਸਹਿਯੋਗ ਨਹੀਂ ਕਰਦੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ten typ pliku nie jest obsługiwany." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا دوتنه ډول نه ملاتړ کیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este tipo de arquivo não é suportado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este tipo de arquivo não é compatível." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest tip de fișier nu este acceptat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Этот тип файла не поддерживается." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj tip datoteke nije podržan." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම ගොනු වර්ගය සහය නොදක්වයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento typ súboru nie je podporovaný." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta vrsta datoteke ni podprta." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky lloj karteli nuk është i mbështetur." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова врста датотеке није подржана." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj tip fajla nije podržan." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna filtyp stöds inte." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aina hii ya faili haiwezi kusupportiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த கோப்பு வகை ஆதரிக்கப்படவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ ఫైల్ రకం మద్దతునిచ్చబడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ประเภทนี้ไม่ได้รับการสนับสนุน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu dosya türü desteklenmiyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей тип файлу не підтримується." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس فائل قسم کی حمایت نہیں کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu fayl turi qo'llab-quvvatlanmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loại tệp này không được hỗ trợ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo lwefayili aluxhaswanga." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此文件类型不受支持。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "不支援此檔案類型" + } + } + } + }, + "attachmentsErrorNumber" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie meer as 32 beeld- en videolêers gelyktydig stuur nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكن إرسال أكثر من 32 ملف صورة وفيديو دفعة واحدة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir dəfəyə 32-dən çox şəkil və video fayl göndərilə bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "32 سے زیادہ تصاویر اور ویڈیو فائلز ایک ساتھ بھیجنے میں ناکامی ہوئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма адправіць больш за 32 выявы і відэафайлы адначасова." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се изпратят повече от 32 изображения и видеоклипа наведнъж." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বেশি ৩২টি ছবি এবং ভিডিও ফাইল একসাথে পাঠানো সম্ভব নয়।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es poden enviar més de 32 fitxers d'imatge i vídeo alhora." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze odeslat více než 32 obrazových a video souborů najednou." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu anfon mwy na 32 delwedd a ffeiliau fideo ar unwaith." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke sende mere end 32 billed- og videofiler på én gang." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es ist nicht möglich, mehr als 32 Bild- und Videodateien gleichzeitig zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία αποστολής περισσότερων από 32 αρχεία εικόνας και βίντεο ταυτόχρονα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to send more than 32 image and video files at once." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas sendi pli ol 32 bildojn kaj videaĵojn samtempe." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pueden enviar más de 32 archivos de imagen y video a la vez." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pueden enviar más de 32 archivos de imagen y vídeo a la vez." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei saa saata rohkem kui 32 pildi- ja videofaili korraga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin dira 32 irudi eta bideo-fitxategi baino gehiago bidali aldi berean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از ارسال بیش از ۳۲ فایل تصویر و ویدیو به صورت همزمان." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et voi lähettää yli 32 kuva- ja videotiedostoa kerralla." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi maaaring magpadala ng higit sa 32 na imahe at video files nang sabay-sabay." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible d'envoyer plus de 32 fichiers image et vidéo à la fois." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode enviar máis de 32 imaxes e vídeos á vez." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya aika sama da hotuna da fayilolin bidiyo guda 32 a lokaci ɗaya ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לשלוח יותר מ-32 תמונות ווידיאו קבצים בבת אחת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक बार में 32 से अधिक छवि और वीडियो फाइलें भेजने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće poslati više od 32 slike i videozapise odjednom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem lehet egyszerre több, mint 32 képet és videofájlt küldeni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ուղարկել ավելի քան 32 նկար և վիդեո ֆայլեր։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat mengirim lebih dari 32 berkas gambar dan video sekaligus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile inviare più di 32 file immagine e video contemporaneamente." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "一度に32枚以上の画像や動画を送信できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ერთდროულად 32-ზე მეტი სურათის და ვიდეოს გაგზავნა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចផ្ញើរូបភាពនិងឯកសារវីដេអូបានទាំងនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಒಮ್ಮೆಗಿಂತ ಹೆಚ್ಚು 32 ಚಿತ್ರದ ಮತ್ತು ವೀಡಿಯೊ ಕಡತಗಳನ್ನು ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "한 번에 32개의 이미지 및 동영상 파일을 보낼 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرێت زۆرتر لە ٣٢ وێنە و ڤیدیۆکان سەردەکەوێ بنێردرێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwasobye akawa 32 okukisa Ebiwandiiko by'obutambi n'enfaanana ebimu malwaliro." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta išsiųsti daugiau nei 32 vaizdų ir vaizdo įrašų failų vienu metu." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar nosūtīt vairāk kā 32 attēlus un video failus vienlaicīgi." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се испратат повеќе од 32 слики и видео датотеки одеднаш." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэг удаад 32 зургийн болон видео файлыг илгээх боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat menghantar lebih daripada 32 fail imej dan video sekaligus." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တစ်ကြိမ်စာ 32 ပုံနှင့် ဗီဒီယိုဖိုင်များထက်ပို၍မပို့ရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke sende mer enn 32 bilde- og videofiler samtidig." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एकै पटक 32 भन्दा धेरै छवि र भिडियो फाइलहरू पठाउन असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan niet meer dan 32 afbeelding- en videobestanden tegelijk versturen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikkje senda fleire enn 32 bilete og videofiler på ein gong." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kutumiza zithunzi ndi makanema opitilira 32 nthawi imodzi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਕੋ ਵਾਰ ਵਿੱਚ 32 ਤਸਵੀਰਾਂ ਅਤੇ ਵੀਡੀਓ ਫ਼ਾਈਲਾਂ ਤੋਂ ਵੱਧ ਭੇਜਣ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można wysłać więcej niż 32 plików graficznych i wideo naraz." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوځل باندې له ۳۲ څخه زیات عکسونه او ویډیوګانې نشي لیږلی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível enviar mais de 32 arquivos de imagem e vídeo de uma vez." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível enviar mais de 32 ficheiros de imagem e vídeo de uma vez." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu se pot trimite mai mult de 32 de fișiere imagine și video simultan." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно отправить более 32 изображений и видеофайлов за один раз." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće poslati više od 32 slike i video datoteke odjednom." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "එක් වරක ඡායාරූප සහ වීඩියෝ ගොනු 32 කට වඩා යැවීම අසාර්ථකයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné odoslať viac ako 32 obrazových a video súborov naraz." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni mogoče poslati več kot 32 slikovnih in video datotek hkrati." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’arrin të dërgohet më shumë se 32 kartela me imazhe dhe video përnjëherë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће послати више од 32 слике и видео фајлова одједном." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće poslati više od 32 slike i video datoteke odjednom." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan inte skicka mer än 32 bild- och videofiler åt gången." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kutuma zaidi ya faili 32 za picha na video mara moja." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரே நேரத்தில் 32 படங்கள் மற்றும் காணொளி கோப்புகளை அனுப்ப முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒక్కసారిగా 32 కన్నా ఎక్కువ విక్రయించదగిన విలువ సంపూర్ణ వార్తలు మరియు చిత్రం ఫైళ్ళను పంపడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งไฟล์ภาพและวิดีโอพร้อมกันเกิน 32 ไฟล์ไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aynı anda 32'den fazla resim ve video dosyası gönderilemiyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося надіслати понад 32 зображень та відеофайлів одночасно." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک وقت میں 32 سے زیادہ تصویر اور ویڈیو فائلیں بھیجنے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir vaqtning o‘zida 32 tadan ortiq rasm va video fayllarni yubora olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể gửi quá 32 tệp hình ảnh và video cùng lúc." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kubanakho ukuthumela ngaphezu kweefayile ezingama-32 zemifanekiso kunye nevidiyo ngaxeshanye." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法一次发送超过32个图片和视频文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法一次傳送多於 32 張圖片和影片。" + } + } + } + }, + "attachmentsErrorOpen" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie lêer oopmaak nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "غير قادر على فتح الملف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl açıla bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل کھولنے میں ناکامی ہوئی ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма адкрыць файл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се отвори файл." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলটি খুলতে অক্ষম।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot obrir el fitxer." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze otevřít soubor." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu agor ffeil." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke åbne fil." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei kann nicht geöffnet werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία ανοίγματος του αρχείου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to open file." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas malfermi dosieron." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede abrir el archivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede abrir el archivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faili avamine ebaõnnestus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin zen fitxategia ireki." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از باز کردن فایل." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedoston avaaminen epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi mabuksan ang file." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible d'ouvrir le fichier." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode abrir o ficheiro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya buɗe fayil ɗin ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לפתוח את הקובץ." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइल खोलने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće otvoriti datoteku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fálj megnyitása sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց բացել ֆայլը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat membuka berkas." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile aprire il file." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルを開けません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილის გახსნა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចបើកឯកសារបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತ ಬಾರ್‍ಡಲು ಆಗುತ್ತಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일을 열 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرا په‌ڕگه‌که‌ بکرێته‌وه‌." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kufuna fayiro." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta atidaryti failo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar atvērt failu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се отвори датотеката." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл нээх боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat membuka fail." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်ဖွင့်၍မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke åpne filen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइल खोल्न असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan bestand niet openen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å opna fila." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kutsegula fayilo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਈਲ ਖੋਲ੍ਹਣ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można otworzyć pliku." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوتنه نشي خلاصولی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível abrir o arquivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível abrir o ficheiro." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișierul nu poate fi deschis." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно открыть файл." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće otvoriti datoteku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුව විවෘත කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné otvoriť súbor." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke ni mogoče odpreti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u arrit të hapet kartela." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће отворити фајл." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće otvoriti datoteku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte öppna filen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kufungua faili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பை திறக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్‌ని తెరవడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิดไฟล์ไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya açılamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося відкрити файл." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل کھولنے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faylni ochib bo‘lmadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể mở tệp." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayikwazi ukuvula ifayili." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法打开文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法開啟檔案。" + } + } + } + }, + "attachmentsErrorSending" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout tydens stuur van lêer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ في إرسال الملف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl göndərərkən xəta" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل بھیجنے میں خرابی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка адпраўкі файла" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при изпращане на файла" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল পাঠাতে ত্রুটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en enviar el fitxer" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba při odeslání souboru" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall yn anfon y ffeil" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fejl ved afsendelse af fil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Senden der Datei" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα κατά την αποστολή του αρχείου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sending file" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eraro sendante dosieron" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al enviar archivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al enviar archivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tõrge faili saatmisel" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errorea fitxategia bidaltzerakoan" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در ارسال فایل" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virhe tiedostoa lähetettäessä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sa pagpapadala ng file" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur lors de l'envoi du fichier" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao enviar ficheiro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskure cikin aika fayil" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאה בשליחת קובץ" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल भेजने में त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška pri slanju datoteke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba a fájl küldése közben" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ ֆայլի ուղարկման ժամանակ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan mengirim file" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore nell'invio del file" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイル送信エラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომა ფაილის გაგზავნისას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានបញ្ហាផ្ញើឯកសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತವನ್ನು ಕಳುಹಿಸುವ ಕ್ರಮದಲ್ಲಿ ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 전송 오류 발생" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵە لە ناردنی فایل" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi nga otemamu fayiro" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການສົ່ງໄຟບົວກໍລາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klaida siunčiant failą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kļūda, nosūtot failu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при испраќање датотека" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл илгээхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat menghantar fail" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်ပေးပို့သည်မှာ အမှားဖြစ်နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved sending av fil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाईल पठाउँदा त्रुटि।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout bij verzenden bestand" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved send av fil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cholakwika potumiza fayilo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਈਲ ਭੇਜਣ ਵਿੱਚ ਗਲਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd wysyłania pliku" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوتنه لیږلو تېروتنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao enviar arquivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao enviar ficheiro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la trimiterea fișierului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при отправке файла" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška pri slanju datoteke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුව යැවීමට දෝෂයක් ඇති විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba pri odosielaní súboru" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka pri pošiljanju datoteke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim gjatë dërgimit të kartelës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при слању фајла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška prilikom slanja fajla" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fel vid sändning av fil" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa kutuma faili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பை அனுப்பப் போதியதில் கோளாறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ పంపడంలో లోపం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งไฟล์ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya gönderilirken hata" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка надсилання файлу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل بھیجنے میں غلطی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faylni yuborish vaqtida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi khi gửi tệp tin" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impazamo yokuthumela ifayile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送文件错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送檔案出錯" + } + } + } + }, + "attachmentsErrorSeparate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur asseblief lêers as aparte boodskappe." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إرسال الملفات كرسائل منفصلة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən faylları ayrı mesaj olaraq göndərin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی فائلیں مختلف پیاماں میں بیھجیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, дасылайце файлы асобнымі паведамленнямі." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, изпратете файлове като отделни съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলগুলো আলাদা মেসেজ হিসাবে পাঠান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si us plau, envia els fitxers com a missatges separats." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím, posílejte soubory jako samostatné zprávy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfonwch ffeiliau fel negeseuon ar wahân." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst send filer som separate beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte sende die Dateien in separaten Nachrichten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ στείλτε αρχεία σαν ξεχωριστά μηνύματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please send files as separate messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu sendi dosierojn kiel apartajn mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, envíe archivos como mensajes separados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor envíe los archivos como mensajes separados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun saatke failid eraldi sõnumitena." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, bidali fitxategiak mezu bereizi gisa." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً فایل‌ها را به صورت پیام‌های جداگانه ارسال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ole hyvä ja lähetä tiedostot erillisinä viesteinä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakipadala ang mga file bilang hiwalay na mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez envoyer les fichiers sous forme de messages séparés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, envía ficheiros como mensaxes separadas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aiko fayiloli kamar saƙonni daban-daban." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא שלח קבצים כמויות נפרדות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please send files as separate messages." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo šaljite datoteke kao odvojene poruke." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldd el a fájlokat külön üzenetekben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ֆայլերը ուղարկեք առանձին հաղորդագրություններով:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Harap kirim berkas sebagai pesan terpisah." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invia i file come messaggi separati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルを別々のメッセージで送信してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ გაგზავნოთ ფაილები როგორც ცალკეულ შეტყობინებებს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមផ្ញើឯកសារ ជាសារផ្សេងៗគ្នា។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಕಡತಗಳನ್ನು ಪ್ರತ್ಯೇಕ ಸಂದೇಶಗಳಲ್ಲಿ ಕಳುಹಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일을 개별 메시지로 전송해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تکایە فایلەکان بەنامەیەکی جیاواز بنێرە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikila bifayiro ng’obubaka bunasinga bufanana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųskite failus kaip atskiras žinutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, sūti failus kā atsevišķus ziņojumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме испратете датотеки како посебни пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлуудыг тусдаа мессежээр илгээнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila hantar fail sebagai mesej berasingan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်များကို ခွဲခြား စာတစ်ခုစီအနေနှင့် ပေးပို့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst send filer som separate meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया फाइलहरू अलग-अलग सन्देशहरूका रूपमा पठाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur bestanden als afzonderlijke berichten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst send filer som separate meldinger." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde tumizani mafayilo mogawikana." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਫਾਇਲਾਂ ਨੂੰ ਵੱਖ-ਵੱਖ ਸੁਨੇਹਿਆਂ ਵਜੋਂ ਭੇਜੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysyłaj pliki jako osobne wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ فایلونه د جلا جلا پیغامونو په توګه ولېږئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor envie arquivos como mensagens separadas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, envie ficheiros como mensagens separadas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să trimiteți fișiere ca mesaje separate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, отправляйте файлы как отдельные сообщения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo pošaljite datoteke kao zasebne poruke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර ගොනු වෙනත් පණිවුඩ ලෙස යවනවා ක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím pošlite súbory ako samostatné správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, pošljite datoteke kot ločena sporočila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi dërgoni skedarët si mesazhe të veçanta." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "По шаљите датотеке као засебне поруке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo pošaljite datoteke kao zasebne poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka gärna filer som separata meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali tuma faili kama meseji tofauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்புகளை தனிப்பட்ட தகவல்களாக அனுப்பவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి ఫైలలను వేర్వేరు సందేశాలుగా పంపండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดส่งไฟล์เป็นข้อความแยกต่างหาก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen dosyaları ayrı iletiler olarak gönderin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, відправляйте файли окремими повідомленнями." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم فائلز کو الگ پیغامات کے طور پر بھیجیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dus xabarlar ko`rinishi. Iltimos birinchi xabar biriktiring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng gửi các tệp dưới dạng tin nhắn riêng biệt." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda uthumele iifayile njengeemiyalezo ezahlukileyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请将文件分开发送。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請將檔案分開發送。" + } + } + } + }, + "attachmentsErrorSize" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêers moet minder as 10MB wees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يجب أن تكون الملفات أقل من 10MB" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayllar 10 MB-dan az olmalıdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگاں باید 10MB ناچہ وچانت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлы павінны быць менш за 10MB" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файловете трябва да бъдат по-малки от 10MB" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলগুলো ১০এমবির থেকে ছোট হতে হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els fitxers han de ser inferiors a 10MB" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soubory musí být menší než 10MB" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ddylai ffeiliau fod yn fwy na 10MB" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer skal være mindre end 10 MB" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateien müssen kleiner als 10MB sein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα αρχεία πρέπει να είναι μικρότερα από 10MB" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files must be less than 10MB" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosieroj devas esti malpli ol 10MB" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los archivos deben ser menores de 10MB" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los archivos deben ser menores de 10MB" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failid peavad olema alla 10MB" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategiak 10MB baino txikiagoak izan behar dute" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل‌ها باید کمتر از 10MB باشند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedostojen on oltava alle 10MB" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga talaksan dapat mas mababa sa 10MB" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les fichiers doivent être inférieurs à 10MB" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os ficheiros deben ser menores de 10MB" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayiloli dole ne su zama ƙasa da 10MB" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבצים חייבים להיות פחות מ-10MB" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइलों का आकार 10MB से कम होना चाहिए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke moraju biti manje od 10MB" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A fájloknak kevesebb, mint 10MB méretűnek kell lenniük" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլերը պետք է լինեն 10ՄԲ-ից պակաս" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berkas harus kurang dari 10MB" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I file devono essere inferiori a 10MB" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルは10MB未満でなければなりません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილამ უნდა იყოს 10MB-ზე ნაკლების" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារត្រូវតែមានទំហំតិចជាង 10MB" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತಗಳು 10MB ಗಿಂತ ಕಡಿಮೆಯಿರಬೇಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일은 10MB 미만이어야 합니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قەبارەکان لانی کەمتری 10MB دەبێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayiro lazima zibe ntono okusinga 10MB" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failai turi būti mažiau nei 10 MB" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failiem jābūt mazākiem par 10MB" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Датотеките мора да се помали од 10MB" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл багадаа 10МБ байх ёстой" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fail mesti kurang dari 10MB" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်များသည် ၁၀MB ထက်ငယ်ရပါမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer må være mindre enn 10 MB" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एन्ड्रोइड सूचना सेटिङ्गमा जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestanden moeten kleiner zijn dan 10MB" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer må vere mindre enn 10MB" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma panka ayenera kukhala ochepera 10MB" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲਾਂ 10MB ਤੋਂ ਘਟ ਹੋਣੀਆਂ ਚਾਹੀਦੀਆਂ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pliki muszą być mniejsze niż 10MB" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایلونه باید له ۱۰MB څخه کم وي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os arquivos devem ser menores que 10MB" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiros devem ter menos de 10MB" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișierele trebuie să aibă mai puțin de 10MB" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлы должны быть меньше 10MB" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke moraju biti manje od 10MB" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනු 10MB කට අඩු විය යුතුය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Súbory musia mať menej ako 10MB" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke morajo biti manjše od 10 MB" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartelat duhet të jenë më të vogla se 10MB" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фајлови морају бити мањи од 10MB" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fajlovi moraju biti manji od 10MB" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer måste vara mindre än 10MB" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Majalada yawe chini ya 10MB" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்புகள் 10MB க்கும் குறைவாக இருக்க வேண்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైళ్ళ పరిమాణం 10MB కన్నా తక్కువగా ఉండాలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ต้องมีขนาดไม่เกิน 10MB" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosyalar 10MB'den küçük olmalıdır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файли мають бути менше 10MB" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائلز کا سائز 10MB سے کم ہونا چاہیے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayllar 10MB dan kichik bo‘lishi kerak" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tập tin phải nhỏ hơn 10MB" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iifayile mazibe ngaphantsi kwe-10MB" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件必须小于10MB" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案必須小於 10MB" + } + } + } + }, + "attachmentsErrorTypes" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie beelde en video’s saam met ander lêersoorte heg nie. Probeer om ander lêers in 'n aparte boodskap te stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكن إرفاق الصور والفيديو مع أنواع ملفات أخرى. جرب إرسال الملفات الأخرى في رسالة منفصلة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şəkil və videoları digər fayl növləri ilə birgə əlavə edə bilməzsiniz. Digər faylları ayrı bir mesajda göndərməyə çalışın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصاویر اور ویڈیوز کو دیگر فائل اقسام کے ساتھ منسلک نہیں کیا جا سکتا۔ دوسری فائلوں کو الگ میسج میں بھیجنے کی کوشش کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма дадаць выявы і відэа разам з іншымі тыпамі файлаў. Спрабуйце даслаць іншыя файлы асобна." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да прикачите изображения и видео заедно с други видове файлове. Опитайте да изпратите другите файлове в отделно съобщение." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অন্যান্য ফাইলের সাথে ছবি এবং ভিডিও সংযুক্ত করা যাবে না। পৃথক বার্তাতে অন্যান্য ফাইল পাঠানোর চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es poden adjuntar imatges i vídeos amb altres tipus d'arxius. Prova a enviar altres arxius en un missatge separat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze připojit obrázky a video s jinými typy souborů. Zkuste odeslat jiné soubory v samostatné zprávě." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu atodi delweddau a fideos gyda mathau eraill o ffeiliau. Ceisiwch anfon ffeiliau eraill mewn neges ar wahân." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke vedhæfte billeder og videoer sammen med andre filtyper. Prøv at sende andre filer i en separat besked." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilder und Videos können nicht mit anderen Dateitypen angehängt werden. Versuche, andere Dateien in einer separaten Nachricht zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορείτε να επισυνάψετε εικόνες και βίντεο με άλλους τύπους αρχείων. Προσπαθήστε να στείλετε τα άλλα αρχεία σε ξεχωριστό μήνυμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot attach images and video with other file types. Try sending other files in a separate message." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne povas aldoni bildojn kaj videojn kun aliaj dosiertipoj. Provu sendi aliajn dosierojn en aparta mesaĝo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pueden adjuntar imágenes y videos con otros tipos de archivos. Intenta enviar otros archivos en un mensaje separado." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pueden adjuntar imágenes y videos con otros tipos de archivos. Intenta enviar otros archivos en un mensaje separado." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei saa lisada pilte ja videoid teiste failitüüpidega. Proovige teisi faile saata eraldi sõnumina." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot attach images and video with other file types. Try sending other files in a separate message." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمی‌توان عکس‌ها و فیلم‌ها را با دیگر انواع فایل پیوست کرد. سعی کنید فایل‌های دیگر را به‌صورت پیام جداگانه ارسال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuvat ja videotiedostoja ei voi liittää muiden tiedostotyyppien kanssa. Kokeile lähettää muut tiedostot erillisessä viestissä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi maaaring magsama ng mga larawan at video sa ibang uri ng file. Subukan ipadala ang ibang file sa ibang mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de joindre des images et des vidéos avec d'autres types de fichiers. Essayez d'envoyer les autres fichiers dans un message séparé." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se poden anexar imaxes e vídeos con outros tipos de ficheiros. Tenta enviar outros ficheiros nunha mensaxe separada." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya haɗa hotuna da bidiyo da wasu nau'ikan fayil ba. Gwada aika sauran fayiloli a cikin saƙon daban." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לצרף תמונות וסרטונים עם סוגי קבצים אחרים. נסה לשלוח קבצים אחרים בהודעה נפרדת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छवियों और वीडियो को अन्य फाइल प्रकारों के साथ संलग्न नहीं कर सकते। अन्य फ़ाइलें एक अलग संदेश में भेजने का प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne mogu priložiti slike i video s drugim vrstama datoteka. Pokušajte poslati ostale datoteke u zasebnoj poruci." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem lehet képeket és videókat más fájltípusokkal együtt csatolni. Próbáld meg külön üzenetben küldeni a fájlokat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չի կարող կցել պատկերներ և վիդեոեր այլ ֆայլերի տիպերի հետ։ Փորձեք ուղարկել ուրիշ ֆայլերը առանձին հաղորդագրությունում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat melampirkan gambar dan video dengan jenis berkas lain. Coba mengirim berkas lain dalam pesan terpisah." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non è possibile allegare immagini e video con altri tipi di file. Prova a inviare gli altri tipi file in un messaggio separato." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "画像と動画を他のファイルタイプと一緒に添付できません。他のファイルを別のメッセージで送信してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სურათებსა და ვიდეოებს ვერ გაუგზავნით სხვა ტიპის ფაილებთან ერთად. სცადეთ სხვა ფაილების გაგზავნა ცალკე შეტყობინების საშუალებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចភ្ជាប់រូបភាព និងវីដេអូជាមួយប្រភេទឯកសារផ្សេងទៀតបានទេ សូមព្យាយាមផ្ញើឯកសារផ្សេងៗក្នុងសារចែកចេញផ្សេងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇಮೇಜ್‌ ಮತ್ತು ভিডিওವನ್ನು ಇತರ ಕಡತ ಪ್ರಕಾರಗಳೊಂದಿಗೆ ಅಂಟಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.ುದಾದರೆ, ಬೇರೆ ಸಂದೇಶದಲ್ಲಿ ಇತರ ಕಡತಗಳನ್ನು ಕಳುಹಿಸಲು ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이미지 및 비디오파일을 다른 종류의 파일과 함께 첨부할 수 없습니다. 다른 파일을 별도의 메시지로 보내십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وێنەکان و ڤیدیۆکان ناتوانرێت بە فایلە دیکەکان هاوپەچ بەکپارێن. دەتوانیت فایلەکان بەتاکەیە نیاردن نێردەکانی لە پەیامەکە بەرز بکەیت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot attach images and video with other file types. Try sending other files in a separate message." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍສາມາດເນືໄຟລຮູບການສຽງແລະຫຼາຍຫລາຍພວກຄຳອືນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negalima prisegti paveikslų ir vaizdo įrašų su kitų tipų failais. Pabandykite siųsti kitus failus atskira žinute." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar pievienot attēlus un video ar citu failu veidiem. Mēģiniet nosūtīt citus failus atsevišķā ziņā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да приложите слики и видеа со други типови на датотеки. Обидете се да ги праќате другите датотеки во посебна порака." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зураг ба видеог бусад төрлийн файлуудтай хавсаргаж илгээх боломжгүй. Бусад файлуудыг тусдаа зурвас болгон илгээгээрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak boleh melampirkan gambar dan video dengan jenis fail lain. Cuba hantar fail lain dalam mesej yang berasingan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရုပ်ပုံများနှင့် ဗီဒီယိုများကို အခြား ဖိုင်အမျိုးအစားများနှင့် တွဲ၍ မပါတင်ရနိုင်ပါ။ အခြား ဖိုင်များကို သီးခြား မက်ဆေ့ချ် တစ်ခုအဖြစ် ပို့ကြည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke vedlegge bilder og videoer med andre filtyper. Prøv å sende andre filer i en separat melding." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छविहरू र भिडियोहरू अन्य फाइल प्रकारहरूको साथ संलग्न गर्न सकिँदैन। अन्य फाइलहरू अलग सन्देशमा पठाउन प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan geen afbeeldingen en video's met andere bestandstypen bijvoegen. Probeer andere bestanden in een apart bericht te verzenden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikkje leggja ved bilete og video med andre filtypar. Prøv å senda andre filer i ei separat melding." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot attach images and video with other file types. Try sending other files in a separate message." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤਸਵੀਰਾਂ ਅਤੇ ਵੀਡੀਓ ਨੂੰ ਹੋਰ ਫਾਇਲ ਕਿਸਮਾਂ ਨਾਲ ਜੋੜ ਨਹੀਂ ਸਕਦੇ। ਹੋਰ ਫਾਇਲਾਂ ਨੂੰ ਵੱਖ-ਵੱਖ ਸੁਨੇਹਿਆਂ ਵਿੱਚ ਭੇਜਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można załączyć obrazów i wideo z innymi typami plików. Spróbuj wysłać inne pliki w osobnej wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصاویر او ویډیو د نورو دوتنو ډولونو سره نښلول نشي. هڅه وکړئ نور فایلونه په جلا پیغام کې واستوئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível anexar imagens e vídeos com outros tipos de arquivo. Tente enviar outros arquivos em uma mensagem separada." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível anexar imagens e vídeos com outros tipos de ficheiros. Tente enviar outros ficheiros em uma mensagem separada." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu se pot atașa imagini și videoclipuri cu alte tipuri de fișiere. Încercați să trimiteți alte fișiere într-un mesaj separat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно прикрепить изображения и видео вместе с другими типами файлов. Отправьте другие файлы в отдельном сообщении." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete priložiti slike i video sa drugim vrstama datoteka. Pokušajte poslati druge datoteke u zasebnoj poruci." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "රූප හා වීඩියෝව පිලිබඳ රූප හා අනෙකුත් ගොනු වර්ග එකතු කළ නොහැක. වෙනත් ගොනුවලට වෙනත් පණිවිඩයක් එවන්න උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné pripojiť obrázky a video k iným typom súborov. Skúste odoslať iné súbory v samostatnej správe." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morem priložiti slik in video posnetkov z drugimi vrstami datotek. Poskusite pošiljati druge datoteke v ločenih sporočilih." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mund të bashkëngjitni figura dhe video me lloje të tjera dosjesh. Provoni të dërgoni dosjet e tjera në një mesazh të veçantë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете приложити слике и видео са другим типовима фајлова. Покушајте да пошаљете друге фајлове у засебној поруци." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne mogu da priložim slike i video uz druge tipove datoteka. Pokušajte da pošaljete druge datoteke u zasebnoj poruci." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det går inte att bifoga bilder och video med andra filtyper. Försök att skicka andra filer i ett separat meddelande." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi kushikiza picha na video na aina zingine za faili. Jaribu kutuma faili nyingine katika ujumbe tofauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "படங்கள் மற்றும் வீடியோக்களை மற்ற கோப்பு வகைகளுடன் இணைக்க முடியாது. முயற்சி செய்யப்பட்ட பிற கோப்புகளை வேறு தகவலில் அனுப்பவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చిత్రాలు మరియు వీడియోను ఇతర ఫైల్ రకాలతో జోడించలేరు. ఇతర ఫైళ్ళను వేరు సందేశం లో పంపడానికి ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถแนบรูปภาพและวิดีโอร่วมกับไฟล์ประเภทอื่นได้ ลองส่งไฟล์อื่นในข้อความแยก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görüntü ve videoları diğer dosya türleriyle birlikte ekleyemezsiniz. Diğer dosyaları ayrı bir mesajda göndermeyi deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можна прикріпити зображення та відео разом з іншими типами файлів. Спробуйте надіслати інші файли в окремому повідомленні." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصاویر اور ویڈیوز کو دیگر فائل اقسام کے ساتھ منسلک نہیں کیا جا سکتا۔ دیگر فائلیں الگ پیغام میں بھیجنے کی کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rasm va video boshqa fayl turlari bilan birga qo'shib bo'lmaydi. Boshqa fayllarni alohida xabarda yuborishga harakat qiling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể đính kèm ảnh và video cùng với các loại tập tin khác. Thử gửi các tập tin khác trong một tin nhắn riêng." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayinakusetyenziswa imifanekiso kunye iividiyo nezinye iindidi zeefayile. Zama ukuthumela ezinye iifayile kwinyaniseso elahlukileyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法同时附加图像、视频与其他类型的文件。请尝试在单独的消息中发送其他文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法與其他文件類型附加圖片和影片。請嘗試單獨發送其他文件。" + } + } + } + }, + "attachmentsExpired" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanhegsel verval" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتهت صلاحية المرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşmanın müddəti bitdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسٹیکچر ختم شدہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скончыўся тэрмін дзеяння далучэння" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикаченият файл е изтекъл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তি মেয়াদ শেষ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunt caducat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Platnost přílohy vypršela" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atodiad wedi dod i ben" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedhæftning udløbet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhang abgelaufen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το συνημμένο έληξε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunsendaĵo eksvalidiĝis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunto caducado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunto caducado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manuse aegumistähtaeg on lõppenud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskina iraungi da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوست منقضی شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liite on vanhentunut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga isinamang nag-expire na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pièce jointe expirée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo caducado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haɗin ya ƙare" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צרופה תמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अटैचमेंट की समय सीमा समाप्त हो गई" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privitak istekao" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejárt melléklet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կցորդը ժամկետանց է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran kedaluwarsa" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allegato scaduto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "添付ファイルの有効期限が切れました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიმაგრებული ფაილი ვადაგასულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារភ្ជាប់បានផុតកំណត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "첨부파일 만료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوپێچ بەسەرچووە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເອືອລວາທິດາ ໝົດອາຍຸ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priedas pasibaigė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pielikuma derīguma termiņš beidzies" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилогот истече" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хавсралт хугацаа дууссан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran telah tamat tempoh" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပူးတွဲပါဖိုင် သက်တမ်းကုန်ပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg utløpt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संलग्नक समाप्त भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlage verlopen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg utgått" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chokwanira chinatha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਟੈਚਮੈਂਟ ਦੀ ਮਿਆਦ ਖਤਮ ਹੋ ਚੁਕੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Załącznik wygasł" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo expirado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexo expirado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atașamentul a expirat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Срок действия вложения истек" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilog je istekao" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම කල් ඉකුත් වී ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Platnosť prílohy vypršala" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priloga je potekla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bashkëngjitja ka skaduar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилог је истекао" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilog je istekao" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilaga har gått ut" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiambatanisho kimekwisha muda" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு காலாவதியானது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์แนบหมดอายุ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ek süresi doldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Термін дії вкладення закінчився" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment expired" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilovaning muddati tugagan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tệp đính kèm đã hết hạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isihombiso siphelelwe lixesha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "附件已过期" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "附件已過期" + } + } + } + }, + "attachmentsFileId" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêer-ID:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معرّف الملف:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl kimliyi:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگ ID:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID файла:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID на файла:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল আইডি:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Id de fitxer:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID souboru:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Ffeil:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil ID:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei ID:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Id Αρχείου:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File ID:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identigilo de la dosiero:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de archivo:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de archivo:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faili ID:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi ID:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شناسه فایل:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedoston ID:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "File ID:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Id du fichier :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID do ficheiro:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID ɗin Fayil:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מזהה קובץ:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल ID:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID datoteke:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fájl azonosító:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլ ID:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID berkas:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID file:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルID:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილის ID:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Id ឯកសារ៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತ ID:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 ID:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناسنامەی فایل:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayiro ID:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failo ID:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faila ID:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID на датотека:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлын ID:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Fail:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင် ID:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil-ID:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बाट:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestands-ID:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil-ID:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panka ID:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲ ID:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identyfikator pliku:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د فایل ID:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID do Arquivo:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID do ficheiro:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID fișier:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID файла:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID datoteke:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුවේ ID:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID súboru:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Id datoteke:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "File ID:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID фајла:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID fajla:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil-Id:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "File ID:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பு ஐடி:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ ID:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ ID:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya Kimliği:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID файлу:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل آئی ڈی:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl ID:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID tệp tin:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Yefayile:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件ID:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案 ID:" + } + } + } + }, + "attachmentsFilesEmpty" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het geen lêers in hierdie gesprek nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا تملك أي ملفات في هذه المحادثة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu danışıqda heç bir faylınız yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما فاصلے ناہ بیتنگی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас няма файлаў у гэтай размове." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие нямате никакви файлове в този разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই কথোপকথনে আপনার কোনো ফাইল নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tens cap fitxer en aquesta conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "V této konverzaci nemáte žádné soubory." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych unrhyw ffeiliau yn y sgwrs hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen filer i denne samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Unterhaltung enthält keine Dateien." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε κανένα αρχείο σε αυτή τη συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't have any files in this conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne havas ajnajn dosierojn en ĉi tiu konversacio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes ningún archivo en esta conversación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes ningún documento en esta conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil ei ole selles vestluses ühtegi faili." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu fitxategirik elkarrizketa honetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما در این مکالمه هیچ فایلی ندارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole tiedostoja tässä keskustelussa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang mga file sa pag-uusap na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez aucun fichier dans cette conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non tes ningún ficheiro nesta conversa." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da duk wani fayil a cikin wannan tattaunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין לך קבצים בשיחה הזאת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस वार्तालाप में आपके पास कोई फाइलें नहीं हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate datoteka u ovom razgovoru." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs fájl ebben a beszélgetésben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք այս զրույցում ֆայլեր չունեք։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak memiliki berkas apapun dalam percakapan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai alcun file in questa chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この会話にはファイルがありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ საუბარში ფაილები არ გაქვთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនមានឯកសារណាមួយនៅក្នុងការសន្ទនាពីនេះទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿ ನೀವು ಯಾವುದೇ ಫೈಲ್‌ಗಳನ್ನು ಹೊಂದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 대화에 파일이 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ هیچ پەڕگەیکێت نییە لەم گفتگوویە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina fayiro zona mu ngeri eno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šiame pokalbyje nėra failų." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā sarunā tev nav neviena faila." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Во овој разговор немате датотеки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ ярианд танд файлс байхгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum mempunyai sebarang fail dalam perbualan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဆွေးနွေးပွဲတွင် ဖိုင်များ မရှိသေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen filer i denne samtalen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग यस कुराकानीमा कुनै फाइलहरू छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft geen bestanden in dit gesprek." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga filer i denne samtalen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulibe mafayilo mu kuyankhulana uku." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ ਇਸ ਗੱਲਬਾਤ ਵਿੱਚ ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz żadnych plików w tej konwersacji." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو په دې مکالمه کې هېڅ فایل نلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não tem nenhum arquivo nesta conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não tem nenhum ficheiro nesta conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu ai fișiere în această conversație." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В этой беседе нет файлов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemaš nijednu datoteku u ovom razgovoru." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ මෙම සංවාදයේ කිසිදු ගොනුවක් නොමැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tejto konverzácii nemáte žiadne súbory." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tem pogovoru nimate nobenih datotek." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni ndonjë skedarë në këtë bisedë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нематe фајловe у овом разговору." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate nijedan fajl u ovoj konverzaciji." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga filer i den här konversationen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna faili zozote katika mazungumzo haya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த உரையாடலில் உங்களுக்கு கோப்புகள் எதுவும் இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సంభాషణలో మీకు ఏ ఫైళ్లు లేవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่มีไฟล์ในการสนทนานี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu konuşmada herhangi bir dosyanız yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас немає жодного файлу в цій розмові." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گفتگو میں آپ کے پاس کوئی فائلیں نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu suhbatda hech qanday fayl yo'q." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không có tệp nào trong cuộc trò chuyện này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awunazo zifayile kule ncoko." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在此会话中没有任何文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "此對話中沒有檔案。" + } + } + } + }, + "attachmentsFileSize" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêer Grootte:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حجم الملف:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl ölçüsü:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگ حجم:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памер файла:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Размер на файла:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলের আকার:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mida del fitxer:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velikost souboru:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maint Ffeil:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filstørrelse:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateigröße:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μέγεθος Αρχείου:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File Size:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amplekso de la dosiero:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño del archivo:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño del archivo:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faili suurus:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi Tamaina:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اندازه فایل:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedoston koko:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laki ng Talaksan:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taille du fichier :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño do ficheiro:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Girman Fayil:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גודל קובץ:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल आकार:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veličina datoteke:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fájl méret:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլի չափսը՝" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuran Berkas:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dimensione file:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルサイズ:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილის ზომა:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទំហំឯកសារ៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತದ ಗಾತ್ರ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 크기:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قەبارەی فایل:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obunene bwa Fayiro:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failo dydis:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faila izmērs:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Големина на датотека:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлын хэмжээ:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saiz Fail:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်အရွယ်အစား:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filstørrelse:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी गर्दा इन्टर किजको कार्य।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestandsgrootte:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filstorleik:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukala panka:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲ ਦਾ ਆਕਾਰ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozmiar pliku:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د فایل کچه:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do Arquivo:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do ficheiro:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dimensiune fișier:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Размер Файла:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veličina datoteke:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුවේ ප්‍රමානය:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veľkosť súboru:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velikost datoteke:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Madhësia e kartelës:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Величина фајла:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veličina fajla:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filstorlek:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukubwa wa Jalada:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பு அளவு:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ పరిమాణం:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดไฟล์:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya Boyutu:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розмір файлу:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل کا سائز:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl hajmi:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dung lượng tệp tin:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubukhulu beFayile:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件大小:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案大小:" + } + } + } + }, + "attachmentsFileType" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêer Tipe:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوع الملف:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl növü:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگ قسم:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тып файла:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип на файла:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলের ধরণ:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipus de fitxer:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typ souboru:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Math Ffeil:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filtype:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateityp:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τύπος Αρχείου:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File Type:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de la dosiero:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de archivo:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de archivo:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failitüüp:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi Mota:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوع فایل:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedoston tyyppi:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uri ng Talaksan:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type de fichier :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de ficheiro:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nau'in Fayil:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סוג קובץ:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल प्रकार:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrsta datoteke:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fájl típus:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլի տեսակ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jenis Berkas:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo file:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルタイプ:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილის ტიპი:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រភេទឯកសារ៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತದ ಪ್ರಕಾರ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일 유형:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "جۆری فایل:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekikula kya Fayiro:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failo tipas:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faila paplašinājums:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип на датотека:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлын төрөл:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jenis Fail:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်အမျိုးအစား:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filtype:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestandstype:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filtype:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu wa panka:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲ ਦਾ ਪ੍ਰਕਾਰ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typ pliku:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د فایل ډول:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de Arquivo:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de ficheiro:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tip fişier:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип Файла:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tip datoteke:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුවේ වර්ගය:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typ súboru:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrsta datoteke:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lloji i kartelës:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип фајла:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tip fajla:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filtyp:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aina ya Jalada:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பு வகை:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ రకం:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประเภทไฟล์:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya Türü:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип файлу:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل کی قسم:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl turi:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loại tệp tin:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo lweFayile:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件类型:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案類型:" + } + } + } + }, + "attachmentsImageErrorMetadata" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie metadata van lêer verwyder nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعذر إزالة بيانات التعريف من الملف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metadata, fayldan silinə bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل سے میٹا ڈیٹا ہٹانے میں ناکامی ہوئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма выдаліць метададзеныя з файла." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се премахнат метаданните от файла." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল থেকে মেটাডেটা সরাতে অক্ষম।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es poden eliminar les metadades del fitxer." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze odstranit metadata ze souboru." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu tynnu metadata o ffeil." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne metadata fra filen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metadaten konnten nicht aus Datei entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία αφαίρεσης μεταδεδομένων από το αρχείο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to remove metadata from file." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas forigi metadatenojn de dosiero." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar los metadatos del archivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar los metadatos del archivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failist ei saa metaandmeid eemaldada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin dira fitxategitik metadatuak kendu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از حذف فراداده از فایل." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metadatan poistaminen tiedostosta epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi maalis ang metadata mula sa file." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de supprimer les métadonnées du fichier." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode eliminar metadatos do ficheiro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya cire bayanan metadata daga fayil ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן להסיר נתוני מטא מהקובץ." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइल से मेटाडाटा निकालने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće izbrisati metapodatke iz datoteke." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A fájl metaadatainak eltávolítása sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել մետատվյալները ֆայլից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat menghapus metadata dari berkas." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere i metadati dal file." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルからメタデータを削除できませんでした。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილში მეტამონაცემების წაშლა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចលុបព័ត៌មានវីដេអាបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತದ ಮೆಟಾಡೇಟಾವನ್ನು ತೆಗೆದುಹಾಕಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일에서 메타데이터를 제거할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرا زانیاری داتاکان بسردڕێتەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kuggyako bimukutu okuva mu fayiro." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta pašalinti metaduomenų iš failo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav iespējams noņemt metadatus no faila." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се отстрани метаподатоците од датотеката." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлын мета өгөгдлийг устгах боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat menghapus metadata dari fail." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်မှ metadata ဖယ်ရှား၍မရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke fjerne metadata fra filen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइलबाट मेटाडाटा हटाउन असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan metadata niet verwijderen van bestand." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å fjerna metadata frå fila." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kuchotsa metadata pa fayilo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਈਲ ਤੋਂ ਮੈਟਾਡੇਟਾ ਹਟਾਉਣ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można usunąć metadanych z pliku." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له فایل څخه مټاډېټا لرې کول نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível remover os metadados do arquivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível remover os metadados do ficheiro." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminarea metadatelor din fișier nu este posibilă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удается удалить метаданные из файла." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ukloniti metapodatke iz datoteke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුවෙන් පාරදත්ත ඉවත් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné odstrániť metadáta zo súboru." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka pri odstranjevanju metapodatkov iz datoteke." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’arrin të hiqet metadata nga kartela." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће уклонити метаподатке из фајла." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ukloniti metapodatke iz datoteke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte ta bort metadata från fil." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kuondoa metadata kutoka kwa faili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பில் உள்ள மேலோட்டத் தரவுகளை நீக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్ నుండి మెటాడేటా తొలగించడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูลเมตาจากไฟล์ไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosyadan metadata kaldırılamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося вилучити метадані з файлу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل سے میٹا ڈیٹا ہٹانے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayldan metama’lumotni o‘chira olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xoá dữ liệu khỏi tệp." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kubanakho ukususwa kwemethadatha kwifayile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法清除文件中的元数据。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除檔案的元數據。" + } + } + } + }, + "attachmentsLoadingNewer" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Nuwe Media..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تحميل الوسائط الأحدث…..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni media yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Newer Media..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка новых медыя…..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на нови медии..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন মিডিয়া লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregant Mèdia Més Nou..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání novějších médií..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho Cyfryngau diweddar..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser nyere medier..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuere Medieninhalte werden geladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση Νεότερων Πολυμέσων..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Newer Media..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante Novajn Aŭdvidaĵojn..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia más reciente..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia más nuevo..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadin uuemat meediat..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia berriak kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری رسانه جدیدتر..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan uudempaa mediaa..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglo-load ng Mas Bagong Media..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement des médias plus récents..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia máis recente..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana Loda Sabon Kafofin watsa labarai..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען מדיה חדשה..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नया मीडिया लोड हो रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih medija..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újabb média betöltése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում են նոր մեդիա ֆայլերը..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat Media Baru..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento media più recenti..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しいメディアを読み込んでいます..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება ახალი მედია..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកមេឌៀថ្មីៗ..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಮಾಧ್ಯಮ ಲೋಡ್ ಆಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새로운 미디어 불러오는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی میدیای نوێتر..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka Ffayiro Mpya..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama naujesnė medija..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē jaunāku mediju..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување понови медиуми..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ медиа ачаалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan Media Baru..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသစ်ဖိုင်များ ဖော်ပြနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn nyere medier..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नयाँ मिडिया लोड हुँदै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuwere media laden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn nyere medier..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo ma media atsopano..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੀਨਤਮ ਮੀਡੀਆ ਲੋਡ ਹੋ ਰਹੀ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie nowszych mediów..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوي رسنۍ بارونه..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Novas Mídias..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Multimédia Recente..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă fișierele media mai noi..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка новых медиа..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih medija..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව මාධ්‍ය…පූරණය වෙමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítavajú sa novšie médiá…" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje novejših vsebin..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohen mediat e reja..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање новијих медија..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih medija..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar nyare media..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakia Vyombo Mpya..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய மீடியா ஏற்றுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త మీడియా లోడ్ చేస్తున్నారు..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดข้อความใหม่..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha Yeni Medya Yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження новішого медіа..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نیا میڈیا لوڈ ہو رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi media yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải phương tiện mới nhất..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha iMidhiya entsha..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载更多媒体..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "讀取新媒體中⋯" + } + } + } + }, + "attachmentsLoadingNewerFiles" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Nuwe Lêers..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تحميل الملفات الأحدث..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni fayllar yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Newer Files..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка новых файлаў..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на нови файлове..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন ফাইলগুলি লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregant Arxius Més Nous..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání novějších souborů..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho ffeiliau diweddar..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser nyere filer..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuere Dateien werden geladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση Νεότερων Αρχείων..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Newer Files..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante Novajn Dosierojn..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando archivos más nuevos..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando archivos más nuevos..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadin uuemaid faile..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi berriak kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری فایل‌های جدید..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan uudempia tiedostoja..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglo-load ng Mas Bagong Mga File..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement des fichiers plus récents..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando ficheiros máis recentes..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana Loda Sabbin Fayiloli..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען קבצים חדשים..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नए फाइल लोड हो रहे हैं..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih datoteka..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újabb fájlok betöltése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում են նոր ֆայլերը..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat Berkas Baru..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento dei file più recenti..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しいファイルを読み込んでいます..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება ახალი ფაილები..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកឯកសារថ្មី..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ದ್ರಾವಣೆಗಳು ಲೋಡ್ ಆಗುತ್ತಿವೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새로운 파일 불러오는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی پەڕۆکانە نوێتر..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka Ffayiro Engeza..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliami naujesni failai..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē jaunākos failus..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување понови фајлови..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ файлуудыг ачаалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan Fail Baru..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသစ်များ ပြန်လည်ဖော်ပြနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn nyere filer..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नयाँ फाइलहरू लोड हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuwere bestanden laden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn nyere filer..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo mafayilo atsopano..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੇਂ ਫਾਈਲਾਂ ਲੋਡ ਹੋ ਰਹੀਆਂ ਹਨ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie nowszych plików..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوي فایلونه بار شوي..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Arquivos Mais Recentes..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Arquivos Recentes..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă fișierele mai noi..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка новых файлов..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih datoteka..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නවතම ගොනු පූරණය වෙමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítanie novších súborov..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje novejših datotek..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohen kartelat e reja..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање новијих датотека..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje novijih fajlova..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar nyare filer..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakia Faili Mpya..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய கோப்புகளை ஏற்றுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త ఫైళ్ళను లోడ్ చేస్తున్నారు..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดไฟล์ใหม่..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha Yeni Dosyalar Yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження новіших файлів..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نئے فائلز لوڈ ہو رہی ہیں..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi fayllar yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải tập tin mới nhất..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha iifayile ezintsha..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载更多文件..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在載入較新的檔案..." + } + } + } + }, + "attachmentsLoadingOlder" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Ouer Media..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تحميل الوسائط الأقدم…..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Köhnə media yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Older Media..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка старых медыя…..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на по-стари медии..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুরানো মিডিয়া লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregant Mèdia Més Antic..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání starších médií..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho hen Cyfryngau..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser ældre medier..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ältere Medieninhalte werden geladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση Παλαιότερων Πολυμέσων..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Older Media..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante Malnovajn Aŭdvidaĵojn..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia más antiguo..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia más antiguo..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadin vanemat meediat..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia zaharrak kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری رسانه قدیمی‌تر..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan vanhempaa mediaa..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglo-load ng Mas Luma na Media..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement des médias plus anciens..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando multimedia máis antiga..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana Loda Tsofaffin Kafofin watsa labarai..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען מדיה ישנה..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुराना मीडिया लोड हो रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih medija..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Régebbi média betöltése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում են հին մեդիա ֆայլերը..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat Media Lama..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento dei media più vecchi..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "古いメディアを読み込んでいます..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება ძველი მედია..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកមេឌៀចាស់ៗ..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಳೆಯ ಮಾಧ್ಯಮ ಲೋಡ್ ಆಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이전 미디어 불러오는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی میدیای کۆنتر..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka Ffayiro Z'ensawo..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama senesnė medija..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē vecāku mediju..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување постари медиуми..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуучин медиа ачаалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan Media Lama..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟောင်းဖြစ်သော မီဒီယာများ ဖော်ပြနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn eldre medier..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुरानो मिडिया लोड हुँदै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oudere media laden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn eldre medier..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo ma media akale..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੁਰਾਣੇ ਮੀਡੀਆ ਲੋਡ ਹੋ ਰਹੀ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie starszych mediów..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوړ رسنۍ بارونه..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Mídias Antigas..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Multimédia Antiga..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă fișierele media mai vechi..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка старых медиа..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih medija..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පැරණි මාධ්‍ය…පූරණය වෙමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítavajú sa staršie médiá…" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje starejših vsebin..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohen mediat e vjetra..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање старијих медија..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih medija..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar äldre media..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakia Vyombo vya Zamani..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பழைய மீடியா ஏற்றுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాత మీడియా లోడ్ చేస్తున్నారు..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดข้อความเก่า..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eski Medya Yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження старішого медіа..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرانی میڈیا لوڈ ہو رہی ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eski media yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải phương tiện cũ hơn..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha iMidhiya eyindala..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载较早的媒体..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "讀取舊媒體中..." + } + } + } + }, + "attachmentsLoadingOlderFiles" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Ouer Lêers..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تحميل الملفات الأقدم..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Köhnə fayllar yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Older Files..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка старых файлаў..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на по-стари файлове..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুরানো ফাইলগুলি লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregant Arxius Més Antics..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání starších souborů..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho hen ffeiliau..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser ældre filer..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ältere Dateien werden geladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση Παλαιότερων Αρχείων..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading Older Files..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante Malnovajn Dosierojn..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando archivos más antiguos..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando archivos más antiguos..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadin vanemaid faile..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategi zaharrak kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری فایل‌های قدیمی..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan vanhempia tiedostoja..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglo-load ng Mas Luma na Mga File..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement des fichiers plus anciens..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando ficheiros máis antigos..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana Loda Tsofaffin Fayiloli..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען קבצים ישנים..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुराने फाइल लोड हो रहे हैं..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih datoteka..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Régebbi fájlok betöltése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում են հին ֆայլերը..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat Berkas Lama..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento dei file meno recenti..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "古いファイルを読み込んでいます..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება ძველი ფაილები..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកឯកសារចាស់..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಳೆಯ ದ್ರಾವಣೆಗಳು ಲೋಡ್ ಆಗುತ್ತಿವೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이전 파일 불러오는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی پەڕۆکانە کۆنتر..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka Ffayiro Ensa..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliami senesni failai..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē vecākos failus..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување постари фајлови..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуучин файлуудыг ачаалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan Fail Lama..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟောင်းဖြစ်သော ဖိုင်များ ဖော်ပြနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn eldre filer..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुरानो फाइलहरू लोड हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oudere bestanden laden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn eldre filer..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo mafayilo akale..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੁਰਾਣੀਆਂ ਫਾਈਲਾਂ ਲੋਡ ਹੋ ਰਹੀਆਂ ਹਨ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie starszych plików..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوړ فایلونه بار شوي..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Arquivos Mais Antigos..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando Arquivos Antigos..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă fișierele mai vechi..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка старых файлов..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih datoteka..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පැරණි ගොනු පූරණය වෙමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítanie starších súborov..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje starejših datotek..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohen kartelat e vjetra..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање старијих датотека..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje starijih fajlova..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar äldre filer..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakia Mafaili ya Zamani..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பழைய கோப்புகளை ஏற்றுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాత ఫైళ్ళను లోడ్ చేస్తున్నారు..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดไฟล์เก่า..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eski Dosyalar Yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження старіших файлів..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرانے فائلز لوڈ ہو رہی ہیں..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eski fayllar yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải tập tin cũ hơn..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha iifayile ezindala..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载较早的文件..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在載入較舊的檔案..." + } + } + } + }, + "attachmentsMedia" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} op {date_time}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} على {date_time}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} - {date_time}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پر {date_time}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} на {date_time}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} на {date_time}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} সময় {date_time}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {date_time}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} v(e) {date_time}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ar {date_time}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} den {date_time}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} am {date_time}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} στις {date_time}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on {date_time}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je {date_time}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {date_time}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} el {date_time}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} juures {date_time}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} در {date_time}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} noong {date_time}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} le {date_time}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} o {date_time}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a ranar {date_time}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ב-{date_time}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को {date_time}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {date_time}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ekkor: {date_time}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time}-ին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pada {date_time}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} il {date_time}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time}に{name}から" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time}-ზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} នៅលើ {date_time}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time} ರಂದು {name}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 보낸 시간 {date_time}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} لەسەر {date_time}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ku {date_time}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ຢູ່ {date_time}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pievērsās {date_time}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} на {date_time}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time} дахь {name}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pada {date_time}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on {date_time}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} på {date_time}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time} मा {name}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} op {date_time}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} på {date_time}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ku {date_time}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time} 'ਤੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} w dniu {date_time}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ته {date_time} باندې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} em {date_time}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} em {date_time}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pe {date_time}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} от {date_time}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {date_time}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time} දී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {date_time}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ob {date_time}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} më {date_time}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} на {date_time}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {date_time}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} den {date_time}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tarehe {date_time}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on {date_time}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time} న {name}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} เมื่อ {date_time}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{date_time} tarihinde {name}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} о {date_time}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے {date_time} پر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {date_time} da" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hồi {date_time}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ngo-{date_time}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}于{date_time}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 於 {date_time}" + } + } + } + }, + "attachmentsMediaEmpty" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het geen media in hierdie gesprek nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ليس لديك أي وسائط في هذه المحادثة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu danışıqda heç bir medianız yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما میڈیہ تھی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас няма медыя ў гэтай размове." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие нямате никакви файлове в този разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই কথোপকথনে আপনার কোনো মিডিয়া নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tens cap document multimèdia en aquesta conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "V této konverzaci nemáte žádná média." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych unrhyw gyfryngau yn y sgwrs hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen medier i denne samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Unterhaltung enthält keine Medieninhalte." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε κανένα πολυμέσο σε αυτή τη συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't have any media in this conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne havas ajnan medion en ĉi tiu konversacio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay ningún adjunto en este chat." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes ningún archivo multimedia en esta conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil ei ole selles vestluses meediat." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu mediarik elkarrizketa honetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما در این مکالمه هیچ مدیایی ندارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole yhtään mediaa tässä keskustelussa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang media sa pag-uusap na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n’avez aucun média dans cette conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non tes ningún vídeo ou foto nesta conversa." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da duk wani kafofin watsa labaru a cikin wannan tattaunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין לך מדיה בשיחה הזאת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस वार्तालाप में आपके पास कोई मीडिया नहीं है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "U ovom razgovoru nemate multimedijskih podataka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs médiafájl ebben a beszélgetésben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք այս զրույցում մեդիա չունեք:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak memiliki media apapun dalam percakapan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai alcun contenuto multimediale in questa chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この会話にはメディアがありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ საუბარში მედია არ გაქვთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនមានឯកសារមេឌានៅក្នុងការសន្ទនាពីនេះទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿ ನೀವು ಯಾವುದೇ ಮಾಧ್ಯಮವನ್ನು ಹೊಂದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사진 또는 동영상이 존재하지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەم گفتوگۆیەدا هیچ میدیایەکتان نییە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina media yona mu ngeri eno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šiame pokalbyje nėra medijos failų." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā sarunā tev nav neviena medija." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Во овој разговор немате медија." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ ярианд танд медиа байхгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum mempunyai sebarang media dalam perbualan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဆွေးနွေးပွဲတွင် မီဒီယာ မရှိသေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen medier i denne samtalen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग यस कुराकानीमा कुनै मिडिया छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft geen media in dit gesprek." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen medier i denne samtalen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulibe zoyikirapo mu kuyankhulana uku." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ ਇਸ ਗੱਲਬਾਤ ਵਿੱਚ ਕੋਈ ਮੀਡੀਆ ਨਹੀਂ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz żadnych mediów w tej konwersacji." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو په دې مکالمه کې هېڅ رسنۍ نلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não tem mídia desta conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não existe multimédia nesta conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu ai fișiere media în această conversație." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В этой беседе нет медиафайлов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemaš nijednu mediju u ovom razgovoru." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම සංවාදයේ කිසිදු මාධ්‍යයක් නොමැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tejto konverzácii nemáte žiadne médiá." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tem pogovoru nimate medijskih vsebin." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni media në këtë bisedë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нематe медијe у овом разговору." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate nijedan medij u ovoj konverzaciji." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen media i den här konversationen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna media yoyote katika mazungumzo haya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த உரையாடலில் உங்களுக்கு ஏதாவது ஊடகங்கள் (media) இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సంభాషణలో మీకు ఏ మాధ్యమం లేవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่มีรูปในการสนทนานี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu konuşmada hiç medya yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вашій розмові немає жодного медіа." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گفتگو میں آپ کے پاس کوئی میڈیا نہیں ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda ushbu suhbatda hech qanday media yo'q." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không có nội dung đa phương tiện nào trong cuộc trò chuyện này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awunayo imidiya kule ncoko." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在此会话中没有任何媒体。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "此對話中沒有媒體。" + } + } + } + }, + "attachmentsMediaSaved" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media gestoor deur {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قام {name} بحفظ الوسائط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} medianı saxladı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media saved by {name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} захаваў(ла) медыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медия запазена от {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} দ্বারা মিডিয়া সেভ করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mèdia desat per {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uživatel {name} uložil média" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfryngau wedi'i gadw gan {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medie gemt af {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medien gespeichert von {name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκεύτηκαν πολυμέσα από {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media saved by {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosiero konservitis de {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo guardado por {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medios guardados por {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} salvestas meediumi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(e)k medja gorde du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسانه توسط {name} ذخیره شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tallensi mediaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-save ni {name} ang media" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Média enregistré par {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gardou o arquivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An adana Kafofin watsa labarai daga {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "המדיה נשמרה ע״י {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} द्वारा मीडिया सहेजा गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je spremio/la medij" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} lementett egy médiaelemet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} պահպանել է մեդիա ֆայլը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media disimpan oleh {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenuto multimediale salvato da {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} によって保存されたメディア" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მედია შესანახად შენახულია {name}-ის მიერ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មេឌៀបានរក្សាទុកដោយ {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮೀಡಿಯಾ ಉಳಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "미디어가 {name}에 의해 저장되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "میدیا هەلکەراوی {name}..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media ekyozogeddwa {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediją įsirašė {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multividi saglabāja {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиумот е зачуван од {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} медиа хадгалсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media disimpan oleh {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မီဒီယာကို {name} မှ သိမ်းဆည်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media lagret av {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} द्वारा सुरक्षित मिडिया" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media opgeslagen door {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediefil lagret av {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media yaposidwa ndi {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੀਡੀਆ {name} ਦੁਆਰਾ ਸੇਵ ਕੀਤੀ ਗਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media zapisane przez użytkownika {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "میډیا خوندي شوه {name} لخوا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mídia salva por {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimédia guardada por {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media salvată de {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} сохранил(а) медиафайл" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je sačuvao mediju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාධ්‍යය {name}කින් සුරකින ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Médiá uložené používateľom {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medij shranjen s strani osebe {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media u kursye me {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медију је сачувао {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medij je sačuvao {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media sparat av {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chombo kimehifadhiwa na {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மூலம் மீடியா சேமிக்கபட்டுள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ద్వారా సేవ్ చేయబడిన మీడియా" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อบันทึกสื่อโดย {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medya {name} tarafından kaydedildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} зберіг медіафайл" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میڈیا محفوظ کریں {name}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media shu {name} bilan saqlandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phương tiện được lưu bởi {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imidiya igciniwe ngu{name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}保存了媒体内容" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 儲存了媒體" + } + } + } + }, + "attachmentsMoveAndScale" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skuif en Skaal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحريك وتعديل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daşıma və miqyas" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ھلِّیں و ژڑا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перасоўванне і маштабаванне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премести или преоразмери" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সরান এবং মাপুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moure i escalar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přesun a změna velikosti" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symud a Graddio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flyt og Skalere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verschieben und Skalieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μετακίνηση και Κλιμάκωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Move and Scale" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Movi kaj Skaligi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar foto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar foto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liiguta ja skaleeri" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mugitu eta Eskalatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حرکت و مقیاس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siirrä ja Skaalaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galawin at Sukatin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Déplacer et mettre à l’échelle" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mover e Escalar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motsa da Sikeli" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזז והגדל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्थानांतरण और स्केल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomicanje i skaliranje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mozgatás és méretezés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեղափոխել և չափսը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pindahkan dan Ubah Skala" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sposta e ridimensiona" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メディア編集" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გადაადგილება და მასშტაბირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្លាស់ទីនិងវាស់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸರಿಸಿ ಮತ್ತು ಮಾಪನಾಗಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이동 및 크기 조정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "جووڵە و پێوەر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simbula ne Kwagalamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perkelti ir mastelis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pārvietot un mainīt izmēru" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премести и зголеми" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Залах ба томруулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih dan Skala" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Move and Scale" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flytt og skaler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सार्नुहोस् र मापन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verplaats en schaal" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flytt og skaler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunthani ndi Kukulira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਿਲ਼ਾਓ ਅਤੇ ਸਕੇਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przesuń i zmień wielkość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حرکت او کچه کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mover e Redimensionar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mover e Dimensionar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mută și modifică mărimea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перемещение и масштабирование" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomeri i skaliraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "චලනය සහ පරිමාණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Presun a zmena veľkosti" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Premakni in povečaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lëviz dhe Zmadhimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помери и измени величину" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Premesti i skeniraj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flytta och skala" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Songesha na Pima" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நகர்க்கவும் மற்றும் அளவிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కదిలించడం మరియు పరిమాణం సమ ఉజ్జీ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลื่อนและย่อขยาย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taşı ve Ölçekle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Переміщати і масштабувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حرکت کریں اور سکیل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko'chirish va O'lchash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Di chuyển và Thu phóng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shukuma kwaye Yilinganise" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移动与缩放" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "移動與裁切" + } + } + } + }, + "attachmentsNa" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "該当なし" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎನ್/ಎ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ن/ب" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teyaliwo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Н/А" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "NVT" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie dotyczy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indisponibil" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Н/Д" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "N/A" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "不適用" + } + } + } + }, + "attachmentsNotification" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Aanhegsel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} مرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} qoşması" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} منسلکی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Далучэнне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Прикачен файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} সংযুক্তি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Příloha" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Atodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Vedhæftning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Anhang" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Συνημμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Kunsendaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjunto {emoji}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Archivo adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Manus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Eranskina" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوست {emoji}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Liite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pièce jointe {emoji}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Anexo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Haɗin gwiwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} अटैचमेंट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Privitak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Melléklet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Կցորդ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 添付ファイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} მიმაგრებული ფაილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ឯកសារភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ಅಟ್ಯಾಚ್ಮೆಂಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 첨부 파일" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} هاوپێچ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ekiteekeddwako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ແນບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Priedas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Pielikums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} хавсралт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ပူးတွဲသွင်းပို့မှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} संम्लगन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Bijlage" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Attachment" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ਅਟੈਚਮੈਂਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Załącznik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} پیوستونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Atașament" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ඇමුණුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Príloha" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Prilog" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Attachment" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Прилог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Prilog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Bilaga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Kiambatanisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} இணைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} అటాచ్మెంట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} منسلکہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ilova" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Isiphumo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji}附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 附件" + } + } + } + }, + "attachmentsNotificationGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Aanhegsel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} مرفق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} qoşma" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} منسلکی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Далучэнне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Прикачен файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} সংযুক্তি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Adjunt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} příloha" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Vedhæftning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Anhang" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Συνημμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Kunsendaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Adjunto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Archivo adjunto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Manus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Eranskina" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} پیوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Liite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: Pièce jointe {emoji}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Haɗin gwiwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} צרופה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} संलग्नक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Privitak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Melléklet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Կցորդ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Lampiran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Allegato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 添付ファイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ឯកសារភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ಅಟ್ಯಾಚ್ಮೆಂಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 첨부 파일" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} هاوپێچ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} priedas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Прилог" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} хавсралт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Lampiran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ပူးတွဲသွင်းပို့မှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Vedlegg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} संम्लगन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Bijlage" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Vedlegg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ਅਟੈਚਮੈਂਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Załącznik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Anexo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Anexo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Atașament" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Вложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Prilog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ඇමුණුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Príloha" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Priloga" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Прилог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Prilog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Bilaga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Kiambatanisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} இணைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} అటాచ్మెంట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ไฟล์แนบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Вкладення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Attachment" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ilova" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Tệp đính kèm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Isiphumo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 附件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 附件" + } + } + } + }, + "attachmentsResolution" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolusie:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الدقة أو الأبعاد:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəqiqlik:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رولوشن:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрозненне:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Резолюция:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "রেজোলিউশন:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolució:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozlišení:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cydraniad:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opløsning:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auflösung:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ανάλυση:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezolucio:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolución:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolución:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolutsioon:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bereizmena:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "وضوح تصویر:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resoluutio:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Résolution :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolución:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "רזולוציה:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिज़ॉल्यूशन:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezolucija:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felbontás:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բանալվածությունը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolusi:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Risoluzione:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "解決法:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გარჩევადობა:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គុណភាពបង្ហាញ៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರೆಸೊಲ್ಯೂಶನ್:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "해상도:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕزلووشن:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kye kimu:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raiška:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izšķirtspēja:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Резолуција:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нягтаршил:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolusi:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အာရုံကြောပါဝင်ချက်:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppløsning:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिजोल्युसन:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolutie:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppløysing:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੈਜ਼ੋਲੂਸ਼ਨ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozdzielczość:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پریکړه:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolução:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolução:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezoluție:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешение:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezolucija:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "විභේදනය:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozlíšenie:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ločljivost:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezolucioni:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Резолуција:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezolucija:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upplösning:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Azimio:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தீர்மானம்:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రిజల్యూషన్:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ความละเอียด:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çözünürlük:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Роздільна здатність:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "قرارداد:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruxsatnoma:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Độ phân giải:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isisombululo:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "分辨率:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解析度:" + } + } + } + }, + "attachmentsSaveError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie lêer stoor nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعذر حفظ الملف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl saxlanıla bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل محفوظ کرنے میں ناکامی ہوئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма захаваць файл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно запазване на файла." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলটি সংরক্ষণ করতে অক্ষম।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot desar el fitxer." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze uložit soubor." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu cadw ffeil." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke gemme fil." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei konnte nicht gespeichert werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία αποθήκευσης του αρχείου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to save file." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas konservi dosieron." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede guardar el archivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede guardar el archivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faili salvestamine ebaõnnestus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin da fitxategia gorde." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از ذخیره کردن فایل." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedoston tallentaminen epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi masave ang file." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible d'enregistrer le fichier." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode gardar o ficheiro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya adana fayil ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לשמור את הקובץ." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइल सेव करने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće spremiti datoteku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fálj mentése sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց պահպանել ֆայլը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat menyimpan berkas." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile salvare il file." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイルを保存できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილის შემნახვა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចរក្សាឯកសារបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತ ಉಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일을 저장할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانرا په‌یڵه‌که‌ خه‌زنه‌ بکات." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kukyusa fayiro." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta įrašyti failo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās saglabāt failu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се зачува датотеката." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл хадгалах боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat menyimpan fail." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်သိမ်းဆည်း၍မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke lagre filen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइल बचत गर्न असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan bestand niet opslaan." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å lagra fila." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kusunga fayilo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਈਲ ਸੇਵ ਕਰਨ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można zapisać pliku." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل خوندي کول نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível salvar o arquivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível guardar o ficheiro." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișierul nu poate fi salvat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно сохранить файл." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće spremiti datoteku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුව සුරැකීම අසාර්ථක විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné uložiť súbor." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke ni mogoče shraniti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’arrin të ruhet kartela." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће сачувати фајл." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće sačuvati datoteku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte spara fil." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kuhifadhi faili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பை சேமிக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైల్‌ని సేవ్ చేయడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกไฟล์ไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya kaydedilemiyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося зберегти файл." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل محفوظ کرنے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faylni saqlay olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể lưu tệp." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kubanakho ukugcinwa kwefayile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法保存文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法儲存檔案。" + } + } + } + }, + "attachmentsSendTo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur aan {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال إلى {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndər: {name}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "په {name} بھگین" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даслаць {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпрати на {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এ পাঠান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envieu-ho a {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslat {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon i {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send til {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "An {name} senden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή σε {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send to {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi al {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar a {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar a {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada kohta {name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidali {name}-ra" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال به {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä yhteystiedolle {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipadala kay {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer à {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar a {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika zuwa {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח אל {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को भेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés neki: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել {name}֊ին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim ke {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invia a {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}に送信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაგზავნა: {name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើទៅកាន់ {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಗೆ ಕಳುಹಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}에게 전송" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بنێرن بۆ {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weereza eri {name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສົ່ງໃຫ້ {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti adresatui {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīt {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати до {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-рүү илгээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar kepada {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ထံသို့ ပို့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send til {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} लाई पठाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzenden naar {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send til {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumizani kwa {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ ਭੇਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij do {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ولیږه {name}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar para {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar para {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimiteți la {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить пользователю {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji u {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} යවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať používateľovi {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji na {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgoje te {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka till {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma kwa {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}க்கு அனுப்பவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}కి పంపించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งไปยัง {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} alıcısına gönder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відправити {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو بھیجیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ga yuboring" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi tới {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela ku {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送给{name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送給 {name}" + } + } + } + }, + "attachmentsTapToDownload" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik om {file_type} af te laai" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انضغط لتنزيل {file_type}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} faylını endirmək üçün toxunun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹنگ دبکانیانی {file_type}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даткніцеся каб загрузіць {file_type}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Докоснете, за да изтеглите {file_type}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ডাউনলোড করতে ট্যাপ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toqueu per descarregar {file_type}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klepněte pro stažení {file_type}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapio i lawrlwytho {file_type}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryk for at downloade {file_type}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tippe, um {file_type} herunterzuladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πατήστε για λήψη {file_type}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap to download {file_type}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frapetu por elŝuti {file_type}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para descargar {file_type}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para descargar {file_type}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puudutage allalaadimiseks {file_type}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} deskargatzeko ukitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بارگیری {file_type} ضربه بزنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa koskettamalla {file_type}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-tap upang i-download ang {file_type}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Touchez pour télécharger {file_type}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para descargar {file_type}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taɓa don sauke {file_type}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לחץ כדי להוריד {file_type}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} डाउनलोड करने के लिए टैप करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite za preuzimanje {file_type}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} letöltéséhez kattints" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հպեք՝ {file_type}֊ը ներբեռնելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekan untuk mengunduh {file_type}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocca per scaricare {file_type}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "タップして{file_type}をダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააჭირეთ ჩამოსატვირთად {file_type}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចុចដើម្បីទាញយក {file_type}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "탭하여 {file_type} 다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بخە لەسر بۆ داگرتنی {file_type}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kikaanyo kukuba {file_type}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bakstelėkite, norėdami atsisiųsti {file_type}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieskaries, lai lejupielādētu {file_type}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Притисни за преземање на {file_type}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Татаж авахын тулд товшоно уу {file_type}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ketuk untuk memuat turun {file_type}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ကို ဒေါင်းလုပ်ရန် တို့ကိုနှိပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk for å laste ned {file_type}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाउनलोड गर्नको लागि थिच्नुहोस् {file_type}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik om {file_type} te downloaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk for å laste ned {file_type}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap to download {file_type}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ {file_type}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknij, aby pobrać {file_type}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټک وکړئ ترڅو {file_type} ډاونلوډ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toque para baixar {file_type}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toque para transferir {file_type}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atingeți pentru a descărca {file_type}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нажмите, чтобы скачать {file_type}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite za preuzimanje {file_type}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} බාගන්නට තට්ටු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliknite pre stiahnutie {file_type}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapnite za prenos {file_type}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliko për të shkarkuar {file_type}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додирните да преузмете {file_type}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite za preuzimanje {file_type}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryck för att ladda ner {file_type}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusa ili kupakua {file_type}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} பதிவிறக்கம் செய்ய தொடுக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} డౌన్‌లోన్ చేయడానికి టాప్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แตะเพื่อดาวน์โหลด {file_type}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndirmek için dokunun {file_type}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натисніть, щоб завантажити {file_type}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{file_type} ڈاؤن لوڈ کرنے کے لئے ٹیپ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklash uchun bosing {file_type}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhấn để tải xuống {file_type}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap to download {file_type}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "点击下载{file_type}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輕觸即可下載 {file_type}" + } + } + } + }, + "attachmentsThisMonth" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie Maand" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذا الشهر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ay" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آئے مہینا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У гэтым месяцы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Този месец" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই মাসে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest mes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento měsíc" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mis yma" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne måned" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diesen Monat" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόν τον μήνα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This Month" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉimonate" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See kuu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilabete Hau" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این ماه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä kuukausi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngayong buwan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce mois-ci" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este Mes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan Watan" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החודש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस महीने" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj mjesec" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebben a hónapban" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս ամիս" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bulan ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo mese" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "今月" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ თვეს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខែនេះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ತಿಂಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이번 달" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم مانگە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omwezi Guno" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šį mėnesį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šomēnes" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овој месец" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ сар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bulan Ini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒီလ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne måneden" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो महिना" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze maand" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne månaden" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwezi Uno" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਮਹੀਨਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ten miesiąc" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا میاشت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este Mês" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este Mês" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luna aceasta" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В этом месяце" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj mjesec" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම මාසය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento mesiac" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta mesec" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Këtë Muaj" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овог месеца" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovog meseca" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna månad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwezi huu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த மாதம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ నెల" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เดือนนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Ay" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цього місяця" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس مہینے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu oy" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tháng này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eli Nyanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "本月" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "本月" + } + } + } + }, + "attachmentsThisWeek" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie Week" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذا الأسبوع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu həftə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہفتہءِ راهی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "На гэтым тыдні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тази седмица" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই সপ্তাহ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquesta setmana" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento týden" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wythnos hon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne uge" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Woche" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτή την εβδομάδα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This Week" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉisemajne" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta semana" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta Semana" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See nädal" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aste Hau" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این هفته" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä viikko" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngayong Linggo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette semaine" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta semana" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan Makon" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השבוע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस सप्ताह" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj tjedan" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezen a héten" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս շաբաթ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minggu ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questa settimana" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "今週" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ კვირაში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សប្តាហ៍នេះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ವಾರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이번주" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم هەفتە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ennaku eno" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šią savaitę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šonedēļ" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа Недела" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ 7 хоногт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minggu Ini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒီတစ်ပတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne uken" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो हप्ता" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze week" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne veka" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabata Iyi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਹਫ਼ਤੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "W tym tygodniu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا اونۍ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta Semana" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta Semana" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Săptămâna aceasta" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "На этой неделе" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ove sedmice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සතිය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento týždeň" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta teden" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Këtë javë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ове седмице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ove nedelje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna vecka" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiki Hii" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த வாரம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ వారం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สัปดาห์นี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Hafta" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цього тижня" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس ہفتے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu hafta" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuần này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esi Veki" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "本周" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "本週" + } + } + } + }, + "attachmentsWarning" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanhegsels wat jy stoor kan deur ander programme op jou toestel verkry word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يمكن للتطبيقات الأخرى على جهازك الوصول إلى المرفقات التي تحفظها." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saxladığınız qoşmalara cihazınızdakı digər tətbiqlər müraciət edə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارجنٹین کی آپ ان اسٹیکچرز دیگر اپلیکیشنز ایی ڈیوائیس پر رسائی کرا سکتے ہیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаваныя далучэнні даступныя для іншых прыкладанняў на вашай прыладзе." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачените файлове, които запазвате, могат да бъдат достъпни от други приложения на вашето устройство." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি যে সংযুক্তিগুলি সংরক্ষণ করেন সেগুলি আপনার যন্ত্রের অন্যান্য অ্যাপ দ্বারা অ্যাক্সেস করা যেতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els adjunts que deses poden ser accessibles per altres aplicacions en el teu dispositiu." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přílohy, které uložíte, mohou být přístupné ostatním aplikacím na vašem zařízení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gall rhaglenni eraill ar eich dyfais gael mynediad at atodiadau rydych chi'n eu cadw." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedhæftninger, du gemmer, kan tilgås af andre apps på din enhed." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wenn du Anhänge speicherst, können andere Apps auf deinem Gerät darauf zugreifen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα συνημμένα που αποθηκεύετε μπορεί να είναι προσβάσιμα από άλλες εφαρμογές στη συσκευή σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments you save can be accessed by other apps on your device." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunsendaĵoj, kiujn vi konservas, povas esti alireblaj de aliaj programoj sur via aparato." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los archivos adjuntos que guardes pueden ser accesibles por otras aplicaciones en tu dispositivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los adjuntos que guardes serán accesibles por otras aplicaciones en tu dispositivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvestatud manuseid on võimalik juurde pääseda teiste rakenduste kaudu teie seadmes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gordetzen dituzun eranskinak gailuko beste aplikazioek ere ikus ditzakete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوست‌هایی که ذخیره می‌کنید قابل دسترسی توسط برنامه‌های دیگر روی دستگاه شما هستند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallentamiasi liitteitä voivat käyttää muut laitteen sovellukset." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang mga isinama mong file ay maaring i-access ng ibang mga apps sa iyong device." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les pièces jointes que vous enregistrez sont accessibles par d'autres applications sur votre appareil." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os anexos que gardes poden ser accesibles por outras aplicacións no teu dispositivo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haɗaɗɗun fayilolin da ka ajiye za a iya samun su ta sauran manhajoji akan na'urarka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבצים מצורפים שתשמור ניתנים לגישה על ידי אפליקציות אחרות במכשיר שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप द्वारा सहेजे गए अटैचमेंट्स को आपके डिवाइस पर अन्य ऐप्स द्वारा एक्सेस किया जा सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privitci koje spremite mogu biti dostupni drugim aplikacijama na vašem uređaju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mentett mellékletekhez más alkalmazások is hozzáférhetnek az eszközödön." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կցորդները կարող են մուտք գործել այն պահելուց հետո ձեր սարքի մյուս հավելվածներում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran yang Anda simpan dapat diakses oleh aplikasi lain di perangkat Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gli allegati che salvi possono essere accessibili da altre applicazioni sul tuo dispositivo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存した添付ファイルはデバイスの他のアプリからアクセス可能です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიმაგრებულ ფაილებს, რომლებიც ინახავთ, შეუძლიათ სავართ მოთავსებული აპლიკაციებით გამოყენება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារភ្ជាប់ដែលអ្នករក្សា អាចត្រូវបានប្រើប្រាស់ដោយកម្មវិធីផ្សេងទៀតនៅលើឧបករណ៍របស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಉಳಿಸುವ ಲಗತ್‌ಗಳನ್ನು ನಿಮ್ಮ ಸಾಧನದ ಇತರ ಅಪ್ಲಿಕೋಶನ್‌ಗಳು ಪ್ರವೇಶಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저장한 첨부파일은 장치의 다른 앱에서도 접근할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوپێچیێکانی دەتوانی بیپارێزی بیگەیشتووە بە کەرتکردن لە ئامرازەکانت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments you save can be accessed by other apps on your device." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເອືອລວາາິິິິິິິິິິິິິິິິິິິິິິິິິິິິິິ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priedai, kuriuos išsaugote, gali būti prieinami kitoms programoms jūsų įrenginyje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabātos pielikumus varēs izmantot citas lietotnes Tavā ierīcē." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилозите што ги зачувувате може да бидат достапни до други апликации на вашиот уред." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та хадгалсан хавсралтуудыг өөрийн төхөөрөмжийн бусад аппликейшнүүдээс орж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lampiran yang anda simpan boleh diakses oleh aplikasi lain pada peranti anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သွင်းထားသော ပူးတွဲပါဖိုင်များကို သင်၏စက်ကိရိယာမှ အခြားအက်ပ်များနှင့် ချိတ်ဆက်လိုက်နာရန်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg du lagrer kan nås av andre apper på enheten din." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले बचत गरेका संलग्नकहरू अन्य अनुप्रयोगहरूद्वारा पहुँचयोग्य हुन सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijlagen die u opslaat, kunnen door andere apps op uw apparaat worden geopend." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedlegg du lagrar, kan bli tilgjengelege for andre appar på eininga di." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maufikira chokwanira mukukweza angafikidwe ndi mapulogalamu ena pa chipangizo chanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਜੋ ਅਟੈਚਮੈਂਟ ਸੇਵ ਕਰਦੇ ਹੋ ਉਹ ਤੁਹਾਡੇ ਜੰਤਰ ਤੇ ਹੋਰ ਐਪਾਂ ਦੁਆਰਾ ਪਹੁੰਚ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisane załączniki mogą być dostępne dla innych aplikacji na urządzeniu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments you save can be accessed by other apps on your device." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexos que você salva podem ser acessados por outros aplicativos no seu dispositivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anexos que você guarda podem ser acedidos por outros aplicativos no seu dispositivo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atașamentele pe care le salvați pot fi accesate de alte aplicații de pe dispozitivul dumneavoastră." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохраненные вами вложения могут быть доступны другим приложениям на вашем устройстве." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilozi koje sačuvaš mogu biti dostupni drugim aplikacijama na tvom uređaju." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ උපාංගයේ ඇති වෙනත් යෙදුම් විසින් සුරැකෙන අමුණුම් පිවිසිය හැකිය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "K prílohám, ktoré uložíte, môžu pristupovať iné aplikácie vo vašom zariadení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priloge, ki jih shranite, so dostopne tudi drugim aplikacijam na vaši napravi." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bashkëngjitjet që ruani mund të aksesohen nga aplikacione të tjera në pajisjen tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прилози које сачувате могу бити доступни другим апликацијама на вашем уређају." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilozi koje sačuvate mogu biti dostupni drugim aplikacijama na vašem uređaju." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilagor du sparar kan nås av andra appar på din enhet." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viambatisho unavyohifadhi vinaweza kufikiwa na programu nyingine kwenye kifaa chako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்கி வைக்கப்பட்ட இணைப்புகளை உங்கள் சாதனத்தின் பிற பயன்பாடுகள் அணுக முடியும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments you save can be accessed by other apps on your device." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์แนบที่คุณบันทึกสามารถเข้าถึงได้โดยแอปอื่นบนอุปกรณ์ของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaydedilen ekler, cihazınızdaki diğer uygulamalar tarafından erişilebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "До збережених вами вкладень можуть мати доступ інші додатки на вашому пристрої." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments you save can be accessed by other apps on your device." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz saqlagan ilovalar boshqa ilovalarga qurilmangizda kirish imkoniyatini beradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tệp đính kèm bạn lưu có thể được truy cập bởi các ứng dụng khác trên thiết bị của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izihombiso ogcina zona zinokufikelelwa ngezinye iinkqubo kwi sixhobo sakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您保存的附件可以被设备上的其他应用访问。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您保存的附件將可以被裝置上的其他應用程式訪問。" + } + } + } + }, + "audio" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صوت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўдыё" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অডিও" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sain" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ήχος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sono" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heli" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audioa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صوت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hang" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Աուդիո" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აუდიო" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오디오" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم پەڕەیە ناوبردنی پەیامی دەنگیەکی تێدایە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສນວາປາມາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garsas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaņa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अडियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthenga Wamawu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਡੀਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Áudio" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvok" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljud" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேட்பொலி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ses" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудіо" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovoz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udiyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "音频" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "音訊" + } + } + } + }, + "audioNoInput" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen klankinvoer gevind nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يوجد ميكروفون" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs girişi tapılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ آوا رسیگ نه بیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знойдзены аудыëвы ўвод" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е открит аудио вход" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো অডিও ইনপুট পাওয়া যায়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha trobat entrada d'àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenalezeny žádné zvukové vstupy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim mewnbwn sain wedi'i ganfod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lydinput fundet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Audioeingabe gefunden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε βρέθηκε είσοδος ήχου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No audio input found" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu sona enigaĵo trovita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontró entrada de audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se detectó dispositivo de entrada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helisisendit ei leitud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da audio sarrerarik aurkitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هيچ ورودی صوتي يافت نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Äänituloa ei löytynyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang audio input ang natagpuan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucune entrée audio trouvée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se atopou entrada de audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu shigarwar sauti da aka samu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא נמצא קלט אודיו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई ऑडियो इनपुट नहीं मिला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije pronađen audio ulaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem található audio bemenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային մուտքագրում չի գտնվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Input audio tidak ditemukan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun ingresso audio trovato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーディオ入力が見つかりません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არ მოიძებნა აუდიო შემავალი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រកមិនឃើញការបញ្ចូលអូឌីយ៉ូ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ಇನ್ಪುಟ್ ಕಂಡುಬಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오디오 입력을 찾을 수 없습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ چەندەری دەنگی نەدۆزرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezirangiddwa ku audio input" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nerasta garso įvesties" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav atrasta audio ievade" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е пронајден влез за звук" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио оролт олдсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada input audio dijumpai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံမရှိသော အချက်အလက်ရှင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lyd-inndataenhet funnet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै अडियो इनपुट फेला परेन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen audio-invoer gevonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lyd-inndataenhet funnet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Chiyankho Chowonjezera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਆਡੀਓ ਇਨਪੁਟ ਨਹੀਂ ਲੱਭੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie znaleziono urządzenia wejściowego audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ غږیز داخله ونه موندل شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuma entrada de áudio encontrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi encontrada a entrada de áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a detectat nicio sursă audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудиовход не найден" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema audio ulaza" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය ආදානයක් හමු නොවීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenašiel sa žiadny zvukový vstup" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni zvočnega vhoda" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u gjet pajisje zanore hyrëse" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема аудио улаза" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije pronađen audio ulaz" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen ljudinmatning hittades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna maingizo ya sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒலி உள்ளீடு இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మైక్రోఫోన్ కనుగొనబడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบแหล่งป้อนเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ses girişi bulunamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знайдено мікрофон" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو ان پٹ نہیں ملا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio kirish yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy đầu vào âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kufakwa kweaudiyo okufunyenweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到音频输入" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到音訊輸入裝置" + } + } + } + }, + "audioNoOutput" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen klankuitvoer gevind nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يوجد سماعات أو مكبر صوت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs çıxışı tapılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ آوا دیداگر نه بیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знойдзены аудыëвы вывад" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е открит аудио изход" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো অডিও আউটপুট পাওয়া যায়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha trobat sortida d'àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenalezeny žádné zvukové výstupy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim allbwn sain wedi'i ganfod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lydoutput fundet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Audioausgabe gefunden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε βρέθηκε έξοδος ήχου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No audio output found" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu sona eligaĵo trovita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontró salida de audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontró dispositivo de salida" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heliväljundit ei leitud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da audio irteerarik aurkitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خروجی صوتی پیدا نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Äänilähtöä ei löytynyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang audio output ang natagpuan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucune sortie audio trouvée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se atopou saída de audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu samuwar fituwar sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא נמצא פלט אודיו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई ऑडियो आउटपुट नहीं मिला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije pronađen audio izlaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem található audio kimenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային ելք չի գտնվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Output audio tidak ditemukan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessuna uscita audio trovata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーディオ出力が見つかりません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არ მოიძებნა აუდიო გამავალი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រកមិនឃើញឧបករណ៍បញ្ចេញអូឌីយ៉ូ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ಔಟ್‌ಪುಟ್‌ ಕಂಡುಬಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오디오 장치를 찾을 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ چەندەری دەنگی نەدۆزرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezirangiddwa ku audio output" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nerasta garso išvesties" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav atrasta audio izvade" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е пронајден излез за звук" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио гаргалт олдсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada output audio dijumpai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံမရှိသော စနစ်ထုတ်လွှ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lydutangsenhet funnet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै अडियो आउटपुट फेला परेन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen audio-uitvoer gevonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen lydutgangsenhet funnet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Chotulutsa Mwimbo Chowonjezera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਆਡੀਓ ਆਉਟਪੁਟ ਨਹੀਂ ਲੱਭੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie znaleziono urządzenia wyjściowego audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ غږیز محصول ونه موندل شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuma saída de áudio encontrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi encontrada a saída de áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a detectat nicio ieșire audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудиовыход не найден" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema audio izlaza" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය ප්‍රතිදානයක් හමු නොවීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenašiel sa žiadny zvukový výstup" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni zvočnega izhoda" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u gjet pajisje zanore dalëse" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема аудио излаза" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije pronađen audio izlaz" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen ljudutmatning hittades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna matokeo ya sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒலி வெளியீடு இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అధ్భుతమైనది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบแหล่งส่งออกเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ses çıkışı bulunamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знайдено навушників" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو آؤٹ پٹ نہیں ملا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio chiqish yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy đầu ra âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kuputhwa kweaudiyo okufunyenweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到音频输出" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到音訊輸出裝置" + } + } + } + }, + "audioUnableToPlay" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie lêer speel nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "غير قادر على تشغيل ملف الصوت." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs faylı oxudula bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو فائل بجانے میں ناکامی ہوئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма прайграць аўдыя файл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно възпроизвеждане на аудиофайл." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অডিও ফাইল চালাতে অক্ষম।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot reproduir el fitxer d'àudio." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze přehrát audio soubor." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu chwarae ffeil sain." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke afspille lydfil." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audiowiedergabe fehlgeschlagen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε μπορεί να αναπαραχθεί το αρχείο ήχου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to play audio file." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas ludi sonoraĵon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede reproducir el archivo de audio." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede reproducir el archivo de audio." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helifaili mängimine ebaõnnestus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin da audio-fitxategia erreproduzitu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از پخش کردن فایل صوتی." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Äänitiedoston toisto epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ma-play ang audio file." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de lire le fichier audio." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode reproducir o ficheiro de audio." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya kunna fayil ɗin sauti ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן להשמיע קובץ שמע." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो फाइल चलाने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reproducirati audio datoteku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangfájl lejátszása sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց նվագարկել ձայնային ֆայլը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memutar berkas audio." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile riprodurre il file audio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーディオファイルを再生できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აუდიო ფაილის დაკვრა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចរំកិលឯកសារសំឡេងបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ಕಡತ ಆಟವಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오디오 파일을 재생할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانرا په‌یڵى ئاودیو بکرێته‌وه‌." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kuzza fayiro y'amaloboozi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta paleisti garso failo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar atskaņot audio failu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се пушти аудио датотеката." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио файл тоглуулах боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memainkan fail audio." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံဖိုင်ဖွင့်၍မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke spille av lydfil." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अडियो फाइल प्ले गर्न असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan audiobestand niet afspelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å spela av lydfila." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kusewera fayilo ya zomveka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਡੀਓ ਫਾਈਲ ਚਲਾਉਣ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można odtworzyć pliku audio." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د آډیو فایل غږول نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reproduzir o arquivo de áudio." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reproduzir o ficheiro de áudio." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișierul audio nu poate fi redat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно воспроизвести аудиофайл." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reprodukovati audio datoteku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය ගොනුව පවසන්නට නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné prehrať zvukový súbor." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvočne datoteke ni mogoče predvajati." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u arrit të luhet kartela audio." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће репродуковати аудио фајл." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reprodukovati audio datoteku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte spela upp ljudfil." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kucheza faili ya sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆடியோ கோப்பை இயக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో ఫైల్ ప్లే చేయడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เล่นไฟล์เสียงไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ses dosyası çalınamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося відтворити аудіофайл." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو فائل چلانے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli faylni ijro eta olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể phát tệp âm thanh." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayikwazi ukudlala ifayile yeaudio." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法播放音频文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法播放音訊檔。" + } + } + } + }, + "audioUnableToRecord" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie klank opneem nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعذر تسجيل الصوت." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs yazıla bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو ریکارڈ کرنے میں ناکامی ہوئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося запісаць аўдыя." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да бъде записано аудио." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অডিও রেকর্ড করা সম্ভব হয়নি!" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut enregistrar l'àudio." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze nahrávat audio." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu recordio sain." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fejl ved lydoptagelse." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audioaufnahme nicht möglich." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν είναι δυνατή η εγγραφή ήχου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to record audio." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas registri sonaĵon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede grabar el audio." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se ha podido grabar la nota de voz." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heli salvestamine nurjus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin da audioa grabatu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "امکان ضبط صدا وجود ندارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Äänen nauhoitus epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ma-record ang audio." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible d'enregistrer du son." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non é posible gravar audio." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya yin rikodin sauti ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא היה ניתן להקליט שמע." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो रिकॉर्ड करने में अस्मर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće snimiti audio." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangfelvétel sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ձայնագրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat merekam suara." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile registrare il messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーディオを録音できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აუდიოს ჩაწერა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចថតសំឡេងបាន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ರೆಕಾರ್ಡ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오디오를 녹음할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرا فایلی ئاودیو تۆمار بکات." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kuwereza amaloboozi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta įrašyti garso." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdodas ierakstīt audio." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се сними аудио." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио бичих боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat merakam audio." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံသွင်းမရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke ta opp lyd." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अडियो रेकर्ड गर्न असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan audio niet opnemen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å ta opp lyd." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kulemba zomveka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਡੀਓ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się nagrać dźwięku." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آډیو ثبتول نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível gravar áudio." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível gravar áudio." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Înregistrarea audio nu este posibilă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно записать аудио." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće snimati svuk." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය පටිගත කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemôžem zaznamenať zvuk." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni mogoče posneti zvoka." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’arrin të incizohet audio." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не могу да снимим звук." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće snimiti audio." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan inte spela in ljud." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kurekodi sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆடியோ பதிவு செய்ய முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో రికార్డ్ చేయడం సాధ్యపడలేదు!" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกเสียงไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ses kaydedilemedi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося записати аудіо." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو ریکارڈ کرنے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli yozuvni qayd eta olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể ghi âm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kubanakho ukubamba isandi." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法录音。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法錄製音訊。" + } + } + } + }, + "authenticateFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifikasie Misluk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في المصادقة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulama uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق ناکام." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося ідэнтыфікавацца" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възникна грешка при отключването" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রমাণীকরণ ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentificació fallida" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ověření se nezdařilo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddim yn ddilysu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Godkendelse mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifizierung gescheitert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο Έλεγχος Ταυτότητας Απέτυχε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication Failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtentigo malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al identificarse" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al identificarse" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentimine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikazioa huts eginda" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "احراز هویت ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunnistautuminen epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang Pag-authenticate" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec d’authentification" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallou a autenticación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toshewar ya gaza" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ההזדהות נכשלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रमाणीकरण विफल रहा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješna autentifikacija" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitelesítés sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անվավերագրումը ձախողվեց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentikasi gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticazione fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "認証失敗" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ მოხერხდა ავღიარება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ទៀងផ្ទាត់បរាជ័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಹಿರಂಗಮೂಲ್ಯತೆಯ ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندینەکراو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication Failed" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການຢືນຢັນຕົວຕົນລົ້ມເເຫລວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikācija neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автентикацијата не успеа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Баталгаажуулалт амжилтгүй боллоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengesahan Gagal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အတည်ပြုမှု မအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentisering mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रमाणिकरण असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificatie mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifisering mislyktes" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kugwira Ntchito Kolephera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਮਾਣਿਕਤਾ ਫੇਲ੍ਹ ਹੋ ਗਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uwierzytelnianie się nie powiodło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication Failed" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha na Autenticação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Autenticação Falhou" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentificare eșuată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка аутентификации" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nije uspela" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සත්‍යාපනය අසාර්ථක විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overenie zlyhalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preverjanje spodletelo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi autentifikimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутентификација није успела" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nije uspela" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentisering misslyckades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthibitishaji Umeshindwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அங்கீகாரம் தோல்வியடைந்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ధృవీకరణ విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจสอบสิทธิ์ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik Doğrulama Başarısız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка автентифікації" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication Failed" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikatsiya muvaffaqiyatsiz bo'ldi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xác thực thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukungelelanisa akwenzekanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "认证失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "驗證失敗" + } + } + } + }, + "authenticateFailedTooManyAttempts" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te veel mislukte verifikasie pogings. Probeer asseblief later weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عدد كبير جدًا من محاولات التحقق الفاشلة. يرجى المحاولة مرة أخرى لاحقًا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Həddən artıq kimlik doğrulama cəhdi uğursuz oldu. Lütfən daha sonra yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتہائی زیادہ ناکام شدہ تصدیقی کوششیں. براہ کرم بعد میں دوبارہ کوشش کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Занадта шмат няўдалых спроб аўтэнтыфікацыі. Калі ласка, паспрабуйце пазней." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Твърде много неуспешни опити за удостоверяване. Моля, опитайте отново по-късно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অনেকগুলি অসফল প্রমাণীকরণ প্রচেষ্টা. দয়া করে পরে আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi ha massa intents d'autenticació fallits. Siusplau, intenta-ho més tard." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Příliš mnoho neúspěšných pokusů o ověření. Zkuste to prosím později." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gormod o ymdrechion dilysu aflwyddiannus. Rhowch gynnig arall arni yn ddiweddarach os gwelwch yn dda." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "For mange mislykkede godkendelsesforsøg. Prøv venligst senere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu viele fehlgeschlagene Authentifizierungsversuche. Bitte versuche es später erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πάρα πολλές αποτυχημένες προσπάθειες ταυτοποίησης. Παρακαλώ προσπαθήστε ξανά αργότερα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many failed authentication attempts. Please try again later." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tro multaj malsukcesaj provojn de aŭtentikigo. Bonvolu reprovi poste." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hubo demasiados intentos fallidos de autenticación. Por favor vuelve a intentarlo más tarde." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hubo demasiados intentos fallidos de autenticación. Por favor vuelve a intentarlo más tarde." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liiga palju nurjunud autentimiskatseid. Palun proovige hiljem uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hainbat autentifikazio saiakera huts egin dira. Saiatu berriro geroago." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "چندین احراز هویت ناموفق رخ داد. لطفا بعدا تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liian monta epäonnistunutta todennusyritystä. Yritä myöhemmin uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masyadong maraming bigong pagtatangka ng pag-authenticate. Paki-subukan muli sa ibang pagkakataon." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trop d’échecs de tentatives d’authentification. Veuillez ressayer ultérieurement." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demasiados intentos de autentificación fallidos. Por favor, tenta de novo máis tarde." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙoƙarin Tantancewar Yayi yawa da ya gaza. Da fatan a sake gwadawa daga baya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יותר מדי ניסיונות אימות כושלים. אנא נסה שוב מאוחר יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many failed authentication attempts. Please try again later." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previše neuspjelih pokušaja autentifikacije. Pokušajte ponovno kasnije." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Túl sok sikertelen próbálkozás. Próbáld újra később!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չափից շատ չհաջողված նույնականացման փորձեր. Խնդրում եմ փորձեք նորից ավելի ուշ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terlalu banyak upaya autentikasi yang gagal. Silakan coba lagi nanti." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Troppi tentativi di autenticazione falliti. Riprova più tardi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ログイン試行回数を超えました。しばらくして再度お試しください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ მოგაღწევთ ბევრი მცდელობა შეყვანის არასწორად. გთხოვთ სცადოთ მოგვიანებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many failed authentication attempts. Please try again later." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅತ್ಯಂತ ವಿಫಲವಾದ ದೃಢೀಕರಣ ಪ್ರಯತ್ನಗಳು. ದಯವಿಟ್ಟು ನಂತರ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 시도가 너무 많습니다. 나중에 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەوڵی زۆرکراو بۆ دروستكردنی خەته‌. تکایە دواتر هەوڵبدە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okwegata kungi mu koleero y'okutuusa kizanyiriji. Kebera lowooza edaako." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per daug nesėkmingų autentifikacijos bandymų. Bandykite vėliau." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pārāk daudz neveiksmīgu autentifikācijas mēģinājumu. Lūdzu, mēģiniet vēlreiz vēlāk." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премногу неуспешни обиди за автентикација. Обидете се повторно подоцна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэт олон нэвтрэх оролдлого хийсэн байна. Дараа нь дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terlalu banyak percubaan pengesahan yang gagal. Sila cuba lagi nanti." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လုံခြုံရေး စမ်းသပ်မှု အကြိမ်များ မပြည်မီခဲ့ပါ။ ကျေးဇူးပြု၍ နောက်မှ ပြန်စမ်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "For mange mislykkede autentiseringsforsøk. Prøv igjen senere." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "धेरै पटक असफल प्रमाणीकरण प्रयासहरू। कृपया पछि पुन: प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te veel mislukte authenticatiepogingen. Probeer het later opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "For mange mislykkede autentiseringsforsøk. Prøv igjen senere." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwayesera kwambiri kulowetsa mawu achinsinsi. Chonde yesanipo kachiwiri." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬਹੁਤ ਜ਼ਿਆਦਾ ਅਸਫਲ ਪਛਾਣ ਪ੍ਰਯਾਸ। ਕ੍ਰਿਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbyt wiele nieudanych prób uwierzytelnienia. Spróbuj ponownie później." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیر ناکامه پیژندنې هڅې. مهرباني وکړئ وروسته بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você excedeu o número máximo permitido de tentativas de autenticação. Por favor, tente novamente mais tarde." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demasiadas tentativas falhadas. Por favor, tente novamente mais tarde." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prea multe încercări de autentificare eșuate. Vă rugăm să încercați din nou mai târziu." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слишком много неудачных попыток аутентификации. Пожалуйста, повторите попытку позже." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previše neuspjelih pokušaja autentifikacije. Pokušajte ponovo kasnije." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අසාර්ථක 인증 시도 බොහෝ ඇත. කරුණාකර පසුව උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Príliš veľa neúspešných pokusov o overenie. Skúste to prosím neskôr." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preveč neuspešnih poskusov preverjanja pristnosti. Poskusite znova kasneje." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shumë përpjekje të pasuksesshme për t'u autentikuar. Ju lutem provoni më vonë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Превише неуспелих покушаја аутентификације. Покушајте поново касније." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previše neuspešnih pokušaja autentifikacije. Molimo pokušajte ponovo kasnije." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "För många misslyckade autentiseringsförsök. Försök igen senare." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Majaribio mengi ya uthibitishaji yamefeli. Tafadhali jaribu tena baadaye." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மிகவும் நிறைவற்ற ஆளாக்க முயற்சிகள். தயவுசெய்து பின்னர் மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చాలా ఎక్కువ ఫెయిల్డ్ ఆథెంటికేషన్ ప్రయత్నాలు. దయచేసి తరువాత మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ความพยายามในการรับรองความถูกต้องล้มเหลวจำนวนมาก กรุณาลองใหม่ภายหลัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çok fazla başarısız kimlik doğrulama denemesi. Lütfen daha sonra tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забагато невдалих спроб автентифікації. Будь ласка, спробуйте ще раз пізніше." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بہت زیادہ ناکام تصدیقی کوششیں۔ براہ کرم بعد میں دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticate muvaffaqiyatsiz urinishlar ortiqcha. Keyinroq qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quá nhiều lần xác thực không thành công. Vui lòng thử lại sau." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imizamo eninzi yokulinganisa iyasilela. Nceda uzame kwakhona kamva." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "认证失败次数过多,请稍后再试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "多次身份驗證失敗。請稍後重試。" + } + } + } + }, + "authenticateNotAccessed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifikasie kon nie verkry word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعذر الوصول إلى المصادقة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulamaya müraciət edilə bilmədi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق نہ تکنل." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма доступу да аўтэнтыфікацыі." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешен достъп до идентификацията." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রমাণীকরণ করা সম্ভব হয়নি।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut accedir a l'autenticació." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "K ověření nebylo možné přistoupit." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ellir cyrchu'ad-ddo dilysu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Godkendelse kunne ikke tilgås." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifizierung konnte nicht abgerufen werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν ήταν δυνατή η πρόσβαση στον έλεγχο ταυτότητας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication could not be accessed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtentigo ne povis esti alirita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se ha podido acceder a la autenticación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo acceder a la autenticación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentimist ei õnnestunud pääseda." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikazioa ezin izan da lortu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دسترسی به احراز هویت امکان‌پذیر نبود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todennustapaa ei tavoitettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ma-access ang pag-authenticate." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible d’accéder à l’authentification." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido acceder á autenticación." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a samun damar toshewar ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האימות לא נגיש." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रमाणीकरण तक नहीं पहुंचा जा सका।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nije pristupna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A hitelesítés nem elérhető." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անվավերագրումը չի կարող գործել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentikasi tidak dapat diakses." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile accedere all'autenticazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "認証にアクセスできませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ мөмкин პირობაცარო яვღაირებებაზე." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចចូលដំណើរការផ្ទៀងផ្ទាត់ឈ្មោះបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಹಿರಂಗಮೂಲ್ಯತೆಯನ್ನು ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증에 접근할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانست ڕیکلامەکان بەنداویەتی بکات." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication could not be accessed." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດເຂົ້າເຖິງການຢືນຢັນຕົວຕົນໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nepavyko." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikāciju neizdevās piekļūt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автентикацијата не можеше да се пристапи." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Баталгаажуулалтыг ашиглаж чадсангүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengesahan tidak dapat diakses." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အတည်ပြုမရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke få tilgang til autentisering." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रमाणिकरण पहुँच गर्न सकिएन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificatie kon niet worden benaderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikkje få tilgang til autentiseringsfunksjonaliteten." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kulephera kutsimikizira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਮਾਣਿਕਤਾ ਤੱਕ ਪਹੁੰਚ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można uzyskać dostępu do uwierzytelniania." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication could not be accessed." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível acessar a autenticação." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível aceder à Autenticação." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentificarea nu a putut fi accesată." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось получить доступ к аутентификации." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nije dostupna." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සත්‍යාපනය කළ නොහැකිවුණි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "K overeniu nebolo možné získať prístup." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preverjanje ni bilo mogoče dostopati." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikimi nuk mund të arrihej." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутентификација није успела." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikacija nije pristupačna." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentisering kunde inte nås." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthibitishaji haukupatikana." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அங்கீகாரம் பெறப்படவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ధృవీకరణకు ప్రాప్యత సాధ్యం కాలేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเข้าถึงการตรวจสอบสิทธิ์ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulamasına erişilemedi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немає доступу до автентифікації." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق تک رسائی نہیں ہو سکی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikatsiyaga kirish mumkin emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể truy cập xác thực." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubhaliso alukhange lufumaneke." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法访问身份验证。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法訪問身份驗證。" + } + } + } + }, + "authenticateToOpen" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifieer om {app_name} oop te maak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قم بالمصادقة لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqini açmaq üçün kimliyinizi doğrulayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کھولنے کی تصدیق کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтэнтыфікацыя для адкрыцця {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идентифицирайте се за да отключите {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} খুলতে প্রমাণীকরণ করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticar-se per obrir {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ověření pro otevření {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dilysu i agor {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Godkend for at åbne {app_name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifizieren, um {app_name} zu öffnen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πραγματοποιήστε έλεγχο ταυτότητας για να ανοίξετε το {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticate to open {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtentigi por malfermi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticarse para abrir {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticar para abrir {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autendi {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} irekitzeko autentifikatu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای باز کردن {app_name} احراز هویت کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunnistaudu avataksesi {app_name}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mag-authenticate upang mabuksan ang {app_name} ." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifiez-vous pour ouvrir {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticar para abrir {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bincike don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזדהה כדי לפתוח את {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} खोलने के लिए प्रमाणीकरण करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentificirajte se kako biste otvorili {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitelesítés szükséges a {app_name} alkalmazás megnyitásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անվավերագրման համար մուտք գործեք {app_name}." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentikasi untuk membuka {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esegui l'autenticazione per accadere a {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}の起動認証" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაიარეთ ააღიარება {app_name}-ს გასახსნელად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ទៀងផ្ទាត់ដើម្បីបើក {app_name} ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ತೆರೆಯಲು ವಿಧೇಯವಾಯಿತು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}을 열려면 인증하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەستێنە بۆ کردنەوەی {app_name}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticate to open {app_name}." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຢືນຢັນຕົວຕົນເພື່ອເປີດ {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikuotis, kad atidarytumėte {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentificēties, lai atvērtu {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутентицирајте се за да го отворите {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ийг нээхийн тулд баталгаажуулаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sahkan untuk membuka {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ဖွင့်ရန် အတည်ပြုပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoriser for å åpne {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} खोल्न प्रमाणिकम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifieer om {app_name} te openen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentiser for å åpne {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsimikizani kuti mutsegule {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਖੋਲ੍ਹਣ ਲਈ ਪ੍ਰਮਾਣਿਕਤਾ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uwierzytelnij, aby otworzyć aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticate to open {app_name}." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentique-se para abrir {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentique para abrir {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifică-te pentru a deschide {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизуйтесь для открытия {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikujte se za otvaranje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} විවෘත කිරීමට සත්‍යාපනය කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pre otvorenie {app_name} potvrďte svoju totožnosť." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overite, da odprete {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikohuni për të hapur {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутентификујте се да отворите {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentifikujte se da biste otvorili {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autentisera för att öppna {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thibitisha kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ே திறக்க அங்கீகாரத்தை உறுதிசெய்யவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} తెరవడానికి ధృవీకరించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยืนยันตัวตนเพื่อเปิด {app_name}." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}’ı açmak için kimlik doğrulaması yapın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автентифікуйтесь для відкриття {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کھولنے کے لیے مستند بنائیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ni ochish uchun autentifikatsiya qiling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xác thực để mở {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qinisekisa ukuvula {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "验证以打开{app_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "驗證以打開 {app_name}。" + } + } + } + }, + "back" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terug" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رجوع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیچھے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обратно" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পিছনে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enrere" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpět" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn ôl" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilbage" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zurück" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πίσω" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Back" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reen" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atrás" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atrás" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tagasi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Back" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بازگشت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takaisin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Back" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retour" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atrás" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חזרה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पीछे" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Natrag" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vissza" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հետ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kembali" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indietro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "戻る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უკან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ថយក្រោយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಿಂದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "뒤로" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاشەکەوت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Back" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກັບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atgal" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atpakaļ" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Буцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kembali" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်သွားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilbake" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फिर्ता" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terug" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilbake" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Back" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਾਪਸ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powrót" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "شاته" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voltar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voltar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Înapoi" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazad" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආපසු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Späť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kthehu" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazad" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillbaka" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rudi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் செல்ல" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వెనుకకు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "واپس" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Orqaga" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quay lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emuva" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "返回" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "返回" + } + } + } + }, + "banDeleteAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer en Skrap Alles" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حظر وحذف الكل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamısını yasaqla və sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب کو پابندی لگائیں اور حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблакіраваць і выдаліць усе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забрани и изтрий всичко" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যান এবং সব মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prohibiu i elimineu-ho tot" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokovat a smazat vše" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahardd a Dileu Pob Un" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloker og Slet Alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sperren und alles löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποκλεισμός και Διαγραφή Όλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban and Delete All" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi kaj forviŝi ĉiujn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear y Borrar todo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banear y eliminar todo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeri ja kustuta kõik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban and Delete All" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود و پاک کردن همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estä ja Poista kaikki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipagbawal at tanggalin lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannir et supprimer tout" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear e eliminar todo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanawa da Goge Duk" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חסום ומחק הכול" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी को प्रतिबंधित करें और हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani i izbriši sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitiltás és üzenetek törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելել և ջնջել ամբողջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Larang dan hapus semua" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi ed elimina tutto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "禁止してすべてを削除する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკეთ და წაშალეთ ყველა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ហាមឃាត់ និងលុបទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಿಲಂಬಿಸಿ ಅಳಿಸಿ ಎಲ್ಲಾ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단 및 전부 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەسەڵاتدانُو پاشەکەوت بە کەسی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban and Delete All" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຊະນະແລະລົບທັງໝົດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draudimas ir ištrinti viską" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aizliegt un izdzēst visu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забрани и избриши се" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хориглох ба Бүгдийг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekat dan Padam Semua" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိတ်ဆို့ပြီး အားလုံးကို ‌ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utesteng og slett alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बन्द गर र सबै मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer en verwijder alles" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utesteng og slett alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban and Delete All" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬੈਨ ਕਰੋ ਅਤੇ ਸਭ ਕੁਝ ਮਿਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj dostęp i usuń wszystko" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بندیز او ټول حذف کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banir e Apagar Tudo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banir e Apagar Todos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banează și Șterge Tot" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забанить и удалить всё" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani i ukloni sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියල්ල තහනම් කර මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakázať a vymazať všetko" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prepovej in izbriši vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dëbo dhe fshij të gjitha" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај корисника и обриши све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani i izbriši sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannlys och radera alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piga marufuku na ufute wote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்கு மற்றும் எல்லாவற்றையும் காப்பாற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిషేధించు మరియు అన్ని తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบนและลบทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tümünü Engelle ve Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати до чорного списку та видалити всіх" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بین اور سب کو حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Surgun qil va o'ldirvor" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cấm và Xoá toàn bộ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vimba kwaye Ucime Konke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "全部禁言并删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖並刪除所有" + } + } + } + }, + "banErrorFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer het gefaal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل المنع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yasaqlama uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پابندی ناکام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося заблакіраваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно забраняване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যান ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejar usuari fallit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokování selhalo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd gwahardd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandlys mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sperren fehlgeschlagen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο αποκλεισμός απέτυχε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malpermeso malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueo fallido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Bloqueo fallido!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeerimine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban failed" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود کردن ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang pagbawal" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le bannissement a échoué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao bloquear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanawa ta kasa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החסימה נכשלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतिबंध असफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrana nije uspjela" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A kitiltás sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելքը ձախողվեց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Larang gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimozione fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "禁止に失敗しました!" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკვა ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ហាមឃាត់មិនបានសម្រេច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಿಲಂಬಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەردەست نەبوون" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban failed" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການຫ້າມທຳອິດສຳໄສ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draudimas nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aizliegšana neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забраната неуспешна" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хориглолт бүтэлгүй болов" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekatan Gagal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိတ်ဆို့မှု မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utestengelse mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बन्द असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeren mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utestenging mislykka" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban failed" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬੈਨ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zablokować dostępu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بندیز ناکام شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banimento falhou" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banimento falhou" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Interdicţie eșuată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось забанить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrana nije uspjela" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තහනම අසාර්ථකයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakázanie zlyhalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prepoved ni uspela" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u arrit dëbimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирање није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrana nije uspela" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannlysning misslyckades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupiga marufuku kumeshindikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தடை தோல்வியுற்றது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిషేధం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแบนล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engelleme başarısız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося додати до чорного списку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بین ناکام ہوا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Surgunlik vaqtida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ cấm thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvimbelo aluphumelelanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "禁言失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖失敗" + } + } + } + }, + "banUnbanErrorFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unban het misluk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقد فشل الغاء المنع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yasağı götürmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ان بین ناکام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася зняць забарону" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Деблокирането не бе успешно" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনব্যান ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquejament fallit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokování selhalo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd â dileu'r gwaharddiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afvisning mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied konnte nicht entsperrt werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η κατάργηση αποκλεισμού απέτυχε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unban failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "La malpermesado malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Desbloqueo fallido!" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Error al desbloquear!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeringu tühistamine nurjus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin da desblokeo egin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر مسدود کردن شکست خورد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän eston poisto epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang pag-unban" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le débannissement a échoué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueo fallido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasa cire takunkumi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ביטול חסימה נכשל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनबैन विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokada nije uspjela" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A kitiltás feloldása sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելահանումը չհաջողվեց:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus cekal gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sblocco fallito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "禁止解除に失敗しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმება ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ហាមឃាត់តមិនបានសម្រេច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್ಬ್ಯಾನ್ ವಿಫಲವಾಯಿತು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단 해제 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی بەرچاو ناکام بوو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakusalubirizza kusazaamu muntu yeekibye" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atblokavimas nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbloķēšana neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на забраната." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргэлт амжилтгүй боллоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat membatalkan sekatan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အနားပေးမှုမအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppheving av utestengelse mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनब्यान असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokkeren mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppheving av utestengelse mislyktes" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuchotsa loletsedwa kunalephereka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਬੈਨ ਫੇਲ੍ਹ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokowanie dostępu się nie powiodło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بې بندیز کول ناکام شول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbanimento falhou" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha no cancelamento de expulsão" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la ridicarea interdicției" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось разблокировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje zabrane nije uspjelo" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තහනම් කිරීම අසාර්ථක විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zlyhalo zrušenie zákazu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odklepanje ni uspelo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deshtim zhbllokimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при уклањању блокаде" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesupešno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obannlysning misslyckades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uondoshaji umeshindikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விடுதலையை விதிக்க முடியவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనుమతించడం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกแบนไม่สำเร็จ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engelini kaldırma başarısız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити з чорного списку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ان بین ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Af qilinmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ cấm thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukususwa kwesirhoxo akuphumelelanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "解封失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解除封鎖失敗" + } + } + } + }, + "banUnbanUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder Ban" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الغاء منع المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçi yasağını götür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوزر ان بین کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зняць забарону карыстальніка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разбанване на потребител" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইউজার আনব্যান করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquejar usuari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokovat uživatele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dadwahardd Defnyddiwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afvis Bruger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied entsperren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κατάργηση Αποκλεισμού Χρήστη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unban User" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Repermesi al uzanto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear usuario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear usuario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühista blokeering" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzailea desblokeatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر مسدود کردن کاربر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista käyttäjän esto" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unban ang User" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Débannir l'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear usuario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire takunkumi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל חסימה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता अनबैन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokiraj korisnika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó kitiltásának feloldása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելահանել օգտատիրոջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus cekal pengguna" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sblocca utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーの禁止解除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლის გაუქმება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈប់ហាមឃាត់អ្នកប្រើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರನನ್ನು ಅನ್ಬ್ಯಾನ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 금지 해제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەکارهێنەر لابردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sazaamu Omukozesa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atblokuoti naudotoją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbloķēt lietotāju" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани забрана за корисникот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг сэргээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batal Sekatan Pengguna" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူအနားပေးမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev utestengelse av bruker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता अनब्यान गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker deblokkeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev utestengelse av bruker" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Loletsedwa Wogwiritsa Ntchito" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਨੂੰ ਅਨਬੈਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokuj użytkownikowi dostęp" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارن بې بندیز کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbanir Usuário" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restaurar utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scoate interdicția utilizatorului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблокировать пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni zabranu korisniku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක තහනම ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušiť zákaz používateľa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokiraj uporabnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhbllokoje Përdoruesin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирај корисника" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokiraj korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avbannlys användaren" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa marufuku kwa Mtumiaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேகரத்தை நீக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాడుకరిని అనుమతించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกแบนผู้ใช้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı Engelini Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувача з чорного списку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو ان بین کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kishini af qil" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ cấm người dùng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa umsebenzisi osusiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "解封用户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解除封鎖用戶" + } + } + } + }, + "banUnbanUserUnbanned" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker verban opgehef" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم رفع الحظر عن المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçi yasağı götürüldü" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف غیر پابند" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Карыстальнік разблакіраваны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребителят беше отблокиран" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইউজার আনব্যান করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuari desbloquejat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uživatel odblokován" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defnyddiwr wedi cael ei ddadwahardd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruger godkendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied entsperrt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο αποκλεισμός χρήστη καταργήθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "User unbanned" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzanto repermisita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario desbloqueado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario desbloqueado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasutaja blokeering tühistatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzailea debekatu gabea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربر آزاد شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän esto poistettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "User unbanned" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilisateur débanni" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario desbloqueado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mai amfani ya sami izini" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "משתמש הוסר מהחסימה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता अनबैन किया गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik deblokiran" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitiltás feloldva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտատիրոջ արգելափակումը հանվել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna tidak diblokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utente sbloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーの禁止解除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლის დაბლოკვა მოხსნილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានឈប់ហាមឃាត់អ្នកប្រើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರು ಅನ್ಬಾನ್ಕಾರನು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 금지 해제됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەکارهێنەر نابەری" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omukozesa asazibwaamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vartotojas atblokuotas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietotājs atbloķēts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисникот е одблокиран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийн сэргэлтийг гаргасан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna dibatalkan sekatan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူကိုဖြေပေး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruker utestengelse opphevet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता प्रतिबन्ध हटाइयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker gedeblokkeerd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brukar oppheva" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Munthu wosatsekedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਅਨਬੈਨ ਕੀਤਾ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokowano użytkownikowi dostęp" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارن بېبندیز شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuário desbanido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizador restaurado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizatorului i s-a permis accesul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пользователь разбанен" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik je deblokiran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක තහනම ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Používateľ odblokovaný" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uporabnik je odblokiran" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdoruesi u zhbllokua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисник је одблокиран." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik odblokiran" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Användare avbannlyst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtumiaji ameondolewa marufuku" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனர் தடை நீக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాడుకరిని నిషేధం నుండి విడుదల చేశారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกแบนผู้ใช้แล้ว." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcının engeli kaldırıldı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користувача розблоковано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کا بین ختم۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchi Surgunlikdan chiqarilishi tasdiqlandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Người dùng được bỏ cấm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umsebenzisi orhoxisiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "用户已被解封" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已解除封鎖用戶" + } + } + } + }, + "banUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer Gebruiker" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حظر المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçini yasaqla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو پابندی لگائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забараніць карыстальніка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забрана на потребител" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যবহারকারীকে ব্যান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejar usuari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokovat uživatele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahardd Defnyddiwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udeluk bruger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied blockieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποκλεισμός Χρήστη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban User" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forbari uzanton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banear usuario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeri kasutaja" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban User" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود کردن کاربر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estä käyttäjä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipagbawal ang taong ito" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannir l'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hana Mai Amfani" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חסום משתמש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतिबंध उपयोगकर्ता" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani korisnik" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó kitiltása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելել օգտատիրոջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Larang pengguna" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーを禁止する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლის დაბლოკვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ហាមឃាត់អ្នកប្រើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ವಿಲಂಬಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 차단" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەسەڵاتدانە کەسی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban User" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫ້າມຜູ້ໃຊ້" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drausti naudotoją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aizliegt lietotāju" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забрани корисник" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг хориглох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekat Pengguna" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သုံးစွဲသူကို ပိတ်ဆို့မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannlys bruker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता प्रतिबन्ध गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker verbannen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannlys brukar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ban User" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਨੂੰ ਬੈਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj użytkownikowi dostęp" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاروونکی بند کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banir Usuário" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banir Utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Interzice utilizatorul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забанить пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani korisnika" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක තහනම් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakázať používateľa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onemogoči uporabnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dëboni përdorues" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај корисника" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabrani korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bannlys användare" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piga marufuku mtumiaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனரை தடை செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారుని నిషేధించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบนผู้ใช้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıyı Engelle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати користувача до чорного списку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو بین کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iflosni surgun qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cấm người dùng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vimba Umsebenzisi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "禁言该用户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖用戶" + } + } + } + }, + "banUserBanned" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker verban" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حظر المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçi yasaqlandı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف پر پابندی عائد کر دی گئی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Карыстальнік забаронены" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребителят е забранен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইউজার ব্যান করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuari exclòs" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uživatel zablokován" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defnyddiwr wedi'i wahardd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruger bandlyst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied gesperrt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο χρήστης αποκλείστηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "User banned" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzanto forigita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario reportado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario expulsado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasutaja blokeerimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzailea debekatu da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربر ممنوع شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjä estettiin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "User banned" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilisateur banni" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario bloqueado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mai amfani ya kulle" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "משתמש נחסם" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता प्रतिबंधित" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik zabranjen" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó kitiltva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտատեր արգելափակվել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna diblokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utente bloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーが禁止されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებელი დაბლოკილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានហាមឃាត់អ្នកប្រើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರನನ್ನು ಬ್ಯಾನ್ ಮಾಡಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 금지됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەکارهێنەر بەرچاوکرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omukozesa asazibwaamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vartotojas užblokuotas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietotājs bloķēts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисникот е забранет" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг хөндийлсөн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna diharamkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူကို ပိတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruker utestengt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता प्रतिबन्धित" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiker verbannen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruker utestengt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Munthu wotsalira atachotsedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਨੂੰ ਬੈਨ ਕੀਤਾ ਗਿਆ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokowano użytkownikowi dostęp" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارن بندیز شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuário banido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizador banido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizator interzis" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пользователь забанен" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik blokiran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක තහනම් කර ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Používateľ zakázaný" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uporabnik je blokiran" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdoruesi u dëbua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисник блокиран." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnik zabranjen" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Användare bannlyst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtumiaji amepigwa marufuku" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனர் தடை செய்யப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాడుకరి నిషేధించబడినారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบนผู้ใช้แล้ว." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı yasaklandı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користувач заблокований" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف بین کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchi surgun qilindi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Người dùng bị cấm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umsebenzisi urhoxisiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "用户已被封禁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已封鎖用戶" + } + } + } + }, + "block" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حظر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əngəllə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رکاوٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблакіраваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্লক" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhwystro" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloker" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φραγή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloki" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeri" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Harangin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "To'she" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חסום" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खंड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letiltás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocca" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ブロック" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទប់ស្កាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತಡೆಯುವ ಸಹಿತ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دووری دەخەیتەوە‬" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫ້າມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užblokuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဘလော့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ब्लक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬਲੌਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلاک" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blochează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокировка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවහිර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bllokoni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தடை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిరోధించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บล็อก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engelle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلاک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chặn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zziyiiza" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "屏蔽" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖" + } + } + } + }, + "blockBlockedDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokkeer hierdie kontak om 'n boodskap te stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فك حظر هذه جهة الإتصال لإرسال رسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj göndərmək üçün bu kontaktı əngəldən çıxardın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام بھیجنے کے لئے اس رابطہ کو غیر بلاک کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблакуйце гэты кантакт, каб адправіць паведамленне." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отблокирай този контакт за да изпратиш съобщение." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মেসেজ পাঠাতে এই কন্টাক্টটি আনব্লক করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloca aquest contacte per a enviar-li un missatge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pro odeslání zprávy tento kontakt odblokujte." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dadrwystro'r cyswllt hwn i anfon neges." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern blokering af denne kontakt for at sende en besked." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gib die Blockierung dieses Kontakts frei, um eine Nachricht zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καταργήστε τη φραγή αυτής τη επαφής για να στείλετε ένα μήνυμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unblock this contact to send a message." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malbloki tiun kontakton por sendi mesaĝon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquea este contacto para enviarle mensajes." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquea este contacto para enviar mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi saatmiseks eemalda selle kontakti blokeering." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktu hau desblokeatu mezu bat bidaltzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای ارسال پیام،‌ ابتدا این مخاطب را از مسدود بودن درآورید!" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähettääksesi viestin tälle yhteystiedolle sinun tulee ensin poistaa asettamasi esto." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unblock ang contact na ito para magpadala ng mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Débloquez ce contact pour envoyer un message." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquea este contacto para enviar unha mensaxe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire katanga wannan saduwa don aika saƙo." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל חסימה של איש קשר זה כדי לשלוח הודעה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई संदेश भेजने के लिए इस संपर्क को अनवरोधित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokiraj ovaj kontakt za slanje poruke." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet küldéséhez oldd fel a kontakt letiltását." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելաբացել այս կոնտակտը հաղորդագրություն ուղարկելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lepaskan blokir kontak ini untuk mengirim pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per inviare un messaggio sblocca questo contatto." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この連絡先にメッセージを送るためにブロックを解除する。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების გაგზავნისთვის ბლოკი მოხსენით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដោះការហាមឃាត់លេខទំនាក់ទំនងនេះ ដើម្បីផ្ញើសារ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವೊಂದನ್ನು ಕಳುಹಿಸಲು ಈ ಸಂಪರ್ಕವನ್ನು ಬ್ಲಾಕ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보내기 차단 해제하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم پەیوەندە لابردن بۆ بریتیە لە ناردنی پەیامێک." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sazaamu omukozesa kuno okusindika obubaka." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atblokuokite šį kontaktą, kad išsiųstumėte žinutę." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbloķējiet šo kontaktu, lai nosūtītu ziņojumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирај го овој контакт за да испратиш порака." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгжээг арилгаж, мессеж илгээх боломжтой болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyahsekat kontak ini untuk menghantar mesej." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ် ပို့ရန်အတွက်ဤဆက်သွယ်မှုသို့ ဘလော့ကိုဖြေပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev blokkeringen på denne kontakten for å sende en melding." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश पठाउन यो सम्पर्क अनब्लक गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokkeer dit contact om een bericht te verzenden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev blokkeringen på denne kontakten for å sende en melding." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokankha Lamulo Llitsa lemba uthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਭੇਜਣ ਲਈ ਇਸ ਸੰਪਰਕ ਨੂੰ ਅਨਬਲੌਕ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokuj ten kontakt, aby wysłać wiadomość." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پیغام استولو لپاره له دې اړیکې بې بندیز وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear este contato para enviar uma mensagem." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueie este contacto para enviar uma mensagem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblochează acest contact pentru a putea trimite mesaje." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблокируйте этот контакт, чтобы отправить сообщение." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokirajte ovog kontakta da biste poslali poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය යැවීමට මෙම සබඳතාවය අනවහිර කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pre odoslanie správy kontakt odblokujte." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za pošiljanje sporočila morate najprej odblokirati ta stik." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Që t’i dërgohet një mesazh, zhbllokojeni këtë kontakt." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирајте дописника да би послали поруку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирајте дописника да би послали поруку." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avblockera denna kontakt för att skicka meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondolea kizuizi kwa mawasiliano haya kutuma ujumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு செய்தியை அனுப்ப இந்த தொடர்பை விடுவிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాన్ని పంపడానికి ఈ పరిచయాన్ని అనుమతించు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกปิดกั้นผู้ติดต่อนี้เพื่อส่งข้อความ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti göndermek için bu kişinin engellenmesini kaldırın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розблокувати контакт для надсилання повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام بھیجنے کے لیے اس رابطے کو ان بلاک کریں." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar yuborish uchun ushbu kontaktni blokdan chiqaring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mở khóa người (liên lạc) này để gởi thông báo." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa lo qhakamshelwano ukuze uthumele umyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消屏蔽此联系人以发送消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解除封鎖聯絡人以傳送訊息。" + } + } + } + }, + "blockBlockedNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen geblokkeerde kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا توجد جهات اتصال محظورة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əngəllənmiş kontakt yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچں بندکرتگ امدیدبونه یافت نه بیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма заблакіраваных кантактаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма блокирани контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো ব্লক করা যোগাযোগ নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha contactes bloquejats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žádné blokované kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim cysylltiadau wedi'u rhwystro" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen blokerede kontakter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine blockierten Kontakte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καμία μπλοκαρισμένη επαφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No blocked contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu blokata kontakto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay contactos bloqueados" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay contactos bloqueados" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeritud kontakte pole" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago blokeatutako kontakturik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیج مخاطبی مسدود نشده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei estettyjä yhteystietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang naka-block na contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun contact n’est bloqué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ningún contacto bloqueado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu an toshe lambobin sadarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין אנשי קשר חסומים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई अवरुद्ध संपर्क नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema blokiranih kontakata" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek blokkolt kontaktok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակված կոնտակտներ չկան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada kontak yang diblokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun contatto bloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ブロックしている連絡先はありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არ არის დაბლოკილი კონტაქტები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពុំមានលេខដែលបានបិទ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತಡೆಗಟ್ಟಿದ ಸಂಪರ್ಕಗಳು ಎಂಥಹುದೂ ಇಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단된 연락처가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ پەیوەندیکەرێکی بڵاوکراو نییە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina mikutu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra užblokuotų adresatų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav bloķētu kontaktu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема блокирани контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаасан контакт байхгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada kenalan yang disekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဘလော့လုပ်ထားသော ဆက်သွယ်မှုမရှိ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen blokkerte kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै ब्लक गरिएका सम्पर्कहरू छैनन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen geblokkeerde contactpersonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen blokkerte kontakter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Zilumikizana Zotsekedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਬਲਾਕ ਕੀਤੇ ਹੋਏ ਸੰਪਰਕ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak zablokowanych kontaktów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ بند شوي اړیکې نشته" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum contato bloqueado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem contactos bloqueados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu aveți contacte blocate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет заблокированных контактов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema blokiranih kontakata" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවහිර කළ සබඳතා නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadne zablokované kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni blokiranih stikov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’ka kontakte të bllokuara" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема блокираних контаката" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema blokiranih kontakata" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga blockerade kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna mawasiliano yaliyofungiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தடைசெய்யப்பட்ட தொடர்புகள் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిరోధించిన పరిచయాలు లేవు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีผู้ติดต่อที่ถูกปิดกั้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engellenmiş kişi yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немає заблокованих контактів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی بلاک شدہ رابطہ نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloklangan kontaktlar yoʻq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có liên lạc bị chặn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho qhagamshela okubhlokiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有屏蔽的联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無已封鎖的聯絡人" + } + } + } + }, + "blockBlockedUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Geblokkeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حظر {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} əngəlləndi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو روکا گیا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблакавана {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокиран {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} কে ব্লক করবেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejat {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovat {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhwystro {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeret {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockiert {name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σε φραγή {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokis {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueado {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueado {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeritud {name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked {name}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود شد {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estetty {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-block na si {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqué {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueouse a {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an toshe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נחסם {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अवरोधित {name}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiran {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} letiltva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակվել է {name}֊ը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokir {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} をブロックしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკილი {name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានទប់ស្កាត់ {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ತಡೆ ಮಾಡಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 차단됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دوورکرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked {name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫ້າມ {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užblokuotas {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēts {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисникот {name} е блокиран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} -г хориглосон" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} disekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} မှ ဘလော့ ခံထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkert {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ब्लक गरिएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} geblokkeerd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkert {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ ਬਲੌਕ ਕੀਤਾ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokowano {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بلاک کړ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueado {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueado {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocat {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокирован {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiran/a {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවහිර කළා {name}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokovaný {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiram {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të bllokohet {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирао/ла {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiran {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockerade {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amezuiliwa {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} தடை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} నిరోధించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บล็อก {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} engellendi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблоковано {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو بلاک کر دیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchi {name} bloklandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã chặn {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvimbile {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已屏蔽{name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已封鎖 {name}" + } + } + } + }, + "blockDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} blokkeer? Geblokkeerde gebruikers kan nie vir jou boodskapversoeke stuur, groepuitnodigings stuur of jou bel nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من حظر {name}؟ المستخدمين المحظورين لايمكنهم إرسال طلبات الرسائل، دعوات المجموعات أو الإتصال بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} əngəllənsin? Əngəllənmiş istifadəçilər sizə mesaj tələbi, qrup dəvəti göndərə və ya sizə zəng edə bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {name} کو بلاک کرنا چاہتے ہیں؟ بلاک شدہ صارفین آپ کو پیغام کی درخواستیں، گروپ دعوتیں نہیں بھیجیں گے یا آپ کو کال نہیں کریں گے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце заблакіраваць {name}? Заблакіраваныя карыстальнікі не могуць адпраўляць вам запыты на паведамленні, запрашэнні ў групы ці тэлефанаваць вам." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да блокирате {name}? Блокираните потребители не могат да ви изпращат заявки за съобщения, покани за група или да ви се обаждат." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {name} কে ব্লক করতে চান? ব্লক করা ব্যবহারকারীরা আপনাকে বার্তা অনুরোধ, গ্রুপ আমন্ত্রণ বা কল করতে পারবেন না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu blocar {name}? Els usuaris bloquejats no us poden enviar sol·licituds de missatges, invitacions de grups ni trucar-vos." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete zablokovat {name}? Zablokovaní uživatelé vám nemohou posílat žádosti o komunikaci, pozvánky do skupin ani vám nemohou volat." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am rwystro {name}? Ni all defnyddwyr rhwystredig anfon ceisiadau neges, gwahoddiadau grŵp na’ch galw." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil blokere {name}? Blokerede brugere kan ikke sende dig beskedanmodninger, gruppeinvitationer eller ringe til dig." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} blockieren? Blockierte Personen können dir keine Nachrichtenanfragen, Gruppeneinladungen oder Anrufe senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε σίγουροι ότι θέλετε να θέσετε σε φραγή {name}; Οι μπλοκαρισμένοι χρήστες δεν μπορούν να σας στείλουν αιτήματα μηνύματα, προσκλήσεις ομάδας ή να σας καλέσουν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to block {name}? Blocked users cannot send you message requests, group invites or call you." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas bloki {name}? Blokitaj uzantoj ne povas sendi al vi mesaĝpetojn, grupinvitadojn aŭ telefonvokojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres bloquear a {name}? Los usuarios bloqueados no pueden enviarte solicitudes de mensajes, invitaciones a grupos ni llamarte." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres bloquear a {name}? Los usuarios bloqueados no pueden enviarte solicitudes de mensajes, invitaciones a grupos ni llamarte." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite blokeerida {name}? Blokeeritud kasutajad ei saa teile saata sõnumitaotlusi, grupikutseid ega helistada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} blokeatu nahi duzula? Erabiltzaile blokeatuek ezin dizkizute mezu-eskaerak, talde-gonbidapenak bidali edo deiak egin." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئنید می‌خواهید {name} را مسدود کنید؟ کاربران مسدود شده نمی‌توانند درخواست پیام، دعوت گروهی یا تماس ارسال کنند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti estää käyttäjän {name}? Estetyt käyttäjät eivät voi lähettää sinulle viestipyyntöjä, ryhmäkutsuja tai soittaa sinulle." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong harangin si {name}? Ang mga hinarang na user ay hindi makakapagpadala ng mga kahilingan sa pagmemensahe, mga imbitasyon sa grupo o tira-tawag sa'yo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr·e de vouloir bloquer {name}? Les utilisateurs bloqués ne peuvent pas vous envoyer de demandes de message, d'invitations de groupe ou vous appeler." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer bloquear a {name}? Os usuarios bloqueados non poderán enviar solicitudes de mensaxes, invitacións a grupos nin chamarte." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka toshe {name}?? Ba za su iya aiko maka da roƙon saƙonni, gayyatar rukuni ko kira ba idan an toshe su." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לחסום את {name}? משתמשים חסומים אינם יכולים לשלוח לך בקשות הודעות, הזמנות לקבוצות או להתקשר אליך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} को ब्लॉक करना चाहते हैं? अवरोधित उपयोगकर्ता आपको संदेश अनुरोध नहीं भेज सकते, समूह निमंत्रण या कॉल नहीं कर सकते।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite blokirati {name}? Blokirani korisnici vam ne mogu poslati zahtjeve za poruke, pozive ili pozive u grupu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy blokkolni szeretnéd {name}-t? A blokkolt felhasználók nem küldhetnek üzenetkérelmeket, csoportmeghívókat, és nem hívhatnak fel." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ցանկանում եք արգելափակել {name}? Արգելափակված օգտատերերը չեն կարող հաղորդագրության հարցումներ, խմբի հրավերներ կամ զանգեր ուղարկել ձեզ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin memblokir {name}? Pengguna yang diblokir tidak bisa mengirimkan Anda permintaan pesan, undangan grup, atau menelepon Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confermi di voler bloccare {name}? Gli utenti bloccati non possono inviarti richieste di messaggi, inviti ai gruppi o chiamarti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}をブロックしますか?ブロックされたユーザーは、メッセージリクエスト、グループ招待や通話を送ることができません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ დაბლოკოთ {name}? დაბლოკილი მომხმარებლები ვერ გამოგიგზავნიან შეტყობინების მოთხოვნებს, ჯგუფის მოწვევებს ან ვერ დაგირეკავენ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់រារាំង {name}? អ្នកប្រើប្រាស់ដែលត្រូវបានរារាំងមិនអាចផ្ញើសំណើសារ ការអញ្ជើញក្រុម ឬហៅអ្នកបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಖಚಿತವಾಗಿ {name}ನ್ನು ತಡೆಯಲು ಬಯಸುವಿರಾ? ತಡೆಮಾಡಿದ ಬಳಕೆದಾರರು ನಿಮಗೆ ಸಂದೇಶ ವಿನಂತಿಗಳನ್ನು, ಗುಂಪು ಆಹ್ವಾನವನ್ನು ಕಳುಹಿಸಲು ಅಥವಾ ನಿಮಗೆ ಕರೆಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to block {name}? Blocked users cannot send you message requests, group invites or call you." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لەوەی ناو بەچەندەی {name} ? بەچەندەکانی بەچەرمی نەتوانێ بمەMarker دووبارە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye {name} ? Abanankubize tebayinza kusindikidde obubaka, obubaka bw'ekibinja oba okubakubira simu." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານຕ້ອງຍອມຮັບທີ່ຈະບລອກ {name}? ຜູ້ໃຊ້ທີ່ຖືກບລອກຈະບໍ່ສາມາດສົ່ງ, ການຂໍສົງຂໍ້ຄວາມທ່ານ, ການເຊີນຄຳເຊີນກຸ່ມຫຼືໂທຫາທ່ານໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite užblokuoti {name}? Užblokuoti naudotojai negali siųsti žinučių užklausų, grupių kvietimų ar skambinti jums." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties bloķēt {name}? Bloķētie lietotāji nevarēs jums nosūtīt ziņojumu pieprasījumus, grupu uzaicinājumus vai zvanīt jums." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го блокирате {name}? Блокираните корисници не можат да ви испраќаат барања за пораки, покани за групи или да ве повикуваат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-ийг хаахыг хүсэж байгаадаа итгэлтэй байна уу? Хаагдсан хэрэглэгчид танд мессеж хүсэлт илгээж, бүлгийн урилга илгээж эсвэл залгах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu menyekat {name}? Pengguna yang disekat tidak boleh menghantar permintaan mesej, jemputan kumpulan atau menghubungi anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {name} ကို ဘလော့ခ်ချင်တာ သေချာရဲ ့လား? ဘလော့ခ်ထားတဲ့ လူတွေက မက်ဆေ့ချ်လာပို့ခွင့်၊အဖွဲ့ခေါ်ခံရခွင့် နဲ့ဖုန်းခေါ်ရခွင့် ရနိုင်မှာမဟုတ်ပါဘူး။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil blokkere {name}? Blokkerte brukere kan ikke sende deg meldingsforespørsler, gruppeinvitasjoner eller ringe deg." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाईंलाई {name} بادुकाउनुभो? Block गरिएका प्रयोगकर्ताहरूले तपाईलाई सन्देश अनुरोधहरू, समूह आमन्त्रण वा कल दिन सक्दैनन्।." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} wilt blokkeren? Geblokkeerde gebruikers kunnen u geen berichtverzoeken, groepsuitnodiging sturen of bellen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil blokkera {name}? Blokkerte brukere kan ikkje senda deg meldingsforespørsler, gruppeinvitasjonar eller ringa deg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuletsa {name}?? Ogwiritsa omwe aletsedwa sangathe kukutumizirani mauthenga ofunira, kukupemphani mu mgulu kapena kukuyimbirani." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਨੂੰ ਰੋਕਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਰੋਕੇ ਹੋਏ ਯੂਜ਼ਰ ਤੁਹਾਨੂੰ ਸੁਨੇਹੇ ਦੀਆਂ ਬੇਨਤੀਆਂ ਨਹੀਂ ਭੇਜ ਸਕਦੇ, ਗਰੁੱਪ ਨਿਮੰਤ੍ਰਣ ਨਹੀਂ ਦੇ ਸਕਦੇ ਜਾਂ ਕਾਲ ਨਹੀਂ ਕਰ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz zablokować {name}? Zablokowani użytkownicy nie mogą wysyłać próśb o wiadomości, zaproszeń do grupy ani dzwonić." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسې ډاډه یاست چې غواړئ {name}‌ بلاک کړئ؟ بلاک شوي کاروونکي تاسو ته د پیغام غوښتنې، د ډلې بلنې یا زنګ وهلو وړتیا نه لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja bloquear {name}? Usuários bloqueados não podem enviar mensagens, pedidos de grupo para você ou ligar para você." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que quer bloquear {name}? Utilizadores bloqueados não podem enviar pedidos de mensagem, convites de grupo ou ligar para si." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să blochezi pe {name}? Utilizatorii blocați nu îți pot trimite solicitări de mesaje, invitații de grup sau să te apeleze." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите заблокировать {name}? Заблокированные пользователи не смогут отправлять вам запросы сообщений, приглашения в группы, а также звонить вам." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš blokirati {name}? Blokirani korisnici ne mogu tebi poslati zahtjeve za poruke, grupne pozivnice ili te zvati." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} ඔවුන් අවහිර කිරීමට අවශ්‍ය බව විශ්වාසද? අවහිර කළ පරිශීලකයින්ට ඔබට පණිවිඩ ඉල්ලීම්, සමූහ ආරාධනා හෝ ඇමතුම් යැවිය නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istý, že chcete zablokovať {name}? Zablokovaní používatelia vám nemôžu posielať žiadosti o správy, pozvánky do skupín alebo vám volať." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite blokirati {name}? Blokirani uporabniki vam ne morejo poslati zahtev za sporočila, povabil v skupino ali vas poklicati." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta bllokoni {name}? Përdoruesit e bllokuar nuk mund t'ju dërgojnë kërkesa për mesazhe, ftesa grupi apo t’ju telefonojnë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да блокирате {name}? Блокирани корисници не могу да вам шаљу захтеве за поруке, позивнице за групе или позиве." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da blokirate {name}? Blokirani korisnici ne mogu vam slati zahteve za porukama, pozivnice za grupu ili vas pozivati." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill blockera {name}? Blockerade användare kan inte skicka meddelandeförfrågningar, gruppinbjudningar eller ringa dig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kumzuia {name}? Watumiaji waliodhamiriwa hawawezi kukutumia maombi ya ujumbe, mialiko ya kikundi au kukupigia simu." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக {name} ஐ தடுக்க விரும்புகிறீர்களா? தடுக்கப்பட்ட பயனர்களால் உங்களுக்கு தகவல் கோரிக்கைகளை அனுப்ப முடியாது, குழு அழைப்புகளை கையாளவும் அல்லது அழைக்கவும் முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name}ని బ్లాక్ చేయాలనుకుంటున్నారా? బ్లాక్ చేసిన వినియోగదారులు మీకు సందేశ వివరణలను పంపలేరు, సమూహ ఆహ్వానాలు లేదా మీకు కాల్ చేయలేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการบล็อก {name}? ผู้ใช้ที่ถูกบล็อกจะไม่สามารถส่งคำร้องขอข้อความเชิญกลุ่ม หรือโทรหาคุณได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'i engellemek istediğinizden emin misiniz? Engelli kullanıcılar size mesaj isteği gönderemez, grup davetiyeleri gönderemez veya sizi arayamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дійсно бажаєте заблокувати {name}? Заблоковані користувачі не можуть відправляти вам запити, групові запрошення або зателефонувати вам." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} کو بلاک کرنا چاہتے ہیں؟ بلاک کئے گئے صارفین آپ کو میسیج کی درخواستیں، گروپ دعوتیں یا کال نہیں بھیج سکتے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan shu {name}ni bloklashni xohlaysizmi? Bloklangan foydalanuvchilar sizga xabar so'rovlarini, guruh takliflarini yubora olmaydi yoki sizni chaqira olmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn chặn {name}? Người dùng bị chặn không thể gửi yêu cầu tin nhắn, lời mời nhóm hoặc gọi cho bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukuzivimba {name}? Abasebenzisi abavalweyo abanakukuthumela izicelo zemiyalezo, izimemo zeqela okanye bakufowunele." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要屏蔽{name}吗?被屏蔽的用户将无法向您发送消息请求、群聊邀请或者语音通话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要封鎖 {name} 嗎?被封鎖的使用者無法向您發送訊息請求、群組邀請或呼叫您。" + } + } + } + }, + "blockUnblock" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokkeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إلغاء الحظر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əngəldən çıxart" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلاک ختم کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблакіраваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отблокиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনব্লক" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquejar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dadrwystro" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern blokering" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockierung aufheben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ξεμπλοκάρισμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unblock" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malbloki" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda blokeering" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desblokeatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رفع مسدودیت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista esto" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unblock" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Débloquer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire katanga" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל חסימה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनब्लॉक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokiraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letiltás feloldása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելաբացել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka blokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sblocca" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ブロック解除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბლოკის მოხსნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើកវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್‌ಬ್ಲಾಕ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단 해제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی دوورخستنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sazaamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atblokuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbloķēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгжээг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyahsekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဘလော့ဖြေမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev blokkering" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनब्लक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokkeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev blokkering" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokankha Lamulo Llitsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਬਲੌਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بېبندیز" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquear" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblochează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблокировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni blokadu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අනවහිර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokiraj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhbllokoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokirajte" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avblockera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondolea kizuizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விடுவி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనుమతించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกปิดกั้น." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engeli Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розблокувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ان بلاک" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokdan chiqarish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ chặn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa ukuvalela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消屏蔽" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解除封鎖" + } + } + } + }, + "blockUnblockedUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ontblokkeer {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم الغاء الحظر عن {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} əngəldən çıxarıldı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر بلاک کیا {name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблакіравана {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблокиран {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনব্লক {name}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloquejat {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} odblokován(a)" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi dadrwystro {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afblokeret {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} entsperrt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κατάργηση φραγής {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unblocked {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malbarita {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueado {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueado {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühista {name} blokeering" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desblokeatu da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رفع مسدودیت {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto poistettiin {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-unblock {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Débloqué {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueado {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An cire katanga {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל חסימה של {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनब्लॉक किया {name}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deblokirao/la {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkolás feloldva: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելաբացել {name}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka blokir {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sbloccato {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ブロック解除済み {name}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ის ბლოკი მოხსნილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានឈប់ទប់ស្កាត់ {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅನ್ಬ್ಲಾಕ್ ಮಾಡಿದನು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 차단 해제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی دوورخستنەوە {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ozeemu {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atblokuota {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbloķēts {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокиран {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} түгжээг арилгасан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyahsekat {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကိုဘလော့ဖြေလိုက်ပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkering opphevet {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनब्लक गरिएको {name}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gedeblokkeerd {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkering opphevet {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachotsedwa pakusiya {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਬਲੌਕ ਕੀਤਾ {name}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokowano {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بېبندیز شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueado {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desbloqueado {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost deblocat/ă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} разблокирован(а)" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokiran {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} අනවහිර කළා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokovaný {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokiran {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhbllokuar {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одблокирали сте {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odblokirajte {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avblockerad {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kizuizi kiliondolewa kwa {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} விடுவிக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనుమతించబడిన {name}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกปิดกั้น {name}." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engel kaldırıldı {name}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} розблоковано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو ان بلاک کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Af qilingan {name}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ chặn {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isusiwe {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消屏蔽{name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "解除封鎖 {name}" + } + } + } + }, + "blockUnblockName" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} deblokkeer?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد أنك تريد إلغاء حظر {name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini əngəldən çıxartmaq istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {name} آزاد بکھیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце разблакіраваць {name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да отблокираш {name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} কে আনব্লক করতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu desbloquejar {name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete odblokovat {name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddadrwystro {name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil fjerne blokeringen af {name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {name} entblocken möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να καταργήσετε τη φραγή από {name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to unblock {name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas malbloki {name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas desbloquear a {name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres desbloquear a {name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite tühistada kasutaja {name} blokeeringu?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} blokatzea nahi duzula?" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa käyttäjän {name} eston?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-unblock si {name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir débloquer {name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer desbloquear a {name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka cire toshewar {name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לבטל את החסימה של {name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} को अनब्लॉक करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite deblokirati {name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy fel szeretnéd oldani {name} letiltását?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համոզվա՞ծ եք, որ ուզում եք արգելաբացել {name}֊ին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin membuka blokir {name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler sbloccare {name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}のブロックを解除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name}-ის განბლოკვა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ឈប់ប្លុក {name}?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಅನ್ನು ಅನ್‌ಬ್ಲಾಕ್ ಮಾಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}의 차단을 해제할까요?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت {name} بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusumulula {name}?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້ງປ່ອຍ {name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite atblokuoti {name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esi pārliecināts, ka vēlies atbloķēt {name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го одблокирате {name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-г тайлах нь итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyahsekat {name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် {name} ကို အုပ်ချုပ်ရေးမှူး ဖြစ်ရန် ခန့်ရှင်းလိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønsker å fjerne blokkeringen av {name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name}लाई अनब्लक गर्न निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet je zeker dat je {name} wilt deblokkeren?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å oppheve blokkeringen av {name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kuchotsa cholepheretsa kwa {name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਨੂੰ ਅਨਬਲਾਕਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz odblokować użytkownika {name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو ډاډه یاست چې تاسو د {name} بلاک کول غواړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja desbloquear {name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja desbloquear {name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să deblochezi pe {name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите разблокировать {name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš deblokirati {name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} අවහිර කිරීම ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete odblokovať {name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite odblokirati {name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të zhbllokoni {name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да одблокирате {name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da odblokirate {name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill avblockera {name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuondolea {name} kizuizi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} யை விடுவிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} ను అన్‌బ్లాక్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลิกบล็อก {name}?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kişisinin engelini kaldırmak istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що бажаєте розблокувати {name}?" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} ni blokdan chiqarishni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn bỏ chặn {name}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukuvula {name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要取消屏蔽{name}吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要解除封鎖 {name} 嗎?" + } + } + } + }, + "blockUnblockNameMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} en {count} ander deblokkeer?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد أنك تريد إلغاء حظر {name} و{count} آخرين؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və başqa {count} nəfəri əngəldən çıxartmaq istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {name} و {count} others آزاد بکھیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце разблакіраваць {name} і {count} іншых?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да отблокираш {name} и {count} други?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} এবং {count} অন্যান্যদের আনব্লক করতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu desbloquejar {name} i {count} més?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete odblokovat {name} a {count} dalších?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddadrwystro {name} a {count} eraill?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil fjerne blokeringen af {name} og {count} andre?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {name} und {count} andere entblocken möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να καταργήσετε τη φραγή από {name} και {count} άλλους/ες;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to unblock {name} and {count} others?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas malbloki {name} kaj {count} aliajn?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas desbloquear a {name} y {count} otros?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres desbloquear a {name} y {count} otros?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite tühistada kasutajate {name} ja {count} teise blokeeringu?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} eta beste {count} batzuk blokatzea nahi duzula?" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa käyttäjän {name} ja {count} muuta eston?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-unblock si {name} at ang {count} iba pa?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir débloquer {name} et {count} autres ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer desbloquear a {name} e {count} máis?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka cire toshewar {name} da {count} wasu?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לבטל את החסימה של {name} ו-{count} אחרים?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} और {count} अन्य को अनब्लॉक करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite deblokirati {name} i {count} drugih?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy fel szeretnéd oldani {name} és {count} másik személy letiltását?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք արգելաբացել {name}֊ին և ևս {count}֊ին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin membuka blokir {name} dan {count} lainnya?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler sbloccare {name} e altri {count}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}{count}人の他の人のブロックを解除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name} და {count} სხვების განბლოკვა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ឈប់ប្លុក {name} និង {count} នាក់ផ្សេងទៀត?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {count} ಇತರರನ್ನು ಅನ್‌ಬ್ಲಾಕ್ ಮಾಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}{count}명의 차단을 해제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت {name} و {count} ئەندامان بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusumulula {name} ne {count} abalala?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້ງປ່ອຍ {name} ແລະ {count} ໂຄງການ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite atblokuoti {name} ir {count} kitus?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties atbloķēt {name} un {count} citus?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги одблокирате {name} и {count} други?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та{name} -ыг болон {count} бусад ыг тайлах нь итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyahsekat {name} dan {count} orang lain?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {name} နှင့် {count} ဦး ကို အုပ်ချုပ်ရေးမှူး ဖြစ်ရန် ခန့်ရှင်းလိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønsker å fjerne blokkeringen av {name} og {count} andre?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name}{count} अन्यलाई अनब्लक गर्न निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} en {count} anderen wilt deblokkeren?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å oppheve blokkeringen av {name} og {count} andre?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kuchotsa cholepheretsa kwa {name} ndi {count} ena?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਅਤੇ {count} ਹੋਰ ਲੋਕਾਂ ਨੂੰ ਅਨਬਲਾਕਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz odblokować {name} i {count} innych użytkowników?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو ډاډه یاست چې تاسو غواړئ {name} او {count} نور خلاص کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja desbloquear {name} e {count} outros?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja desbloquear {name} e {count} outros?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să deblochezi pe {name} și alți {count}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите разблокировать {name} и {count} других?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš deblokirati {name} i {count} drugih?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ තවත් {count} අය අවහිර කිරීම ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete odblokovať {name} a {count} ďalších?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite odblokirati {name} in {count} drugih?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të zhbllokoni {name} dhe {count} të tjerë?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да одблокирате {name} и {count} осталих?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da odblokirate {name} i još {count} drugih?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill avblockera {name} och {count} andra?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuondolea {name} na {count} wengine kizuizi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} மற்றவர்களை விடுவிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {count} ఇతరులను అన్‌బ్లాక్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลิกบล็อก {name} และ {count} อื่นๆ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğerinin engelini kaldırmak istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що бажаєте розблокувати {name} і {count} інших?" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} va {count} boshqa foydalanuvchini blokdan chiqarishni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn bỏ chặn {name}{count} người khác?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukuvula {name} n {count} abanye?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要取消屏蔽{name}和其他{count}人吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要解除封鎖 {name}{count} 位其他人嗎?" + } + } + } + }, + "blockUnblockNameTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} en 1 ander deblokkeer?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد أنك تريد إلغاء حظر {name} وشخص آخر؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və başqa 1 nəfəri əngəldən çıxartmaq istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا شما مطمئنید که می‌خواهید {name} و ۱ نفر دیگر را از حالت مسدود خارج کنید؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце разблакіраваць {name} і яшчэ аднаго карыстальніка?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да отблокираш {name} и 1 друг?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name} এবং 1 অন্যকে আনব্লক করতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu desbloquejar {name} i un altre?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete odblokovat {name} a 1 další?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddadrwystro {name} ag un arall?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil fjerne blokeringen af {name} og 1 anden?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {name} und eine weitere Person entblocken möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να καταργήσετε τη φραγή από {name} και από έναν/μία άλλο/η;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to unblock {name} and 1 other?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas malbloki {name} kaj 1 alian?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas desbloquear a {name} y 1 más?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres desbloquear a {name} y 1 otro?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite tühistada kasutaja {name} ja ühe teise blokeeringu?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} eta beste bat blokatzea nahi duzula?" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa käyttäjän {name} ja yhden muun eston?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong i-unblock si {name} at ang 1 iba pa?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir débloquer {name} et 1 autre ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer desbloquear a {name} e a outra persoa?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka cire toshewar {name} da 1?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לבטל את החסימה של {name} ועוד אחד?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} और 1 अन्य को अनब्लॉक करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite deblokirati {name} i još jednu osobu?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy fel szeretnéd oldani {name} és egy másik személy letiltását?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք արգելաբացնել {name}֊ին և մեկ ստուգողին։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin membuka blokir {name} dan 1 lainnya?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler sbloccare {name} e un altro?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}と1人の他の人のブロックを解除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name} და 1 სხვების განბლოკვა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ឈប់ប្លុក {name} និង 1 នាក់ផ្សេងទៀត?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು 1 ಇತರರನ್ನು ಅನ್‌ಬ್ಲಾಕ್ ಮಾಡಲು ಖಚಿತವಾಗಿದೆಯ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {name}과 1명의 차단을 해제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت {name} و 1 ئەندام بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusumulula {name} ne omu omulala?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຈະຍ້ງປ່ອຍ {name} ແລະ Lagi 1" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite atblokuoti {name} ir kitą?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties atbloķēt {name} un vēl vienu?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги одблокирате {name} и уште еден?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} болон нэг өөр хүнийг тайлах нь итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyahsekat {name} dan seorang lagi?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {name} နှင့် ၁ ဦး ကို အုပ်ချုပ်ရေးမှူး ဖြစ်ရန် ခန့်ရှင်းလိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønsker å fjerne blokkeringen av {name} og 1 til?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name} र 1 अन्यलाई अनब्लक गर्न निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet je zeker dat je {name} en 1 andere wilt deblokkeren?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å oppheve blokkeringen av {name} og ein annan?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kuchotsa cholepheretsa kwa {name} ndi 1 wina?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {name} ਅਤੇ ਇੱਕ ਹੋਰ ਨੂੰ ਅਨਬਲਾਕਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz odblokować użytkownika {name} i jedną inną osobę?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو ډاډه یاست چې تاسو غواړئ {name} او 1 نور بلاک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja desbloquear {name} e 1 outro?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja desbloquear {name} e mais uma pessoa?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să deblochezi pe {name} și 1 altă persoană?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите разблокировать {name} и ещё одного пользователя?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš deblokirati {name} i 1 drugo?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ තවත් 1 අය අවහිර කිරීම ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete odblokovať {name} a 1 iného?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite odblokirati {name} in 1 drugega?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të zhbllokoni {name} dhe 1 tjetër?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да одблокирате {name} и још једну особу?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da odblokirate {name} i 1 drugog?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill avblockera {name} och en annan?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuondolea {name} na 1 mwingine kizuizi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் 1 மற்றவரை விடுவிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు 1 ఇతర వ్యక్తిని అన్‌బ్లాక్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเลิกบล็อก {name} และอีก 1 คน?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve 1 diğerinin engelini kaldırmak istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що бажаєте розблокувати {name} і ще одного?" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} va 1 boshqa foydalanuvchini blokdan chiqarishni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn bỏ chặn {name} và 1 người khác?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukuvula {name} n 1 omnye?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要取消屏蔽{name}和其他1人吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要解除封鎖 {name} 和另一個人嗎?" + } + } + } + }, + "call" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اتصال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обаждане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Truca" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anrufen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλήση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonvoki" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helista" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soita" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tawagan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appeler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חייג" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զանգել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggil" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiama" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "전화걸기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندین" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໂທ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skambinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvans" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ််ဆိုမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ring" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੌਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadzwoń" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apelează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вызов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අමතන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позови" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wito" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โทร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gọi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essimu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "撥打" + } + } + } + }, + "callsCalledYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het jou gebel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اتصل بك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizə zəng etdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ترا بلک کردی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} тэлефанаваў(ла) Вам" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ти се обади" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} আপনাকে কল করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha trucat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vám volal(a)" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwodd {name} chi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ringede til dig" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat angerufen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "O/H {name} σας κάλεσε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} called you" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telefonis vin" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te ha llamado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te ha llamado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} helistas sulle" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(e)k deitu zaitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} با شما تماس گرفت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} soitti sinulle" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinawagan ka ni {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vous a appelé·e" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} chamouche" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya kira ku" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} התקשר/ה אליך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने आपको कॉल किया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je zvao" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hívott téged" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ը ձեզ զանգել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} memanggil Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ti ha chiamato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}からの通話" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} დაგირეკათ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} បានហៅមកអ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ನಿಮಗೆ ಕರೆಮಾಡಿದ್ದಾರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 님의 전화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تۆ پشت دەدایە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yakusimbyeyo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ໂທຫາເຈົ້າ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums skambino {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums zvanīja {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Ви заѕвони" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} тан руу залгасан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} memanggil anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} မှ သင့်အား ခေါ်ဆိုခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ringte deg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ले तपाईंलाई कल गर्नु भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft je gebeld" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ringte deg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} adakuitanani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੇ ਤੁਹਾਨੂੰ ਕਾਲ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dzwonił(a) do Ciebie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تاسو ته زنګ وواهه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te ligou" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ligou para si" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te-a apelat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} звонил(а) вам" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je zvao" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ඔබව ඇමතුවා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vám volal/a" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oseba {name} vas je klicala" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ju thirri {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} вас је позвао/ла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je zvao" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ringde dig" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amekuita" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} உங்களை அழைத்தார்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మీకు కాల్ చేసారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้โทรหาคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} seni aradı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} телефонував(-ла)/дзвонив вам" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے آپ کو کال کی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizni chaqirdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã gọi cho bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ikfonile kuwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}呼叫过您" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 來電" + } + } + } + }, + "callsCannotStart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy kan nie 'n nuwe oproep begin nie. Maak eers jou huidige oproep klaar." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكنك بدء مكالمة جديدة. أنهِ المكالمة الحالية أولًا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir zəng başlada bilməzsiniz. Əvvəlcə hazırkı zənginizi bitirin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تہارا فونی صفا مکشند۔ شما زریا ناہی اصل کمیدہ۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можаце пачаць новы званок. Скіньце ваш бягучы званок спачатку." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да започнете ново обаждане. Завършете текущото си обаждане първо." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot start a new call. Finish your current call first." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No podeu iniciar una nova telefonada. Acabeu la vostra telefonada actual primer." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemůžete zahájit nový hovor. Dokončete nejprve svůj aktuální hovor." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni allwch gychwyn galwad newydd. Gorffennwch eich galwad gyfredol yn gyntaf." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke starte et nyt opkald. Afslut dit nuværende opkald først." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst keinen neuen Anruf starten. Beende zuerst deinen aktuellen Anruf." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορείτε να ξεκινήσετε νέα κλήση. Ολοκληρώστε πρώτα την τρέχουσα κλήση σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot start a new call. Finish your current call first." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne povas komenci novan alvokon. Unue fini vian aktualan alvokon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes iniciar una nueva llamada. Termina tu llamada actual primero." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes iniciar una nueva llamada. Termina tu llamada actual primero." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te ei saa uut kõnet alustada. Kõigepealt lõpetage oma praegune kõne." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin duzu dei berri bat hasi. Amaitu zure egungo deia lehenik." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمی‌توانید تماس جدیدی برقرار کنید. ابتدا تماس فعلی خود را به پایان برسانید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et voi aloittaa uutta puhelua. Lopeta ensin nykyinen puhelusi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ka makakapagsimula ng bagong tawag. Taposin muna ang kasalukuyang tawag." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous ne pouvez pas démarrer un nouvel appel. Terminez votre appel en cours d'abord." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non podes comezar unha nova chamada. Remata a túa chamada actual primeiro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za ku iya fara sabon kira ba. Kammala kiran da kuke yi yanzu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אינך יכול/ה להתחיל שיחה חדשה. סיים/סיימי את השיחה הנוכחית קודם." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप एक नई कॉल शुरू नहीं कर सकते। पहले अपनी वर्तमान कॉल समाप्त करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete započeti novi poziv. Prvo završite trenutni poziv." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem tudsz új hívást kezdeni. Először fejezd be a jelenlegi hívást." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք չեք կարող նոր զանգ սկսել։ Նախ ավարտեք ընթացիկ զանգը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak dapat memulai panggilan baru. Seleseikan panggilan Anda saat ini terlebih dahulu." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Al momento non puoi avviare una nuova chiamata. Termina la chiamata in corso e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しい通話を開始できません。まず現在の通話を終了してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ვერ დაიწყებთ ახალ ზარს. დაასრულეთ მიმდინარე ზარი პირველ რიგში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនអាចចាប់ផ្ដើមហៅថ្មីមួយបានទេ។ សូមបញ្ចប់ការហៅកំពុងមានមុនសិន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಹೊಸ ಕರೆ ಪ್ರಾರಂಭಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಮೊದಲು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಕರೆ ಮುಗಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 통화를 시작할 수 없습니다. 현재 통화를 먼저 완료하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ ناتوانیت پەیوەندی نوێیەک بکەیت. پەیوەندی ئێستا گەڕاندنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toyinza kutandika ekikuzizza embogo. Mmalirira okuuma kwonno okubanza." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negalite pradėti naujo skambučio. Pabaikite esamą skambutį pirmiausia." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs nevarat sākt jaunu zvanu. Pabeidziet pašreizējo zvanu vispirms." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да започнете нов повик. Завршете го вашиот тековен повик прво." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ дуудлага эхлүүлж чаднагүй байна. Эхний дуудлагаа дуусгаж эхлүүлэхийн тулд." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak boleh memulakan panggilan baru. Selesaikan panggilan semasa anda terlebih dahulu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot start a new call. Finish your current call first." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke starte en ny samtale. Fullfør din nåværende samtale først." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं नयाँ कल सुरु गर्न सक्नुहुन्न। पहिले आफ्नो वर्तमान कल समाप्त गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt geen nieuw gesprek starten. Maak eerst uw huidige gesprek af." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikkje starte ein ny samtale. Fullfør den gjeldande samtalen først." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simungathe kuyambitsa mafoni atsopano. Thirani mafoni anu apano kalekale" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਨਵੀਂ ਕਾਲ ਸ਼ੁਰੂ ਨਹੀਂ ਕਰ ਸਕਦੇ। ਪਹਿਲਾਂ ਆਪਣੀ ਮੌਜੂਦਾ ਕਾਲ ਖ਼ਤਮ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można rozpocząć nowego połączenia. Najpierw należy zakończyć bieżące połączenie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو نوی زنګ نشئ پیلولی. لومړی خپل اوسني زنګ پای ته ورسئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não pode iniciar uma nova chamada. Termine sua chamada atual primeiro." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não pode iniciar uma nova chamada. Termine a sua chamada atual primeiro." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu poți iniția un apel nou. Termină mai întâi apelul actual." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можете начать новый звонок. Сначала завершите текущий звонок." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete započeti novi poziv. Završite trenutni poziv prvo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට නව ඇමතුමක් අරඹිය නොහැක. පළමුවතින් ඔබගේ වත්මන් ඇමතුව අවසන් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemôžete začať nový hovor. Najprv dokončite aktuálny hovor." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morete začeti novega klica. Najprej zaključite trenutni klic." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk mund të nisni një thirrje të re. Mbaroni thirrjen aktuale më parë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете започети нови позив. Завршите тренутни позив прво." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete započeti novi poziv. Završite trenutni poziv prvo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan inte starta ett nytt samtal. Avsluta ditt nuvarande samtal först." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi kuanza simu mpya. Maliza simu yako ya sasa kwanza." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் புதிய அழைப்பைத் தொடங்க முடியாது. முதலில் உங்கள் முற்றிலும் இருக்கும் அழைப்பை முடிக்கப்பட வேண்டும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు కొత్త కాల్ ప్రారంభించలేరు. ముందుగా మీ ప్రస్తుత కాల్ పూర్తిగా ముగించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่สามารถเริ่มการโทรใหม่ได้ กรุณาเสร็จสิ้นการโทรปัจจุบันของคุณก่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir çağrı başlatamazsınız. Önce mevcut çağrınızı bitirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можна розпочати новий дзвінок. Спочатку закінчіть поточний дзвінок." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نئی کال نہیں کر سکتے۔ پہلے اپنی موجودہ کال کو ختم کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi qo'ng'iroq boshlay olmaysiz. Avval joriy qo'ng'iroqni tugating." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không thể bắt đầu cuộc gọi mới. Hoàn thành cuộc gọi hiện tại của bạn trước." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awungekhe uqale umnxeba omtsha. Gqibezela umnxeba wakho wokuqala kuqala." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您无法开始新的通话。请先结束当前的通话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您無法開始新的通話。請先結束當前通話。" + } + } + } + }, + "callsConnecting" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppel..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتم الاتصال..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı qurulur..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "جڑ رہا ہے..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Злучэнне..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Свързване..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযোগ হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connectant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připojování..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wrthi'n cysylltu..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forbinder..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbindung wird hergestellt …" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται σύνδεση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konektante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando ..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ühendan..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konektatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال اتصال..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhdistetään..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagkokonek..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connexion..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana haɗawa..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מתחבר..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कनेक्ट हो रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povezivanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csatlakozás..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացում…" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghubungkan..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connessione in corso..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "接続中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეერთება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងភ្ជាប់..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕಿಸುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연결 중…" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیدان..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kokola..." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫລາຍເເຂບພາຍໃສ່..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jungiamasi..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Savieno..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се поврзува..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбогдож байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyambung..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ချိတ်ဆက်နေဆဲ..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kobler til …" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जोड्दै..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbinding maken..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koplar til..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuloŵa..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜੁੜਨ ਦੀ ਕੋਸ਼ਿਸ਼..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Łączenie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اړیکې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A ligar..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se conectează..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подключение..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povezivanje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්බන්ධ වෙමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripájanie..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povezujem..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po lidhet…" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повезујем се..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povezivanje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ansluter..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inaunganishwa..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைக்கப்படுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కలుస్తుంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเชื่อมต่อ..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlanılıyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підключення..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کنیکٹ ہو رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang kết nối..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuye kuqhagamishelwe..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在连接..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "連線中" + } + } + } + }, + "callsEnd" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beeïndig oproep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنهاء المكالمة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəngi bitir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال ختم کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завяршыць выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прекрати обаждането" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল শেষ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finalitza la trucada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončit hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorffen galwad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afslut opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anruf beenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τερματισμός κλήσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "End call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fini alvokon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finalizar llamada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finalizar llamada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lõpeta kõne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deia amaitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پایان تماس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lopeta puhelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapusin ang tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raccrocher" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finalizar chamada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bangê dûmahî bike" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סיים שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल बंद" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Završi poziv" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívás befejezése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավարտել զանգը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akhiri panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Termina chiamata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話を終了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარის დასრულება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចប់ការហៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕೈಸಳಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 종료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کالەکە کۆتایی پێبهێنە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggalawo essimu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສິ້ນສຸດການໂທ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baigti skambutį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beigt zvanu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заврши повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуусгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamatkan panggilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုမှုကိုဖြတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल अन्त्य" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproep beëindigen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachita illachipay" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਾਲ ਅੰਤ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakończ rozmowę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زنګ ختم کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terminar chamada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terminar chamada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Închide apelul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завершить звонок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Završi poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම අවසන් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončiť hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Končaj klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përfundoje thirrjen" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Окончај позив" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prekini poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avsluta samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "mwisho wa kuongea na simu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காலையமைக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ ముగించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "วางสาย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aramayı sonlandır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завершити дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال ختم کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroqni tugatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kết thúc cuộc gọi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gqibezela ucingo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "结束通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "結束通話" + } + } + } + }, + "callsEnded" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproep Beëindig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم إنهاء الاتصال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng bitdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال ختم ہوگئی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выклік завершаны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обаждането приключи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল শেষ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trucada finalitzada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hovor ukončen" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorffennodd Galwad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opkald afsluttet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anruf beendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η κλήση Τερματίστηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Ended" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voko finiĝis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada finalizada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada finalizada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõne lõpetatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Ended" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس پایان یافت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puhelu päättynyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapos na ang Tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel terminé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada rematada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiran ya Kare" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השיחה הסתיימה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल समाप्त" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv je završen" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívás véget ért" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զանգը ավարտվեց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Berakhir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata terminata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話が終了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარი დასრულდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅបានបញ្ចប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರೆ ಮುಗಿಯಿತು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 종료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندی کۆتەبوو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Ended" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໂທເດີນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skambutis baigtas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvans beidzās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повикот заврши" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага дууссан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Tamat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုမှု ပြီးသွားပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtale avsluttet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल समाप्त भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek beëindigd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtale avslutta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Ended" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੌਲ ਖਤਮ ਹੋਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenie zakończone" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال پای ته ورسیده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada encerrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada terminada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel încheiat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звонок завершен" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv završen" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම අවසන්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hovor ukončený" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klic završen" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrja u përfundua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позив завршен" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv je završen" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtal avslutat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu Imemalizika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு முடிந்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ ముగిసింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายโทรจบลงแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arama sona erdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дзвінок завершено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال ختم ہوگئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq tugatildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi đã kết thúc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuya Phelile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通话结束" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話結束" + } + } + } + }, + "callsErrorAnswer" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie oproep beantwoord nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في الرد على المكالمة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng cavablandırma uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال کا جواب دینے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася адказаць на выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отговаряне на обаждането" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল উত্তর দিতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en contestar la trucada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba při přijímání hovoru" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu ateb galwad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke besvare opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anruf konnte nicht angenommen werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία απάντησης στην κλήση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to answer call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis respondi alvokon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al contestar la llamada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al responder la llamada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõnele vastamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deiari erantzutea huts egin da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسخ به تماس شکست خورد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puheluun vastaaminen epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pagsagot ng tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la réponse à l'appel" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao responder chamada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kashe amsa kiran" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להיענות לשיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल का उत्तर देने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivanje nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült a hívás fogadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց պատասխանել զանգը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menjawab panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Risposta alla chiamata fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話に応答できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომა განზდა ზარის მპასუხეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការឆ្លើយការហៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರೆಗೆ ಉತ್ತರಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 응답에 실패했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی دانەدانی بەشدەرەکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okukuba essimu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດຮັບສາຍໂທ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko atsiliepti į skambutį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvanu atbildēt neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно одговарање на повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлагын хариултад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menjawab panggilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုမှုကိုဖြေနိုင်မည်မဟုတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved svar på anrop" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कलको उत्तर दिन असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niet gelukt om de oproep te beantwoorden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje svara på anrop" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuyankha foni" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਾਲ ਦਾ ਜਵਾਬ ਦੇਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się odebrać połączenia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د کال ځواب کولو کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao atender a chamada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao atender chamada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut răspunde la apel" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось ответить на звонок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo odgovaranje na poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුමට පිළිතුරු දෙන්න අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odpovedať na hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka pri odgovorjanju na klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi përgjigjja për thirrje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка при одговарању на позив" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo odgovaranje na poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att svara på samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kujibu simu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பை பதிலளிக்க தவறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్‌ని జవాబివ్వడంలో విఫలమయ్యింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การรับสายล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çağrıya yanıt verilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося відповісти на дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال کا جواب دینے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroqqa javob berishni amalga oshirish bilan muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể trả lời cuộc gọi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuphendula umnxeba" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "接听通话失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未能接聽電話" + } + } + } + }, + "callsErrorStart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie oproep begin nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل بدء المكالمة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng başlatma uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال شروع کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася пачаць выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно стартиране на обаждането" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল শুরু করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en iniciar la trucada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se zahájit hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd cychwyn galwad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke starte opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Anruf konnte nicht gestartet werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία έναρξης κλήσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to start call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis starti alvokon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al iniciar la llamada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al iniciar la llamada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõne alustamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deia hastea huts egin da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شروع تماس ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puhelun aloitus epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pagsimula ng tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de démarrage de l'appel" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido iniciar a chamada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa fara kira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להתחיל שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल शुरू करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokretanje poziva nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült a hívás indítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց սկսել զանգը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memulai panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avvio della chiamata fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話の開始に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში ზარის დაწყება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការចាប់ផ្តើមការហៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಾಲ್ ಶುರು ಮಾಡಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화를 시작하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی جێگیرکردنی پرسیاره‌کە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okuggyako essimu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pradėti skambučio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās sākt zvanu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно започнување повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага эхлүүлэхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memulakan panggilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုမှုစတင်ရန် မဖြစ်နိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke starte anrop" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल सुरु गर्न असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproep starten mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje starta anrop" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuyambitsa foni" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਾਲ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się rozpocząć rozmowy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call شروع کولو کې پاتې راغی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao iniciar chamada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao iniciar chamada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la inițierea apelului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось начать звонок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo započinjanje poziva" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම ආරම්භ කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa začať hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo začeti klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi nisja e thirrjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у започињању позива" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo pokretanje poziva" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att starta samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuanza simu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காலையை ஆரம்பிப்பதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ ప్రారంభించడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเริ่มต้นการโทรล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çağrı başlatılamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося розпочати дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال شروع کرنے میں ناکامی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq boshlanishida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể bắt đầu cuộc gọi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuqala umnxeba" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "呼叫失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法開始通話" + } + } + } + }, + "callsIncoming" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkomende oproep van {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مكالمة واردة من {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizə zəng edir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} سے آنے والی کال" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уваходны выклік ад {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Входящо обаждане от {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} থেকে আসন্ন কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trucada entrant de {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Příchozí hovor od {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad i mewn gan {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indgående opkald fra {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eingehender Anruf von {name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισερχόμενη κλήση από «{name}»" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incoming call from {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envena alvoko el {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada entrante de {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada entrante de {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sissetulev kõne kasutajalt {name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ren sarrera-deia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس ورودی از {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saapuva puhelu käyttäjältä {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Papasok na tawag mula kay {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel entrant de {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada recibida de {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiran shigowa daga {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה נכנסת מ-{name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आ रहे हैं {name} से कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dolazni poziv od {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bejövő hívás: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքային զանգ «{name}»-ից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan masuk dari {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata in arrivo da {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "『{name}』 からの着信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შემომავალი ზარი {name}-ისგან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅចូលពី {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ನಿಂದ ಕರ್ವಲನ ಕರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}에서 걸려오는 전화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگی دێت لە {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaka kyetaaga okuva eri {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaunamasis skambutis nuo {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ienākošais zvans no {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доаѓачки повик од {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-с ирж буй дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan masuk daripada {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အသံခေါ်ဆိုမှုလက်ခံမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkommende anrop fra {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} बाट आगमन कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkomende oproep van {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inngåande samtale frå {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachiy yaykumukun wa {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਤੋਂ ਕਾਲ ਆ ਰਹੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenie przychodzące od {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له {name} څخه راتلونکی زنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada recebida de {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada recebida de {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primire apel de la {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Входящий звонок от {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dolazni poziv od {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} වෙතින් එන ඇමතුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prichádzajúci hovor od {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dohodni klic od {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje ardhëse nga {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Долазни позив од {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zove Vas {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkommande samtal från {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu inaingia kutoka {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} உடன் வரும் அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} నుండి కొత్తగా వచ్చిన కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายเรียกเข้าจาก {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'den Gelen arama" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вхідний дзвінок від {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سے آنے والی کال {name}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan kiruvchi qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi đến từ {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifowuni esIncoming evela ku {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "来自{name}的通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "來自{name}的來電" + } + } + } + }, + "callsIncomingUnknown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkomende oproep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مكالمة واردة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gələn zəng" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آنے والی کال" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уваходны выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Входящо обаждане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আসন্ন কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonada entrant" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Příchozí hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad i mewn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indgående opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eingehender Anruf" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισερχόμενη κλήση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incoming call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envena alvoko" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada entrante" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada entrante" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sissetulev kõne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sarrera-deia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس ورودی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saapuva puhelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Papasok na tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel entrant" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada recibida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banga tê" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה נכנסת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आने वाली कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dolazni poziv" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bejövő hívás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքային զանգ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan masuk" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata in arrivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "着信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შემომავალი ზარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅចូល" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಾಲ್ಗ್ರಹಣ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "수신 전화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگی دێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaka kyetaaga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaunamasis skambutis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ienākošais zvans" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доаѓачки повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Орж ирж буй дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan masuk" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဝင်ခေါ်ဆိုမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Innkommende anrop" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आगमन कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkomende oproep" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inngåande samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachiy yaykumukun" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਉਣ ਵਾਲੀ ਕਾਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenie przychodzące" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "راتلونکی زنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recebendo chamada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A receber chamada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel de intrare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Входящий звонок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dolazni poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ලැබෙන ඇමතුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prichádzajúci hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dohodni klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje ardhëse" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Долазни позив" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dolazni poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkommande samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu inaingia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உடன் வரும் அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్తగా వచ్చిన కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายเรียกเข้า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gelen arama" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вхідний дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آنے والی کال" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiruvchi qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi đến" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifowuni esIncoming" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "呼入通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "來電" + } + } + } + }, + "callsInProgress" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproep aan die gang" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المكالمة جارية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng davam edir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال جاری ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ідзе выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обаждане в процес" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল প্রক্রিয়াতে আছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonada en procés" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probíhající hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad ar y gweill" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opkald i gang" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anruf aktiv" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλήση σε εξέλιξη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call in progress" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voko farata" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada en curso" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada en curso" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõne on pooleli" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call in progress" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس در حال انجام است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puhelu on kesken" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tawag sa Progreso" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel en cours" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada en curso" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana cikin kiran" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה בתהליך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल प्रगति पर है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv u tijeku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívás folyamatban" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընթացիկ զանգ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan sedang berlangsung" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata in corso" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარი მიმდინარეობს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅកំពុងដំណើរការ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರೆ ಪ್ರಗತಿಪರವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندی بەردەوامە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call in progress" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກໍາລັງໂທຢູ່" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skambutis vykdomas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvans procesā" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повик во тек" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага хийгдэж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan sedang berlangsung" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုနေဆဲ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtale pågår" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल प्रगति हुँदैछ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek gaande" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtale pågår" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call in progress" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੌਲ ਜਾਰੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trwa połączenie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال دوام لري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada em andamento" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada em curso" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel în curs" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вызов в процессе" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv u toku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම ක්‍රියාකරමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prebiehajúci hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klic v teku" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje në progres" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позив је у току" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv u toku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pågående samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu inayoendelea" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு நடக்கிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ జరుగుతోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายโทรดำเนินการอยู่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Devam eden arama" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активний дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال جاری ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq davom etmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi đang diễn ra" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukutsalela kusenzeka" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通话中" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話進行中" + } + } + } + }, + "callsMicrophonePermissionsRequired" : { + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškali jste hovor od {name}, protože jste neudělili přístup k mikrofonu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buoch yn methu alwad gan {name} oherwydd nad ydych wedi rhoi mynediad meicroffon." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast einen Anruf von {name} verpasst, weil Du keinen Mikrofonzugriff gewährt hast." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χάσατε μια κλήση από {name} επειδή δεν έχετε παραχωρήσει πρόσβαση στο μικρόφωνο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You missed a call from {name} because you haven't granted microphone access." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdiste una llamada de {name} porque no has otorgado acceso al micrófono." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdiste una llamada de {name} porque no has otorgado acceso al micrófono." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما یک تماس از {name} از دست دادید چون هنوز مجوز دسترسی به میکروفون را صادر نکرده اید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missasit puhelun käyttäjältä {name}, koska et ole myöntänyt mikrofonin käyttöoikeutta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Namiss mo ang tawag mula kay {name} dahil hindi mo pinagana ang microphone access." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez manqué un appel de {name} car vous n'avez pas accordé l'accès au microphone." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको {name} से कॉल छूट गया क्योंकि आपने माइक्रोफोन एक्सेस की अनुमति नहीं दी है।" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elmulasztottad {name} hívását, mert a mikrofon-hozzáférés nem lett megadva." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}からの通話を逃した理由は、マイクへのアクセスを許可していないためです。" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님으로부터 받은 전화를 놓쳤습니다. 마이크 접근 권한을 허용하지 않았기 때문입니다." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-аас дуудлага авч чадсангүй, учир нь та микрофон ашиглах зөвшөөрөлгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda terlepas panggilan daripada {name} kerana anda belum memberikan akses mikrofon." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je hebt een gemiste oproep van {name} omdat je geen microfoontoegang hebt verleend." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você perdeu uma chamada de {name} porque você não concedeu acesso ao microfone." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você perdeu uma chamada de {name} porque você não concedeu acesso ao microfone." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai ratat un apel de la {name} deoarece nu ai acordat acces la microfon." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы пропустили звонок от {name} потому что не предоставили доступ к микрофону." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du missade ett samtal från {name} eftersom du inte har beviljat mikrofonåtkomst." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulikosa simu kutoka {name} kwa sababu hujatoa ruhusa ya matumizi ya kipaza sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} -ன் அழைப்பை தவறவிட்டீர்கள் ஏனெனில் நீங்கள் மைக்ரோஃபோன் அணுகலை வழங்கவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} నుండి కాల్ మిస్ చేశారు కారణం మీరు మైక్రోఫోన్ యాక్సెస్ను ఇవ్వలేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณพลาดสายจาก {name} เพราะคุณไม่ได้อนุญาต การเข้าถึงไมโครโฟน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kişisinden gelen bir çağrıyı, mikrofon erişimini vermediğiniz için kaçırdınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви пропустили дзвінок від {name} через те, що не надали доступ до мікрофону." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے {name} کی کال مس کر دی کیونکہ آپ نے مائیکروفون تک رسائی اجازت نہیں دی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {name}dan qo'ng'iroqni o'tkazib yubordingiz, chunki siz mikrofon kirishiga ruxsat bermagansiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã bỏ lỡ cuộc gọi từ {name} vì bạn chưa cấp quyền truy cập micro." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "You missed a call from {name} because you haven't granted microphone access." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您错过了来自{name}的通话,因为您没有授予麦克风访问权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您錯過了{name}的來電,因為您還未授權麥克風存取權限。" + } + } + } + }, + "callsMissed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemiste Oproep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مكالمة فائتة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buraxılmış zəng" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missed Call" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прапушчаны выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуснато обаждане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মিসড কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trucada perduda" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškaný hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad Coll" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mistet opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verpasster Anruf" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναπάντητη Κλήση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missed Call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maltrafita Alvoko" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada perdida" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada perdida" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastamata kõne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dei galdua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس بی‌پاسخ" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastaamaton puhelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi nasagot na tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel manqué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada perdida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kira Da Aka Missa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה שלא נענתה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिस कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušten poziv" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem fogadott hívás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բաց թողնված զանգ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Tak Terjawab" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata persa" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "不在着信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოტოვებული ზარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅមិនបានទទួល" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಿಸ್ಡ್ ಕಾಲ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "부재중 통화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگهێشت له‌سه‌رچوو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ejjulidde Emisinde" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Praleistas skambutis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neatbildēts zvans" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуштен повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тасалдсан дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Tidak Terjawab" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လွတ်သွားသော ခေါ်ဆိုမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubesvart anrop" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिस्ड कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemiste oproep" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapt anrop" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayayta mana kutichishka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missed Call" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieodebrane połączenie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له لاسه وتلې زنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligação perdida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada perdida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel nepreluat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропущенный вызов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušteni poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මඟ හැරුණු ඇමතුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškaný hovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgrešen klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje e humbur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуштен позив" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušten poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missat samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu zilizopotea" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவறவிட்ட அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తప్పిన కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายที่ไม่ได้รับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cevapsız Çağrı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропущений виклик" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوٹی ہوئی کال" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oʻtkazilgan qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi nhỡ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifowuni ephosiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未接通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未接來電" + } + } + } + }, + "callsMissedCallFrom" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemiste oproep van {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مكالمة لم يتم الرد عليها من {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kontaktından buraxılmış zəng" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missed call from {name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прапушчаны выклік ад {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуснато обаждане от {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এর থেকে মিসড কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trucada perduda de {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškaný hovor od {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad coll gan {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mistet opkald fra {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verpasster Anruf von {name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναπάντητη κλήση από {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missed call from {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maltrafita alvoko el {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada perdida de {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada perdida de {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastamata kõne kontaktilt {name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(r)en dei galdua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس از دست رفته از {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastaamaton puhelu käyttäjältä {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi nasagot na tawag mula kay {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel manqué de {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada perdida de {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kira da aka missa daga {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה שלא נענתה מאת {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} से छूटी हुई कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušten poziv od {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem fogadott hívás tőle: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բաց թողնված զանգ {name}-ից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan tak terjawab dari {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamata persa da {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}からの不在着信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} -გან გამოტოვებული ზარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាន​ខកខាន​ទទួល​ការ​ហៅ​ពី {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ರಿಂದ ಮಿಸ್ಡ್ ಕಾಲ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 님의 부재중 통화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگهێشت له‌سه‌رچوو لە {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ejjulidde emisinde okuva eri {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Praleistas skambutis nuo {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neatbildēts zvans no {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуштен повик од {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} тасалдсан дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan tidak terjawab dari {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ထံမှ လွတ်သွားသော ခေါ်ဆိုမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapt anrop fra {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}को मिस्ड कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemiste oproep van {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapt anrop frå {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayay mana kutichishka {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਤੋਂ ਗੁਆਂਢੀ ਕਾਲ ਮਿਸ ਹੋਈ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieodebrane połączenie od {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} څخه له لاسه وتلې زنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada perdida de {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamada perdida de {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel pierdut de la {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропущенный вызов от {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušteni poziv od {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}සිට මඟ හැරුණු ඇමතුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškaný hovor od {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgrešen klic od osebe {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje e humbur nga {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуштен позив од {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propušten poziv od {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missat samtal från {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "wito wa simu haukupokelewa kutoka {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} க்குள்ளது தவறவிட்ட அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} నుండి తప్పిన కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สายที่ไม่ได้รับจาก {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tarafından cevapsız çağrı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропущений виклик від {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} سے چھوٹی ہوئی کال" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}dan o'tkazilgan qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi nhỡ từ {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifowuni ephosiwe ngo {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "来自{name}的未接通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "來自 {name} 的未接來電" + } + } + } + }, + "callsNotificationsRequired" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stem- en video-oproepe vereis dat kennisgewings in jou toestelstelselinstellings geaktiveer is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المكالمات الصوتية والمرئية تتطلب تمكين الاشعارات في اعدادات نظامك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli və görüntülü zənglər, cihazınızın sistem ayarlarında bildirişlərin fəallaşdırılmasını tələb edir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز کیلئے آپ کے ڈیوائس کے سسٹم سیٹنگز میں نوٹیفیکیشنز فعال ہونی چاہئے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Галасавыя і відэазванкі патрабуюць уключэння апавяшчэнняў у сістэмных наладах прылады." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовите и видео обаждания изискват известията да бъдат активирани в настройките на системата на вашето устройство." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভয়েস এবং ভিডিও কল চালু করতে আপনার ডিভাইসের সিস্টেম সেটিংসে নোটিফিকেশন চালু করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les telefonades de veu i de vídeo requereixen que les notificacions estiguin activades a la configuració del sistema del dispositiu." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pro používání hlasových a video hovorů je třeba povolit upozornění/oznámení v systémových nastaveních zařízení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae galwadau Llais a Fideo yn gofyn am hysbysiadau wedi'u caniatáu yng ngosodiadau system eich dyfais." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videoopkald kræver, at notifikationer er aktiveret i enhedens systemindstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprach- und Videoanrufe erfordern Benachrichtigungen, die in den Systemeinstellungen Ihres Geräts aktiviert sind." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι κλήσεις φωνής και βίντεο απαιτούν την ενεργοποίηση ειδοποιήσεων στις ρυθμίσεις συστήματος της συσκευής σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voice and Video Calls require notifications to be enabled in your device system settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voĉaj kaj Videaj Vokoj bezonas ebligi notifikojn en viaj sistema agordoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Las llamadas de voz y video requieren que las notificaciones estén habilitadas en la configuración de su dispositivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Las llamadas de voz y video requieren que las notificaciones estén habilitadas en la configuración del sistema de tu dispositivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hääl- ja videokõnede kasutamiseks peavad teie süsteemi seaded olema lubatud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahots eta Bideo Deiek jakinarazpenak behar dituzte zure gailuaren sisteman aktibatuta egoteko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس‌های صوتی و تصویری نیاز به فعال‌سازی اعلان‌ها در تنظیمات سیستم دستگاه شما دارند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni- ja videopuhelut vaativat ilmoitusten aktivoimisen laitteen järjestelmäasetuksissa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang Mga Voice at Video Call ay nangangailangan na naka-enable ang mga notifications sa iyong mga device system settings." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les appels vocaux et vidéos nécessitent que les notifications soient activées dans les paramètres système de votre appareil." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "As chamadas de voz e vídeo requiren que as notificacións estean habilitadas na configuración do sistema do teu dispositivo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiran Muryar da Bidiyo yana bukatar sanarwa su kasance a kunnane a cikin saitunan tsarin na'urarka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחות קוליות ווידיאו דורשות הפעלת התראות בהגדרות המערכת של המכשיר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वॉइस और वीडियो कॉल के लिए आपके डिवाइस सिस्टम सेटिंग्स में नोटिफिकेशन सक्षम होना आवश्यक है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio i video pozivi zahtijevaju omogućene obavijesti u postavkama sustava uređaja." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A hang- és videóhívásokhoz szükséges, hogy az értesítések engedélyezve legyenek az eszköz rendszerbeállításaiban." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային և տեսազանգերը պահանջում են ակտիվացնել ծանուցումները ձեր սարքի համակարգի կարգավորումներում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video memerlukan notifikasi untuk diaktifkan di pengaturan sistem perangkat Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le chiamate vocali e video richiedono che le notifiche siano abilitate nelle impostazioni di sistema del dispositivo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声とビデオ通話を使用するには、デバイスのシステム設定で通知を有効にする必要があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვან და ვიდეო ზარებს სჭირდება ინფორმაცია ჩართვისთვის თქვენს სისტემის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅជាសំឡេង និងជាវីដេអូត្រូវបានដំណើរការជាសកម្មនៅក្នុងការកំណត់ប្រព័ន្ធរបស់ឧបករណ៍របស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಾಯ್ಸ್ ಮತ್ತು ವೀಡಿಯೋ ಕರೆಗಳಿಗೆ ನಿಮ್ಮ ಸಾಧನದಲ್ಲಿ ನೋಟಿಫಿಕೇಷನ್‌ಗಳನ್ನು ಚಾಲನೆ ಮಾಡಬೇಕಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 및 영상 통화는 장치 시스템 설정에서 알림을 활성화해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیە دەنگی و ڤیدیۆ داواکاری دروستکردنی ئاگادارییەکان تەنها لە شێوەکاریکردنی سیستەمی ئامرازت بچرێنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emmboozi ne Bidiyo Bye Werezebwa zetaaga okuteekebwa okwetasakyanga mu obulile bw'ekizibwa kyole emmotoka ne ekisasa ekisabuja okulamula obubonero." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balso ir vaizdo skambučiams reikia įjungti pranešimus jūsų įrenginio sistemos nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balss un video zvaniem nepieciešami aktīvi paziņojumi jūsu ierīces sistēmas iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовните и видео повиците бараат активирање на известувањата во поставките на вашиот уред." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуу болон видео дуудлагууд таны төхөөрөмжийн систем тохиргоонд мэдээллийг идэвхжүүлэх шаардлагатай байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video memerlukan pemberitahuan untuk diaktifkan dalam tetapan sistem peranti anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံနှင့်ဗီဒီယိုခေါ်ဆိုမှုများကို သင့် device system settings တွင် enabled ဖြစ်ရ မည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtaler krever at meldingsvarsler er aktivert i enhetsinnstillingene dine." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भ्वाइस र भिडियो कलहरूमा तपाईंको उपकरण प्रणाली सेटिङहरूमा सूचना सक्षम गर्न आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spraak- en video-oproepen vereisen dat meldingen zijn ingeschakeld in de systeeminstellingen van uw apparaat." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtalar krev at varslar er aktivert i systeminstillingane til enheten din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayankho a Mawu ndi Makanema akufunika kuti awonetsedwa mu zochunukitsa za chipangizo chanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਵਾਜ਼ ਅਤੇ ਵਿਡੀਓ ਕਾਲਾਂ ਲਈ ਤੁਹਾਡੇ ਔਜ਼ਾਰ ਦੇ ਸਿਸਟਮ ਸੈਟਿੰਗਜ਼ ਵਿੱਚ ਨੋਟੀਫਿਕੇਸ਼ਨ ਨੂੰ ਫੋਲਕਣ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenia głosowe i wideo wymagają włączenia powiadomień w ustawieniach systemowych urządzenia." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوګ او ویډیو زنګونو ته د اړتیا وړ خبرتیاوې په ستاسو د وسیله سیسټم تنظیماتو کې فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de voz e vídeo exigem notificações ativadas nas configurações do sistema do seu dispositivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de Voz e Vídeo exigem que as notificações estejam permitidas nas definições do sistema do seu dispositivo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apelurile vocale și video necesită activarea notificărilor în setările de sistem ale dispozitivului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосовые и видеозвонки требуют включения уведомлений в системных настройках устройства." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video pozivi zahtevaju da obaveštenja budu omogućena u sistemskim podešavanjima vašeg uređaja." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය හා දෘශ්‍ය ඇමතුම් සඳහා ඔබගේ උපාංග පද්ධති සැකසීම්වල දැනුම්දීම් සබැල් වී තිබිය යුතුයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové a video hovory vyžadujú povolenie upozornení v systémových nastaveniach vášho zariadenia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasvni in video klici zahtevajo, da so obvestila omogočena v sistemskih nastavitvah naprave." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrjet me Zë dhe Video kanë nevojë që njoftimet të jenë të aktivizuara në cilësimet e sistemit të pajisjes." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовни и видео позиви захтевају да обавештења буду укључена у подешавањима система вашег уређаја." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video poziv zahtevaju da obaveštenja budu omogućena u podešavanjima vašeg uređaja." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Röst- och videosamtal kräver att aviseringar är aktiverade i dina enhetsinställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti na Simu za Video zinahitaji arifa ziweze kuwezeshwa katika mipangilio ya mfumo wako wa kifaa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குரல் மற்றும் காணொளி அழைப்புகளை உங்களுடைய சாதனம் அமைப்புகளில் அறிவிப்புகளை இயக்குவது அவசியம." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాయిస్ మరియు వీడియో కాల్స్‌లో నోటిఫికేషన్‌లు అవసరం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโทรด้วยเสียงและวิดีโอต้องมีการเปิดการแจ้งเตือนในการตั้งค่าระบบของอุปกรณ์ของคุณ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli ve Görüntülü Aramaların çalışabilmesi için cihazınızın sistem ayarlarında Session bildirimlerinin etkinleştirilmiş olması gerekmektedir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для голосових та відеодзвінків необхідно увімкнути сповіщення в налаштуваннях системи вашого пристрою." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز کے لیے آپ کے ڈیوائس کے سسٹم سیٹنگز میں نوٹیفیکیشنز کو فعال کرنا ضروری ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli va video qo'ng'iroqlarni yoqish uchun tizim sozlamalarida xabarnomalar yoqilishi kerak." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các cuộc gọi giọng nói và video yêu cầu phải bật thông báo trong cài đặt hệ thống thiết bị của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iifowuni zeSandi neeVidiyo zifuna izaziso ukuba zivulwe kwizicwangciso zenkqubo yezixhobo zakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音和视频通话需要在您的设备系统设置中启用通知。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語音和視訊通話功能要求在您在系統設定中授權通知權限" + } + } + } + }, + "callsPermissionsRequired" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproep Regte Benodig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صلاحيات الاتصال مطلوبة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəng icazələri tələb olunur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال کے اجازت نامے درکار ہیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неабходныя дазволы на выклік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Необходими са разрешения за обаждане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল করার অনুমতি প্রয়োজন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permís de trucada necessari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Požaduje se oprávnění k volání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angen Caniatâd Galwadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opkalds Tilladelse Krævet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anrufberechtigung erforderlich" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απαιτείται Άδεια Κλήσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Permissions Required" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vokaj Permesoj Bezonataj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se requieren permisos de llamada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se requieren permisos de llamada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helistamise load on nõutud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Permissions Required" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دسترسی‌های تماس مورد نیاز است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puheluiden käyttöoikeus tarvitaan" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinakailangan ang Mga Pahintulot sa Tawag" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorisations d'appel requises" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "É preciso ter o permiso de chamada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana bukatar Izinin Kira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נדרשות הרשאות לשיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल अनुमतियाँ आवश्यक हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebna dopuštenja poziva" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívási engedély szükséges" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահանջվում են զանգի թույլտվություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izin Panggilan Diperlukan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sono necessari i permessi di chiamata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話の権限が必要です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარის უფლებების მოთხოვნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តម្រូវឱ្យមានការអនុញ្ញាតការហៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರೆ ಪ್ರವೇಶ ಅನುಮತಿಗಳು ಅಗತ್ಯವಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 권한이 필요합니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەسەڵاتی پەیوەندیدان پێویستە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Permissions Required" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການອະນຸຍາດໂທຍາຄໍາປ່ອນຕ້ອງການ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reikalingos skambinimo teisės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepieciešama zvanu atļauja" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се потребни дозволи за повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлагын зөвшөөрөл шаардлагатай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kebenaran Panggilan Diperlukan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုခွင့် ပြုရန် လိုအပ်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaletillatelser er påkrevd" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कल अनुमतिहरू आवश्यक छन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproepmachtigingen vereist" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaletillatelser krevst" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call Permissions Required" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੌਲ ਅਧਿਕਾਰ ਲੋੜੀਂਦੇ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagane uprawnienia do połączeń" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د کال اجازه غوښتل کیږي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões de ligações necessárias" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões de Chamada Necessárias" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisiuni de apel necesare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Требуются разрешения для звонка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebne dozvole za poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතීමට අවසර වුවමනාය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžaduje sa oprávnenie na uskutočňovanie hovorov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebna dovoljenja za klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejet e Thirrjes të Nevojshme" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребна је дозвола за позивање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebne dozvole za pozive" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtalsbehörigheter krävs" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruhusa za Simu Zinahitajika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்புக் கனிக்க வேண்டிய அனுமதி தேவை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ అనుమతులు కావాలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ต้องการสิทธิการโทร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arama İzni Gerekli" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потрібні дозволи для дзвінків" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کال کی اجازتیں درکار ہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq uchun ruxsatlar kerak" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu Quyền Gọi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ufunwa Iimvume Zetsalelo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请授予通话权限" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要通話權限" + } + } + } + }, + "callsPermissionsRequiredDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy kan die toestemming vir \"Stem- en Video-oproepe\" aktiveer in Privaatheidsinstellings." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يمكنك تفعيل صَلاحِيَة \"المكالمات الصوتية والمرئية\" في إعدادات الخصوصية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik Ayarlarında \"Səsli və görüntülü zənglər\" icazəsini fəallaşdıra bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما ویڈیو و کال پرمیشن ونجان سیٹنگا سی ایں براتی اے انارہ۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы можаце ўключыць дазвол «Галасавыя і відэазванкі» у наладах прыватнасці." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можете да разрешите разрешението \"Гласови и видео разговори\" в настройките за поверителност." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable the \"Voice and Video Calls\" permission in Privacy Settings." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeu habilitar el permís de 'Telefonades de veu i vídeo' a la configuració de Privadesa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oprávnění pro \"Hlasové a video hovory\" můžete povolit v nastavení Soukromí." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gallwch alluogi'r caniatâd \"Galwadau Llais a Fideo\" yn y Gosodiadau Preifatrwydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere tilladelsen \"Stemme- og videoopkald\" i Privatlivsindstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst die Berechtigung für \"Sprach- und Videoanrufe\" in den Datenschutzeinstellungen aktivieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μπορείτε να ενεργοποιήσετε την άδεια \"Κλήσεις Φωνής και Βίντεο\" στις Ρυθμίσεις Απορρήτου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable the \"Voice and Video Calls\" permission in Privacy Settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi povas ebligi la permeson \"Voĉaj kaj Video Alvokoj\" en privatecaj agordoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puedes activar el permiso de \"Llamadas de voz y video\" en los ajustes de Privacidad." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puedes habilitar los permisos de \"Llamadas de Voz y Video\" en la Configuración de Privacidad." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Hääl- ja videokõnede\" loa saate anda privaatsussätetes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaitu dezakezu \"Ahots eta bideo deien\" baimena Pribatutasun Ezarpenetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما می‌توانید مجوز «تماس‌های صوتی و تصویری» را در تنظیمات حریم خصوصی فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voit aktivoida \"Ääni- ja videopuhelut\" -käyttöoikeuden yksityisyysasetuksista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maaari mong i-enable ang pahintulot na \"Mga Voice at Video Call\" sa Privacy Settings." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous pouvez activer la permission 'Appels vocaux et vidéo' dans les paramètres de confidentialité." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podes activar o permiso \"Voz e videochamadas\" na Configuración de Privacidade." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku iya kunna damar \"Kiraye-Kirayen Murya da Bidiyo\" a cikin Saitunan Sirri." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תוכל/י לאפשר את ההרשאה \"שיחות קוליות ווידאו\" בהגדרות הפרטיות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप गोपनीयता सेटिंग्स में \"वॉइस और वीडियो कॉल्स\" अनुमति सक्षम कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti dopuštenje za „Audio i Video pozive” u Postavkama privatnosti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A hang és videó hívásokat az adatvédelmi beállításokban engedélyezheted." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք կարող եք միացնել «Ձայնային և տեսազանգերի» թույլտվությունը Գաղտնիության կարգավորումներում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dapat mengaktifkan izin \"Panggilan Suara dan Video\" di Pengaturan Privasi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puoi concedere l'autorizzazione alle 'Chiamate vocali e video' nelle impostazioni della privacy." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プライバシー設定で「音声とビデオ通話」の許可を有効にできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ შეგიძლიათ ჩართოთ \"ხმოვანი და ვიდეო ზარების\" უფლება კონფიდენციალობის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកអាចបើកការអនុញ្ញាត \"ការហៅទូរស័ព្ទ និងវីដេអូ\" ក្នុងការកំណត់ឯកជនភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಪ್ರೈವೆಸಿ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ \"ವಾಯ್ಸ್ ಮತ್ತು ವಿಡಿಯೋ ಕಾಲ್ಸ್\" ಅನುಮತಿಯನ್ನು ಕಾರ್ಯಕ್ರಮಗೊಳಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인정보 설정에서 '음성 및 영상 통화' 항목을 활성화할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەتوانی دەسەڵاتی \"پەیوەندی دەنگی و ڤیدیۆ\" بکەیەوە لە رێکخستنی تایبەتی." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osobola okukakasa obwa \"Obumanyiddwako n'Obwezokuba\" ku by'akabondo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs galite įjungti leidimą \"Balso ir vaizdo skambučiai\" privatumo nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs varat aktivizēt atļauju ‘Balss un video zvani’ konfidencialitātes iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Може да го овозможите дозволата за „Гласовни и видео повици“ во Поставките за приватност." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таныг зөвшөөрөх бол \"Дуу ба Видео Дуудлага\" зөвшөөрлийг Нууцлалын Тохиргоонд тохируулах боломжтой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda boleh mengaktifkan kebenaran \"Panggilan Suara dan Video\" dalam Tetapan Privasi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable the \"Voice and Video Calls\" permission in Privacy Settings." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere \"Lyd- og videosamtaler\"-tillatelsen i personvernsinnstillingene." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको गोप्यता सेटिङहरूमा \"भ्वाइस र भिडियो कलहरू\" अनुमति सक्षम गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt de machtiging \"Spraak- en video-oproepen\" inschakelen in de privacy-instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere 'Lyd- og videosamtaler' tillatelsen i personvernsinnstillingene." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mutha kuyambitsa chovomerezeka \"Mawumtchela ndi Mavidiyo kuitana\" mu Zoikamo Zachinsinsi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਪ੍ਰਾਈਵੇਸੀ ਸੈਟਿੰਗਾਂ ਵਿੱਚ \"ਵਾਇਸ ਅਤੇ ਵੀਡੀਓ ਕਾਲਾਂ\" ਦੀ ਆਗਿਆ ਪ੍ਰਾਪਤ ਕਰ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uprawnienie „Połączenia głosowe i wideo” można włączyć w ustawieniach prywatności." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو کولی شئ په محرمیت ترتیباتو کې \"غږ او ویډیو زنګونه\" اجازه فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você pode habilitar a permissão de \"Voz e vídeo chamadas\" nas Configurações de Privacidade." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ativar a permissão de \"Chamadas de voz e vídeo\" nas Definições de Privacidade." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puteți activa permisiunea „Apeluri Vocale și Video” în Setările de Confidențialitate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы можете включить разрешение «Голосовые и видеозвонки» в настройках конфиденциальности." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti dozvolu \"Glasovni i Video Pozivi\" u podešavanjima Privatnosti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට රහස්‍යතා සැකසුම් තුළ 'හඬ සහ වීඩියෝ ඇමතුම්' අවසරය සබල කළ හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Hlasové a videohovory\" môžete povoliť v nastaveniach súkromia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dovoljenje za 'Glasovne klice in videoposnetke' lahko omogočite v nastavitvah zasebnosti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju mund të aktivizoni lejen \"Thirrje Zëri dhe Video\" në cilësimet e privatësisë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можете омогућити дозволу за гласовне и видео позиве у подешавањима приватности." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti dozvolu za „Glasovne i video pozive“ u Postavkama Privatnosti." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivera behörigheten \"Röst- och videosamtal\" i sekretessinställningarna." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unaweza kuwezesha ruhusa ya \"Simu za Sauti na Video\" katika Mipangilio ya Faragha." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் 'குரல் மற்றும் காணொளி அழைப்புகள்' அனுமதியை தனியுரிமை அமைப்புகளில் இயக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు గోప్యతా సెట్టింగ్‌లలో \"వాయిస్ మరియు విడియో కాల్‌లు\" అనుమతి ప్రారంభించవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณสามารถเปิดการอนุญาต \"การโทรด้วยเสียงและวิดีโอ\" ได้ในการตั้งค่าความเป็นส่วนตัว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "'Sesli ve Görüntülü Arama' iznini Gizlilik Ayarlarından etkinleştirebilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви можете увімкнути дозвіл «Голосові та відеодзвінки» в налаштуваннях конфіденційності." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ رازداری کی ترتیبات میں \"وائس اور ویڈیو کالز\" کی اجازت کو فعال کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz \"Ovozli va Video Qo'ng'iroqlar\" ruxsatini Maxfiylik Sozlamalarida yoqishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có thể bật quyền \"Gọi giọng nói và video\" trong cài đặt Quyền riêng tư." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungavula imvume ethi \"Voice and Video Calls\" kwi-Privacy Settings." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您可以在隐私设置中启用 \"语音和视频通话\" 权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您可以在隱私權設定中啟用「語音和視訊通話」權限。" + } + } + } + }, + "callsReconnecting" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herverbinding…" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جار إعادة الاتصال…" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenidən bağlantı qurulur…" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پارانچکاں..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паўторнае падключэнне…" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възстановяване на връзката…" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনরায় সংযুক্ত হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'està tornant a connectar…" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opětovné připojení…" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aildrefnu…" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genopretter..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiederverbinden…" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επανασύνδεση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconnecting…" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekonektante…" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconectando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconectando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taasühendamine…" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berriro konektatzen…" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال اتصال دوباره..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhdistetään uudelleen…" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muling kumukonekta…" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconnexion…" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restablecendo…" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana haɗawa da..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מתחבר מחדש…" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुन: कनेक्ट हो रहा है…" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno povezivanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újracsatlakozás…" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերամիացում…" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghubungkan kembali…" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riconnessione..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再接続しています..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კვლავ დაკავშირება…" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងភ្ជាប់ឡើងវិញ…" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮರು ಸಂಪರ್ಕಗೊಳ್ಳುತ್ತಿದೆ…" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 연결 중…" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کردنەوە بەتەقیەیە..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okumujjirako..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atjungta..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atjauno savienojumu…" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторно поврзување…" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргээж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyambungkan semula…" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်ဆက်စပ်နေသည်…" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kobler til på nytt…" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फेरी जडान हुँदैछ…" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herverbinden…" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kobler til på nytt…" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kubwezeretsanso…" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰਿਕੋਨੈਕਟ ਕੀਤਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponowne łączenie…" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د بیا نښلولو هڅه..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconectando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A restabelecer a ligação…" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reconectare..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Переподключение…" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno povezivanje…" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත සබැඳෙමින්…" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opätovné pripájanie…" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povezovanje..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rilidhet…" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поновно повезивање…" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno povezivanje…" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Återansluter…" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuungana Tena…" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் இணைக்கப்படுகிறது…" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మళ్లీ కనెక్ట్ అవుతోంది…" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเชื่อมใหม่…" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden bağlanıyor…" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторне з'єднання…" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ جڑ رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta ulanish..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang kết nối lại…" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuqhagamshelanisa kwakhona" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重连中..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在重新連線…" + } + } + } + }, + "callsRinging" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lui..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يرن حاليا..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çağırır..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "برنگینگ..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Званок..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звъни..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "রিং হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Està sonant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyzvání..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canu..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringer..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klingelt..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καλεί..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringing..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonorante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heliseb..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deika..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال زنگ خوردن..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soi..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumutunog..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soando..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana kara kira..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מצלצל..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बज रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoni..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kicseng..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զանգահարում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berdering..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Squilla..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "呼び出し中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარეკვა..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងរោទ៍..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರಿಂಗಿಂಗ್..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "전화 거는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبارە..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tesudde" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skambinama…" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvanu..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звонење..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага дугарч байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sedang Berbunyi..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်နေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringer..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिङिङ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaat over..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringar..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayakun..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰਿੰਗ ਕਰਨ ਲੱਗੇ ਹਾਂ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzwonienie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "رنيګ کول..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A tocar..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sună..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звонок..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvonjava..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නාද වෙනවා..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvonenie..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoni ..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po bie zilja..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звони..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoni..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ringer..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "kupigia..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முழக்கம்..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మోగిస్తోంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังส่งเสียง..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çalıyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виклик..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رنگ ہو رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroq qilinmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang đổ chuông..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyaqhosha..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "呼叫中..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "響鈴中..." + } + } + } + }, + "callsSessionCall" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Oproep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zəngi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کال" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Званок" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} обаждане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trucada {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hovor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwad {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Opkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Anruf" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Voko" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada de {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamada de {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Kõne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Deia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس بگیر {app_name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Puhelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appel {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Kira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחת {app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} कॉल करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} poziv" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Hívás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} զանգ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Chiamata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ზარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಕರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 통화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} بانگکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Amakubo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skambutis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Zvans" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Повик" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ခေါ်ဆိုမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} कल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Gesprek" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਕਾਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenie z aplikacji {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کال" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Call" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Chamar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apel {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звонок в {app_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} poziv" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඇමතුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volanie {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} klic" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Позив" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Samtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu ya {app_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} కాల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโทร {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Arama" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Дзвінок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کال" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qo'ng'iroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umnxeba we-{app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 通話" + } + } + } + }, + "callsSettings" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oproepe (Beta)" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المكالمات (نسخة تجريبية)" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zənglər (Beta)" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کالز (بیٹا)" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Званкі (бэта)" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обаждания (Beta)" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কলস (বেটা)" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonades (Beta)" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hovory (Beta)" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwadau (Beta)" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opkald (Beta)" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anrufe (Beta)" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλήσεις (Beta)" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Calls (Beta)" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vokoj (Beto)" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas (Beta)" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas (beta)" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõned (beta)" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Calls (Beta)" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس‌ها (بتا)" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puhelut (beta)" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Tawag (Beta)" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appels (Bêta)" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas (Beta)" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kira (Beta)" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחות (בטא)" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल्स (बेटा)" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivi (Beta)" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hívások (béta)" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զանգեր (Բետա)" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan (Beta)" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamate (Beta)" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話 (ベータ版)" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზარები (Beta)" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅ (បេតា)" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಾಲುಗಳು (ಬೀಟಾ)" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "통화 (베타)" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیدانەکان (بهێڵه‌ی نوێ)" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Calls (Beta)" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໂທດ້ວຍເບຕ້າ (Calls Beta)" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skambučiai (Beta)" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvani (Beta)" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повици (Бета)" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуудлага (Beta)" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan (Beta)" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခေါ်ဆိုမှု(Beta)" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaler (Beta)" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कलहरू (बीटा)" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprekken (Beta)" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaler (Beta)" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Calls (Beta)" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਾਲਾਂ (ਬੇਟਾ)" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenia (Beta)" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کالونه (بیټا)" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas (Beta)" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas (Beta)" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apeluri (Beta)" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звонки (бета)" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivi (Beta)" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම් (බීටා)" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hovory (Beta)" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klici (Beta)" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje (Beta)" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позиви (бета)" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivi (Beta)" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtal (Beta)" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simu (Beta)" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்புகள் (பீட்டா)" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్స్ (బీటా)" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโทร (เบต้า)" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aramalar (Beta)" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дзвінки (Beta)" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کالز (بیٹا)" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'ng'iroqlar (Beta)" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi (Beta)" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iitsalela (Beta)" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音通话 (测试版)" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通話 (Beta)" + } + } + } + }, + "callsVoiceAndVideo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stem- en video-oproepe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المكالمات الصوتية و المرئية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli və görüntülü zənglər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Галасавыя і відэазванкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласови и видео разговори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভয়েস এবং ভিডিও কল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonades de veu i de vídeo" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové a video hovory" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwadau Llais a Fideo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videoopkald" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprach- und Videoanrufe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλήσεις Φωνής και Βίντεο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voice and Video Calls" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voĉaj kaj Videaj Vokoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas de voz y video" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas de voz y video" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hääl- ja videokõned" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahots eta Bideo Deiak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس‌های صوتی و تصویری" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni- ja videopuhelut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Voice at Video Call" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appels vocaux et vidéos" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de voz e vídeo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiran Muryar da Bidiyo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחות קוליות ווידיאו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वॉइस और वीडियो कॉल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio i video pozivi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hang és videó hívások" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային և տեսազանգեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamate vocali e video" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声とビデオ通話" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვანი და ვიდეო ზარები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅជាសំឡេង និងជា​វីដេអូ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಾಯ್ಸ್ ಮತ್ತು ವೀಡಿಯೋ ಕರೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 및 영상 통화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیە دەنگی و ڤیدیۆکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emmboozi ne Bidiyo Bye Werezebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balso ir vaizdo skambučiai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balss un video zvani" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовни и видео повици" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуу болон видео дуудлага" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံနှင့်ဗီဒီယိုကော" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtaler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भ्वाइस र भिडियो कलहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spraak- en video-oproepen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtaler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayankho a Mawu ndi Makanema" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਵਾਜ਼ ਅਤੇ ਵਿਡੀਓ ਕਾਲਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenia głosowe i wideo" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د زوګ او ویډیو زنګونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de voz e vídeo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de Voz/Vídeo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apeluri vocale și video" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосовые и видеозвонки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video pozivi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය හා දෘශ්‍ය ඇමතුම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové a video hovory" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasvni in video klici" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje me Zë dhe Video" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовни и видео позиви" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video poziv" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Röst- och videosamtal" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti na Simu za Video" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குரல் மற்றும் காணொளி அழைப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాయిస్ మరియు వీడియో కాల్స్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโทรด้วยเสียงและวิดีโอ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli ve Görüntülü Aramalar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосові та відеодзвінки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli va video qo'ng'iroqlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc gọi thoại và video" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iifowuni zeSandi neeVidiyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音和视频通话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語音和視訊通話" + } + } + } + }, + "callsVoiceAndVideoBeta" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stem- en video-oproepe (Beta)" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المكالمات الصوتية والمرئية (تجريبي)" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli və görüntülü zənglər (Beta)" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز (بیٹا)" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Галасавыя і відэазванкі (бэта)" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласови и видеозаписи (Бета)" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভয়েস এবং ভিডিও কল (Beta)" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telefonades de veu i de vídeo (Beta)" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové a video hovory (Beta)" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galwadau Llais a Fideo (Beta)" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videoopkald (Beta)" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprach- und Videoanrufe (Beta)" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλήσεις Φωνής και Βίντεο (Beta)" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voice and Video Calls (Beta)" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voĉaj kaj Videaj Vokoj (Beta)" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas de Voz y Video (Beta)" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llamadas de Voz y Video (Beta)" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hääl- ja videokõned (Beta)" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahots eta Bideo Deiak (Beta)" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس‌های صوتی و تصویری (بتا)" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni- ja videopuhelut (beta)" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Voice at Video Call (Beta)" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appels vocaux et vidéos (Beta)" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de voz e vídeo (Beta)" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiran Muryar da Bidiyo (Beta)" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחות קוליות ווידיאו (Beta)" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वॉइस और वीडियो कॉल (बीटा)" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio i video pozivi (Beta)" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hang és videó hívások (béta)" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային և տեսազանգեր (Beta)" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video (Beta)" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiamate vocali e video (Beta)" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声通話とビデオ通話 (ベータ版)" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვანი და ვიდეო ზარები (Beta)" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការហៅជាសំឡេង និងជា​វីដេអូ (បេតា)" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಾಯ್ಸ್ ಮತ್ತು ವೀಡಿಯೋ ಕರೆಗಳು (ಬೀಟಾ)" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 및 영상 통화 (Beta)" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیە دەنگی و ڤیدیۆ (Beta)" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emmboozi ne Bidiyo Bye Werezebwa (Beta)" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balso ir vaizdo skambučiai (Beta)" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balss un video zvani (Beta)" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовни и видео повици (Beta)" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуу болон видео дуудлага (Beta)" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panggilan Suara dan Video (Beta)" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံနှင့်ဗီဒီယိုကော (Beta)" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtaler (Beta)" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भ्वाइस र भिडियो कलहरू (बीटा)" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spraak- en video-oproepen (Beta)" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd- og videosamtaler (Beta)" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayankho a Mawu ndi Makanema (Beta)" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਵਾਜ਼ ਅਤੇ ਵਿਡੀਓ ਕਾਲਾਂ (Beta)" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Połączenia głosowe i wideo (beta)" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زوګ او ویډیو زنګونه (Beta)" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de voz e vídeo (Beta)" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamadas de Voz/Vídeo (Beta)" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apeluri vocale și video (Beta)" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосовые и видеозвонки (бета)" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video pozivi (Beta)" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශ්‍රව්‍ය සහ වීඩියෝ ඇමතුම් (බීටා)" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové a video hovory (Beta)" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasvni in video klici (Beta)" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thirrje me Zë dhe Video (Beta)" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовни и видео позиви (Beta)" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovni i video poziv (Beta)" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Röst- och videosamtal (Beta)" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti na Simu za Video (Beta)" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குரல் மற்றும் காணொளி அழைப்புகள் (பீட்டா)" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాయిస్ మరియు వీడియో కాల్స్ (బీటా)" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การโทรด้วยเสียงและวิดีโอ (Beta)." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli ve Görüntülü Aramalar (Deneme Aşamasında)" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосові та відеодзвінки (бета-версія)" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس اور ویڈیو کالز (بیٹا)" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli va video qo'ng'iroqlar (Beta)" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các cuộc gọi giọng nói và video (Beta)" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iifowuni zeSandi neeVidiyo (Beta)" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音和视频通话(测试版)" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語音和視訊通話 (Beta)" + } + } + } + }, + "callsVoiceAndVideoModalDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou IP is sigbaar vir jou oproepmaat en 'n Oxen Foundation-bediener terwyl beta-oproepe gebruik word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عنوان IP الخاص بك مرئي لشريك الاتصال وخادم Oxen Foundation أثناء استخدام المكالمات التجريبية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beta zənglərini istifadə edərkən IP ünvanınız zəng tərəfdaşınıza və Oxen Foundation serverinə görünür." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی آپ کہ آئیں طرفه IP پدنی Oxen Foundation کہ سرورے ہ مغامیگیا." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш IP будзе бачныя вашаму партнёру па званках і серверу Oxen Foundation падчас выкарыстання бэта-званкоў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашият IP е видим за вашият партньор по време нослужване на beta обаждания и Oxen Foundation сървър." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বেটা কলগুলি ব্যবহার করার সময় আপনার আইপি আপনার কল পার্টনার এবং একটি Oxen Foundation সার্ভারের কাছে দৃশ্যমান হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra IP és visible a la vostra parella de trucada i a un servidor de Oxen Foundation mentre utilitzeu trucades beta." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše IP adresa je při používání beta hovorů viditelná pro vašeho volacího partnera a server Oxen Foundation." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich GPS yn weladwy i'ch partner galwad ac i Wasanaeth Node Foundation Oxen wrth ddefnyddio galwadau beta." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din IP synlig for din opkaldspartner og en Oxen Foundation-server, mens du bruger betaopkald." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deine IP ist für deinen Gesprächspartner und einen Oxen Foundation Server sichtbar, während du Beta-Anrufe nutzt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η διεύθυνση IP σας είναι ορατή στον συνομιλητή σας και σε έναν διακομιστή του Oxen Foundation κατά τη χρήση κλήσεων beta." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your IP is visible to your call partner and an Oxen Foundation server while using beta calls." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via IP-adreso estas videbla al via vokopartnero kaj al servilo de Oxen Foundation dum vi uzas betajn vokojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu IP es visible para tu compañero de llamada y un servidor de la Oxen Foundation mientras usas llamadas beta." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu IP es visible para tu socio de llamada y un servidor de Oxen Foundation mientras usas las llamadas beta." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie IP on nähtav teie kõnepartnerile ja Oxen Foundation serverile beetakõnede ajal." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure IPa ikusgai egongo da zure dei-bikotekidearentzako eta Oxen Foundation zerbitzari batentzako, beta-deiak egiten ari bazara." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آدرس IP شما برای مخاطب تماس شما و همچنین سرور Oxen Foundation در هنگام استفاده از تماس آزمایشی مشخص خواهد بود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP-osoitteesi on näkyvissä puhelun aikana vastaanottajalle ja Oxen Foundation palvelimelle, kun käytät beta-puheluita." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakikita ang iyong IP sa iyong kasama sa tawag at sa server ng Oxen Foundation habang gumagamit ng beta calls." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre adresse IP est visible par votre interlocuteur et un serveur d'Oxen Foundation pendant que vous utilisez des appels beta." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu IP é visible para o teu compañeire de chamada e un servidor da Oxen Foundation mentres utilizas chamadas beta." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP ɗinku yana bayyane ga abokin kiran ku da sabar Oxen Foundation yayin amfani da ƙiran beta." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כתובת ה-IP שלך גלויה לשותפת השיחה שלך ולשרת קרן Oxen בעת שימוש בשיחות בטא." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने खाते में एन्क्रिप्टेड संदेश भेजते समय आपका IP आपके कॉल पार्टनर और Oxen Foundation सर्वर को दिखाई देगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš IP je vidljiv vašem sugovorniku i poslužitelju Oxen Foundation dok koristite beta pozive." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az IP címed látható a hívópartner és egy Oxen Foundation szerver számára a béta hívások használata közben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր IP հասցեն տեսանելի է ձեր զանգի գործընկերոջը և մի 'Oxen Foundation' սերվերին ծիծլած օգտագործման ժամանակ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP Anda terlihat oleh mitra panggilan Anda dan server Oxen Foundation saat menggunakan panggilan beta." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il tuo IP è visibile all'utente che stai chiamando e a un server di Oxen Foundation durante l'utilizzo delle chiamate beta." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声通話とビデオ通話の使用中、あなたのIPはあなたの通話相手とOxen Foundationサーバーに表示されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი IP გააშკარავდება თქვენი ზარის პარტნიორს და Oxen Foundation-ის სერვერს, ბეტა ზარების გამოყენებისას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP អ្នក​ត្រូវបាន​លេចឮ​ច្បាស់នៅពេល​អ្នក​ប្រើកិច្ចប្រជុំ Beta ក្នុង Oxen Foundation។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬೇಟ ಕಾಲ್ಲನ್ನು ಬಳಸಿದಾಗ ನಿಮ್ಮ IP ಕರೆ ಸಹವಾಸಿಗೂ ಮತ್ತು Oxen Foundation ಸರ್ವರ್‌ಗೆ ಗೋಚರುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "베타 통화를 사용하는 동안 IP가 호출 파트너와 Oxen Foundation 서버에 보입니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پته‌ی IP ی تۆ بۆ شەریکەکەی تیپە و سێروێری Oxen Foundation پشت بە پشت ڕەنگە بونی بوو بێت کاتێک بەکارهێنانی بەتاکوڵ بوون بوزیەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP yo efulugettaka mu mateeka ne server ya Oxen Foundation nga okozeza omitting ekikugya ekiriotto." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naudojant beta skambučius, jūsų IP adresas matomas jūsų pašnekovui ir Oxen Foundation serveriui." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izmantojot beta zvanus, jūsu IP ir redzams jūsu zvana partnerim un Oxen Foundation serverim." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето IP е видливо за вашиот партнер за повик и серверот на Oxen Foundation додека користите бета повици." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны IP хаягийг ярианы хамтрагч болон Oxen Foundation сервер харагдана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alamat IP anda boleh dilihat oleh rakan panggilan anda dan pelayan Oxen Foundation semasa menggunakan panggilan beta." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် IP ကို ဖုန်းခေါ်စဉ်တွင် သင်၏ ချိန်းညွှန်းပါတနာများနှင့် Oxen Foundation ဆာဗာကို မြင်ရပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP-adressen din er synlig for samtalepartneren din og en Oxen Foundation-server mens du bruker betasamtaler." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको आइपी तपाईको कल पार्टनर र ओक्सन फाउन्डेसन सर्भरलाई बेटा कलहरू प्रयोग गर्दा देखिनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw IP is zichtbaar voor uw oproep partner en een Oxen Foundation server tijdens het gebruik van bètagesprekken." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP-adressa di er synlig for samtalepartnaren din og ein Oxen Foundation-server mens du bruker beta-samtaler." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP yanu ikuwoneka kwa mnzake wanu ndi seva ya Oxen Foundation mukamagwiritsa ntchito mayitanidwe ozungulira." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੀ ਕਾਲ ਦੇ ਦੌਰਾਨ ਤੁਹਾਡਾ IP ਸਹਿਯੋਗੀ ਅਤੇ ਇਕ Oxen Foundation ਸਰਵਰ ਨੂੰ ਦੇਖਾਈ ਦੇਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podczas korzystania z połączeń w wersji beta Twój adres IP jest widoczny dla partnera rozmowy i serwera Oxen Foundation." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو IP ستاسو د زنګ ملګري او یو Oxen Foundation سرور ته ښکاره کیږي کله چې بیتا زنګونه کاروئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seu IP estará visível para seu parceiro de chamada e para um servidor da Oxen Foundation enquanto usa chamadas beta." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "O seu IP está visível para seu parceiro de chamada e para um servidor Oxen Foundation enquanto usa chamadas beta." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP-ul dumneavoastră este vizibil către partenerul de apel și către un server al Oxen Foundation atunci când utilizați apeluri beta." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш IP виден вашему собеседнику и серверу Oxen Foundation при использовании бета-вызовов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoj IP je vidljiv tvom partneru na pozivu i serveru Oxen Foundation dok koristiš beta pozive." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ IP වැටීමට වයිස් සහ Oxen Foundation සේවාදායකයකු වෙත දැක්වේදීද පරීක්ෂණ ඇමතුම් භාවිතා කිරීමේදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša IP adresa je viditeľná vášmu volajúcemu partnerovi a serveru Oxen Foundation pri používaní beta hovory." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš IP je viden vašemu partnerskemu klicatelju in strežniku Oxen Foundation med uporabo beta klicev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP-ja juaj është e dukshme për partnerin tuaj të thirrjes dhe një server të Fondacionit Oxen gjatë përdorimit të thirrjeve beta." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша IP адреса је видљива вашем сајговорнику и серверу Oxen Foundation док користите бета позиве." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš IP je vidljiv vašem partneru za poziv i serveru Oxen Foundation dok koristite beta pozive." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din IP är synlig för din samtalspartner och en Oxen Foundation server när du använder beta-samtal." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP yako inaonekana kwa mshirika wako wa simu na seva ya Oxen Foundation wakati unatumia simu za beta." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு பிறையாளர் மற்றும் Oxen Foundation சர்வரில் உங்கள் ஐபி காட்டப்படவும் செய்தி சேவையின்போது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "బీటా కాల్‌లను ఉపయోగిస్తున్నప్పుడు మీ ఐపి మీ కాల్ భాగస్వామికి మరియు ఒక Oxen Foundation సర్వర్‌కు కనిపిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "IP ของคุณจะสามารถมองเห็นได้โดยคู่สายของคุณและเซิร์ฟเวอร์ของ Oxen Foundation ในขณะที่ใช้เบต้าการโทร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deneme aramaları sırasında IP adresiniz arama ortağınıza ve Oxen Foundation sunucusuna görünür olacaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша IP-адреса видима вашому партнеру по дзвінку та серверу Oxen Foundation при використанні бета-дзвінків." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیٹا کالز استعمال کرتے وقت آپ کا آئی پی آپ کے کال پارٹنر اور ایک اوکسن فاؤنڈیشن سرور کو نظر آئے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hozirgi parolingiz noto'g'ri." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Địa chỉ IP của bạn hiển thị với đối tác cuộc gọi và máy chủ Oxen Foundation trong khi sử dụng cuộc gọi beta." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-IP yakho iyabonakala komnxibelele wakho nakwiOxen Foundation Server ngelixa usebenzisa i-beta calls." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在使用测试版通话时,您的IP会暴露给您的通话对象和Oxen Foundation服务器。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在使用測試版通話時,您的 IP 將會被通話夥伴和 Oxen Foundation 伺服器看到。" + } + } + } + }, + "callsVoiceAndVideoToggleDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiveer stem- en videoklank aanroep na en van ander gebruikers." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفعيل المكالمات الصوتية والمرئية من وإلى المستخدمين الآخرين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digər istifadəçilərlə səsli və görüntülü zəngləri təmin edir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوسرے صارفین کو وائس اور ویڈیو کالز فعال کرتا ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дазваляе рабіць галасавыя і відэазванкі іншым карыстальнікам." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активира гласови и видеообаждания към и от други потребители." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অন্য ব্যবহারকারীদের সাথে এবং তাদের থেকে ভয়েস এবং ভিডিও কল সক্রিয় করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permeteu telefonades de veu i de vídeo a i des d'altres usuaris." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapne hlasové a video hovory k ostatním uživatelům i od nich." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn caniatáu galwadau llais a fideo i ac o ddefnyddwyr eraill." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiverer lyd- og videoopkald til og fra andre brugere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviert Sprach- und Videoanrufe an und von anderen Benutzern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιτρέπει κλήσεις φωνής και βίντεο από και προς άλλους χρήστες." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enables voice and video calls to and from other users." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebligas voĉajn kaj vidajn vokojn al kaj de aliaj uzantoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permite las llamadas de voz y video hacia y desde otros usuarios." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permite llamadas de voz y vídeo de y hacia otros usuarios." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Võimaldab hääl- ja videokõned teistele kasutajatele ja teistelt kasutajatelt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beste erabiltzaile batzuekin ahots-eta bideo-deiak egiteko aukera ematen du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دریافت و ارسال تماس های صوتی و تصویری به سایر کاربران را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mahdollistaa ääni- ja videopuheluiden soiton ja vastaanoton." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini-enable ang mga voice at video call papunta at mula sa iba pang mga user." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Active les appels vocaux et vidéo vers et depuis d'autres utilisateurs." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yana ba da kiran murya da bidiyo zuwa da daga wasu masu amfani." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מאפשר שיחות קוליות ווידאו אל משתמשים אחרים ומאתם." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्य उपयोगकर्ताओं से वॉयस और वीडियो कॉल सक्षम करता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogućava glasovne i video pozive prema i od drugih korisnika." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lehetővé teszi a hang- és videohívásokat más felhasználókkal." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնում է ձայնային և տեսազանգերը դեպի և այլ օգտվողների հետ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan panggilan suara dan video ke atau dari pengguna lain." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abilita chiamate e videochiamate verso e da altri utenti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "他のユーザーとの音声通話やビデオ通話を有効にします" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩართავს ხმის და ვიდეო ზარებს სხვა მომხმარებლებისთვის დამატებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើកការហៅជាសំឡេង និងជាវីដេអូទៅកាន់ និងមកពីអ្នកប្រើផ្សេងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತರ ಬಳಕೆದಾರರಿಂದ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಧ್ವನಿ ಮತ್ತು ವೀಡಿಯೊ ಕರೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다른 사용자와 음성 및 영상 통화를 할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کێیشە دەنگی و ڤیدیۆ ئەو کارانە وەکدی بزانی بۆ وەڵامی دیکە بەکارهێنەران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emidduka n’ebitambise okubira no okuva eri abakozesa abalala." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įgalina balso ir vaizdo skambučius į ir iš kitų vartotojų." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iespējot balss un video zvanus uz un no citiem lietotājiem." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможува гласовни и видео повици до и од други корисници." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бусад хэрэглэгчдэд дуу хоолой болон видео дуудлага хийхийг идэвхжүүлнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membolehkan panggilan suara dan video ke dan dari pengguna lain." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူများနှင့် အလွယ်တကူ အသံ ဖွင့်ခြင်းနှင့် ဗီဒီယိုခေါ်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiverer tale- og videosamtaler til og fra andre brukere." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भ्वाइस र भिडियो कलहरू सक्षम गर्नुहोस् र अरू प्रयोगकर्ताहरूको लागि सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inschakelen van spraak- en video-oproepen naar en van andere gebruikers." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiverer tale- og videosamtaler til og frå andre brukarar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yambitsani mafoni amawu ndi makanema komanso kuchokera kwa ogwiritsa ntchito ena." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਾਜਬ ਧੁਨ ਅਤੇ ਵੀਡੀਓ ਕਾਲਾਂ ਨੂੰ ਆਗਿਆ ਦਿੰਦਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umożliwia wykonywanie połączeń głosowych i wideo do i od innych użytkowników." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د نورو کاروونکو سره غږ او ویدیو زنګونه فعالوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permite chamadas de voz e vídeo para e de outros usuários." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir chamadas de voz e vídeo para e a partir de outros utilizadores." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activează apelurile vocale și video către și de la alți utilizatori." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включает голосовые и видеозвонки для общения с другими пользователями." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogućuje glasovne i video pozive od i prema drugim korisnicima." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වෙනත් පරිශීලකයින් සමඟ හඬ සහ වීඩියෝ ඇමතුම් සබලයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umožňuje hlasové a video hovory s inými používateľmi a od nich." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogoča glasovne in video klice od in do drugih uporabnikov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivizon thirrjet me zë dhe video drejt dhe nga përdorues të tjerë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Омогућава гласовна и видео ћаскања између других корисника." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogućava glasovne i video pozive ka i od drugih korisnika." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möjliggör röst- och videosamtal till och från andra användare." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuwezesha simu za sauti na video kwa watumiaji wengine." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனீர்களுக்கிடையே குரல் மற்றும் காணொளி அழைப்புகளை செயல்படுத்துகிறது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇతర వినియోగదారులకు మరియు వినియోగదారుల నుండి వాయిస్ మరియు వీడియో కాల్స్." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิดการโทรด้วยเสียงและวิดีโอไปยังและจากผู้ใช้รายอื่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diğer kullanıcılara ve diğer kullanıcılardan sesli ve görüntülü arama yapılmasını sağlar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволяє здійснювати голосові та відео виклики з іншими користувачами." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر صارفین کے ساتھ وائس اور ویڈیو کالز کو فعال کریں." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boshqa foydalanuvchilar bilan ovozli va video qo'ng'iroqlarni amalga oshirish imkonini beradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cho phép thực hiện cuộc gọi giọng nói và video với người dùng khác." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela i-voice ne-video calls ukuba zithumeletyayanayo nabanye abasebenzisi." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "允许来自其它用户的语音和视频通话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "啟用語音通話和視像通話功能。" + } + } + } + }, + "callsYouCalled" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het {name} gebel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقد اتصلت بـ {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisinə zəng etdiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شمے {name} کال کد" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы патэлефанавалі {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извикахте {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You called {name}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu telefonat a {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volali jste {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi galw {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ringede til {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast {name} angerufen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καλέσατε {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You called {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi alvokis {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has llamado a {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has llamado a {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Häälestasite {name}le" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} deitu duzu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تماس شما با {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soitit käyttäjälle {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinawagan mo si {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez appelé {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chamaches a {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka kira {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התקשרת אל {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपने {name} को कॉल किया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvali ste {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhívtad őt: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք զանգահարել եք {name}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda memanggil {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai chiamato {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} に発信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ დარეკეთ {name}-ს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានហៅ {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಗೆ ಕರೆ ಮಾಡಿದ್ದೀರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님에게 전화함" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ تێڵەی تەلەفۆنی کردی بۆ {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weegambye {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs skambinote {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs zvanījāt {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Го повикавте {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-р дуудсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda memanggil {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You called {name}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ringte {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले कल गर्नुभयो {name}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U belde {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ringte {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwawona {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {name} ਨੂੰ ਕਾਲ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadzwoniono do {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو{name}. ته زنګ ووهلو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você ligou para {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligou para {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai apelat pe {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы позвонили {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazvali ste {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ {name} ඇමතුවා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volali ste {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klicali ste osebo {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju thirrët {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позвали сте {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvali ste {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ringde {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulimpiga simu {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} ஐ அழைத்துள்ளீர்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} కాల్ చేశారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณได้โทรหา {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kullanıcısını aradınız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дзвонили {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے {name} کو کال کی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {name}ga qo'ng'iroq qildingiz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã gọi {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wakubidde {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您呼叫了{name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您撥打給 {name}" + } + } + } + }, + "callsYouMissedCallPermissions" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het 'n oproep gemis van {name} omdat jy nie Stem- en Video-oproepe in Privaatheid-instellings aangeskakel het nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقد فاتتك مكالمة من {name} لأنك لم تقم بتمكين المكالمات الصوتية والمرئية في إعدادات الخصوصية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik Ayarlarında Səsli və görüntülü zənglər seçimini fəallaşdırmadığınız üçün {name} etdiyi bir zəngi buraxdınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {name} سے کیونکہ تُ باقیneje ویس اینڈ ویڈیو کوالیں پرائیویسی تنظیمات میں فعال نہ کردی." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы прапусцілі званок ад {name}, таму што не ўключылі Галасавыя і відэазванкі у наладах прыватнасці." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуснахте обаждане от {name} защото не сте активирали Гласови и видео разговори в Настройки за поверителност." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি {name} এর একটি কল মিস করেছেন কারণ আপনি প্রাইভেসি সেটিংসে ভয়েস এবং ভিডিও কল সক্ষম করেননি।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu rebut una trucada perduda de {name} perquè no heu activat Trucades de veu i vídeo en la Configuració de Privadesa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškali jste hovor od {name}, protože jste neměli povoleny Hlasové a video hovory v nastavení ochrany soukromí." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buoch yn methu alwad gan {name} oherwydd nad ydych wedi galluogi Galwadau Llais a Fideo yn Gosodiadau Preifatrwydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du gik glip af et opkald fra {name}, fordi du ikke har aktiveret Stemmen- og videoopkald i privatindstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast einen Anruf von {name} verpasst, weil du Sprach- und Videoanrufe in den Datenschutzeinstellungen nicht aktiviert hast." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χάσατε μια κλήση από {name} επειδή δεν έχετε ενεργοποιήσει τις Κλήσεις Φωνής και Βίντεο στις Ρυθμίσεις Απορρήτου." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You missed a call from {name} because you haven't enabled Voice and Video Calls in Privacy Settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi maltrafis vokon de {name} ĉar vi ne ebligis Voĉajn kaj Video-Vokojn en la Privateco-Agordoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdiste una llamada de {name} porque no has habilitado Llamadas de Voz y Video en la Configuración de Privacidad." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdiste una llamada de {name} porque no has habilitado Voice and Video Calls en configuraciones de privacidad." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te ei vastanud kõnele {name}, kuna te ei ole lubanud Voice and Video Calls Privaatsusseadetes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-(r)en dei bat galdu duzu, Pribatutasun Ezarpenetan Ahots eta Bideo Deiak ez gaituta dituzulako." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تماسی را از {name} از دست دادید زیرا تماس‌های صوتی و تصویری را در تنظیمات حریم خصوصی فعال نکرده‌اید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missasit puhelun käyttäjältä {name}, koska et ole ottanut käyttöön Ääni ja videopuheluita tietosuoja-asetuksissa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Namiss mo ang tawag mula kay {name} dahil hindi mo pinagana ang Mga Tawag sa Boses at Video sa Privacy Settings." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez manqué un appel de {name} car vous n'avez pas activé Appels vocaux et vidéo dans les Paramètres de confidentialité." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdiches unha chamada de {name} porque non tes activadas as Chamadas de Voz e Vídeo nos Axustes de Privacidade." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun rasa kira daga {name} saboda ba ku kunna kiran murya da bidiyo a Saitunan Sirrin ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פספסת שיחה מ{name} כי לא הפעלת שיחות שמע ווידאו בהגדרות פרטיות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको प्राइवेसी सेटिंग्स में वॉइस और वीडियो कॉल्स सक्षम नहीं करने के कारण {name} से कॉल छूट गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propustili ste poziv od {name} jer niste omogućili Glasovne i Video pozive u Postavkama privatnosti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elmulasztottad {name} hívását, mert a hang- és videó hívások funkció nincs engedélyezve az adatvédelmi beállításokban." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք բաց եք թողել զանգը {name}֊ից, քանի որ չեք միացել ձայնային և տեսազանգեր գաղտնիության կարգավորումներում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda melewatkan panggilan dari {name} karena Anda belum mengaktifkan Panggilan Suara dan Video di Pengaturan Privasi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai perso una chiamata da {name} perché non hai abilitato Chiamate vocali e video nelle impostazioni della privacy." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}さんからの通話を逃しました。プライバシー設定で音声通話とビデオ通話を有効にしていません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ გამოტოვეთ ზარი {name}-ისგან რადგან თქვენ არ ჩართეთ ხმა და ვიდეო ზარები კონფიდენციალურობის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​ធ្វើ​រំលងការហៅពី {name} ដោយសារ​អ្នកមិន​បានបើក ការហៅសំឡេង និងវីដេអូ នៅក្នុងការកំណត់ភាពឯកជន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ನಿಂದ ಕರೆ ಕಳೆದುಕೊಂಡಿದ್ದೀರಿ ಏಕೆಂದರೆ ನೀವು ಪ್ರೈವೆಸಿ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ವಾಯ್ಸ್ ಮತ್ತು ವಿಡಿಯೋ ಕಾಲ್‌ಗಳು ನ್ನು ಅನುಮತಿಸಿದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님으로부터 받은 전화를 놓쳤습니다. 개인 정보 설정에서 음성 및 화상 통화를 활성화하지 않았기 때문입니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ تێڵەیەک لە {name}ێت هەڵوتە چونکە دەسەڵاتی پەیوەندی دەنگی و ڤیدیۆ لە رێکخستنی تایبەتی دان نەبەیت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wanakuba omulilwana {name} kubanga tomeka meka Okubagaane Kw'amakowala n'amacapa mu Settings za Privacy." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Praleidote skambutį iš {name}, nes Privatumo nustatymuose neįjungėte Balso ir Vaizdo Skambučių." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs nokavējāt zvanu no {name}, jo jums nav iespējoti Balss un video zvani privātuma iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропуштивте повик од {name} бидејќи немате овозможено Гласовни и Видео повици во Поставки на приватност." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name}-ээс дуудлага алдаж байна, учир нь та Дуу хоолой болон видео дуудлагаг Нууцлалын Тохиргоонд идэвхжүүлээгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda terlepas panggilan daripada {name} kerana anda belum mengaktifkan Panggilan Suara dan Video dalam Tetapan Privasi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် {name} ၏ ဖုန်းခေါ်ဆိုမှုကို လက်မခံနိုင်ပါနှင့်၊ သို့သော် သင် နှင့် ဖုန်းခေါ်မှု ဖွင့်ထားသော Voice and Video Calls ကို စနစ်ပြင်ဆင်မှုများတွင် ဖွင့်ထားလိုက်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du gikk glipp av en samtale fra {name} fordi du ikke har aktivert Tal & Video-samtaler i Personverninnstillingene." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले गोपनीयता सेटिङ्समा भ्वाइस र भिडियो कलहरू सक्षम नगर्दा {name} बाट आउने कल छुट्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft een gemiste oproep van {name} omdat u Geluid- en Video-oproepen niet heeft ingeschakeld in Privacy-instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du missa ein samtale frå {name} fordi du ikkje har aktivert tale- og videosamtalar i personverninnstillingane." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Munaphonya kuyimbitsa kuchokera kwa {name}. chifukwa simunathandize Mayitidwe ndi Mavidiyo mu Zokonda Zachinsinsi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {name} ਤੋਂ ਇੱਕ ਕਾਲ ਮਿਸ ਕੀਤੀ ਹੈ ਕਿਉਂਕਿ ਤੁਹਾਨੂੰ ਆਵਾਜ਼ ਅਤੇ ਵੀਡੀਓ ਕਾਲਾਂ ਪ੍ਰਾਈਵੇਸੀ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਐਕਟੀਵੇਟ ਨਹੀਂ ਕੀਤੀਆਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie odebrano połączenia od użytkownika {name}, ponieważ nie włączono funkcji „Połączenia głosowe i wideo” w ustawieniach prywatności." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو له {name} څخه یو زنګ له لاسه ورکړی ځکه چې تاسو په محرمیت تنظیماتو کې د غږ او ویډیو زنګونه فعال نکړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você perdeu uma chamada de {name} porque você não ativou Chamadas de Voz e Vídeo nas Configurações de Privacidade." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perdeu uma chamada de {name} porque não ativou Chamadas de Voz e Vídeo nas Configurações de Privacidade." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai ratat un apel de la {name} pentru că nu ai activat Apeluri vocale și video în setările de confidențialitate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы пропустили звонок от {name}, потому что не включили Голосовые и видеозвонки в настройках конфиденциальности." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propustio si poziv od {name} jer nisi omogućio Glasovne i Video Pozive u postavkama privatnosti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට පෞද්ගලික වෙතින් හඬ සහ වීඩියෝ ඇමතුම් සක්‍රීය කරන විට {name} වෙතින් ඇමතුමක් කණගාටුයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeškali ste hovor od {name}, pretože ste nepovolili Hlasové a video hovory v nastaveniach súkromia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmanjkalo je lahko klic iz {name}, ker niste omogočili glasovnih in video klicev v nastavitvah zasebnosti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju keni humbur një telefonatë nga {name} sepse nuk keni aktivizuar Thirrjet me Zë dhe Video në Cilësimet e Privatësisë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пропустили сте позив од {name} јер нисте омогућили Гласовне и Видео Позиве у Подешавањима Приватности." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Propustili ste poziv od {name} jer niste omogućili Glasovne i Video Pozive u Podešavanjima Privatnosti." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du missade ett samtal från {name} eftersom du inte har aktiverat Röst- och videosamtal i Sekretessinställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulikosa simu kutoka {name} kwa sababu hujawezesha Sauti na Simu za Video katika Mipangilio ya Faragha." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} -ன் அழைப்பை (call) நீங்கள் குரல் மற்றும் வீடியோ அழைப்புகளை பொறிமுறையில் இயல்த்தவில்லை என்பதனால் தவற விட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు వాయిస్ మరియు వీడియో కాల్స్ను ప్రైవసీ సెట్టింగ్స్‌లో నేడు చెయ్యకపోవడంతో మీరు {name} నుండి కాల్ మిస్ చేశారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณพลาดสายจาก {name}​ เพราะคุณไม่ได้เปิดใช้งาน การโทรด้วยเสียงและวิดีโอ ในการตั้งค่าความเป็นส่วนตัว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kişisinden gelen bir çağrıyı, Ses ve Video Görüşmeleri özelliğini Gizlilik Ayarlarında etkinleştirmediğiniz için kaçırdınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви пропустили дзвінок від {name}, бо не увімкнули Голосові та Відеодзвінки у Налаштуваннях Приватності." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے ایک کال یاد کر دی {name} کی وجہ سے کیونکہ آپ نے وائس اور ویڈیو کالز کو پرائیویسی سیٹنگز میں فعال نہیں کیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizdan {name} dan qo'ng'iroqni o'tkazib yubordingiz, chunki Xavfsizlik sozlamalarida Ovozli va video qo'ng'iroqlar ni yoqmagansiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã bỏ lỡ cuộc gọi từ {name} vì bạn chưa bật Cuộc gọi Điện thoại và Video trong Cài đặt Quyền riêng tư." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uphoswe ngumnxeba ovela ku {name} kuba awuvulanga iVoice and Video Calls kuSeto loBukeko Olwahlukileyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您未在隐私设置中启用语音和视频通话,因此错过了来自{name}的通话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您錯過了{name} 的一個通話,因為您沒有在隱私設定中啟用語音和視頻通話。" + } + } + } + }, + "cameraErrorNotFound" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen kamera gevind nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا توجد كاميرا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera tapılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچں کالگنت نه بیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знойдзена камеры" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е открита камера" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো ক্যামেরা পাওয়া যায়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha trobat la càmera" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nebyla nalezena žádná kamera" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim camera wedi'i ganfod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der blev ikke fundet et kamera" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Kamera gefunden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε βρέθηκε κάμερα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No camera found" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu fotilo trovita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara no encontrada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara no encontrada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaamerat ei leitud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da kamerarik aurkitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ دوربینی یافت نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kameraa ei löytynyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang natagpuang camera" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucune caméra trouvée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se atopou cámara" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu kamara da aka samu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא נמצאה מצלמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई कैमरा नहीं मिला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema kamere" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem található kamera" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսախցիկ չի գտնվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera tidak ditemukan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessuna fotocamera è stata trovata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "カメラが見つかりません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არ მოიძებნა კამერა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រកមិនឃើញកាមេរ៉ា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಯಾಮೆರಾ ಲಭ್ಯವಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "카메라를 찾을 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ کامێرایەک نەدۆزرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezirangiddwa ku camera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kameros nerasta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav atrasta kamera" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е пронајдена камера" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камер олдсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada kamera dijumpai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကင်မရာ မဖြစ်သော အချက်အလက်ရှင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Intet kamera funnet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यामेरा फेला परेन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen camera gevonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Intet kamera funnet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Kamangidwe Kopezeka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਕੈਮਰਾ ਨਹੀਂ ਲੱਭੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie znaleziono aparatu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ کامره ونه موندل شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuma câmera encontrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi encontrada a câmara" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a găsit camera" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера не найдена" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema kamere" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කැමරාවක් හමු නොවීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenašla sa žiadna kamera" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni kamere" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u gjet kamera" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема камере" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije pronađena kamera" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen kamera hittades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna kamera iliyopatikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேமரா இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కెమేరా కనుగొనబడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบกล้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera bulunamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камеру не знайдено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی کیمرہ نہیں ملا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera topilmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy máy ảnh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho kamera ifumanekayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到摄像头" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到相機" + } + } + } + }, + "cameraErrorUnavailable" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera onbeskikbaar." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الكاميرا غير متوفرة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera əlçatmazdır." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرہ دستیاب نہیں ہے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера недаступная." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камерата е недостъпна." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ক্যামেরা অনুপলব্ধ।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Càmera no disponible." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera není dostupná." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera ddim ar gael." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera utilgængeligt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera nicht verfügbar." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η κάμερα δεν είναι διαθέσιμη." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera unavailable." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotilo ne disponeblas." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara no disponible." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La cámara no está disponible." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaamera pole saadaval." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera unavailable." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوربین در دسترس نیست." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera ei käytettävissä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi available ang camera." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L’appareil photo n’est pas disponible." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara non dispoñible." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyamara ba a samu ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "המקרה אינה זמינה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कैमरा अनुपलब्ध." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera nije dostupna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A kamera nem érhető el." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսախցիկը հասանելի չէ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera tidak tersedia." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotocamera non disponibile." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "カメラは利用できません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კამერა მიუწვდომელია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កាមេរ៉ាមិនមាន." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಯಾಮೆರಾ ಲಭ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "카메라 사용할 수 없음." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : ".کامێرا بەردەست نییە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera unavailable." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກ້ອງຖ່າຍຮູບບໍ່ສາມາເດີໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera neprieinama." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera nav pieejama." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камерата не е достапна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камер боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera tidak tersedia." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကင်မရာ မရရှိနိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera utilgjengelig." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यामेरा उपलब्ध छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera niet beschikbaar." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera utilgjengeleg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera unavailable." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੈਮਰਾ ਉਪਲਬਧ ਨਹੀਂ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparat jest niedostępny" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمره شتون نلري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Câmera indisponível." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Câmera indisponível." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cameră indisponibilă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера недоступна." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera nije dostupna." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කැමරාව නොමැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera je nedostupná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera ni na voljo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera jo gati." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера није доступна." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera nije dostupna." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kameran är inte tillgänglig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera haipatikani." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேமரா கிடைக்கவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కెమెరా అందుబాటులో లేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กล้องไม่พร้อมใช้งาน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera kullanılamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера недоступна." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرہ دستیاب نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera foydalanishga yaroqsiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máy ảnh không khả dụng." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikhamera azifumaneki." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "摄像头不可用。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "相機無法使用。" + } + } + } + }, + "cameraGrantAccess" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toegang tot Kamera toestaan" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "منح صلاحية الكاميرا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera müraciətinə icazə ver" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرا رسائی ءِ برکتن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дазволіць доступ да камеры" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дайте достъп до камерата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ক্যামেরা এক্সেস দিন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permet accés a la càmera" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povolit přístup k fotoaparátu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caniatewch Mynediad i'r Camera" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillad Adgang Til Kamera" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamerazugriff gewähren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παραχωρήστε Πρόσβαση στην Κάμερα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grant Camera Access" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permesi Fotilan Aliron" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acceso a cámara" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acceso a cámara" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anna kaamerale juurdepääs" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baimendu Kamera Sarbidea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازه دسترسی به دوربین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Myönnä kameran käyttöoikeus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Payagan ng Access sa Camera" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoriser l'accès à la caméra" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conceder acceso á cámara" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba da damar amfani da Kamara" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הענק גישה למצלמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कैमरा के उपयोग को प्रदान करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odobri pristup kameri" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera-hozzáférés megadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսախցիկի հասանելիություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berikan akses kamera" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Consenti l'accesso alla fotocamera" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "カメラへのアクセスを許可する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაუდგინეთ კამერის დაშვება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្តល់សិទ្ធិចូលប្រើប្រាស់កាមេរ៉ា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶವನ್ನು ವಿನಂತಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "카메라 액세스 권한 부여" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێشاندانی پێوەندی کەمێرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wekebere kamera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suteikti prieigą prie kameros" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piešķirt piekļuvi kamerai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволете пристап до камерата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камерын хандалтыг олгох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beri Akses Kamera" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကင်မရာသုံးစွဲခွင့် ပေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gi kameratilgang" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यामेरा पहुँच अनुमति दिनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toegang tot camera verlenen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gi kameratilgang" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokani kulowa kwa Kamera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਸਹਾਇਤਾ ਦਿਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przyznaj dostęp do aparatu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د کیمرې لاسرسی ورکړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conceder acesso à câmera" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conceder Acesso à Câmera" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acordă acces cameră foto" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предоставить доступ к камере" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odobri pristup kameri" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කැමරා ප්‍රවේශය ලබා දෙන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udeliť prístup k fotoaparátu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dajte dovoljenje za dostop do kamere" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejo Ndalsëshin Qasje te Kamera" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволите приступ камери" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvolite pristup kameri" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillåt kameraåtkomst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipe Ruhusa ya Kamera" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேமரா அணுகலை வழங்குக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కెమెరా యాక్సెస్‌ని అనుమతించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ให้สิทธิใช้กล้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera Erişimine İzin Verin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволити доступ до камери" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرہ ایکسیس دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera tarnov acceso qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cho phép truy cập máy ảnh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nika iMfanelo yeKhamera" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "授予摄像头访问权限" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "授予相機存取權限" + } + } + } + }, + "cameraGrantAccessDenied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het kamera toegang nodig om foto's en video's te neem, maar dit is permanent geweier. Gaan asseblief na die toepassing se instellings, kies \"Permissions\", en skakel \"Camera\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، ولكن تم رفضه نهائيًا. يرجى الانتقال إلى إعدادات التطبيق، و اختيار \"الأذونات\"، وتفعيل \"الكاميرا\"." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foto və video çəkmək üçün kameraya müraciət etməlidir, ancaq bu icazəyə həmişəlik rədd cavabı verilib. Lütfən tətbiq ayarlarına gedib \"İcazələr\"i seçin və \"Kamera\"nı fəallaşdırın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کماٹ پاتبسینہ مجبورے تصورات و ویڈیوشیں، چو گو مکمبرنس ورزیہ.
لہ تکط افلاکیت کو کنراں،ٹی امن وضیجتے او پرتحمایل دےیے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе дазволу да камеры каб рабіць фота і відэа, але зараз дазволу няма. Калі ласка, перайдзіце ў меню налад праграмы, абярыце \"Дазволы\" і ўключыце \"Камера\"." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до камерата, за да прави снимки и видеота, но достъпът е бил окончателно отказан. Моля, продължете до настройките на приложението, изберете \"Разрешения\" и активирайте \"Камера\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ছবি ও ভিডিও তোলার জন্য ক্যামেরা অ্যাকসেস প্রয়োজন, কিন্তু এটি স্থায়ীভাবে প্রত্যাখ্যান করা হয়েছে। অনুগ্রহ করে অ্যাপ সেটিংস মেনুতে যান, \"Permissions\" নির্বাচন করুন, এবং \"Camera\" সক্ষম করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "El {app_name} necessita el permís de la càmera per tal de fer fotografies i vídeos, però s'ha denegat permanentment. Per favor, continueu cap al menú de configuració de l'aplicació, seleccioneu Permisos i habiliteu-hi la càmera." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k fotoaparátu pro pořizování fotografií a videí, ale byl trvale zakázán. Prosím, pokračujte do nastavení aplikací, vyberte \"Oprávnění\" a povolte \"Fotoaparát\"." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae angen mynediad i'r camera ar {app_name} i dynnu lluniau a fideos, ond fe'i gwrthodwyd yn barhaol. Parhewch i osodiadau'r ap, dewiswch \"Caniatadau\", a galluogi \"Camera\"." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller optage video, hvilket det er blevet nægtet. Gå venligst via appens menu til Indstillinger, vælg \"Tilladelser\" og tilvælg \"Kamera\"." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Zugriff auf die Kamera, um Fotos oder Videos aufzunehmen, aber dieser Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Kamera«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στην κάμερα για την λήψη φωτογραφιών και βίντεο, αλλά έχει απορριφθεί μόνιμα. Παρακαλώ μεταβείτε στις ρυθμίσεις της εφαρμογής, επιλέξτε «Άδειες», και ενεργοποιήστε το «Κάμερα»." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, but it has been permanently denied. Please continue to app settings, select \"Permissions\", and enable \"Camera\"." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas la Fotilo-permeson por preni fotojn aŭ videojn, sed ĝi estis porĉiame malakceptita. Bonvolu daŭrigi al la aplikaĵaj agordoj, elekti \"Permesoj“, kaj ŝalti \"Fotilo\"." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} requiere de acceso a la cámara para tomar fotos o videos, pero ha sido permanentemente negado. Por favor, vaya al menú de configuración de la aplicación, seleccione \"Permisos\" y habilite \"Cámara\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para poder tomar fotos y videos, pero este ha sido denegado permanentemente. Por favor, vaya al menú de configuración de la aplicación, seleccione \"Permisos\", y active \"Cámara\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab fotode ja videote salvestamiseks ligipääsu kaamerale, kuid see on jäädavalt keelatud. Palun jätka rakenduse seadetes, vali \"Õigused\" ja luba \"Kaamera\"." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, baina behin betiko ukatu da. Mesedez jarraitu aplikazioa ezarpenetara, aukeratu \"Permissions\", eta aktibatu \"Camera\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای گرفتن عکس‌ها و ویدئو‌ها نیاز به دسترسی دوربین دارد، اما این دسترسی به طور دائم رد شده است. لطفاً به تنظیمات برنامه رفته، «مجوز‌ها» را انتخاب و «دوربین» را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi, mutta oikeus on evätty pysyvästi. Jatka sovellusasetuksiin, valitse \"Käyttöoikeudet\" ja ota käyttöön \"Kamera\"." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng {app_name} ng access sa camera para kumuha ng mga larawan at video, ngunit ito ay permanenteng tinanggihan. Mangyaring magpatuloy sa settings ng app, piliin ang \"Mga Pahintulot\", at i-enable ang \"Camera.\"" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin de l’autorisation Caméra afin de prendre des photos ou des vidéos, mais elle a été refusée de façon permanente. Veuillez accéder aux paramètres de l'application, sélectionner \"Autorisations\" et autoriser \"Caméra\"." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita permiso para acceder á cámara e poder tirar fotografías ou facer vídeos, pero foi denegado de forma permanente. Vai aos axustes da aplicación, selecciona \"Permisos\" e activa \"Cámara\"." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, amma an haramta shi dindindin. Da fatan za a ci gaba da saitin app, zaɓi \"Izini\", kuma kunna \"Kamara\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} צריך את הרשאת המצלמה כדי לצלם תצלומים או וידיאו, אבל היא נדחתה לצמיתות. אנא המשך אל הגדרות היישום, בחר \"הרשאות\" ואפשר את \"מצלמה\"." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को फ़ोटो और वीडियो लेने के लिए कैमरा अनुमति की आवश्यकता होती है, लेकिन इसे स्थायी रूप से मना कर दिया गया है। कृपया ऐप सेटिंग्स पर जाकर, \"अनुमतियां\" चुनें और \"कैमरा\" सक्षम करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri za snimanje fotografija i videozapisa, no to je sada trajno onemogućeno. Molimo vas da u postavkama aplikacije odaberete \"Dopuštenja\" i omogućite \"Kamera\"." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, de ez nem lett megadva. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Kamera\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է տեսախցիկի թույլտվություն լուսանկարներ և տեսանյութեր անելու համար, բայց դա ընդմիշտ մերժվել է: Խնդրում ենք շարունակել դեպի հավելվածի կարգավորումներ, ընտրել «Թույլտվություններ», և միացնել «Տեսախցիկ» հասցեն։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengambil foto dan video, tetapi telah ditolak secara permanen. Silakan lanjutkan ke pengaturan aplikasi, pilih \"Izin\", dan aktifkan \"Kamera\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'accesso alla fotocamera è stato negato. {app_name} richiede l'accesso alla fotocamera per scattare foto e video. Vai su Impostazioni, Autorizzazioni e abilita i permessi per la fotocamera." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で写真や動画を撮るには、カメラへのアクセスを許可する必要がありますが、無効になっています。アプリ設定メニューから、「アプリの権限」を選び、「カメラ」へのアクセス許可を有効にしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადაღებისთვის, მაგრამ იგი სამუდამოდ იქნა უარეზული. გთხოვთ გადადეთ აპლიკაციის პარამეტრებში, აირჩიეთ \"Permissions\" და ჩართეთ \"Camera\"." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការសិទ្ធិកាមេរ៉ាដើម្បីថតរូប និងវិដេអូ ប៉ុន្តែវាត្រូវបានបដិសេធរហូត។ សូមចូលទៅកាន់ការកំណត់កម្មវិធី ជ្រើសរើស \"សិទ្ធិ\" ហើយបើក \"កាមេរ៉ា\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ಆ್ಯಪ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಗೆ ಮುಂದುವರಿಯಿರಿ, \"Permissions\" ಆಯ್ಕೆಮಾಡಿ, ಮತ್ತು \"Camera\" ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 사진과 동영상을 찍기 위해 카메라 접근을 요구하지만 거부되었습니다. 앱 설정으로 가서 \"권한\"을 선택하고 \"카메라\"를 허용하십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ڕوونکردنەوەی کامێرا پێویستی بۆ گرتنی وێنەکان و ڤیدیۆکان، بەڵام هەڵەیەکی هەمیشەیی روویدا. تکایە بڕۆ بۆ ڕێکخستنەکانی بەرنامە، \"ڕێگەدانەکان\" هەلبژێرە و \"کامێرا\" چارەسه‌ر بکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, naye ssensa ezaweebwa zaulagiddwa ddala. Nnyika poly agayina mu nkola y’ekimu, olumanya 'Permissions' olwo ne Kkaamera." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ແຕ່ມັນໄດ້ຖືກປະກາດເປັນຟາຍນອກເປັນເວລາອັນດີ. ກະລູນາດຳເນີນຄົນທີ່ຕັ້ງຄ່າແອບ, ເລືອກ \"ການອະນຸຍາດ\", ແລະເປີດ \"ກ້ອງ\"" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie kameros, kad galėtumėte fotografuoti ir filmuoti, bet ji buvo visam laikui uždrausta. Prašome pereiti į programėlės nustatymus, pasirinkti \"Leidimai\" ir įjungti \"Kamerą\"." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, bet tā ir pastāvīgi aizliegta. Lūdzu, ejiet uz programmu iestatījumiem, izvēlieties “Atļaujas” un iespējojiet “Kamera”." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до камерата за да слика фотографии и видеа, но пристапот е трајно одбиен. Ве молиме продолжете до поставките на апликацијата, одберете \"Permissions\" и овозможете \"Камера\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь гэрэл зураг болон видеог авахын тулд камерт хандалт хэрэгтэй байна, гэхдээ энэ нь байнга хориотой. Аппын тохиргоо руу орж, \"Permissions\"-г сонгоод, \"Camera\"-г идэвхжүүлнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengambil gambar dan video, tetapi akses telah ditolak secara kekal. Sila terus ke tetapan aplikasi, pilih \"Permissions\", dan membolehkan \"Kamera\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဓာတ်ပုံများ ဓာတ်ပုံများနှင့် ဗီဒီယိုများ ရိုက်ရန် ကင်မရာခွင့်ပြုချက်လိုအပ်ပါသည်။ သို့သော် အမြဲတမ်းငြင်းပယ်ခြင်းခံခဲ့ရသည်။ ကျေးဇူးပြု၍ အက်ပ်ဆက်တင်များသို့ ဆက်၍\"ခွင့်ပြုချက်များ\" ကိုရွေးချယ်ကာ \"ကင်မရာ\" ကို ဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} krever tillatelse fra systemet for å kunne ta bilder eller filme, men du har valgt å avslå dette permanent. Gå til \"Apper\"-menyen på systemet og slå på tillatelsen \"Kamera\"." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो र भिडियो लिन क्यामेराको पहुँच आवश्यक छ, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। कृपया एप सेटिङहरूमा जानुहोस्, \"Permissions\" चयन गर्नुहोस्, र \"Camera\" सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot de camera nodig om foto's en video's te nemen, maar deze is permanent geweigerd. Ga naar de instellingen voor deze app, selecteer \"Toestemmingen\", en schakel \"Camera\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treng tilgang til kameraet for å ta bilete eller videoar, men tilgangen er permanent avslått. Opna app-innstillingsmenyen og vel «Tilgang» – eventuelt «Tillatelser» – og skru på «Kamera»." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kulowa ndi kamera kuti kutenga zithunzi ndi makanema, koma kuli kwakanthawi kuperewera. Chonde pitani ku zokonda za pulogalamu, sankhani \"Permissions\", ndipo wünsche \"Camera\"." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ, ਪਰ ਇਸਨੂੰ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖਾਰਜ਼ ਕੀਤਾ ਗਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਐਪ ਸੈਟਿੰਗਾਂ 'ਤੇ ਜਾਰੀ ਰਹੋ, \"Permissions\" ਚੁਣੋ, ਅਤੇ \"Camera\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby robić zdjęcia i nagrywać filmy, aplikacja {app_name} potrzebuje dostępu do aparatu, jednak na stałe go odmówiono. Przejdź do ustawień aplikacji, wybierz „Uprawnienia” i włącz „Aparat”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، مګر دا په دائمي ډول رد شوی. مهرباني وکړئ د غوښتنلیک تنظیماتو ته دوام ورکړئ، \"Permissions\" وټاکئ، او \"کمره\" فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para tirar fotos e vídeos, mas ele foi permanentemente negado. Por favor, continue para configurações do app, selecione \"Permissões\", e habilite \"Câmera\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para tirar fotos e vídeos, mas isso foi negado permanentemente. Por favor, acesse as configurações do app, selecione \"Permissões\" e ative \"Câmera\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la cameră pentru a realiza poze și clipuri video, dar accesul a fost refuzat definitiv. Vă rugăm să mergeți la setările aplicației, selectați „Permisiuni” și activați „Cameră”." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к камере для съемки фото и видео, но это разрешение сейчас выключено. Пожалуйста, перейдите в настройки приложения, выберите \"Разрешения\" и включите \"Камера\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zahtijeva dozvolu Kameri za fotografiranje ili snimanje videa, ali pristup biva odbijen. Molim nastavite s postavkama aplikacije, odaberite 'Dozvole' i omogućite 'Kamera'." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඡායාරූප සහ වීඩියෝ ගැනීමට {app_name}ට කැමරා ප්‍රවේශය අවශ්‍යයි, නමුත් එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. කරුණාකර යෙදුම් සැකසීම් වෙත යන්න, \"අවසර\" තෝරන්න, සහ \"කැමරාව\" සබල කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup ku kamere na vytvárať fotografie a videá, ale bol natrvalo odmietnutý. Prosím pokračujte do nastavení aplikácie, vyberte \"Oprávnenia\" a povoľte \"Kamera\"." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do kamere za fotografiranje in snemanje, vendar je bil ta trajno zavrnjen. Prosimo, nadaljujte v nastavitve aplikacije, izberite \"Dovoljenja\" in omogočite \"Kamero\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, por kjo i është mohuar. Ju lutemi, kaloni te rregullimet e aplikacionit, përzgjidhni \"Leje\", dhe aktivizoni \"Kamerën\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за камеру да прави слике и видео клипове, али је трајно забрањено. Настави у подешавања апликације, селектуј \"Дозволе\", и укључи \"Камеру\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri da slika fotografije i snima video, ali mu je trajno odbijeno. Molimo nastavite do podešavanja aplikacije, izaberite \"Dozvole\", i omogućite \"Kamera\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till kameran för att kunna fotografera och filma, men har nekats permanent. Fortsätt till inställningsmenyn, välj \"Behörigheter\" och aktivera \"Kamera\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya Kamera kuchukua picha na video, lakini imekataliwa kabisa. Tafadhali endelea kwenye mipangilio ya programu, chagua \"Ruhusa\", na wezesha \"Kamera\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள் மற்றும் வீடியோக்களை எடுக்க கேமரா அணுகல் தேவை, ஆனால் அது நிரந்தரமாக மறுக்கப்பட்டுள்ளது. தயவு செய்து செயலியின் அமைப்புகளுக்கு சென்று, \"Permissions\" தேர்வு செய்து, \"Camera\" ஐ செயலாக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫోటోలను లేదా వీడియోలను తీసుకోవడానికి {app_name} కెమెరా యాక్సెస్ కావాలి, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. దయచేసి యాప్ సెట్టింగ్‌లకు వెళ్ళి, \"Permissions\" ఎంచుకోండి మరియు \"Camera\"ని సుముఖం చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพื่อที่จะถ่ายรูปหรือวิดีโอได้ {app_name} ต้องได้รับอนุญาตให้เข้าถึงกล้อง แต่คำขอนั้นถูกปฏิเสธอย่างถาวร กรุณาไปที่เมนูตั้งค่าแอป เลือก \"การอนุญาต\" และเปิดใช้งาน \"กล้อง\"" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video çekmek için kamera erişimine ihtiyaç duyar, fakat bu izin kalıcı olarak reddedilmiş. Lütfen uygulama ayarlarına devam edin, \"İzinler\"i seçin ve \"Kamera\"yı etkinleştirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує дозволу «Камера», щоб фотографувати або знімати відео, але наразі доступ заборонено. Будь ласка, перейдіть до налаштувань додатку, оберіть \"Дозволи\", та увімкніть пункт \"Камера\"." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصاویر اور ویڈیوز لینے کے لیے {app_name} کو کیمرے تک رسائی درکار ہے، لیکن اسے مستقل طور پر مسترد کر دیا گیا ہے۔ براہ کرم ایپ کی ترتیبات میں جا کر \"مائیکروفون کی اجازت\" کو فعال کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni olish uchun kamera kirishini talab qiladi, ammo bu abadiy rad etilgan. Iltimos, ilova sozlamalariga o'ting, \"Ruxsatlar\" ni tanlang va \"Kamera\" ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần truy cập máy ảnh để chụp ảnh và quay video, nhưng quyền truy cập này đã bị chặn. Hãy đến phần cài đặt, chọn \"Quyền truy cập\" và kích hoạt \"Máy ảnh\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, kodwa ivaliwe ngokusisigxina. Nceda uqhubeke useto lwe-app, ukhethe \"Imvume\", kwaye uvule \"Ikhamera\"." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要相机权限来拍摄照片或视频,但是该权限已被永久拒绝。请进入应用程序设置,点击权限,并启用\"相机\"。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要相機的權限來拍攝照片或是影片,但它已被永久拒絕。請到應用程式設定中,選取「權限」,並啟用「相機」。" + } + } + } + }, + "cameraGrantAccessDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het kamera toegang nodig om foto's en video's te neem, of om QR-kodes te skandeer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، أو لمسح رموز الاستجابة السريعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foto və video çəkmək və ya QR kodlarını skan etmək üçün kameraya müraciət etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کماٹ پاتبسینہ مجبورے تصاویرا و ویڈیوشاں بیہ QR سکینشہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрэбен дазвол на камеру, каб рабіць фота ці відэа альбо сканаваць QR-коды." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до камерата, за да прави снимки и видеота, или да сканира QR кодове." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ছবি ও ভিডিও করার জন্য {app_name} এর ক্যামেরা অ্যাকসেস প্রয়োজন বা QR কোড স্ক্যান করা।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la càmera per fer fotografies i vídeos, o escanejar codis QR." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k fotoaparátu pro pořizování fotografií a videí nebo skenování QR kódů." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae angen mynediad i'r camera ar {app_name} i dynnu lluniau a fideos, neu i sganio côd QR." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver tilladelse til at tilgå dit kamera, for at kunne tage billeder eller scanne QR-koder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt die Berechtigung »Kamera«, um Fotos oder Videos aufzunehmen oder QR-Codes zu scannen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στην κάμερα για λήψη φωτογραφιών και βίντεο ή για σάρωση κωδικών QR." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, or scan QR codes." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas fotilan aliron por preni fotojn kaj videojn, aŭ skani QR-kodojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para tomar fotos y videos, o escanear códigos QR." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab fotode ja videote salvestamiseks või QR-koodide skannimiseks kaamera juurdepääsu." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, edo QR kodeak eskaneatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای گرفتن عکس‌ و ویدئو، یا اسکن کد‌های QR نیاز به دسترسی دوربین دارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi tai QR-koodien skannaamiseksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng {app_name} ng access sa camera para kumuha ng mga larawan at video, o ma-scan ang mga QR code." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin de l’autorisation Caméra pour prendre des photos ou des vidéos, ou scanner des codes QR." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceder á cámara para tirar fotografías e facer vídeos ou escanear códigos QR." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, ko duba lambobin QR." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} צריך הרשאות מצלמה כדי לצלם תצלומים או להקליט וידיאו או לסרוק קודי QR." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ोटो और वीडियो लेने या क्यूआर कोड स्कैन करने के लिए {app_name} को कैमरा एक्सेस की आवश्यकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri za snimanje fotografija i videozapisa, ili skeniranje QR kôdova." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak kamera-hozzáférésre van szüksége fotók és videók készítéséhez, illetve QR-kódok beolvasásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պետք է հասանելիություն տեսախցիկին՝ լուսանկարներ և տեսանյութեր անելու կամ QR կոդերը սկանավորելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses kamera untuk mengambil foto dan video, atau memindai kode QR." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso alla fotocamera per scattare foto e video, o scansionare i codici QR." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で写真や動画を撮るには、またはQRコードをスキャンするにはカメラへのアクセスが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება კამერის წვდომა ფოტოებისა და ვიდეოების გადასაღებად, ან QR კოდების დასანახად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការការចូលប្រើកាមេរ៉ាដើម្បីថតរូប និងវីដេអូ ឬស្កេនកូដ QR ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು, ವೀಡಿಯೊಗಳು, ಅಥವಾ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 사진과 동영상을 찍거나 QR 코드를 스캔하기 위해 카메라 접근이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پێویستە بەکارهێنانی کامێرای پێویستە بۆ وەرگرتنی وێنه‌ و ڤیدیۆکان، یان ڕووپیاکانی QR codeکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, oba okukebera QR codes." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອຖ່າຍຮູບແລະວິດີໂອ, ຫຼືສະແກນ QR codes." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie kameros, kad galėtumėte fotografuoti, filmuoti ar skenuoti QR kodus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama piekļuve kamerai, lai uzņemtu attēlus un video, vai skenētu QR kodus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до камерата за да слика фотографии и видеа, или да скенира QR-кодови." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь гэрэл зураг болон видеог авах эсвэл QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengambil gambar dan video, atau mengimbas kod QR." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} က ဓါတ်ပုံတွေနဲ့ ဗီဒီယိုတွေရိုက်ဖို့၊ ဒါမှမဟုတ် QR ကုဒ်တွေ ရှာဖွေရန် အတွက် ကင်မရာသုံးစွဲခွင့် လိုအပ်ပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger kameratilgang for å ta bilder og videoer eller skanne QR-koder." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो र भिडियो लिन वा QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot de camera nodig om foto's en video's te maken of QR-codes te scannen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treng tilgang til kameraet for å ta bilete eller videoar, eller skanna QR-kodar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kupititsa mwayi kwa kamera kuti kutenga zithunzi ndi makanema, kapena kuwunika ma QR codes." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਜਾਂ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby robić zdjęcia, nagrywać filmy i skanować kody QR, aplikacja {app_name} potrzebuje dostępu do aparatu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، یا QR کوډونه سکین کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para tirar fotos e vídeos, ou escanear códigos QR." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la cameră pentru a realiza poze și clipuri video sau pentru a scana coduri QR." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к камере для съемки фото, видео, а также сканирования QR-кодов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri kako bi snimio slike ili video, ili skenirao QR kodove." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ට ඡායාරූප සහ වීඩියෝ ගැනීමට හෝ QR කේත පරිලෝකනය කිරීමට කැමරා ප්‍රවේශය අවශ්‍යයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup ku kamere na vytvárať fotografie a videá, alebo skenovanie QR kódov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do kamere za fotografiranje in snemanje, ali skeniranje QR kod." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, ose për të skanuar kodet QR." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за камеру да прави слике и видео клипове, или скенира QR кодове." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri da slika fotografije i snima videe, ili skenira QR kodove." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till kameran för att kunna fotografera och filma eller skanna QR-koder." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya kamera kuchukua picha na video, au kuchanganua misimbo ya QR." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள், வீடியோக்களை எடுக்க, QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫోటోలను మరియు వీడియోలను తీసుకోవడం లేదా QR కోడ్లను స్కాన్ చేయడానికి {app_name} కు కెమెరా యాక్సెస్ కావాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องได้รับอนุญาตให้เข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ หรือสแกนรหัส QR" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video çekmek veya QR kodları taramak için kamera erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступ до камери, щоб фотографувати, знімати відео або сканувати QR-коди." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو تصاویر اور ویڈیوز لینے یا QR کوڈز اسکین کرنے کے لیے کیمرے کی اجازت درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni olish yoki QR kodlarni skanerlash uchun kamera kirishini talab qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần truy cập máy ảnh để chụp ảnh, quay video hoặc quét mã QR." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, okanye ukukhangela iikhowudi ze-QR." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要相机权限来拍摄照片和视频,或扫描二维码。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要使用相機來拍攝照片和影片,或掃描 QR 圖碼。" + } + } + } + }, + "cameraGrantAccessQr" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het kamera toegang nodig om QR-kodes te skandeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الكاميرا لمسح رموز الاستجابة السريعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} QR kodlarını skan etmək üçün kameraya müraciət etməlidir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کماٹ پاتبسینہ وسناں QR سکینشہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрэбен дазвол на камеру для сканавання QR-кодаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до камерата, за да сканира QR кодове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR কোড স্ক্যান করতে {app_name} এর ক্যামেরা অ্যাকসেস প্রয়োজন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la càmera per escanejar codis QR" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k fotoaparátu ke skenování QR kódů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae angen mynediad i'r camera ar {app_name} i sganio côd QR" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behøver kameraadgang for at scanne QR-koder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Kamera-Zugriff um QR-Codes zu scannen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στην κάμερα για σάρωση κωδικών QR" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to scan QR codes" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas fotilan aliron por skani QR-kodojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para escanear códigos QR" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para poder escanear códigos QR" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab QR-koodide skannimiseks kaamera juurdepääsu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k kameraren sarbidea behar du QR kodeak eskaneatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای اسکن کدهای QR نیاز به دسترسی دوربین دارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee kameran käyttöoikeuden skannatakseen QR- koodeja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng {app_name} ng access sa camera upang ma-scan ang mga QR code" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'accéder à l'appareil photo pour scanner les codes QR" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceder á cámara para escanear códigos QR" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar kyamara don duba lambobin QR" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק להרשאות מצלמה כדי לסרוק קודי QR" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यूआर कोड स्कैन करने के लिए {app_name} को कैमरा एक्सेस की आवश्यकता है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri za skeniranje QR kôdova" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak kamera-hozzáférésre van szüksége a QR-kódok beolvasásához" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ին պետք է հասանելիություն տեսախցիկին՝ QR կոդերը սկանավորելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses kamera untuk memindai kode QR" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso alla fotocamera per scansionare i codici QR" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}でQRコードをスキャンするにはカメラへのアクセスが必要です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება კამერის ძებნა QR კოდების დასანახად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការសិទ្ធិកាមេរ៉ាដើម្បីស្កេនកូដ QR" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ QR ಕೋಡ್ಗಳು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}에서 QR 코드를 스캔하려면 카메라 액세스 권한이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} بەکارهێنانی کامێرای پێویستە بۆ ڕووپیاکانی QR codeکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya kkamera okukebera QR codes" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງກ້ອງເພື່ອສະແກນ QR codes" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie kameros, kad galėtumėte skenuoti QR kodus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lai skenētu QR kodus, {app_name} ir nepieciešama piekļuve kamerai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до камерата за да скенира QR-кодови" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} о QR кодыг скан хийхийн тулд камерт хандалт хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengimbas kod QR" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် QR ကုဒ်များအားဖတ်ရန် ကင်မရာ သုံးစွဲခွင့်လိုအပ်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger kameratilgang for å skanne QR-koder" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई QR कोड स्क्यान गर्न क्यामेराको पहुँच आवश्यक छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot de camera nodig om QR-codes te scannen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger kameratilgang for å skanne QR-koder" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kuyitanitsa kamera kuti iwunikire ma QR codes" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ QR ਕੋਡ ਸਕੈਨ ਕਰਨ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby skanować kody QR, aplikacja {app_name} wymaga dostępu do aparatu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} QR کوډونه سکین کولو لپاره کمره ته لاسرسی ته اړتیا لري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para escanear códigos QR" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para escanear códigos QR" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la cameră pentru a scana coduri QR" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к камере для сканирования QR-кодов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri za skeniranje QR kodova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR කේත පරිලෝකනය කිරීමට {app_name}ට කැමරා ප්‍රවේශය අවශ්‍යයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup ku kamere na skenovanie QR kódov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do kamere za skeniranje QR kod" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje përdorimi të kamerës për të skanuar kodet QR" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за камеру да скенира QR кодове" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri da skenira QR kodove" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver kameraåtkomst för att skanna QR-koder" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya kamera ili kuchanganua misimbo ya QR" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ஐ QR குறியீடுகளை ஸ்கேன் செய்ய கேமரா அணுகல் தேவை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR కోడ్లు స్కాన్ చేయడానికి {app_name} కెమెరా యాక్సెస్ అవసరం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องการเข้าถึงกล้องเพื่อสแกน QR โค้ด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, QR kodlarını taramak için kamera erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потрібен дозвіл до камери для сканування QR-кодів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR کوڈ اسکین کرنے کے لیے {app_name} کو کیمرہ تک رسائی درکار ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} QR kodlarini skanerlash uchun kamera kirishini talab qiladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần truy cập máy ảnh để quét mã QR" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwikhamera ukukhangela iikhowudi ze-QR" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要相机访问权限才能扫描二维码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要相機存取權來掃描 QR 圖碼" + } + } + } + }, + "cancel" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kanselleer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إلغاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İmtina" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسوخ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скасаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отказ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বাতিল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel·la" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diddymu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuller" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbrechen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ακύρωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuligi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühista" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لغو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peruuta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikansela" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soke" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "रद्द करना |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkaži" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mégsem" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չեղարկել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annulla" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "キャンセル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បោះបង់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರದ್ದು ಮಾಡಲು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "취소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕەتکردنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຍົກເລີກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsisakyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atcelt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откажи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цуцлах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပယ်ဖျက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avbryt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रद्द गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuleren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avbryt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੱਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulowanie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لغوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отмена" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkaži" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවලංගු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prekliči" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откажи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odustani" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avbryt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ghairi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ரத்து செய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రద్దు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İptal" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скасувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسوخ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekor qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huỷ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhoxisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消" + } + } + } + }, + "changePasswordFail" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie wagwoord verander nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في تغيير كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol dəyişdirmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ مقرر کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося змяніць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешна промяна на паролата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড পরিবর্তন করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut canviar la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Změna hesla selhala" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd newid cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke ændre adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwortänderung fehlgeschlagen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αλλαγής κωδικού πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to change password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis ŝanĝi la pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al cambiar la contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al cambiar la contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasõna muutmine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan pasahitza aldatzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغییر گذرواژه ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanan vaihtaminen epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong magpalit ng password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de changement de mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido cambiar o contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa canza kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לקבוע סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड बदलने में विफल रहा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promjena lozinke nije uspjela" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó módosítása sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց փոխել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengubah kata sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile cambiare la password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードの変更に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის შეცვლა ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការកែប្រែពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 변경 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "توشەی فرشتن پەیامەم نەتوانرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ekigambo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pakeisti slaptažodžio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās nomainīt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно промена на лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг өөрчлөхөд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menukar kata laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ပြောင်းရန်မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke endre passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड परिवर्तन गर्न असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord wijzigen mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikkje endre passordet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kusintha mawu achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਬਦਲਣ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zmienić hasła" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم بدلولو کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao alterar a senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao modificar a palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la modificarea parolei" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось изменить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjela promjena lozinke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය වෙනස් කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa zmeniť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo spremeniti gesla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi ndryshimi i fjalëkalimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у постављању лозинке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešna promena lozinke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades att ändra lösenordet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kubadilisha nyila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை மாற்ற முடியவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ మార్చడం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเปลี่ยนรหัสผ่านล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola değiştirilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося змінити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ تبدیل کرنے میں ناکامی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni o'zgartirishda xatolik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thay đổi mật khẩu thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukutshintsha iphasiwedi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改密码失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改密碼失敗" + } + } + } + }, + "clear" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صاف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ачысьціць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчисти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পরিষ্কার" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Netejar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clir" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "साफ़" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancella" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತೆರವುಪಡಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "지우기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاکردنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastro" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్పష్టమైనది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เคลียร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tozalamoq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除" + } + } + } + }, + "clearAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee Alles uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "امسح الكل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamısını təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب صاف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ачысціць усё" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчисти всичко" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব পরিষ্কার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborreu-ho tot" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat vše" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio Popeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd alt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alles löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Όλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi Ĉion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda kõik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä kaikki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin Lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer tout" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar todo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayarwa Duk" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה הכול" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभ साफ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել բոլորը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Semua" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancella tutto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべて消去する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სრულად გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲಾ ತೆರವು ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모두 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاکردنەوەی هەموو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງແມ່ນທັງໃຫ້ໝົດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti viską" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt visu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти се" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүгдийг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Semua" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အားလုံး ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alles wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰਾ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść wszystko" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول پاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar Tudo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Tudo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge tot" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить все" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියල්ල මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť všetko" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastro Të Gjitha" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Zote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனைத்து தகவல்களையும் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్నీ స్పష్టంచేసి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เคลียร์ทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hepsini Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити всі" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barchasini tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa Tất cả" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacisa Zonke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除全部" + } + } + } + }, + "clearDataAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee Alle Data uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اِمسح جميع البيانات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün datanı təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب ڈیٹا صاف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці ўсе даныя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване на всички данни" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব ডেটা মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra totes les dades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat všechna data" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio'r holl ddata" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd Alle Data" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Daten löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Όλων των Δεδομένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Data" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi ĉiujn datumojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todos los datos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todos los datos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kõik andmed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Data" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن همه داده‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä kaikki tiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Lahat ng Data" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer toutes les données" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar todos os datos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Duk Bayanai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ניקוי כל הנתונים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी डेटा हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve podatke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes adat törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել բոլոր տվյալները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Semua Data" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina tutti i dati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのデータを消去する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველა მონაცემის გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះទិន្នន័យទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ತೆರವುಗೊಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 데이터 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی هەموو داتا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Ebimu Ebyetaago Byonna" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເວດຂໍ້ມູນ້ອຍໆ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti visus duomenis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izdzēst visus datus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти ги сите податоци" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүх өгөгдлийг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Semua Data" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာအားလုံးကို ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern alle data" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै डाटा मेटाउँनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wis alle gegevens" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern alle data" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Zonse Zomwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰਾ ਡਾਟਾ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść wszystkie dane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول معلومات له منځه یوسه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Todos os Dados" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Todos os Dados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge toate datele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить все данные" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve Podatke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලුම දත්ත හිස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť všetky údaje" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti vse podatke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastro Të Gjitha Të Dhënat" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши све податке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti sve podatke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa all data" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Data Yote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லா தகவல்களையும் அழி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని డేటాను క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูลไปหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm Veriyi Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити всі дані" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام ڈیٹا صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha hujjatlarni o'chir" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa tất cả dữ liệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacisa Zonke Idatha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有数据" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有資料" + } + } + } + }, + "clearDataAllDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit sal jou boodskappe en kontakte permanent vee. Wil jy net hierdie toestel skoonmaak, of jou data ook van die netwerk verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيؤدي هذا إلى حذف رسائلك وجهات الاتصال بشكل دائم. هل ترغب في مسح هذا الجهاز فقط، أو حذف بياناتك من الشبكة أيضًا؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, mesajlarınızı və kontaktlarınızı həmişəlik siləcək. Yalnız bu cihazı təmizləmək istəyirsiniz, yoxsa datanızı bütün şəbəkədən də silmək istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپکے پیغامات و رابطوں کو مستقل طور پر حذف کر دے گا۔ کیا آپ صرف اس ڈیوائس کو صاف کرنا چاہوینگے، یا اپنے ڈیٹا کو نیٹ ورک سے بھی حذف کرنا چاہوینگے؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това ще изтрие постоянно вашите съобщения и контакти. Бихте ли искали да изчистите само това устройство или да изтриете също данните си от мрежата?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি আপনার মেসেজ এবং কনট্যাক্ট প্রমুখ স্থায়ীভাবে মুছে ফেলবে. আপনি কি শুধু এই ডিভাইসটি পরিষ্কার করতে চান, নাকি আপনার ডেটা নেটওয়ার্ক থেকেও মুছতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Això suprimirà permanentment els vostres missatges i contactes. Voleu esborrar només aquest dispositiu o suprimir les dades de la xarxa també?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tímto trvale smažete vaše zprávy a kontakty. Chcete smazat data pouze na tomto zařízení, nebo smazat také data ze sítě?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd hyn yn dileuon eich negeseuon a'ch cysylltiadau yn barhaol. Hoffech chi glirio'r ddyfais hon yn unig, neu ddileuon eich data o'r rhwydwaith hefyd?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil permanent slette dine beskeder og kontakter. Vil du rydde kun enheden eller også dine data fra netværket?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du bist dabei, deine Nachrichten und Kontakte dauerhaft zu löschen. Möchtest du nur dieses Gerät löschen oder deine Daten auch aus dem Netzwerk löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό θα διαγράψει μόνιμα τα μηνύματα και τις επαφές σας. Θα θέλατε να καθαρίσετε αυτή τη συσκευή μόνο ή να διαγράψετε και τα δεδομένα σας από το δίκτυο;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tio permanente forigos viajn mesaĝojn kaj kontaktojn. Ĉu vi ŝatus klarigi nur ĉi tiun aparaton aŭ ankaŭ forigi viajn datumojn el la reto?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto eliminará permanentemente tus mensajes y contactos. ¿Quieres borrar solo este dispositivo o borrar también tus datos de la red?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto eliminará permanentemente tus mensajes y contactos. ¿Te gustaría borrar solo este dispositivo, o eliminar también tus datos de la red?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See kustutab jäädavalt teie sõnumid ja kontaktid. Kas soovite kustutada ainult selle seadme või kustutada andmed ka võrgustikust?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak eta kontaktuak betirako ezabatuko dira. Zure gailua soilik garbitu nahi al duzu edo zure datuak sarean ere ezabatu nahi dituzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این کار پیام‌ها و مخاطبین شما را برای همیشه حذف می‌کند. آیا می‌خواهید فقط این دستگاه را پاک کنید یا داتا خود را از شبکه نیز حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä poistaa viestisi ja yhteystietosi pysyvästi. Haluatko poistaa tietosi vain tältä laitteelta vai myös verkosta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanente nitong ide-delete ang iyong mga mensahe at contact. Gusto mo bang i-clear lamang ang device na ito, o burahin ang iyong data mula sa network na rin?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cela supprimera définitivement vos messages et contacts. Souhaitez-vous uniquement effacer cet appareil ou aussi supprimer vos données du réseau ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto eliminará permanentemente as túas mensaxes e contactos. Queres limpiar só este dispositivo, ou tamén eliminar os teus datos da rede?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan zai goge saƙonninka da lambobin sadarwarka dindindin. Kunna ka goge wannan na'ura kawai, ko kuma goge bayaninka daga cibiyar ma haka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פעולה זו תמחק לצמיתות את ההודעות ואנשי הקשר שלך. האם ברצונך לנקות רק מכשיר זה או גם למחוק את הנתונים שלך מהרשת?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह आपके संदेशों और संपर्कों को स्थायी रूप से हटा देगा। क्या आप केवल इस डिवाइस को साफ़ करना चाहते हैं, या नेटवर्क से भी अपना डेटा हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će trajno obrisati vaše poruke i kontakte. Želite li izbrisati podatke samo s ovog uređaja ili ukloniti podatke i iz mreže?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezáltal az összes üzeneted és kontaktod törölve lesz. Csak erről az eszközről, vagy a hálózatról is törölni kívánod az adataidat?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա ընդմիշտ կջնջի ձեր հաղորդագրությունները և կոնտակտները: Ցանկանու՞մ եք մաքրել միայն այս սարքը, թե՞ ջնջել ձեր տվյալները ցանցից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tindakan ini akan menghapus pesan dan kontak Anda secara permanen. Apakah Anda ingin menghapus hanya di perangkat ini saja, atau juga menghapus data Anda dari jaringan?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo eliminerà definitivamente i tuoi messaggi e i tuoi contatti. Li vuoi cancellare solo su questo dispositivo o eliminare anche dalla rete?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この操作はメッセージと連絡先を永久に削除します。このデバイスのみをクリアしますか、それともネットワークからもデータを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს მუდმივად წაშლის თქვენს შეტყობინებებს და კონტაქტებს. გნებავთ იყოალობა მხოლოდ ამ მოწყობილობაზე ამ ბაზაზე, ან იმასვე წაშალოთ მონაცემები ქსელიდანაც?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇದರಿಂದ ನಿಮ್ಮ ಸಂದೇಶಗಳು ಮತ್ತು ಸಂಪರ್ಕಗಳನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಿಸಲಾಗುತ್ತದೆ. ನಿಮ್ಮ ಡಿವೈಸ್‌ನಲ್ಲಿ ಮಾತ್ರ ಡೇಟಾವನ್ನು साफಹಾಗು ಅಥವಾ ನಿಮ್ಮ ಡೇಟಾವನ್ನು ನೆಟ್‌ವರ್ಕ್ನಿಂದ ಕೂಡ ಅಳಿಸಲು ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이렇게 하면 메시지 및 연락처가 영구적으로 삭제됩니다. 이 기기만 삭제하시겠습니까, 아니면 네트워크에서 데이터도 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئه‌مه‌ به‌ ته‌واوی پەیامەکان و پەیوەندیارەکانت سڕدەوە. ئایا تۆ تەنها ئه‌م ئامێره‌یه‌ بتاقی ده‌که‌ی، یان داتاکانت له‌تۆڕەکەش بپاکی ده‌که‌ی؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kijya ku buti bubaka bwo ne bubaka yonna obukutuubirira. Wandeera oba oyagala okusasira e kifaananyi kino obusa okuba oba okusasira ebigwawula ebifo byona?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai visam laikui ištrins jūsų žinutes ir kontaktus. Ar norėtumėte išvalyti tik šį įrenginį ar taip pat ištrinti duomenis iš tinklo?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tas neatgriezeniski izdzēsīs tavas ziņas un kontaktus. Vai tu vēlies izdzēst datus tikai no šīs ierīces vai arī tīkla?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова ќе ги избрише вашите пораки и контакти трајно. Дали сакате да го исчистите само овој уред или да ги избришете вашите податоци и од мрежата?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ таны мессежүүд болон холбоо барихийг бүрэн устгана. Та зөвхөн энэ төхөөрөмжөөс устгах уу, эсвэл мөн сүлжээнээс устгах уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan memadamkan mesej dan kenalan anda secara kekal. Adakah anda ingin membersihkan peranti ini sahaja, atau memadamkan data anda dari rangkaian juga?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသည် သင့်မက်ဆေ့ချ်များနှင့် အဆက်အသွယ်များကို အပြီးတိုင် ဖျက်သိမ်းပါမည်။ ဤကိရိယာကိုသာ ရှင်းပေးချင်ပါသလား သို့မဟုတ် သင့်ဒေတာကို လုပ်ငန်းစွမ်းဆောင်မှုပုံးများမှ ဖျက်ရန် ဖြစ်ပါမည်လော?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil permanent slette dine meldinger og kontakter. Vil du bare slette denne enheten, eller slett dine data fra nettverket også?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यसले तपाईका सन्देशहरू र सम्पर्कहरू स्थायी रूपमा मेटाउनेछ। के तपाईं केवल यो उपकरण खाली गर्न चाहनुहुन्छ, वा तपाईको डेटा नेटवर्कबाट पनि मेटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit zal uw berichten en contacten permanent verwijderen. Wilt u alleen uw apparaat wissen of ook uw gegevens van het netwerk verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil permanent slette meldingene og kontaktene dine. Vil du kun tømme denne enheten, eller slette dataene dine fra nettverket også?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izi zidzachotsa mauthenga anu ndi mabwenzi anu kwathunthu. Mukufuna kutsuka chipangizochi chokha, kapena kuchotsa deta yanu kuchokera pa netiweki?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਤੁਹਾਡੇ ਸੁਨੇਹੇ ਅਤੇ ਸੰਪਰਕ ਨੂੰ ਸਦਾ ਲਈ ਹਟਾ ਦੇਵੇਗਾ। ਤੁਸੀਂ ਸਿਰਫ ਇਸ ਡਿਵਾਈਸ ਤੋਂ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ ਜਾਂ ਆਪਣਾ ਡਾਟਾ ਨੈਟਵਰਕ ਤੋਂ ਵੀ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spowoduje to trwałe usunięcie wiadomości i kontaktów. Czy chcesz wyczyścić tylko to urządzenie, czy usunąć również dane z sieci?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا به ستاسو د پیغامونو او اړیکو په دائمي توګه حذف کړي. ایا تاسو یوازې دا وسیله پاکه غواړئ، یا غواړئ ستاسو ډاټا له شبکې څخه هم حذف شي؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto excluirá permanentemente suas mensagens e contatos. Você gostaria de limpar este dispositivo somente ou excluir seus dados da rede também?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto apagará permanentemente as suas mensagens e contactos. Gostaria de limpar isto apenas do seu dispositivo, ou também eliminar os seus dados da rede?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această acțiune va șterge definitiv mesajele și contactele tale. Dorești să ștergi doar acest dispozitiv sau să ștergi și datele din rețea?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это приведет к окончательному удалению сообщений и контактов. Вы хотите очистить только это устройство или также удалить свои данные из сети?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će trajno izbrisati tvoje poruke i kontakte. Želiš li očistiti samo ovaj uređaj ili također izbrisati sve podatke s mreže?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය ඔබගේ පණිවිඩ සහ සම්බන්ධතා ස්ථිරව delete කෙරේ. ඔබට මෙම උපකරණය පමණක් පිවිසීමට අවශ්‍යද, නැතහොත් ඔබගේ දත්ත ජාලයෙන්ද 삭제 කිරීම." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tým sa natrvalo vymažú vaše správy a kontakty. Chcete vyčistiť iba toto zariadenie, alebo vymazať aj údaje zo siete?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To bo trajno izbrisalo vaša sporočila in stike. Ali želite izbrisati samo to napravo ali tudi vaše podatke iz omrežja?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo do t'i fshijë përgjithmonë mesazhet dhe kontaktet tuaja. A dëshironi të pastroni vetëm këtë pajisje, apo të fshini të dhënat tuaja edhe nga rrjeti?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово ће трајно обрисати ваше поруке и контакте. Желите ли очистити само овај уређај, или обрисати своје податке са мреже?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će trajno izbrisati vaše poruke i kontakte. Da li želite da obrišete samo ovaj uređaj ili i sve podatke iz mreže?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta kommer att permanent radera dina meddelanden och kontakter. Vill du bara rensa denna enhet eller också ta bort dina data från nätverket?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii itafuta jumbe na mawasiliano yako milele. Je, ungependa kufuta kifaa hiki tu, au kufuta data yako pia kutoka kwa mtandao?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது உங்கள் செய்திகளை மற்றும் தொடர்புகளை நிரந்தரமாக நீக்கும். உங்களுக்கு இந்த சாதனத்திற்கு மட்டுமே அழிக்க விரும்புகிறீர்களா அல்லது உங்கள் தரவுகளை நெட்வொர்க்கிலிருந்து கூட அழிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది మీ సందేశాలు మరియు సంపర్కాలను శాశ్వతంగా తొలగిస్తుంది. మీరు ఈ పరికరం మాత్రమే క్లియర్ చేయాలనుకుంటున్నారా, లేక మీ డేటాను నెట్వర్క్ నుండి కూడా తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "นี่จะลบข้อความและผู้ติดต่อนี้ของคุณอย่างถาวร คุณอยากลบจากอุปกรณ์นี้เท่านั้นหรือลบข้อมูลจากเครือข่ายด้วย?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu işlem mesajlarınızı ve kişilerinizi kalıcı olarak silecektir. Verilerinizi sadece bu cihazdan mı yoksa tüm ağdan mı temizlemek istersiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це остаточно видалить ваші повідомлення та контакти. Ви хочете очистити лише цей пристрій, або також видалити свої дані з мережі?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس سے آپ کے پیغامات اور رابطے مستقل طور پر حذف ہو جائیں گے۔ کیا آپ اس ڈیوائس کو صرف صاف کرنا چاہیں گے، یا اپنے ڈیٹا کو نیٹ ورک سے بھی حذف کرنا پسند کریں گے؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizning xabarlaringiz va kontaktlaringizni doimiy o‘chirib tashlaydi. Faqat ushbu qurilmani tozalashni yoki tarmoqdagi ma'lumotlaringizni ham o'chirishni tanlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều này sẽ xóa vĩnh viễn tin nhắn và danh bạ của bạn. Bạn có muốn xoá dữ liệu chỉ trên thiết bị này hay xoá dữ liệu từ mạng lưới?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oku kuya kususa yonke imiyalezo yakho kunye nonxibelelwano lwakho ngokusisigxina. Ngaba ungathanda ukucoca esi sixhobo kuphela, okanye ususe idatha yakho kunxibelelwano?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "该操作将永久删除您的消息和联系人。您想仅清除此设备,还是同时从网络中删除您的数据?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這將永久刪除您的訊息和聯絡人。您要僅清除此設備上的資料,還是同時刪除網絡中的資料?" + } + } + } + }, + "clearDataError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Nie Uitgevee" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم تحذف البيانات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data silinmədi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاٹا نا مٹایا گیئہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя не выдалены" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Данните не са изтрити" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডেটা এখনও মোছা হয়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dades no esborrades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nebyla odstraněna" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Heb Ei Ddileu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data blev ikke slettet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daten nicht gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα δεδομένα δε διαγράφηκαν" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Not Deleted" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datumo ne forigita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar los datos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar los datos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmed pole kustutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datuak ez dira ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "داده ها حذف نشدند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietoja ei poistettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi Na-delete ang Data" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Données non supprimées" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos non eliminados" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan Ba Su Share Ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הנתונים לא נמחקו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटा हटाया नहीं गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu izbrisani" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatok nem lettek törölve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալները չեն ջնջվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data tidak dihapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati non eliminati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データは削除されていません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემები არ წაშლილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទិន្នន័យមិនត្រូវបានលុបទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾಹಿತಿ ಅಳಿಸಲಾಗಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터가 삭제되지 않았습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داتا ئنەسڕ دراوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebyetaago Bituusiddwako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂໍ້ມູນບໍ່ໄດ້ຖືກລຶບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenys neištrinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati netika izdzēsti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податоците не се избришани" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өгөгдлийг арилгах боломжгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Tidak Dipadam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာ မဖျက်ဆီးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opplysninger ikke slettet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाटा मेटिएको छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gegevens niet verwijderd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opplysningar ikkje sletta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deta sinachotsedwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾ ਨਹੀਂ ਹਟੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dane nie zostały usunięte" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پایګا تیروتنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados não excluídos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados Não Eliminados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datele nu au fost șterse" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Данные не удалены" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu obrisani" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්ත මකා නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Údaje neboli odstránené" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatki niso izbrisani" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të dhënat nuk janë fshirë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подаци нису обрисани" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu obrisani" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data raderades inte" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Haijafutwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவலும் நீக்கபடில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటా తొలగింపబడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data Not Deleted" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veri Silinmedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дані не видалено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا حذف نہیں ہوا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar o'chirib bo'lmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dữ liệu không được xóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idatha Ayicinywanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "数据未删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "資料未刪除" + } + } + } + }, + "clearDataErrorDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nie uitgevee deur %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nie uitgevee deur %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data, %lld Xidmət Düyünü tərəfindən silinmədi. Xidmət Düyünü kimliyi: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data, %lld Xidmət Düyünü tərəfindən silinmədi. Xidmət Düyünü kimliyi: {service_node_id}." + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld سروس نود درزنا کد گون بنڈی۔ سروس نود آئی ڈی: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld سروس نودز درزنا کد گون بنڈی۔ سروس نود آئی ڈیز: {service_node_id}." + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя не выдалены %lld Service Nodes. Ідэнтыфікатары Service Nodes: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя не выдалены %lld Service Nodes. Ідэнтыфікатары Service Nodes: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя не выдалены %lld Service Node. Ідэнтыфікатар Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя не выдалены %lld Service Nodes. Ідэнтыфікатары Service Nodes: {service_node_id}." + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Данните не са изтрити от %lld обслужващи звена. Service Node IDs: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Данните не са изтрити от %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dades no eliminades pel %lld Service Node. ID del Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dades no eliminades pels %lld Service Nodes. IDs dels Service Nodes: {service_node_id}." + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nebyla smazána %lld provozními uzly. ID provozních uzlů: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nebyla smazána %lld provozními uzly. ID provozních uzlů: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nebyla odstraněna %lld Service Node. ID Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data nebyla smazána %lld provozními uzly. ID provozních uzlů: {service_node_id}." + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Nôd Gwasanaeth. ID Nôd Gwasanaeth: {service_node_id}." + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikke slettet af %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikke slettet af %lld Service Noder. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daten konnten nicht von %lld Serviceknoten gelöscht werden. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daten konnten nicht von %lld Serviceknoten gelöscht werden. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα δεδομένα δε διαγράφηκαν από %lld Κόμβους Εξυπηρέτησης. ID Κόμβων Εξυπηρέτησης: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα δεδομένα δε διαγράφηκαν από %lld Service Nodes. ID Κόμβων Εξυπηρέτησης: {service_node_id}." + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data not deleted by %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datumoj ne forigitaj de %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datumoj ne forigitaj de %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos no borrados por %lld Service Node. ID del Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos no borrados por %lld Service Nodes. IDs de los Service Nodes: {service_node_id}." + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos no borrados por %lld Service Node. ID del nodo de servicio: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos no borrados por %lld Service Nodes. ID del nodo de servicio: {service_node_id}." + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmeid ei kustutanud %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmeid ei kustutanud %lld Service Node'i. Service Node'i ID: {service_node_id}." + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datuak %lld Service Node-k ez ditu ezabatu. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datuak %lld Service Node-ek ez dituzte ezabatu. Service Node IDak: {service_node_id}." + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "داده ها توسط %lld گره سرویس حذف نشدند. شناسه گره سرویس: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "داده ها توسط %lld گره سرویس حذف نشدند. شناسه گره سرویس: {service_node_id}." + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietoja ei poistettu %lld palvelusolmusta. Solmun ID: {service_node_id}" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dataa ei poistettu %lld palvelusolmusta. Palvelusolmujen tunnukset: {service_node_id}." + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi natanggal ang data ng %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi natanggal ang data ng %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les données n’ont pas été supprimées par %lld nœuds de service. ID des nœuds de service : {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les données n’ont pas été supprimées par %lld Service Nodes. IDs des Service Nodes : {service_node_id}." + } + } + } + } + }, + "gl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os datos non foron borrados polo %lld Service Node. ID do Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os datos non foron borrados polos %lld Service Nodes. IDs dos Service Nodes: {service_node_id}." + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan ba a share ta %lld Service Node. Lambar Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan ba a share ta %lld Service Nodes. Lambobi Service Nodes: {service_node_id}." + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "נתונים לא נמחקו על ידי %lld Service Nodes. מזהי Service Nodes: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "נתונים לא נמחקו על ידי %lld Service Node. מזהה Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "נתונים לא נמחקו על ידי %lld Service Nodes. מזהי Service Nodes: {service_node_id}." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "נתונים לא נמחקו על ידי %lld Service Nodes. מזהי Service Nodes: {service_node_id}." + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सर्विस नोड द्वारा डेटा हटाया नहीं गया। सर्विस नोड आईडी: {service_node_id}।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सर्विस नोड द्वारा डेटा हटाया नहीं गया। सर्विस नोड आईडी: {service_node_id}।" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatke nije izbrisao %lld Service Node. ID-ovi uslužnih čvorova: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatke nije izbrisao %lld Service Node. ID uslužnog čvora: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatke nije izbrisao %lld Service Node. ID-ovi uslužnih čvorova: {service_node_id}." + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld szolgáltatási csomópoint nem törölte az adatokat. A csomópont azonosítója: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld szolgáltatási csomópoint nem törölte az adatokat. A csomópontok azonosítói: {service_node_id}." + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալները չեն ջնջվել %lld Service Node-ի կողմից: Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալները չեն ջնջվել %lld Service Nodes-ի կողմից: Service Node IDs: {service_node_id}." + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data tidak dihapus oleh %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati non eliminati da %lld nodo di servizio. ID nodo di servizio: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati non eliminati da %lld nodi di servizio. ID nodi di servizio: {service_node_id}." + } + } + } + } + }, + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 個のサービスノードからデータが削除されませんでした。ID: {service_node_id}" + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემები არ წაიშალა %lld Service Node-ით. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემები არ წაიშალა %lld Service Node-ით. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទិន្នន័យមិនត្រូវបានលុបដោយ %lld Service Nodes។ ID Service Node: {service_node_id}។" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Node ಮೂಲಕ ಡೇಟಾ ಅಳಿಸಲಾಗಿಲ್ಲ. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Nodes ಮೂಲಕ ಡೇಟಾ ಅಳಿಸಲಾಗಿಲ್ಲ. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Node가 데이터를 삭제하지 않았습니다. Service Node ID: {service_node_id}." + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "داتا نەبودوە پەیوەندیدەربابە لە %lld خەبەرەریدەنێ بۆ. ناسنامەی خەبەرەریدەنێ: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "داتا نەبودوە پەیوەندیدەربابە لە %lld خەبەرەریدەنەکان. ناسنامەکان: {service_node_id}." + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eddakiika teriryeeko Service Node %lld. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eddakiika teriryeeko Service Nodes %lld. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenų nepavyko ištrinti per %lld Service Node'us. Service Node ID: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenų nepavyko ištrinti per %lld Service Node'us. Service Node ID: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenų nepavyko ištrinti per %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenų nepavyko ištrinti per %lld Service Node'us. Service Node ID: {service_node_id}." + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati netika izdzēsti %lld pakalpojuma mezglos. Pakalpojuma mezgla ID {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati netika izdzēsti %lld pakalpojuma mezglos. Pakalpojuma mezgla ID {service_node_id}." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dati netika izdzēsti %lld Service Node. Service Node ID: {service_node_id}." + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податоците не се избришани од %lld Services Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податоците не се избришани од %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Node нь өгөгдлийг устгасангүй. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Nodes нь өгөгдлийг устгасангүй. Service Node ID: {service_node_id}." + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data tidak dipadamkan oleh %lld Service Node. ID Service Node: {service_node_id}." + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "အချက်အလက်များကို %lld Service Nodes မှ ဖျက်မရပါ။ Service Node IDs: {service_node_id}။" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikke slettet av %lld Service Node. Service Node-ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikke slettet av %lld Service Nodes. Service Node-ID'er: {service_node_id}." + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सेवा नोडबाट डाटा मेटिएको छैन। सेवा नोड आईडी: {service_node_id}।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सेवा नोडहरूबाट डाटा मेटिएको छैन। सेवा नोड आईडीहरू: {service_node_id}।" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gegevens niet verwijderd door %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gegevens niet verwijderd door %lld Service Nodes. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikkje sletta av %lld Service Node. Service Node-ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data ikkje sletta av %lld Service Nodes. Service Node-ID'ar: {service_node_id}." + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri sizingachotsedwe ndi %lld Service Node. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri sizingachotsedwe ndi %lld Service Nodes. Ma Service Node IDs: {service_node_id}." + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾ %lld ਸਰਵਿਸ ਨੋਡ ਦੁਆਰਾ ਹਟਾਇਆ ਨਹੀਂ ਗਿਆ। ਸੇਵਾ ਨੋਡ ID: {service_node_id}।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾ %lld ਸਰਵਿਸ ਨੋਡਜ਼ ਦੁਆਰਾ ਹਟਾਇਆ ਨਹੀਂ ਗਿਆ। ਸੇਵਾ ਨੋਡ ID: {service_node_id}।" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dane nie zostały usunięte przez %lld węzły usługi. Identyfikatory węzłów usługi: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dane nie zostały usunięte przez %lld węzłów usługi. Identyfikatory węzłów usługi: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dane nie zostały usunięte przez %lld węzeł usługi. Identyfikator węzła usługi: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dane nie zostały usunięte przez %lld węzłów usługi. Identyfikatory węzłów usługi: {service_node_id}." + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "د %lld Service Node لخوا ډاټا حذف نه شوه. د Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "د %lld Service Nodes لخوا ډاټا حذف نه شوه. د Service Node IDs: {service_node_id}." + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados não excluídos por %lld Service Node. IDs do Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados não excluídos por %lld Service Nodes. IDs dos Service Node: {service_node_id}." + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados não eliminados pelo Service Node %lld. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados não eliminados pelos Service Nodes %lld. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datele nu au fost șterse de %lld Noduri de serviciu. ID-uri de serviciu: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datele nu au fost șterse de %lld noduri de serviciu. ID-ul nodului de serviciu: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datele nu au fost șterse de %lld Noduri de serviciu. ID-uri de serviciu: {service_node_id}." + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить данные на %lld узлах. ID узлов: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить данные на %lld узлах. ID узлов: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить данные на %lld узле. ID узла: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить данные на %lld узлах. ID узлов: {service_node_id}." + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu izbrisani od strane %lld Service Node. ID-jevi Service Node-a: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu izbrisani od strane %lld Service Node. ID-jevi Service Node-a: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu izbrisani od strane %lld Service Node. ID Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu izbrisani od strane %lld Service Node. ID-jevi Service Node-a: {service_node_id}." + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld සේවා නෝඩයක් මඟින් දත්ත මකා නැත. සේවා නෝඩ් ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "සේවා නෝඩ් %lld කින් දත්ත මකා නැත. සේවා නෝඩ් ID: {service_node_id}." + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Údaje neboli vymazané %lld Servisnými uzlami. ID servisných uzlov: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Údaje neboli vymazané %lld Servisnými uzlami. ID servisných uzlov: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Údaje neboli vymazané %lld Servisným uzlom. ID servisného uzla: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Údaje neboli vymazané %lld Servisnými uzlami. ID servisných uzlov: {service_node_id}." + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatkov ni izbrisal %lld Service Nodes. ID-ji Service Node: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatkov ni izbrisal %lld Service Node. ID Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatkov ni izbrisal %lld Service Nodes. ID-ji Service Node: {service_node_id}." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podatkov ni izbrisal %lld Service Node. ID-ji Service Node: {service_node_id}." + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të dhënat nuk u fshinë nga %lld Service Node. ID e Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të dhënat nuk u fshinë nga %lld Service Nodes. ID-të e Service Nodes: {service_node_id}." + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податке није избрисало %lld Service Nodes. ИД-ови Service Nodes: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податке није избрисао %lld Service Node. ИД Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Податке није избрисало %lld Service Nodes. ИД-ови Service Nodes: {service_node_id}." + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu obrisani na %lld Service Node-a. ID-ovi Service Node-a: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu obrisani na %lld Service Node. ID Service Node-a: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podaci nisu obrisani na %lld Service Node-a. ID-ovi Service Node-a: {service_node_id}." + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data raderades inte av %lld Service Node. Tjänstnodens id: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data raderades inte av %lld tjänstnoder. Tjänstnodernas id: {service_node_id}." + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data hazijafutwa na %lld Service Node. Kitambulisho cha Service Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data hazijafutwa na %lld Service Nodes. Vitambulisho vya Service Node: {service_node_id}." + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld சேவைக் குறுகிய நெட்வொர்க் மூலம் தரவு நீக்க முடியவில்லை. சேவை குறுகிய நெட்வொர்க் அடையாளம்: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld சேவைக் குறுகிய நெட்வொர்க் மூலம் தரவு நீக்க முடியவில்லை. சேவை குறுகிய நெட்வொர்க் அடையாளங்கள்: {service_node_id}." + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Node ద్వారా డేటా తొలగించబడలేదు. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Nodes ద్వారా డేటా తొలగించబడలేదు. Service Node IDs: {service_node_id}." + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูลไม่สำเร็จโดย Service Node จำนวน %lld IDs ของ Service Node: {service_node_id}" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veriler %lld Hizmet Noktaları tarafından silinemedi. Hizmet Noktası Kimlikleri: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veriler %lld Hizmet Noktaları tarafından silinemedi. Hizmet Noktası Kimlikleri: {service_node_id}." + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дані не видалено %lld Service Node. Ідентифікатори сервісних вузлів: {service_node_id}." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дані не видалено %lld Service Node. Ідентифікатори сервісних вузлів: {service_node_id}." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дані не видалено %lld Service Node. Ідентифікатор сервісного вузла: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дані не видалено %lld Service Node. Ідентифікатори сервісних вузлів: {service_node_id}." + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Node نے ڈیٹا حذف نہیں کیا۔ Service Node ID: {service_node_id}۔" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Service Nodes نے ڈیٹا حذف نہیں کیا۔ Service Node IDs: {service_node_id}۔" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node tomonidan %lld ta ma'lumot o'chirilmadi. Service Node ID: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node tomonidan %lld ta ma'lumotlar o'chirilmadi. Service Node ID: {service_node_id}." + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dữ liệu không được xóa bởi %lld Service Node. ID của Service Node: {service_node_id}." + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idatha ayicinywanga yiService Node %lld. I-ID yeService Node: {service_node_id}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idatha ayicinywanga yiService Nodes %lld. I-ID yeService Nodes: {service_node_id}." + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "数据未被%lld服务节点删除。服务节点ID:{service_node_id}。" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "數據沒有被 %lld 個服務節點刪除。節點 ID: {service_node_id}。" + } + } + } + } + } + } + }, + "clearDataErrorDescriptionGeneric" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "‘n Onbekende fout het voorgekom en jou data is nie verwyder nie. Wil jy jou data net van hierdie toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدث خطأ غير معروف ولم يتم حذف بياناتك. هل تريد حذف بياناتك من هذا الجهاز فقط بدلاً من ذلك؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinməyən bir xəta baş verdi və datanız silinmədi. Bunun əvəzinə datanızı yalnız bu cihazdan silmək istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نامعلوم خطا پیش آئی اور آپ کا ڈیٹا حذف نہیں ہوا۔ کیا آپ صرف اس ڈیوائس سے آپ کا ڈیٹا حذف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адбылася невядомая памылка, і вашыя даныя не былі выдалены. Жадаеце выдаліць дадзеныя толькі з гэтай прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възникна неизвестна грешка и вашите данни не бяха изтрити. Искате ли да изтриете данните си само от това устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি অজানা ত্রুটি ঘটেছে এবং আপনার ডেটা মোছা হয়নি। আপনি কি শুধুমাত্র এই ডিভাইস থেকে আপনার ডেটা মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha produït un error desconegut i les vostres dades no s'han suprimit. Voleu suprimir les dades només d'aquest dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo k neznámé chybě a vaše data nebyla smazána. Chcete místo toho smazat data pouze z tohoto zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digwyddodd gwall anhysbys ac ni chafodd eich data ei ddileu. A ydych am ddileu eich data o’r ddyfais hon yn lle?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der opstod en ukendt fejl, og dine data blev ikke slettet. Vil du slette dine data fra kun denne enhed i stedet?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein unbekannter Fehler ist aufgetreten und deine Daten wurden nicht gelöscht. Möchtest du stattdessen Ihre Daten nur von diesem Gerät löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρουσιάστηκε άγνωστο σφάλμα και τα δεδομένα σας δεν διαγράφηκαν. Θέλετε να διαγράψετε τα δεδομένα σας μόνο από αυτή τη συσκευή;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An unknown error occurred and your data was not deleted. Do you want to delete your data from just this device instead?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonata eraro okazis kaj viaj datumoj ne estis forigitaj. Ĉu vi volas forigi viajn datumojn nur el ĉi tiu aparato anstataŭe?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un error desconocido y tus datos no fueron eliminados. ¿Quieres eliminar tus datos solo de este dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un fallo desconocido y tus datos no fueron eliminados. ¿Deseas eliminar tus datos solo de este dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekkis tundmatu viga ja teie andmeid ei kustutatud. Kas soovite oma andmed kustutada ainult sellest seadmest?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore ezezagun bat gertatu da eta zure datuak ez dira ezabatu. Zure datuak gailu honetatik bakarrik ezabatu nahi dituzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک خطای ناشناخته رخ داد و داده‌های شما حذف نشد. آیا می‌خواهید داده‌هایتان را فقط از این دستگاه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapahtui tuntematon virhe, ja tietojasi ei poistettu. Haluatko poistaa tiedot vain tältä laitteelta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May naganap na di-kilalang error at hindi natanggal ang iyong data. Gusto mo bang tanggalin ang iyong data mula rito sa device na ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une erreur inconnue est survenue et vos données n'ont pas été supprimées. Désirez-vous supprimer vos données seulement sur cet appareil à la place?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Produciuse un erro descoñecido e os teus datos non foron eliminados. Queres eliminar os teus datos só deste dispositivo en vez diso?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wani kuskure mara sani ya auku kuma ba a share bayananka ba. Kana son share bayananka daga wannan na'urar kawai?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אירעה שגיאה לא ידועה והנתונים שלך לא נמחקו. האם ברצונך למחוק את הנתונים שלך רק ממכשיר זה במקום?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक अज्ञात त्रुटि हुई और आपका डेटा हटाया नहीं गया। इसके बजाय क्या आप इस उपकरण से डेटा हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dogodila se nepoznata greška i vaši podaci nisu izbrisani. Želite li izbrisati podatke samo s ovog uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen hiba történt, és az adataid nem lettek törölve. Szeretnéd törölni az adatokat csak erről az eszközről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ սխալ է տեղի ունեցել, և ձեր տվյալները չեն ջնջվել։ Ցանկանու՞մ եք ջնջել ձեր տվյալները միայն այս սարքից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terjadi kegagalan yang tidak diketahui dan data Anda tidak dihapus. Apakah Anda ingin menghapus data Anda dari perangkat ini saja?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si è verificato un errore sconosciuto e i tuoi dati non sono stati eliminati. Vuoi eliminare i tuoi dati solo da questo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知のエラーが発生し、データは削除されませんでした。この代わりに、このデバイスのみからデータを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი შეცდომა მოხდა და თქვენი მონაცემები არ იშლება. გსურთ, თქვენი მონაცემების წაშლა მხოლოდ ამ მოწყობილობისთვის?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានកំហុសមិនស្គាល់មួយបានកើតឡើង និងទិន្នន័យរបស់អ្នកមិនត្រូវបានលុប។ តើអ្នកចង់លុបទិន្នន័យរបស់អ្នកពីឧបករណ៍នេះតែម្តងទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ ದೋಷ ತಮಗೆಂಟಿತ್ತು ಮತ್ತು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಅಳಿಸಲಾಗಲಿಲ್ಲ. ಬದಲು ನಿಮ್ಮ ಲೇಸರ್‌ಗಳ ಡೇಟಾವನ್ನು ಅಳಿಸಲು ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "An unknown error occurred and your data was not deleted. Do you want to delete your data from just this device instead?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەیەکی نەناسراو ڕوویدا و داتاکەت نەسڕدرانەوە. دەتەوێت بەشداری داتاکەت لە ئەمەوش تەنیا ئەم دەرگاکە بکەیت وەکی بەجێشێنە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waliwo ensobi entategerekese era data yo teyajjiddeyo. Oyagala kujjula data yo ku kyuma kino kyokka?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ມີຄວາມຜິດພາດທີ່ບໍ່ແມ່ນທີີ່ຮູ້ຈັກເກີດຂຶ້ນແລະຂໍ້ມູນຂອງທ່ານບໍ່ຖືກລືບ. ທ່ານຕ້ອງການລືບຂໍ້ມູນຈາກອຸປະກອນນີ້ແທນພຽງແກ່ຫວ່າ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įvyko nežinoma klaida, ir jūsų duomenys nebuvo ištrinti. Ar norite ištrinti duomenis tik iš šio įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radusies nezināma kļūda un jūsu dati netika dzēsti. Vai vēlaties dzēst savus datus tikai no šīs ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се случи непозната грешка и вашите податоци не беа избришани. Дали сакате да ги избришете податоците само од овој уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танихгүй алдаа гарч, таны өгөгдөл устгагдаагүй. Та зөвхөн энэ төхөөрөмжөөсөө өгөгдлөө устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat tidak diketahui berlaku dan data anda tidak dipadamkan. Adakah anda mahu memadamkan data anda hanya dari peranti ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မသိသာသော အမှားတစ်ခု ဖြစ်နေသောကြောင့် သင့်ဒေတာ မဖျက်မိပါ။ မည်သည့် စက်ကိရိယာတခုမှ သင့်ဒေတာကို ဖျက်လိုပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ukjent feil oppstod og dataene dine ble ikke slettet. Vil du slette dataene dine fra bare denne enheten i stedet?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एउटा अज्ञात त्रुटि देखा पर्‍यो र तपाईंको डेटा मेटिएको छैन। के तपाईँ यो उपकरणबाट मात्र डेटा मेटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een onbekende fout opgetreden en uw gegevens zijn niet verwijderd. Wilt u uw gegevens in plaats daarvan enkel van dit apparaat verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ukjent feil oppstod og dataene dine vart ikkje sletta. Vil du slette dataene frå berre denne eininga i staden?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuto losadziwika lidachitika ndipo data yanu sichinachotsedwe. Mukufuna kuchotsa deta yanu kuchokera pa chipangizochi chokha m'malo mwake?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਅਣਪਛਾਤਾ ਖ਼ੁਲਾਸਾ ਹੋਇਆ ਅਤੇ ਤੁਹਾਡੇ ਡੇਟਾ ਨੂੰ ਮਿਟਾਇਆ ਨਹੀਂ ਗਿਆ। ਕੀ ਤੁਸੀਂ ਸਿਰਫ਼ ਇਸ ਸੰਦ ਤੋਂ ਬਦਲਾਵ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wystąpił nieznany błąd i dane nie zostały usunięte. Czy chcesz usunąć dane tylko z tego urządzenia?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوه نامعلومه تېروتنه وشوه او ستاسو معلومات پاک نه شول. ایا غواړئ چې یوازې له دغه وسیله څخه خپل معلومات پاک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro desconhecido e seus dados não foram apagados. Você quer apagar seus dados apenas deste dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro desconhecido e os seus dados não foram eliminados. Quer eliminar os dados apenas deste dispositivo, em vez disso?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "A apărut o eroare necunoscută și datele dvs. nu au fost șterse. Doriți să ștergeți datele de pe acest dispozitiv în schimb?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Произошла неизвестная ошибка, и ваши данные не были удалены. Хотите удалить данные только с этого устройства?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do nepoznate greške i vaši podaci nisu izbrisani. Želite li obrisati svoje podatke samo s ovog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා දෝෂයක් සිදු වීම සහ ඔබගේ දත්ත මකා දැමීමේ නොහැකි විය. ඔබට ඔබේ දත්ත මේ උපකරණයෙන් පමණක් මකා දැමීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyskytla sa neznáma chyba a vaše dáta neboli odstránené. Namiesto toho chcete odstrániť údaje iba z tohto zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prišlo je do neznane napake in vaši podatki niso bili izbrisani. Ali želite izbrisati podatke samo iz te naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një gabim i panjohur dhe të dhënat tuaja nuk u fshinë. Dëshironi t'i fshini të dhënat tuaja vetëm nga kjo pajisje në vend të kësaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дошло је до непознате грешке и ваши подаци нису обрисани. Да ли желите да обришете своје податке само са овог уређаја?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do nepoznate greške i vaši podaci nisu obrisani. Da li želite da obrišete podatke samo sa ovog uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett okänt fel har uppstått och dina data raderades inte. Vill du radera dina data endast från denna enhet istället?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa lisilojulikana limetokea na data zako hazikuwa zimefutwa. Je, unataka kufuta data zako kwenye vifaa hivi pekee badala yake?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு அறியப்படாத பிழை நேர்ந்தது, மற்றும் உங்கள் தரவுகள் நீக்கப்படவில்லை. நீங்கள் உங்கள் கருவியிலிருந்து மட்டுமே உங்கள் தரவுகளை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గుర్తని లోపం సంభవించి మీ డేటా తొలగించబడలేదు. మీ డేటాను కేవలం ఈ పరికరం నుండి తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดไม่ทราบสาเหตุและข้อมูลของคุณไม่ได้ถูกลบ คุณต้องการจะลบข้อมูลจากอุปกรณ์นี้แทนหรือไม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen bir hata oluştu ve verileriniz silinmedi. Bunun yerine verilerinizi sadece bu cihazdan silmek ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сталася невідома помилка і ваші дані не було видалено. Хочете видалити дані лише з цього пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نامعلوم خرابی پیش آئی اور آپ کا ڈیٹا حذف نہیں ہوا۔ کیا آپ اسے صرف اس ڈیوائس سے حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma'lum xato yuz berdi va sizning ma'lumotlaringiz o'chirilmaydi. O'z ma'lumotlaringizni faqat bu qurilmadan o'chirishni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một lỗi không xác định đã xảy ra và dữ liệu của bạn chưa bị xóa. Bạn có muốn xóa dữ liệu của mình chỉ từ thiết bị này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwenzeke impazamo engaziwayo kwaye idatha yakho ayicinywanga. Ngaba ufuna ukukhipha idatha yakho kweli sixhobo kuphela?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发生未知错误,您的数据未被删除。您想要只删除此设备上的数据吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "發生不明錯誤,你的數據未被刪除。你要刪除僅這部裝置中的數據嗎?" + } + } + } + }, + "clearDevice" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee Toestel Uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح الجهاز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazı təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیوائس صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці прыладу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване на устройството" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "যন্ত্র মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborrar el dispositiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistit zařízení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio Dyfais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd enheden" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gerät entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Συσκευής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear Device" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi aparaton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpiar dispositivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar dispositivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda seade" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gailua garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن دستگاه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä laite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Device" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer les données de l'appareil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar dispositivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Na'ura" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה מכשיר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिवाइस साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši uređaj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eszköz törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել սարքը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Perangkat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulisci il dispositivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "デバイスを消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოწყობილობის გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះឧបករណ៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸದ್ದಿಮೂಡಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "디바이스 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی ئامێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Ekifo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເຄື່ອງອັນນີ້ເເລ້ວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti įrenginį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt ierīci" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти уред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Төхөөрөмжийг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Peranti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ကိရိယာကို ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern enhet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपकरण मेटाउनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apparaatgegevens wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern eining" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Chipangizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਕਰਣ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść dane z urządzenia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اله له منځه یوسه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Dispositivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Dispositivo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge dispozitivul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить устройство" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši uređaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපාංගය මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť zariadenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti napravo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije Pajisjen" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти уређај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti uređaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa enhet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Kifaa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லா சாதனங்களையும் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరికరాన్ని క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear Device" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazdan Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити пристрій" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاکٹر صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qurilmani tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa thiết bị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca Isixhobo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除设备" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除設備" + } + } + } + }, + "clearDeviceAndNetwork" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee toestel en netwerk uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح الجهاز والشبكة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazı və şəbəkəni təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیوائس اور نیٹ ورک صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці на прыладзе і ў сетцы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване на устройство и мрежа" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "যন্ত্র এবং নেটওয়ার্ক মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborreu el dispositiu i la xarxa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazat data na zařízení i na síti" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio dyfais a rhwydwaith" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd enhed og netværk" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geräte- und Netzwerkdaten löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Συσκευής Και Δικτύου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear device and network" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi aparaton kaj reton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpiar dispositivo y red" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar dispositivo y red" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda seade ja võrk" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gailua eta sarea garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن دستگاه و شبکه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä laite ja verkko" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Device at Network" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer les données de l'appareil et du réseau" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar dispositivo e rede" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge na'ura da cibiyar sadarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ניקוי מכשיר ורשת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिवाइस और नेटवर्क साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši uređaj i mrežu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés az eszközről és a hálózatról" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել սարքը և ցանցը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus di Perangkat dan Jaringan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulisci dispositivo e rete" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "端末とネットワークを消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწყობილობის და ქსელის გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះឧបករណ៍ និងបណ្តាញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಾಧನ ಮತ್ತು ನೆಟ್‌ವರ್ಕ್ ತೆರವುಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "디바이스와 네트워크 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی ئامێرە و تۆڕ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu ekifo n’obutale" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເຄື່ອງເເລ້ວຮຽບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti įrenginį ir tinklą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izdzēst ierīci un tīklu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти уред и мрежа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Төхөөрөмж болон сүлжээг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan peranti dan rangkaian" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ကိရိယာနှင့် ကွန်ယက်ကို ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern enhet og nettverk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपकरण र नेटवर्क मेटाउनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apparaat- en netwerkgegevens wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm eining og nettverk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Chipangizo ndi Netiweki" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਕਰਣ ਅਤੇ ਨੈੱਟਵਰਕ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść dane z urządzenia i sieci" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط اله له منځه یوسه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar o Dispositivo e a Rede" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar dispositivo e rede" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge dispozitivul și rețeaua" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить устройство и сеть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši uređaj i mrežu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපාංගය හා ජාලය මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť zariadenie aj sieť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti napravo in omrežje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije pajisjen dhe rrjetin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти уређај и мрежу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti uređaj i mrežu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nollställ enhet och nätverk" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kifaa na mtandao" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சாதனத்தை மற்றும் நெட்வொர்க்கை அழி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరికరం మరియు నెట్‌వర్క్ క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear device and network" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazdan ve Ağdan Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити пристрій та мережу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیوائس اور نیٹ ورک صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qurilma va tarmoqni tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa thiết bị và mạng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca isixhobo kunye nenethiwekhi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除设备和网络" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除設備和網絡" + } + } + } + }, + "clearDeviceAndNetworkConfirm" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil jou data van die netwerk skrap? As jy voortgaan, sal jy nie in staat wees om jou boodskappe of kontakte te herstel nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل متأكد من أنك تريد حذف بياناتك من الشبكة؟ إذا قمت بالمتابعة، فلن تتمكن من استعادة رسائلك أو جهات الاتصال." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datanızı şəbəkədən silmək istədiyinizə əminsiniz? Davam etsəniz, mesajlarınızı və kontaktlarınızı bərpa edə bilməyəcəksiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی ایی ڈیٹا خل اختر ژ ای نیٹورک۔ اگرے ہدوکید، تماش نہ بیتای پیام یا مخاطب بازیافت بکنے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце сцерці даныя з сеткі? Калі вы працягнеце, вы не зможаце аднавіць свае паведамленні або кантакты." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш своите данни от мрежата? Ако продължиш, няма да можеш да възстановиш своите съобщения или контакти." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি আপনার ডেটা নেটওয়ার্ক থেকে মুছে দিতে চান? আপনি চালিয়ে গেলে, আপনি আপনার বার্তা বা যোগাযোগগুলি পুনরুদ্ধার করতে পারবেন না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir les vostres dades de la xarxa? Si continueu, no podreu restaurar els vostres missatges o contactes." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete odstranit svá data ze sítě? Pokud budete pokračovat, nebudete moci obnovit své zprávy nebo kontakty." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu eich data oddi ar y rhwydwaith? Os byddwch yn parhau, ni fyddwch yn gallu adfer eich negeseuon neu eich cysylltiadau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette dine data fra netværket? Hvis du fortsætter, vil du ikke kunne gendanne dine beskeder eller kontakter." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du deine Daten aus dem Netzwerk löschen möchtest? Wenn du fortfährst, kannst du deine Nachrichten oder Kontakte nicht wiederherstellen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε τα δεδομένα σας από το δίκτυο; Εάν συνεχίσετε, δε θα μπορείτε να επαναφέρετε τα μηνύματα ή τις επαφές σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas forviŝi viajn datumojn el la reto? Se vi daŭrigos, vi ne povos restarigi viajn mesaĝojn aŭ kontaktojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Está seguro que desea eliminar sus datos de la red? Si continúa no podrá restaurar sus mensajes o contactos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar tus datos de la red? Si continúas, no podrás restaurar tus mensajes o contactos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite oma andmed võrgust kustutada? Jätkates ei saa te oma sõnumeid ega kontakte taastada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude zure datuak sarean ezabatu nahi dituzula? Jarraitu ezkero, ezin izango dituzu zure mezuak edo kontaktuak berreskuratu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید داده‌های خود را از شبکه حذف کنید؟ اگر ادامه بدهید، نمی‌توانید پیام‌ها یا مخاطبان خود را بازیابی کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa tietosi verkosta? Jos jatkat, et voi palauttaa viestejäsi etkä yhteystietojasi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang iyong data mula sa network? Kung itutuloy mo, hindi mo na maibabalik ang iyong mga mensahe o contact." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer vos données du réseau ? Si vous continuez, vous ne pourrez pas restaurer vos messages ni vos contacts." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar os teus datos da rede? Se continúas, non poderás restaurar as túas mensaxes nin contactos." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge bayananka daga cibiyar sadarwa? Idan ka ci gaba, ba za ka iya mayar da saƙonninka ko lambobinka ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את הנתונים שלך מהרשת? אם תמשיך, לא תוכל לשחזר את ההודעות שלך או אנשי קשר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई नेटवर्क से अपना डेटा हटाना चाहते हैं? यदि आप जारी रखते हैं, तो आप अपने संदेशों या संपर्कों को पुनर्स्थापित नहीं कर पाएंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati svoje podatke iz mreže? Ako nastavite, nećete moći vratiti svoje poruke ili kontakte." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd az adataidat a hálózatról? Ezután nem fogod tudni visszaállítani az üzeneteidet vagy kapcsolataidat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել Ձեր տվյալները ցանցից: Եթե շարունակեք, չեք կարողանա վերականգնել ձեր հաղորդագրությունները կամ կոնտակտները։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus data Anda dari jaringan? Jika Anda melanjutkan, Anda tidak akan dapat memulihkan pesan atau kontak Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare i tuoi dati dalla rete? Se continui non potrai più recuperare i tuoi messaggi o contatti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ネットワークからデータを削除してもよろしいですか? 続行すると、メッセージや連絡先を復元することはできません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ თქვენი მონაცემების ქსელიდან წაშლა? თუ გააგრძლებთ, ვერ შეძლებთ თქვენი შეტყობინებების ან კონტაქტების აღდგენას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកពិតជាចង់លុបទិន្នន័យរបស់អ្នកចេញពីបណ្តាញនេះមែនទេ? ប្រសិនបើអ្នកបន្ត អ្នកនឹងមិនអាចស្តារសារ ឬទំនាក់ទំនងរបស់អ្នកឡើងវិញបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಡೇಟಾವನ್ನು ಜಾಲದಿಂದ ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ನೀವು ಮುಂದುವರಿಸಿದರೆ, ನಿಮ್ಮ ಸಂದೇಶಗಳನ್ನು ಅಥವಾ ಸಂಪರ್ಕಗಳನ್ನು ಪುನಃಸ್ಥಾಪಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 네트워크에서 데이터를 삭제하시겠습니까? 계속하면 메시지나 연락처를 복원할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت زانیاریەکانت لە شەبەکەکە بڕی؟ ئەگەر بەردەوام بیت، ناتوانیت پەیامەکان یان پەیوەندەکانت گەڕی بگەڕێنی." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu data yo okuva ku network? Bw'ogenda mu maaso, tojja kusobola kuddamu okufunayo obubaka bwo oba n'ensonga z'okuŋŋansagana." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ມູນຂອງທ່ານຈາກເຄືອຂ່າຍ? ຖ້າທ່ານດໍາເນີນການຕໍ່, ທ່ານຈະບໍ່ສາມາດກູ້ຄືນຂໍ້ຄວາມ ຫຼື ລາຍຊື່ຕິດຕໍ່ຂອງທ່ານໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti savo duomenis iš tinklo? Jei tęsite, nebegalėsite atkurti savo žinučių ar kontaktų." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti, ka vēlaties dzēst savus datus no tīkla? Ja turpināsiet, jūs nevarēsiet atkopt savus ziņojumus vai kontaktus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги избришете вашите податоци од мрежата? Ако продолжите, нема да можете да ги вратите вашите пораки или контакти." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та өөрийн өгөгдлийг сүлжээнээс устгахдаа итгэлтэй байна уу? Хэрэв та үргэлжлүүлвэл зурвас болон холбоо барихуудыг сэргээх боломжгүй болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan data anda dari rangkaian? Jika anda meneruskan, anda tidak akan dapat memulihkan mesej atau kenalan anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ဒေတာကို ကွန်ရက်မှ ဖျက်လိုသည်မှာ သေချာပါသလား။ သင်ဆက်လက်လုပ်ဆောင်မည်ဆိုပါက သင့်မက်ဆေ့ချ်များ သို့မဟုတ် အဆက်အသွယ်များကို ပြန်လည်ရယူနိုင်မည်မဟုတ်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette dine data fra nettverket? Hvis du fortsetter, vil du ikke være i stand til å gjenopprette meldingene eller kontaktene dine." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं आफ्नो डेटा नेटवर्कबाट मेटाउन निश्चित हुनुहुन्छ? यदि तपाईं जारी राख्नुहुन्छ भने, तपाईं आफ्नो सन्देश वा सम्पर्कहरू पुनःस्थापना गर्न सक्नुहुन्न।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u uw gegevens uit het netwerk wilt wissen? Als u doorgaat, kunt u uw berichten of contacten niet meer herstellen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette dataene frå nettverket? Kontakter du ikkje kan gjenopprette meldingar eller no." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta deta yanu kuchokera pa network? Ngati mupitiliza, simudzatha kubwezeretsanso mauthenga anu kapena ma kontakiti." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਜਾਣਕਾਰੀ ਨੂੰ ਨੈੱਟਵਰਕ ਤੋਂ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਜੇ ਤੁਸੀਂ ਜਾਰੀ ਰੱਖਦੇ ਹੋ, ਤਾਂ ਤੁਸੀਂ ਆਪਣੇ ਸੰਦੇਸ਼ ਜਾ ਸੰਪਰਕ ਬਹਾਲ ਨਹੀਂ ਕਰ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć swoje dane z sieci? Jeśli będziesz kontynuować, nie będziesz w stanie przywrócić wiadomości ani kontaktów." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ خپل معلومات له شبکې څخه حذف کړئ؟ که دوام ورکړئ، تاسو به ونه شئ کولی خپل پیغامونه یا اړیکې بیا راوباسئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja excluir seus dados da rede? Se você continuar, não será capaz de restaurar suas mensagens ou contatos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende eliminar os seus dados da rede? Se continuar, não será possível restaurar as suas mensagens ou contactos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești ștergerea datelor tale din rețea? În caz de continuare, nu vei putea să restaurezi mesajele sau contactele." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить все данные из сети? Если вы продолжите, то не сможете восстановить сообщения или контакты." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati svoje podatke sa mreže? Ako nastaviš, nećeš moći povratiti svoje poruke ili kontakte." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ජාලයෙන් ඔබගේ දත්ත මැකීමට අවශ්‍ය බව විශ්වාසද? ඔබ ඉදිරියට යන්නේ නම්, ඔබේ පණිවිඩ හෝ සම්බන්ධතා ප්‍රතිස්ථාපනය කිරීමට නොහැකි වනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať svoje údaje zo siete? Ak budete pokračovať, nebudete môcť obnoviť svoje správy alebo kontakty." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati svoje podatke iz omrežja? Če nadaljujete, ne boste mogli obnoviti svojih sporočil ali stikov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini të dhënat tuaja nga rrjeti? Nëse vazhdoni, nuk do të mund të riktheni mesazhet ose kontaktet tuaja." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ваше податке са мреже? Уколико наставите, нећете бити у могућности да повратите ваше поруке или контакте." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete svoje podatke sa mreže? Ako nastavite, nećete biti u mogućnosti da vratite svoje poruke ili kontakte." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill ta bort dina data från nätverket? Om du fortsätter kommer du inte att kunna återställa dina meddelanden eller kontakter." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta data yako kutoka kwenye mtandao? Ukiendelea, hutakuwa na uwezo wa kurejesha ujumbe au anwani zako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் தரவை நெட்வொர்க்கில் இருந்து நீக்க விரும்புகிறீர்களா? தொடரினால், உங்கள் செய்திகளையா அல்லது தொடர்புகளையா மீட்டமைக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు నెట్వర్క్ నుంచి మీ డేటాను తొలగించాలనుకుంటున్నారా? మీరు కొనసాగిస్తే, మీరు మీ సందేశాలు లేదా పరిచయాలను తిరిగి పొందలేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลของคุณออกจากเครือข่าย? หากคุณดำเนินการต่อคุณจะไม่สามารถกู้คืนข้อความหรือผู้ติดต่อของคุณได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verilerinizi ağdan silmek istediğinizden emin misiniz? Devam ederseniz mesajlarınızı veya kişilerinizi geri yükleyemezsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити дані з мережі? Якщо ви продовжите, то не зможете відновити ваші повідомлення або контакти." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنا ڈیٹا نیٹ ورک سے حذف کرنا چاہتے ہیں؟ اگر آپ جاری رکھتے ہیں، تو آپ اپنے پیغامات یا رابطوں کو بحال نہیں کر سکیں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham tarmoqdan o'z ma'lumotlaringizni o'chirmoqchimisiz? Agar davom etsangiz, xabarlaringizni yoki kontaktlaringizni tiklay olmaysiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá dữ liệu của bạn khỏi mạng? Nếu bạn tiếp tục, bạn sẽ không thể khôi phục lại tin nhắn hay danh bạ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa idatha yakho kunethiwekhi? Ukuba uyaqhubeka, awuyi kuba nakho ukubuyisela imiyalezo yakho okanye abanxibelelwano bakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要从网络中删除您的数据吗?如果继续,您将无法恢复您的消息或联系人。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "確定要完全刪除網絡中的資料嗎?此後您將無法恢復您的訊息和聯絡人。" + } + } + } + }, + "clearDeviceDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil jou toestel skoonmaak?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل متأكد من رغبتك لمسح جهازك؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazınızı təmizləmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً آپ کی ڈیوائس کو صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы сапраўды жадаеце ачысціць вашыя прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите устройството си?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি আপনার ডিভাইসটি পরিষ্কার করতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar el dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vyčistit vaše zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio eich dyfais?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil nulstille din enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du dein Gerät zurücksetzen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε τη συσκευή σας;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear your device?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas forviŝi vian aparaton?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres quitar tu dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar tu dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite oma seadet tühjendada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude zure gailua garbitu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید دستگاه خود را پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää laitteesi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong linisin ang iyong device?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous vraiment effacer les données de votre appareil ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer limpar o teu dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share na'urarka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לנקות את המכשיר שלך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपना डिवाइस साफ़ करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite očistiti vaš uređaj?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd a készülékedet?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել ձեր սարքի տվյալները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus perangkat Anda?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confermi di voler procedere alla pulizia di questo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に端末から消去してもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ მოწყობილობის გასუფთავება?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះឧបករណ៍របស់អ្នករៀបសុទ្ធ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಸಾಧನವನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿದೆಯೆ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear your device?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لە ڕازکەی دەرەستە ؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ekyuma kyo?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າມັ່ນໃຈຫຼາຍແທ້ຈຶງຕ້ອງມີການລ້າງອຸປະກອນຂອງເຈົ້າ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti savo įrenginį?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties iztīrīt savu ierīci?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го исчистите вашиот уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та өөрийн төхөөрөмжийг цэвэрлэхийг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan peranti anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏စက်ကိရိယာကို ရှင်းအောင်လုပ်မှာ သေချာရဲ့လား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil tømme enheten din?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई तपाईको उपकरण हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u uw apparaatgegevens wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil tømme eininga di?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuyeretsa chipangizo chanu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਸੰਦ ਨੂੰ ਸਾਫ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz wyczyścić urządzenie?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې خپل وسیله پاکول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja limpar seu dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que quer limpar o seu dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să îți ștergi dispozitivul?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить ваше устройство?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš očistiti svoj uređaj?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඔබේ උපාංගය මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vaše zariadenie vyčistiť?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite ponastaviti svojo napravo?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini pajisjen tuaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите свој уређај?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite vaš uređaj?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa din enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta kifaa chako?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் உங்கள் கருவியை நிச்சயமாக முந்துவது விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మీ పరికరాన్ని ఖాళీ చేసికోవాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์อุปกรณ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazınızı temizlemek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете очистити свій пристрій?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنے ڈیوائس کو صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham qurilmangizni tozalamoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc rằng bạn muốn xoá thiết bị của mình?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima isixhobo sakho?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除该设备上的数据吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要在這部裝置移除該帳號嗎?" + } + } + } + }, + "clearDeviceOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slegs toestel uitvee" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح الجهاز فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız cihazı təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف ڈیوائس صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці толькі на прыладзе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване само на устройството" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধুমাত্র যন্ত্র মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborreu només el dispositiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazat pouze data na zařízení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio dyfais yn unig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun Ryd enheden" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur Gerät entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Μόνο Συσκευής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear device only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi nur aparaton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpiar sólo el dispositivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar solo dispositivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda ainult seade" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gailua bakarrik garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن فقط از دستگاه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä laite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin Lamang ang Device" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer les données de l'appareil uniquement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar só dispositivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge na'ura kawai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ניקוי מכשיר בלבד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल डिवाइस साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši samo uređaj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés csak az eszközről" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել միայն սարքը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus di Perangkat Saja" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulisci solo il dispositivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "端末のみ消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ მოწყობილობის გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះតែឧបករណ៍ប៉ុណ្ណោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊರಷಙತೆ ಮಾಡದಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "디바이스만 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تەنها سڕینەوەی ئامێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu ekifo kyokka" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເຄື່ອງໂຄງການ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti tik įrenginį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt tikai ierīci" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти само уред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн төхөөрөмжийг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan peranti sahaja" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ကိရိယာကိုသာ ရှင်းလင်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern enhet kun" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल उपकरण मेटाउनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen apparaatgegevens wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tøm berre eininga" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Chipangizo chokha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੇਵਲ ਉਪਕਰਣ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść tylko urządzenie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د هر چا لپاره پاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Somente o Dispositivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar apenas o dispositivo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şterge doar dispozitivul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить только устройство" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši samo uređaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපාංගය පමණක් මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť iba zariadenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti samo napravo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije vetëm pajisjen" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти само уређај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti samo uređaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nollställ endast enheten" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kifaa pekee" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சாதனத்தை மட்டும் தூக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కేవలం పరికరం క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear device only" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadece Cihazdan Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити лише пристрій" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف ڈیوائس صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat qurilmani tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ xóa thiết bị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca isixhobo kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅清除设备" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "只清除設備儲存的帳號資訊。" + } + } + } + }, + "clearMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder Alle Boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "امسح جميع الرسائل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün mesajları təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمامی پیاماتاں صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці ўсе паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване на всички съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব বার্তা মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra tots els missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat všechny zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio'r holl negeseuon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd Alle Beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Nachrichten löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Όλων των Μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear All Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi ĉiujn mesaĝojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todos los mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar todos los mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kõik sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu guztiak garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن همه پیام‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä kaikki viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Lahat ng Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer tous les messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar todas as mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Duk Saƙonnin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ניקוי כל ההודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी संदेश हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes üzenet törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքրել բոլոր հաղորդագրությունները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Semua Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina tutti i messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのメッセージを消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველა შეტყობინების გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជម្រះទាំងអស់សារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲಾ ಸಂದೇಶಗಳನ್ನು ತೆರವು ಮಾಡಿದವು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 메시지 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی هەموو پەیامەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Obubaka Byonna" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງແມ່ເໆພະ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti visas žinutes" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izdzēst visas ziņas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти ги сите пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүх зурвасуудыг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Semua Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်အားလုံးကို ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern alle meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै सन्देशहरू मेटाउँनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wis alle berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern alle meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Mauthenga Onse" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰੀਆਂ ਸੁਨੇਹਿਆਂ ਨੂੰ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść wszystkie wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولې پیغامونه له منځه یوسه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Todas as Mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Todas as Mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge toate mesajele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить все сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši sve Poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලුම පණිවිඩ හිස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť všetky správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti vsa sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshiji të gjitha mesazhet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши све поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti sve poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa alla meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Jumbe Zote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லா தகவல்களையும் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని సందేశాలను క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อความไปหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm Mesajları Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити всі повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام پیغامات صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha xabarlarni tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa tất cả tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca Onke Imiyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除所有訊息" + } + } + } + }, + "clearMessagesChatDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle boodskappe van jou gesprek met {name} van jou toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من مسح جميع الرسائل من محادثتك مع {name} من جهازك؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ilə olan danışıqlardakı bütün mesajları cihazınızdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {name} سے آپ کی گفتگو کے تمام پیغامات کو آپ کی ڈیوائس سے صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе паведамленні з вашай размовы з {name}? з вашага прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички съобщения от вашия разговор с {name} от вашето устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {name} এর সাথে আপনার কথোপকথন থেকে সমস্ত বার্তাগুলি আপনি আপনার ডিভাইস থেকে মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els missatges de la vostra conversa amb {name}? del vostre dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vymazat všechny zprávy z konverzace s {name} ze svého zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl negeseuon yn eich sgwrs gyda {name} oddi ar eich dyfais?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle beskeder fra din samtale med {name} fra din enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du alle Nachrichten von deinem Gespräch mit {name} von deinem Gerät löschen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα μηνύματα από τη συνομιλία σας με {name} από τη συσκευή σας;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all messages from your conversation with {name} from your device?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝojn de via konversacio kun {name} el via aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los mensajes de tu conversación con {name}? de tu dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar todos los mensajes de tu conversación con {name} de tu dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite selvestluses {name} kõik sõnumid oma seadmest eemaldada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude zure elkarrizketako {name} erabiltzailearekin mezu guztiak gailutik ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیام‌های مکالمه خود با {name} را از دستگاه خود پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki viestit keskustelustasi käyttäjän {name} kanssa laitteestasi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mensahe mula sa iyong usapan sa {name} mula sa iyong device?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les messages de votre conversation avec {name} de votre appareil?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todas as mensaxes da túa conversa con {name} do teu dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk saƙonni daga tattaunawarka da {name}? daga na'urarka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל ההודעות מהשיחה שלך עם {name} מהמכשיר שלך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने डिवाइस से {name} के साथ अपने वार्तालाप से सभी संदेश साफ़ करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve poruke iz vašeg razgovora s {name} s vašeg uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes {name} üzenetet törölni szeretnéd az eszközödről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր հաղորդագրությունները ձեր զրույցից {name}-ի հետ ձեր սարքից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua pesan dari percakapan Anda dengan {name} dari perangkat Anda?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti i messaggi della tua chat con {name} dal tuo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}との会話をすべてのメッセージを消去しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ თქვენი საუბრის ყველა შეტყობინების წაშლა {name}-თან თქვენი მოწყობილობიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសារទាំងអស់ពីការសន្ទនាជាមួយ {name} រៀបសុទ្ធ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name}ನೊಂದಿಗೆ ನಿಮ್ಮ ಸಂಭಾಷಣೆಯಿಂದ ಎಲ್ಲಾ ಸಂದೇಶಗಳನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all messages from your conversation with {name} from your device?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لە پەیوەندی (پەیامەکان) هەموو پەیوەندیدەکان لە بەردەساتەوە {name}?" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bwonna okuva mu kukweza ekikwekenya na {name} okuva mu kyuma kyo?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍວ່າທ່ານຕ້ອງການລົບຂໍ້ຄວາມທັງຫມົດຈາກການສົນທະນາຂອງທ່ານກັບ {name} ໃນເຄື່ອງຂອງທ່ານ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visas žinutes iš savo pokalbio su {name} iš savo įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas ziņas no sarunas ar {name} no šīs ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите пораки од вашиот разговор со {name} од вашиот уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} -тай мессежийн харилцааг энэ төхөөрөмжөөсөө устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua mesej daripada perbualan anda dengan {name} daripada peranti anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {name} နှင့် ပြောဆွေးနွေးမှုရန်သင့်စက်ကိရိယာမှ မက်ဆေ့ချ်များအားလုံးကို ရှင်းချင်တာ သေချာသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle meldinger fra samtalen din med {name} fra enheten din?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई सबै सन्देशहरू तपाईको {name} सँगको कुराकानीबाट तपाईको उपकरणबाट हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle berichten van uw gesprek met {name} van uw apparaat wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle meldingane frå samtalen med {name} frå eininga di?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse kuchokera kumacheza anu ndi {name} kuchokera pa chipangizo chanu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਸੰਦ ਤੋਂ {name} ਨਾਲ ਦਿੱਤੀ ਐਪ ਗੱਲਬਾਤ ਦੇ ਸਾਰੇ ਸੁਨੇਹੇ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć z urządzenia wszystkie wiadomości z konwersacji z użytkownikiem {name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې ټول پیغامونه له خپل وسیله څخه د {name} په خبرو اترو کې پاکول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar todas as mensagens da sua conversa com {name} do seu dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende limpar todas as mensagens da sua conversa com {name} do seu dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate mesajele din conversația ta cu {name} de pe dispozitivul tău?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все сообщения в беседе с {name} на вашем устройстве?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve poruke iz svog razgovora s {name} sa svog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සමඟ කළ සියලු සංවාද ඔබගේ උපකරණයෙන් පමණක් ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky správy z vašej konverzácie s {name} z vášho zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vsa sporočila iz pogovora z {name} iz vaše naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha mesazhet nga biseda juaj me {name} nga pajisja juaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све поруке из свог разговора са {name} на свом уређају?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve poruke iz vaše konverzacije sa {name} sa vašeg uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla meddelanden från din konversation med {name} från din enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe zote za mazungumzo yako na {name} kwenye kifaa chako?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக உங்கள் உரையாடலிலிருந்து அனைத்து {name} தகவல்களை உங்கள் கருவியிலிருந்து நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name}తో మీ సంభాషణ నుండి అన్ని సందేశాలను మీ పరికరం నుండి ఖాళీ చేసాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความทั้งหมดจากการสนทนากับ {name} จากอุปกรณ์ของคุณ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ile yaptığınız konuşmadaki tüm mesajları cihazınızdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі повідомлення з вашої розмови з {name} з вашого пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کے ساتھ اپنی بات چیت کے تمام پیغامات اپنے آلہ سے صاف کرنے کے لئے کیا آپ واقعی یقین رکھتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha {name} bilan suhbatlaringizdan xabarlarni tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả tin nhắn từ cuộc trò chuyện của mình với {name} khỏi thiết bị của bạn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima yonke imiyalezo yekho yakho {name} kwisixhobo sakho?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除您与{name}的对话中所有消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除與 {name} 這段對話中的所有訊息嗎?" + } + } + } + }, + "clearMessagesCommunity" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle {community_name} boodskappe van jou toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد حذف كافة الرسائل {community_name}؟ من جهازك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün {community_name} mesajlarını cihazınızdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {community_name} کے تمام پیغامات کو آپ کی ڈیوائس سے صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе паведамленні {community_name}? з вашага прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички съобщения на {community_name} от вашето устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি আপনার ডিভাইস থেকে সমস্ত {community_name} বার্তা মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els missatges de {community_name}? del vostre dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vymazat všechny zprávy z {community_name} ze svého zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl negeseuon {community_name} oddi ar eich dyfais?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle {community_name} beskeder fra din enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du wirklich alle Nachrichten von {community_name} von deinem Gerät löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε όλα τα μηνύματα {community_name} από τη συσκευή σας;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {community_name} messages from your device?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝojn de {community_name} el via aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los mensajes de {community_name}? de tu dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar todos los mensajes del dispositivo con {community_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kõik {community_name} sõnumid oma seadmest eemaldada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {community_name} komunitateko mezu guztiak zure gailutik ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیام‌های {community_name} را از دستگاه خود حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki {community_name} viestit laitteestasi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mensaheng {community_name} mula sa iyong device?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les messages de {community_name} de votre appareil?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todas as mensaxes de {community_name} do teu dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk saƙonnin {community_name}? daga na'urarka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל ההודעות של {community_name} מהמכשיר שלך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने डिवाइस से सभी {community_name} संदेश मिटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve poruke {community_name} s vašeg uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes {community_name} üzenetet törölni szeretnéd az eszközödről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր {community_name} հաղորդագրությունները ձեր սարքից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua pesan {community_name} dari perangkat Anda?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti i messaggi di {community_name} dal tuo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{community_name}のメッセージをすべて削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {community_name}-ის ყველა შეტყობინების წაშლა თქვენი მოწყობილობიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសារទាំងអស់ពី {community_name} ជាការសារជាមូលដ្ឋាន?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ {community_name} ಸಂದೇಶಗಳನ್ನು ನಿಮ್ಮ ಸಾಧನದಿಂದ ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {community_name} messages from your device?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لە پاککردنەوەی هەموو پەیامەکانی {community_name} له ئامێرەکەت؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bwa {community_name} okuva mu kyuma kyo?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຕ້ອງການລ້າງຂໍ້ຄວາມທັງຫມົດຂອງ {community_name} ຫຼາຍແທ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visas {community_name} žinutes iš savo įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas {community_name} ziņas no savas ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите {community_name} пораки од вашиот уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {community_name}-н бүх мессежүүдийг төхөөрөмжөөсөө устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua mesej {community_name} daripada peranti anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ကိရိယာမှ {community_name} သည်မက်ဆေ့များအားလုံးကို ရှင်းလင်းလိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle {community_name} meldinger fra enheten din?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई सबै {community_name} सन्देशहरू तपाईंको उपकरणबाट हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle {community_name} berichten van uw apparaat wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle {community_name}-meldinger frå eininga di?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse a {community_name} kuchokera pa chipangizo chanu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {community_name} ਦੇ ਸਾਰੇ ਸੁਨੇਹਿਆਂ ਨੂੰ ਆਪਣੇ ਸੰਦ ਤੋਂ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz wyczyścić z urządzenia wszystkie wiadomości ze społeczności {community_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اېا تاسې ډاډه یاست چې ټول {community_name} ‌پیغامونه له خپل وسیله څخه پاکول غواړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja limpar todas as mensagens de {community_name} do seu dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende limpar todas as mensagens de {community_name} do seu dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate mesajele comunității {community_name} de pe dispozitiv?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все сообщения сообщества {community_name} на вашем устройстве?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve poruke u {community_name} sa svog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඔබේ උපකරණයෙන් සියලු {community_name} කිස් තිබේ?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky {community_name} správy z vášho zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vsa sporočila v {community_name} iz vaše naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha mesazhet e {community_name} nga pajisja juaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све поруке из {community_name} на свом уређају?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve poruke {community_name}? sa vašeg uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du verkligen rensa alla {community_name} meddelanden från din enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe zote za {community_name} kwenye kifaa chako?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக அனைத்து {community_name} தகவல்களை உங்கள் கருவியிலிருந்து நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అన్ని {community_name} సందేశాలను మీ పరికరం నుండి ఖాళీచేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความ {community_name} ทั้งหมดจากอุปกรณ์ของคุณ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ile ilgili tüm mesajları cihazınızdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі повідомлення {community_name} з вашого пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنے آلہ سے تمام {community_name} کے پیغامات صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha {community_name} xabarlarini qurilmangizdan tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả tin nhắn của {community_name} khỏi thiết bị của bạn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima yonke imiyalezo ye-{community_name} kwisixhobo sakho?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除设备上所有来自{community_name}的消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有來自 {community_name} 的訊息嗎?" + } + } + } + }, + "clearMessagesForEveryone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee vir almal uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اِحذف من عند الجميع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hər kəs üçün təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "همهٔ بلے صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць для ўсіх" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване за всички" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সবার জন্য মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra per a tothom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat pro všechny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio ar gyfer pawb" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd for alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Für alle löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή για όλους" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear for everyone" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi por ĉiuj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar para todos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar para todos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kõigi jaoks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denentzat garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن برای همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä kaikilta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-clear para sa lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer pour tous" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar para todos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge ga kowa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחיקה לכולם" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी के लिए साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés mindenkinek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել բոլորի համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus untuk semua orang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina per tutti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "全員分を削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გასუფთავება ყველასთვის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបចេញពីទាំងអស់គ្នា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲರಿಗಾಗಿ ತೆರವು ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모두에게서 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە بۆ هەمووان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu eri buli omu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເວັນທັ້ງໝົດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti visiems" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt visiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти за сите" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүгдэд нь арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan untuk semua orang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အားလုံးအတွက် ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern for alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबैका लागि मेटाउँनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wis voor iedereen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern for alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta kwa aliyense" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਭ ਲਈ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść u wszystkich" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زما لپاره پاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar para todos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar para todos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge pentru toată lumea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить для всех" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලු දෙනා සඳහා මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť pre všetkých" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti za vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije për të gjithë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши за све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti za sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa för alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kwa kila mtu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லோருக்கும் தகவலைகளை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అందరికీ క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear for everyone" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herkesten Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити для всіх" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب کے لئے صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hammadan oʻchirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa cho mọi người" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca kubo bonke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "为所有人删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "從所有人的裝置上刪除" + } + } + } + }, + "clearMessagesForMe" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee vir my uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "امسح لي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mənim üçün təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف من بلوچی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць для мяне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване за мен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমার জন্য মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra per a mi" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat pro mě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio ar gyfer fi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd for mig" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Für mich löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή για μένα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear for me" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝi por mi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar para mí" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar para mí" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta minu jaoks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niretzat garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن برای من" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä minulta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-clear para sa akin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer pour moi" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar para min" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge ga ni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה הודעות עבורי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेरे लिए साफ़ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za mene" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés nekem" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել ինձ համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus untuk saya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina per me" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "私だけ消去" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გასუფთავება ჩემთვის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear for me" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನನ್ನಿಗಾಗಿ ತೆರವು ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "내 게서만 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە بۆ خودم" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu ku nze" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງສຳຫລັບຂ້ອຍ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti man" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notīrīt man" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти за мене" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надад арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan untuk saya" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျွန်ုပ်အတွက် ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern for meg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेरो लागि मेटाउनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wis voor mij" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern for meg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta kwa ine" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੇਰੇ ਲਈ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść u mnie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زما لپاره پاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar para mim" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar para mim" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge pentru mine" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить для меня" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za mene" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මට පමණක් මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť pre mňa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti zame" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije për mua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши за мене" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti za mene" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa för mig" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kwangu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எனக்கென்று மட்டும் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నాకు మాత్రమే క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear for me" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benden Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити для мене" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میرے لئے صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mening uchun tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa cho tôi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca kum" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "为我删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "從我的設備上刪除" + } + } + } + }, + "clearMessagesGroupAdminDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle {group_name} boodskappe verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد حذف كافة الرسائل {group_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün {group_name} mesajlarını silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {group_name} کے تمام پیغامات کو صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе паведамленні {group_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички съобщения на {group_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {group_name} এর সমস্ত বার্তা মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els missatges de {group_name}??" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vymazat všechny zprávy z {group_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl negeseuon {group_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle {group_name} beskeder?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du alle Nachrichten von {group_name} löschen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε όλα τα μηνύματα {group_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {group_name} messages?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝojn de {group_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los mensajes de {group_name}??" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar todos los mensajes de {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kõik {group_name} sõnumid kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {group_name} taldearen mezu guztiak kendu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیام‌های {group_name} را پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki {group_name} viestit?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mensaheng {group_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les messages de {group_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todas as mensaxes de {group_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk saƙonnin {group_name}??" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל ההודעות של {group_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई सभी {group_name} संदेश साफ़ करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve poruke {group_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes {group_name} üzenetet törölni szeretnéd?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր {group_name} հաղորդագրությունները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua pesan {group_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti i messaggi di {group_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}のメッセージをすべて削除してもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {group_name}-ის ყველა შეტყობინების წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសារទាំងអស់ពី {group_name} ជាការសារជាក្រុម?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ {group_name} ಸಂದೇಶಗಳನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {group_name} messages?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیای لە سڕینەوەی هەموو نامەکان {group_name} ؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bwa {group_name}?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຕ້ອງການຍອມຮັບໃຫ້ລ້າງຂໍ້ຄວ່າມທັງຫມົດຂອງ {group_name} ຫຼາຍແທ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visas {group_name} žinutes?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas {group_name} ziņas?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите {group_name} пораки?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүх {group_name} -г мессежүүдийг устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua mesej {group_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် {group_name} သောမက်ဆေ့များကို ဖျက်လိုပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle {group_name} meldinger?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई सबै {group_name} सन्देशहरू हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet je zeker dat je alle {group_name} berichten wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle {group_name}-meldinger?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse a {group_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {group_name} ਦੇ ਸਾਰੇ ਸੁਨੇਹਿਆਂ ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć wszystkie wiadomości z grupy {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اېا تاسې ډاډه یاست چې ټول {group_name} پیغامونه پاکول غواړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja limpar todas as mensagens de {group_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende limpar todas as mensagens de {group_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate mesajele grupului {group_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все сообщения в группе {group_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve poruke u {group_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට සියලු {group_name} පෙන්නන බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky {group_name} správy?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vsa sporočila v {group_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha mesazhet e {group_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све поруке из {group_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve poruke {group_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla meddelanden från {group_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe zote za kikundi {group_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக அனைத்து {group_name} தகவல்களை அழிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అన్ని {group_name} సందేశాలను ఖాళీచేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความ {group_name} ทั้งหมด?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ile ilgili tüm mesajları silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі повідомлення {group_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی تمام {group_name} کے پیغامات صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha {group_name} xabarlarini tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả tin nhắn của {group_name}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima yonke imiyalezo ye-{group_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除所有来自{group_name}的消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有 {group_name} 訊息嗎?" + } + } + } + }, + "clearMessagesGroupDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle {group_name} boodskappe van jou toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد حذف كافة الرسائل {group_name}؟ من جهازك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün {group_name} mesajlarını cihazınızdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {group_name} کے تمام پیغامات کو آپ کی ڈیوائس سے صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе паведамленні {group_name}? з вашага прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички съобщения на {group_name} от вашето устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {group_name} এর সমস্ত বার্তা আপনার ডিভাইস থেকে মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els missatges de {group_name}? del vostre dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vymazat všechny zprávy z {group_name} ze svého zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl negeseuon {group_name} oddi ar eich dyfais?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle {group_name} beskeder fra din enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du alle Nachrichten von {group_name} von deinem Gerät löschen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε όλα τα μηνύματα {group_name} από τη συσκευή σας;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {group_name} messages from your device?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝojn de {group_name} el via aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los mensajes de {group_name}? de tu dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar todos los mensajes del dispositivo con {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kõik {group_name} sõnumid oma seadmest eemaldada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {group_name} taldearen mezu guztiak zure gailutik kendu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیام‌های {group_name} را از دستگاه خود حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki {group_name} viestit laitteestasi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mensaheng {group_name} mula sa iyong device?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les messages de {group_name} de votre appareil?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todas as mensaxes de {group_name} do teu dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk saƙonnin {group_name}? daga na'urarka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל ההודעות של {group_name} מהמכשיר שלך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने डिवाइस से सभी {group_name} संदेश मिटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve poruke {group_name} s vašeg uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes {group_name} üzenetet törölni szeretnéd az eszközödről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր {group_name} հաղորդագրությունները ձեր սարքից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua pesan {group_name} dari perangkat Anda?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti i messaggi di {group_name} dal tuo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{group_name}のメッセージをすべて削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {group_name}-იდან ყველა შეტყობინების წაშლა თქვენი მოწყობილობიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសារទាំងអស់ពី {group_name} ជាការសារជាក្រុម?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ {group_name} ಸಂದೇಶಗಳನ್ನು ನಿಮ್ಮ ಸಾಧನದಿಂದ ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {group_name} messages from your device?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیای لە سڕینەوەی هەموو نامەکان {group_name} یەشاران؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bwa {group_name} okuva mu kyuma kyo?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຕ້ອງການລ້າງຂໍ້ຄວາມຂອງ {group_name} ຫຼາຍແທ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visas {group_name} žinutes iš savo įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas {group_name} ziņas no savas ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите {group_name} пораки од вашиот уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name} -н бүх мессежүүдийг төхөөрөмжөөсөө устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua mesej {group_name} daripada peranti anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် {group_name} အဖွဲ့က စကားပို့အားလုံးကို သင့်စက်ကိရိယာမှ ရှင်းချင်တာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle {group_name} meldinger fra enheten din?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई सबै {group_name} सन्देशहरू तपाईंको उपकरणबाट हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle {group_name} berichten van uw apparaat wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle {group_name}-meldinger frå eininga di?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse a {group_name} kuchokera pa chipangizo chanu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {group_name} ਦੇ ਸਾਰੇ ਸੁਨੇਹਿਆਂ ਨੂੰ ਆਪਣੇ ਸੰਦ ਤੋਂ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć z urządzenia wszystkie wiadomości z grupy {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اېا تاسې ډاډه یاست چې ټول {group_name} ‌پیغامونه له خپل وسیله څخه پاکول غواړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja limpar todas as mensagens de {group_name} do seu dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende limpar todas as mensagens de {group_name} do seu dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate mesajele grupului {group_name} de pe dispozitiv?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все сообщения {group_name} на вашем устройстве?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve poruke u {group_name} sa svog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඔබේ උපාංගයෙන් සියලු {group_name} පෙන්නන බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky {group_name} správy z vášho zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vsa sporočila v {group_name} iz vaše naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha mesazhet e {group_name} nga pajisja juaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све поруке из {group_name} на свом уређају?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve poruke {group_name} sa vašeg uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla meddelanden från {group_name} från din enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe zote za {group_name} kwenye kifaa chako?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக அனைத்து {group_name} தகவல்களை உங்கள் கருவியிலிருந்து நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అన్ని {group_name} సందేశాలను మీ పరికరం నుండి ఖాళీచేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความ {group_name} ทั้งหมดจากอุปกรณ์ของคุณ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ile ilgili tüm mesajları cihazınızdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі повідомлення {group_name} з вашого пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنے آلہ سے تمام {group_name} کے پیغامات صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha {group_name} xabarlarini qurilmangizdan tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả tin nhắn của {group_name} khỏi thiết bị của bạn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima yonke imiyalezo ye-{group_name} kwisixhobo sakho?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除设备上所有来自{group_name}的消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有來自 {group_name} 的訊息嗎?" + } + } + } + }, + "clearMessagesNoteToSelfDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle boodskappe van Nota Aan Jouself van jou toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد حذف كافة رسائل ملاحظة لنفسي من جهازك؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün Özümə Qeyd mesajlarını cihazınızdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً نوٹ سیلف کے تمام پیغامات کو آپ کی ڈیوائس سے صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе захаваныя паведамленні з прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички съобщения на \"Лична бележка\" от вашето устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি আপনার ডিভাইস থেকে 'নিজেকে নোট করুন' এর সমস্ত বার্তা মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els missatges de Nota Personal del vostre dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete ze svého zařízení smazat všechny zprávy Poznámka sobě?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl negeseuon Nodyn i Fi Fy Hun oddi ar eich dyfais?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle Egen Note beskeder fra din enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du alle Nachrichten in »Notiz an mich« von deinem Gerät löschen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε όλα τα μηνύματα Note to Self από τη συσκευή σας;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all Note to Self messages from your device?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝojn al Memo al Mi mem el via aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los mensajes de Note to Self de tu dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar todos los mensajes de Nota Personal de tu dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kõik Märkus endale sõnumid oma seadmest eemaldada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude Note to Self mezu guztiak zure gailutik kendu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید تمام پیام‌های یادداشت خود را از دستگاهتان پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki Omat muistiinpanot -viestit laitteestasi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mensahe sa Note to Self mula sa iyong device?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les messages Note à moi-même de votre appareil?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todas as mensaxes de Notificarmo do teu dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk saƙonnin Note to Self daga na'urarka?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל הודעות הערה לעצמי מהמכשיר שלך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने डिवाइस से सभी Note to Self संदेश साफ़ करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve poruke Bilješke sa samog s vašeg uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes 'Privát feljegyzés' üzenetet törölni szeretnéd az eszközödről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել ձեր ինքն իրեն հաղորդագրությունները ձեր սարքից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua pesan Catatan Pribadi dari perangkat Anda?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutti i messaggi dalle tue note personali sul tuo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に自分用メモのすべてのメッセージを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ყველა შეტყობინების წაშლა Note to Self საუბარიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះចំណាំសំខាន់សារទាំងអស់ពីឧបករណ៍រៀបសុទ្ធ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಸ್ವ-ಟಿಪ್ಪಣಿಯಿಂದ ಎಲ್ಲಾ ಸಂದೇಶಗಳನ್ನು ನಿಮ್ಮ ಸಾಧನದಿಂದ ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all Note to Self messages from your device?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لە پەیوەندی (پەیامەکان) کەلتۆ گەنجیەکان لە كۆرەکان?" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bawannedde yo okunyo obubaka ku kyuma kyo?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຢ່າງມັ້ນໃຈແທ້ຍານທີລວງສັ່ງລ້າງ Connote Mekernh?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visas Pastabos sau žinutes iš savo įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas izsūtītās ziņas no savas ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите пораки \"Забелешка за себе\" од вашиот уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та Note to Self -н бүх мессежүүдийг төхөөрөмжөөсөө устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua mesej Note to Self daripada peranti anda?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self စာတွေဟာ သင်ရဲ့စက်ကိရိယာကနေရှင်းချင်တာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle Notat til meg selv meldinger fra enheten din?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई तपाईको उपकरणबाट आफैलाई नोट सबै सन्देशहरू हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle \"Notitie aan mijzelf\" berichten van uw apparaat wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle Notat til meg sjølv-meldingane frå eininga di?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse opita kwa Inu Wokha pa chipangizo chanu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਸੰਦ ਤੋਂ ਆਪਣੇ ਆਪ ਨੂੰ ਨੋਟ ਕਰੋ ਦੇ ਸਾਰੇ ਸੁਨੇਹੇ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć z urządzenia wszystkie swoje notatki?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې له خپل وسیله څخه ټول د ځان ته یادښت پیغامونه پاکول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar todas as mensagens de Recado para mim do seu dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende limpar todas as mensagens de Notas para Mim do seu dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur că vrei să ștergi toate mesajele Notă personală de pe dispozitivul tău?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все сообщения «Заметок для Себя» на вашем устройстве?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve poruke osobne bilješke sa svog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඔබගේ උපකරණයෙන් සියලු ස්වයං සටහන් පණිවිඩ ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky správy „poznámka pre seba“ z vášho zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vsa sporočila v Osebna zabeležka iz vaše naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha mesazhet e Shënim për Veten nga pajisja juaj?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све поруке из Напомена за себе на свом уређају?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve poruke sa Beleška za sebe sa vašeg uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla meddelanden i Note to Self från din enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe zote za Note to Self kwenye kifaa chako?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக உங்கள் கருவியிலிருந்து அனைத்து சுய குறிப்பு தகவல்களை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మీరు నుండి మీరు గమనించిన అన్ని సందేశాలను మీ పరికరం నుండి ఖాళీ చేసాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความ Note to Self ทั้งหมดจากอุปกรณ์ของคุณ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendime Not mesajlarınızı cihazınızdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі повідомлення Note to Self з вашого пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنے آلہ سے Note to Self کے تمام پیغامات صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha O'zizga eslatmalar xabarlarini qurilmangizdan tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả các tin nhắn Note to Self khỏi thiết bị của bạn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima yonke imiyalezo ye-Nota yeSelf kwisixhobo sakho?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除设备上所有备忘录信息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有小筆記中的訊息嗎?" + } + } + } + }, + "close" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maak Toe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اغلق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند کرو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বন্ধ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tancar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zavřít" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luk" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schließen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλείσιμο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Close" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fermi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sulge" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itxi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بستن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sulje" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isara" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fermer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pechar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rufe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סגירה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बंद करे" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bezárás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փակել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiudi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "閉じる" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დახურვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Close" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಚ್ಚು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "닫기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داخستن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggalawo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປິດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užverti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aizvērt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बन्द गर्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sluiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tseka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬੰਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zamknij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کړکۍ وتړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Închide" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрыть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zavrieť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapri" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbylle" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stäng" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funga" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மூடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "క్లోజ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Close" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yop" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đóng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vala" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "关闭" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉" + } + } + } + }, + "closeWindow" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maak Venster Toe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أغلق النافذة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pəncərəni bağla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وینڈو بند کرو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрыць акно" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори прозореца" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "উইন্ডো বন্ধ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanca la finestra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zavřít okno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cau Ffenestr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luk vindue" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fenster schließen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλείσιμο Παραθύρου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Close Window" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fermi fenestron" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerrar ventana" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerrar ventana" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sulge aken" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leihoa itxi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بستن پنجره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sulje ikkuna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isara ang Window" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fermer la fenêtre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pechar fiestra" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rufe Tagar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סגור חלון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "विंडो बंद करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori prozor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ablak bezárása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փակել պատուհանը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup Jendela" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiudi finestra" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ウィンドウを閉じる" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფანჯრის დახურვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទផ្ទាំង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಜಾಲವನ್ನು ಮುಚ್ಚು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "닫기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داخستنی پەنجەرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggalawo Dirisa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປິດເວດເເລ້ງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užverti langą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aizvērt logu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори прозорец" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цонхыг хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup Tetingkap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပေါက်ပိတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukk vindu" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "विन्डो बन्द गर्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venster sluiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukk vindu" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsekani Zenera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਿੰਡੋ ਬੰਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zamknij okno" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ضمیمه کولو اختیارونه راکم کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechar janela" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechar janela" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Închide fereastra" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрыть окно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori prozor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කවුළුව වසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvoriť okno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapri okno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbylle Dritaren" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затвори прозор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatvori prozor" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stäng fönster" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funga Dirisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சாளரத்தை மூடுதல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "విండో మూసివేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิดหน้าต่าง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pencereyi Kapat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрити вікно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ونڈو بند کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oynani yopish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đóng cửa sổ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vala Iwindi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "关闭窗口" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉視窗" + } + } + } + }, + "commitHashDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إيداع التجزئة: {hash}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гешкам зафіксаваць: {hash}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Комит Хеш: {hash}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash del Commit: {hash}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit hash: {hash}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cwpl unigryw: {hash}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δείκτης Δέσμευσης: {hash}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komitiba Hash: {hash}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash del Commit: {hash}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash del Commit: {hash}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit'i räsi: {hash}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasi Kodea: {hash}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هش کردن:{hash}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash de validation : {hash}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lambar Gudanarwa: {hash}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החשימה: {hash}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कमिट हैश: {hash}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հանձնառության հեշը՝ {hash}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash Commit: {hash}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミットハッシュ: {hash}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კომიტის ჰეში: {hash}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಮಿಟ್ ಹ್ಯಾಶ್: {hash}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커밋 해시: {hash}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵبژاردەیەک: {hash}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үүрэг хуваарилалт: {hash}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကော်မစ်ဟတ်ရှ်: {hash}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतिबद्धता ह्यास: {hash}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevestig Hash: {hash}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit-Hash: {hash}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮੇਟ ਹੈਸ਼: {hash}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash zatwierdzenia: {hash}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hash do Commit: {hash}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar Hash: {hash}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comandă Commit Hash: {hash}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хеш коммита: {hash}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කමිට් හැෂ්: {hash}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaveza Hash: {hash}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаш комита: {hash}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమిట్ హాష్: {hash}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хеш коміту: {hash}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمٹ ہیش: {hash}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commit Hash: {hash}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "提交哈希值: {hash}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "變更集: {hash}" + } + } + } + }, + "communityBanDeleteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit sal die geselekteerde gebruiker uit hierdie Gemeenskap verban en al hul boodskappe verwyder. Is jy seker jy wil voortgaan?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيؤدي هذا إلى حظر المستخدم المحدد من هذه المجتمع وحذف جميع رسائلهم. هل أنت متأكد أنك تريد المتابعة؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bununla seçilmiş istifadəçi bu İcmada yasaqlanacaq və onun bütün mesajları silinəcək. Davam etmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ صارف اس کمیونیٹی سے ہٹا دیا جائے گا اور ان کے تمام پیغامات حذف کر دیے جائیں گے۔ کیا آپ واقعی جاری رکھنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта забароніць выбранага карыстальніка ў гэтай суполцы і выдаліць усе яго паведамленні. Вы ўпэўненыя, што хочаце прадоўжыць?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това ще забрани избрания потребител от тази общност и ще изтрие всички негови съобщения. Сигурни ли сте, че искате да продължите?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি নির্বাচিত ব্যবহারকারীকে এই Community থেকে নিষিদ্ধ করবে এবং তাদের সমস্ত বার্তা মুছে দেবে। আপনি কি চালিয়ে যেতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Això prohibirà l'usuari seleccionat d'aquesta Community i eliminarà tots els seus missatges. Esteu segur que voleu continuar?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto zablokuje vybraného uživatele z této komunity a smaže všechny jeho zprávy. Jste si jisti, že chcete pokračovat?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil bandlyse den valgte bruger fra denne Community og slette alle deres beskeder. Er du sikker på, at du vil fortsætte?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das ausgewählte Mitglied wird von dieser Community gesperrt und alle deren Nachrichten gelöscht. Bist du sicher, dass du fortfahren möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό θα αποκλείσει τον επιλεγμένο χρήστη από αυτήν την Κοινότητα και θα διαγράψει όλα τα μηνύματά του. Είστε σίγουρος ότι θέλετε να συνεχίσετε;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto bloqueará al usuario seleccionado de esta comunidad y eliminará todos sus mensajes. ¿Deseas continuar?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto prohibirá al usuario seleccionado de esta Comunidad y borrará todos sus mensajes. ¿Estás seguro de que deseas continuar?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See keelab valitud kasutaja kogukonnast ja kustutab kõik nende sõnumid. Kas olete kindel, et soovite jätkata?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Honek erabiltzaile hautatua Komunitate honekin debekatuko du eta haien mezu guztiak ezabatuko ditu. Ziur jarraitu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این باعث ممنوعیت کاربر انتخاب شده و حذف شدن تمامی پیام های ان ها خواهد شد. ایا مطمین هستید می خواهید ادامه دهید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä estää valitun käyttäjän pääsyn tähän Community ja poistaa kaikki hänen viestinsä. Oletko varma, että haluat jatkaa?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ito ay magbabawal sa napiling user mula sa Komunidad na ito at ide-delete ang lahat ng kanilang mga mensahe. Sigurado ka bang gusto mong magpatuloy?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceci va bannir l'utilisateur sélectionné de cette communauté et supprimer tous ses messages. Êtes-vous sûr de vouloir continuer ?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za a hana mai amfani da aka zaɓa daga wannan Al'umma da share duk saƙonninsu. Ka tabbata kana so ka ci gaba?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הליך זה יחסום את המשתמש שנבחר מהקהילה הזאת וימחק את כל ההודעות שלו. האם אתה בטוח שתרצה להמשיך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह चयनित उपयोगकर्ता को इस समुदाय से प्रतिबंधित कर देगा और उनके सभी संदेश हटा देगा। क्या आप वाकई जारी रखना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova radnja će zabraniti odabranog korisnika iz ove Zajednice i izbrisati sve njegove poruke. Jeste li sigurni da želite nastaviti?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez ki fogja tiltani a kiválasztott felhasználót ebből a közösségből és törölni fogja az összes üzenetét. Biztosan folytatni akarod?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա կարգելափակի ընտրված օգտատիրոջը այս համայնքից և կջնջի բոլոր նրանց հաղորդագրությունները: Հաստատո՞ւմ եք շարունակել:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tindakan ini akan memblokir pengguna yang dipilih dari Komunitas ini dan menghapus semua pesan mereka. Apakah Anda yakin ingin melanjutkan?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'utente selezionato verrà espulso da questa Comunità e saranno eliminati tutti i suoi messaggi. Sei sicuro di voler continuare?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このユーザーをこのCommunityから禁止し、そのメッセージをすべて削除します。本当に続行しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "នេះនឹងហាមឃាត់អ្នកប្រើដែលបានជ្រើសពីសហគមន៍នេះនិងលុបសារផងដែរ។ តើអ្នកពិតជាចង់បន្តទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈದು ಆಯ್ಕೆಮಾಡಿದ ಬಳಕೆದಾರರನ್ನು ಈ ಸಮುದಾಯದಿಂದ ನಿರ್ಬಂಧಿಸುತ್ತದೆ ಮತ್ತು ಅವರ ಎಲ್ಲಾ ಸಂದೇಶಗಳನ್ನು ಅಳಿಸುತ್ತದೆ. ನೀವು ಮುಂದುವರಿಸಲು ಖಚಿತವೇ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "선택한 사용자를 이 커뮤니티에서 차단하고 모든 메시지를 삭제합니다. 계속하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەمە بەکارهێنەری دیاریکراو لیردە دەکات لە کۆمەڵگەی ئەم کۆمەڵگەیە و پەیامەکانیان لەبەر دەدات. دڵنیایت کە دەتەوێ بەردەوام بیت؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kijja kuggya omukozesa ono okuva mu Community eno ne kiggyako obubaka bwonna. Okakasa oyagala kweyongerako?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai uždraus pasirinktą vartotoją iš šios bendruomenės ir ištrins visus jų pranešimus. Ar tikrai norite tęsti?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова ќе го забрани избраниот корисник од оваа Заедница и ќе ги избрише сите негови пораки. Дали сте сигурни дека сакате да продолжите?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ нь сонгосон хэрэглэгчийг энэ Community-аас хориглох бөгөөд бүх мессежийг нь устгах болно. Та үргэлжлүүлэхийг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan melarang pengguna terpilih dari Komuniti ini dan memadamkan semua mesej mereka. Adakah anda pasti ingin meneruskan?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤကာလရီအသိုင်းအဝန်းမှ ရွေးချယ်ထားသော အသုံးပြုသူကို ပိတ်ဆို့ပြီး ၎င်း၏ မက်ဆေ့ချ်အားလုံးကို ဖျက်ပစ်မည်ဖြစ်သည်။ ဆက်လက်လုပ်ဆောင်လိုသည်မှာ သေချာပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil utestenge den valgte brukeren fra dette Community og slette alle meldingene deres. Er du sikker på at du vil fortsette?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यसले चयन गरिएका प्रयोगकर्तालाई यस समुदायबाट प्रतिबन्ध लगाउनेछ र तिनीहरूको सबै सन्देशहरू मेटाउनेछ। के तपाइँ जारी गर्न चाहानुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit zal de geselecteerde gebruiker van deze Community verbannen en hen/haar/hem berichten verwijderen. Weet u zeker dat u door wilt gaan?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil utestenge den valde brukaren frå dette samfunnet og slette alle meldingane deira. Er du sikker på at du vil fortsette?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izi zithandiza chotsani wosankhidwa wosuta m'gulu lino komanso kufufuta zonse zawo mauthenga. Kodi ndinu otsimikiza mukufuna kupitiriza?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਚੁਣੇ ਹੋਏ ਯੂਜ਼ਰ ਨੂੰ ਇਸ Community ਤੋਂ ਬਹਿਸ ਕਰ ਦੇਵੇਗਾ ਅਤੇ ਉਨ੍ਹਾਂ ਦੇ ਸਾਰੇ ਸੁਨੇਹੇ ਹਟਾ ਦੇਵੇਗਾ। ਕੀ ਤੁਸੀਂ ਪੱਕੇ ਤੌਰ 'ਤੇ ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Działanie zablokuje wybranego użytkownika w społeczności i skasuje wszystkie jego wiadomości. Na pewno kontynuować?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا به غوره شوی کاروونکی ددې ټولنې څخه بند کړي او ټولې پیغامونه یې له منځه یوسي. ايا تاسو ډاډه ياست چې غواړئ دوام ورکړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isso banirá o usuário selecionado desta Comunidade e excluirá todas as suas mensagens. Você tem certeza que deseja continuar?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto irá banir o utilizador selecionado desta Comunidade e eliminar todas as mensagens. Tem a certeza de que quer continuar?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această acțiune va interzice accesul utilizatorului selectat din această comunitate și va șterge toate mesajele sale. Ești sigur/ă că vrei să continui?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это заблокирует выбранного пользователя в этом Сообществе и удалит все его сообщения. Вы уверены, что хотите продолжить?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će zabraniti odabranog korisnika iz ove Zajednice i obrisati sve njihove poruke. Jeste li sigurni da želite nastaviti?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය තෝරාගත් පරිශීලකයා මෙම සත්කාරාගාරයෙන් තහනම් කරනු ඇත සහ ඔවුන්ගේ සියලු පණිවිඩ මකා දමනු ඇත. ඔබට ඉදිරියට යාමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto zablokuje vybraného používateľa z tejto Komunity a zmaže všetky jeho správy. Ste si istí, že chcete pokračovať?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To bo prepovedalo izbranega uporabnika iz te skupnosti in izbrisalo vsa njihova sporočila. Ali ste prepričani, da želite nadaljevati?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo do të ndalojë përdoruesin e zgjedhur nga kjo Komunitet dhe do të fshijë të gjitha mesazhet e tij. A jeni i sigurt që doni të vazhdoni?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово ће забранити одабраног корисника из ове Заједнице и избрисати све његове поруке. Да ли сте сигурни да желите да наставите?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovim ćete zabraniti odabranog korisnika iz ove Zajednice i obrisati sve njegove poruke. Da li ste sigurni da želite da nastavite?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta kommer att blockera den valda användaren från denna Community och ta bort alla deras meddelanden. Är du säker på att du vill fortsätta?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii itamzuia mtumiaji aliyechaguliwa kutoka kwa Jamii hii na kufuta jumbe zao zote. Una uhakika unataka kuendelea?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது இந்தக் குழுமத்திலிருந்து தேர்ந்தெடுக்கப்பட்ட பயனரைத் தடை செய்யும் மற்றும் அவர்களின் அனைத்து செய்திகளையும் நீக்கும். தொடர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది ఈ సంఘం నుండి ఎంచుకోబడిన వినియోగదారిని నిషేధించాలని మరియు వారి సందేశాలన్నింటినీ తొలగించనుంది. కొనసాగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การกระทำนี้จะเป็นการแบนผู้ใช้ที่เลือกจากชุมชนนี้และลบข้อความทั้งหมดของพวกเขา คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, seçilen kullanıcıyı bu Topluluktan yasaklayacak ve tüm mesajlarını silecek. Devam etmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ця дія заблокує вибраного користувача у цій спільноті та видалить усі повідомлення. Ви дійсно бажаєте продовжити?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ منتخب شدہ صارف کو اس کمیونٹی سے بین کر دے گا اور ان کے تمام پیغامات حذف کر دے گا۔ کیا آپ یقیناً جاری رکھنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu foydalanuvchini ushbu Community dan chetlatadi va ularning barcha xabarlarini oʻchirib tashlaydi. Davom etishni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều này sẽ cấm người dùng đã chọn khỏi Cộng đồng này và xóa tất cả tin nhắn của họ. Bạn có chắc chắn muốn tiếp tục không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community and delete all their messages. Are you sure you want to continue?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "该操作会将选定的用户从此社群中封禁并删除他们的消息。您确定要继续吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "將會禁止選定的成員使用此社群並刪除所有成員訊息。確定要繼續嗎?" + } + } + } + }, + "communityBanDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit sal die geselekteerde gebruiker uit hierdie Gemeenskap verban. Is jy seker jy wil voortgaan?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيؤدي هذا إلى حظر المستخدم المحدد من هذه المجتمع. هل أنت متأكد أنك تريد المتابعة؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bununla seçilmiş istifadəçi bu İcmada yasaqlanacaq. Davam etmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ صارف اس کمیونیٹی سے ہٹا دیا جائے گا۔ کیا آپ واقعی جاری رکھنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта забароніць выбранага карыстальніка ў гэтай суполцы. Вы ўпэўненыя, што хочаце прадоўжыць?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това ще забрани избрания потребител от тази общност. Сигурни ли сте, че искате да продължите?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি নির্বাচিত ব্যবহারকারীকে এই Community থেকে নিষিদ্ধ করবে। আপনি কি চালিয়ে যেতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Això prohibirà l'usuari seleccionat d'aquesta Community. Esteu segur que voleu continuar?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto zablokuje vybraného uživatele z této komunity. Jste si jisti, že chcete pokračovat?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community. Are you sure you want to continue?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil bandlyse den valgte bruger fra denne Community. Er du sikker på, at du vil fortsætte?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das ausgewählte Mitglied wird von dieser Community gesperrt. Bist du sicher, dass du fortfahren möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό θα αποκλείσει τον επιλεγμένο χρήστη από αυτήν την Κοινότητα. Είστε σίγουρος ότι θέλετε να συνεχίσετε;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community. Are you sure you want to continue?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community. Are you sure you want to continue?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto bloqueará al usuario seleccionado de esta comunidad. ¿Estás seguro de que quieres continuar?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto prohibirá al usuario seleccionado de esta Comunidad. ¿Estás seguro de que deseas continuar?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See keelab valitud kasutaja kogukonnast. Kas olete kindel, et soovite jätkata?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Honek erabiltzaile hautatua Komunitate honekin debekatuko du. Ziur jarraitu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این باعث ممنوعیت کاربر انتخاب شده از استفاده از این انجمن خواهد شد. مطمین هستید می خواهید ادامه دهید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä estää valitun käyttäjän pääsyn tähän Community. Oletko varma, että haluat jatkaa?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ito ay magbabawal sa napiling user mula sa Komunidad na ito. Sigurado ka bang gusto mong magpatuloy?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceci va bannir l'utilisateur sélectionné de cette communauté. Êtes-vous sûr de vouloir continuer ?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za a hana mai amfani da aka zaɓa daga wannan Al'umma. Ka tabbata kana so ka ci gaba?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פעולה זו תחסום את המשתמש שנבחר מהקהילה הזאת. האם אתה בטוח שתרצה להמשיך?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह चयनित उपयोगकर्ता को इस समुदाय से प्रतिबंधित कर देगा । क्या आप वाकई जारी रखना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova radnja će zabraniti odabranog korisnika iz ove Zajednice. Jeste li sigurni da želite nastaviti?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez ki fogja tiltani a kiválasztott felhasználót ebből a közösségből. Biztosan folytatni akarod?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա կարգելափակի ընտրված օգտատիրոջը այս համայնքից: Հաստատո՞ւմ եք շարունակել:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tindakan ini akan memblokir pengguna yang dipilih dari Komunitas ini. Apakah Anda yakin ingin melanjutkan?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'utente selezionato verrà espulso da questa Comunità. Sei sicuro di voler continuare?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このユーザーをこのCommunityから禁止します。本当に続行しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community. Are you sure you want to continue?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "នេះនឹងហាមឃាត់អ្នកប្រើដែលបានជ្រើសពីសហគមន៍នេះ។ តើអ្នកពិតជាចង់បន្តទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈದು ಆಯ್ಕೆಮಾಡಿದ ಬಳಕೆದಾರರನ್ನು ಈ ಸಮುದಾಯದಿಂದ ನಿರ್ಬಂಧಿಸುತ್ತದೆ. ನೀವು ಮುಂದುವರಿಸಲು ಖಚಿತವೇ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "선택한 사용자를 이 커뮤니티에서 차단합니다. 계속하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەمە بەکارهێنەری دیاریکراو لیردە دەکات لە کۆمەڵگەی ئەم کۆمەڵگەیە. دڵنیای کە دەتەوێ بەردەوام بیت؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kijja kuggya omukozesa ono okuva mu Community eno. Okakasa oyagala kweyongerako?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai uždraus pasirinktą vartotoją iš šios bendruomenės. Ar tikrai norite tęsti?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова ќе го забрани избраниот корисник од оваа Заедница. Дали сте сигурни дека сакате да продолжите?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ нь сонгосон хэрэглэгчийг энэ Community-аас хориглох болно. Та үргэлжлүүлэхийг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan melarang pengguna terpilih dari Komuniti ini. Adakah anda pasti ingin meneruskan?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤကာလရီအသိုင်းအဝန်းမှ ရွေးချယ်ထားသော အသုံးပြုသူကို ပိတ်ဆို့မည်ဖြစ်သည်။ ဆက်လက်လုပ်ဆောင်လိုသည်မှာ သေချာပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil utestenge den valgte brukeren fra dette Community. Er du sikker på at du vil fortsette?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यसले चयन गरिएका प्रयोगकर्तालाई यस समुदायबाट प्रतिबन्ध लगाउनेछ। के तपाइँ जारी गर्न चाहानुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit zal de geselecteerde gebruiker van deze Community verbannen. Weet u zeker dat u door wilt gaan?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil utestenge den valde brukaren frå dette samfunnet. Er du sikker på at du vil fortsette?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izi zithandiza chotsani wosankhidwa wosuta m'gulu lino. Kodi ndinu otsimikiza mukufuna kupitiriza?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਚੁਣੇ ਹੋਏ ਯੂਜ਼ਰ ਨੂੰ ਇਸ Community ਤੋਂ ਬਹਿਸ ਕਰ ਦੇਵੇਗਾ। ਕੀ ਤੁਸੀਂ ਪੱਕੇ ਤੌਰ 'ਤੇ ਜਾਰੀ ਰੱਖਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Działanie zablokuje wybranego użytkownika w społeczności. Na pewno kontynuować?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا به غوره شوی کاروونکی ددې ټولنې څخه بند کړي. ايا تاسو ډاډه ياست چې غواړئ دوام ورکړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isso banirá o usuário selecionado desta Comunidade. Você tem certeza que deseja continuar?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto irá banir o utilizador selecionado desta Comunidade. Tem a certeza de que quer continuar?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această acțiune va interzice accesul utilizatorului selectat din această comunitate. Ești sigur/ă că vrei să continui?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это заблокирует выбранного пользователя в этом Сообществе. Вы уверены, что хотите продолжить?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će zabraniti odabranog korisnika iz ove Zajednice. Jeste li sigurni da želite nastaviti?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය තෝරාගත් පරිශීලකයා මෙම සත්කාරාගාරයෙන් තහනම් කරනු ඇත. ඔබට ඉදිරියට යාමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto zablokuje vybraného používateľa z tejto Komunity. Ste si istí, že chcete pokračovať?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To bo prepovedalo izbranega uporabnika iz te skupnosti. Ali ste prepričani, da želite nadaljevati?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo do të ndalojë përdoruesin e zgjedhur nga kjo Komunitet. A jeni i sigurt që doni të vazhdoni?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово ће забранити одабраног корисника из ове Заједнице. Да ли сте сигурни да желите да наставите?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovim ćete zabraniti odabranog korisnika iz ove Zajednice. Da li ste sigurni da želite da nastavite?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta kommer att blockera den valda användaren från denna Community. Är du säker på att du vill fortsätta?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii itamzuia mtumiaji aliyechaguliwa kutoka kwa Jamii hii. Una uhakika unataka kuendelea?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது இந்தக் குழுமத்திலிருந்து தேர்ந்தெடுக்கப்பட்ட பயனரைத் தடை செய்யும். தொடர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది ఈ సంఘం నుండి ఎంచుకోబడిన వినియోగదారిని నిషేధించనుంది. కొనసాగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การกระทำนี้จะเป็นการแบนผู้ใช้ที่เลือกจากชุมชนนี้ คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, seçilen kullanıcıyı bu Topluluktan yasaklayacak. Devam etmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ця дія заблокує вибраного користувача у цій спільноті. Ви дійсно бажаєте продовжити?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ منتخب شدہ صارف کو اس کمیونٹی سے بین کر دے گا۔ کیا آپ یقیناً جاری رکھنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu foydalanuvchini ushbu Community dan chetlatadi. Ishonchingiz komilmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều này sẽ cấm người dùng đã chọn khỏi Cộng đồng này. Bạn có chắc chắn muốn tiếp tục không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will ban the selected user from this Community. Are you sure you want to continue?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "该操作会将选定的用户从此社群中封禁。您确定要继续吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "將會禁止選定的成員使用此社群。確定要繼續嗎?" + } + } + } + }, + "communityEnterUrl" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Gemeenskap URL in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل رابط المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma URL-sini daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹی URL درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце URL супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете Community URL" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduïu URL de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte adresu komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch URL Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast fællesskabs URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-URL eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε URL Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Community URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu Komunumo-URL-on" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduzca el URL de la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduzca el URL de la Comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta kogukonna URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu Komunitate URLa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نشانی اینترنتی انجمن را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä yhteisön URL-osoite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang URL ng Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez l'URL de la Communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o URL da Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da URL na Community" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן כתובת URL של ה-Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite URL zajednice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a közösség URL-jét" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք Համայնքի URL-ը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Tautan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci il link della Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティ URL を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ თემის URL" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល URL សហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 URL 입력하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLی Community بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Community URL" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນ URL ຂອງ Community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite bendruomenės URL" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet kopienas URL" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете URL на Community" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan URL Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angi samfunnets URL" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer Community URL in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn samfunns-URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani ulalo wa Community" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮਿਊਨਟੀ URL ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź adres URL społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د Community URL ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira URL da Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira o URL da Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți adresa URL a comunității" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите URL сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi Community URL" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවේ URL ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte URL adresu komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite URL skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni URL-në e Community" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите Community URL" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite URL zajednice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange Community URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingiza URL ya Community" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URLని ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อน Community URL" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk URL'si Girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть URL спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat URL sini kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập URL của Community" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-URL yeCommunity" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入社群链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入社群連結" + } + } + } + }, + "communityEnterUrlErrorInvalid" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeldige URL" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عنوان URL غير صحيح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yararsız URL" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط URL" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылковы URL адрэс" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невалиден URL адрес" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিংকটি অকার্যকর" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL invàlida" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neplatná adresa URL" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL annilys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültige URL" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μη έγκυρο URL" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevalida URL" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL no válida" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL no válida" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sobimatu URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL baliogabea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آدرس نامعتبر است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virheellinen URL-osoite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi valid na URL" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL non valide" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL inválido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Mara Daidai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קישור לא תקין" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अमान्य यूआरएल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neispravna poveznica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Érvénytelen URL" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անվավեր URL" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL tidak valid" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link non valido" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL が不正です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არასწორი URL" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL មិនត្រឹមត្រូវ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಮಾನ್ಯ URL" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "유효하지 않은 URL" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەدەرەکەی یوەڕڵ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL si kituufu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neteisingas URL" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepareiza URL adrese" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невалиден URL" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвшөөрөгдөөгүй хаяг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL tidak sah" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL မှားနေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig URL" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अवैध URL" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeldige URL" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL yopanda pake" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤ ਯੂआरਐਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprawidłowy adres URL" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناسم URL" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL inválido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL inválido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adresa URL incorectă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неверный URL-адрес" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevažeći URL" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වලංගු නොවන ඒ.ස.නි. කි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neplatná URL adresa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neveljaven URL" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL e pavlefshme" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неважећи URL" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neispravan URL" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogiltig URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Batili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவறான இணைய முகவரி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చెల్లని URL" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ลิงค์ไม่ถูกต้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geçersiz URL" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недійсне URL-посилання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط URL" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noto‘g‘ri URL" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL không hợp lệ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-URL engalunganga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无效链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無效連結" + } + } + } + }, + "communityEnterUrlErrorInvalidDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan die Gemeenskap URL na en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء التحقق من رابط المجتمع وحاول مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən İcma URL-sini yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی کمیونٹی URL چیک کنیں و دوبارہ کوشش کنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, праверце Community URL і паспрабуйце зноў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, проверете URL на Community и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কমিউনিটি URL যাচাই করুন এবং আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comproveu l'URL de la Comunitat i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkontrolujte prosím URL adresu komunity a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiriwch y URL Community a cheisio eto." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst tjek Community URL'en og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte überprüfe die Community-URL und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ ελέγξτε το Community URL και προσπαθήστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check the Community URL and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu kontroli la Komunuman URL-on kaj reprovu." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, compruebe el URL de la Comunidad y vuelva a intentarlo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comprueba el URL de la Comunidad y vuelve a intentarlo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun kontrollige Community URL-i ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, egiaztatu Community URL eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً شناسه Community را مجدد بررسی کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarkista yhteisön URL ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakitingnan ang Community URL at subukang muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez vérifier l'URL de la communauté et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comproba o URL da Comunidade e téntao de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba URL ɗin Community kuma sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בדוק את קישור ה-Community ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया Community यूआरएल चेक करें और फिरसे प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite URL Zajednice i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ellenőrizd a közösség URL-jét és próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ստուգել Community հասցեն և փորձել նորից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Harap periksa URL Komunitas dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controlla l'indirizzo web inserito e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL を確認してもう一度お試しください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეამოწმოთ Community URL და სცადეთ კიდევ ერთხელ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមពិនិត្យមើល Community URL ហើយព្យាយាមម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL ಅನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL을 확인하시고 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەجێبەجێکەرە بەرەوە کە ورتەیەکی دوعا وەک ناچێن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakasa URL ya Community kwoziize okubiddamu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patikrinkite bendruomenės URL ir bandykite iš naujo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, pārbaudi Community URL un mēģini vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме проверете го URL на заедницата и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL-ийг шалгаж дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila semak URL Community dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL ကို စစ်ဆေးပြီး ပြန်လည်ကြိုးစားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst sjekk Community URL og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया Community URL जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controleer de Community-URL en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst sjekk URL-en til Samfunn og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde onani URL ya Community ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ Community URL ਦੀ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprawdź adres URL społeczności i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ د ټولنې یو آر ایل وګورئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique a URL da Comunidade e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique o URL da Comunidade e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să verificați adresa URL a Comunității și să încercați din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, проверьте URL сообщества и повторите попытку." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite URL zajednice i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කණ්ඩායමේ ඒ.ස.නි. සංඛ්‍යාව පරීක්ෂා කර නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skontrolujte prosím adresu URL komunity a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, preveri URL skupnosti in poskusi znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi kontrolloni URL-në e Community dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проверите Community URL и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo proverite URL zajednice i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen kontrollera Community-URL:en och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali kagua URL ya Community na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக URL ஐ சரிபார்த்து மறுபடியும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి Community URLను తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดตรวจสอบ URL ชุมชนและลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen Topluluk URL'sini kontrol edin ve tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, перевірте введену вами URL-адресу та спробуйте ще раз." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم Community یو آر ایل کو چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, Community URL manzilini tekshiring va qaytadan urinib ko‘ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng kiểm tra URL của Cộng Đồng và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ujonge i-URL ye-Community kwaye uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请检查您输入的链接是否正确并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請檢查社群連結,然後再試一次。" + } + } + } + }, + "communityError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemeenskap Fout" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ في المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma xətası" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка в Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fællesskabsfejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-Fehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eraro de Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonna viga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitate errorea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطای انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteisön virhe" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sa Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur des données de communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskuren Al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאת Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška zajednice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségi hiba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համայնքի սխալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティエラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯದ ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 오류" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەی Community" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi ye Community" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຄືນພະເດັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendruomenės klaida" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopienas kļūda" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка во Заедницата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Алдаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fellesskapsfeil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-fout" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samfunnsfeil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cholakwika cha M'gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀ ਗਲਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په ټولنه کې بیرته وړاندیز" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare comunitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාව දෝෂයක්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim në bashkësi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка заједнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška zajednice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitilafu ya Community" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகங்களின் பிழை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీ ఎర్రర్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk Hatası" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка спільнот" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Error" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat xatosi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphutha Loluntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群錯誤" + } + } + } + }, + "communityErrorDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oeps, 'n fout het voorgekom. Probeer asseblief later weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عذراً، حدث خطأ. حاول مرة أخرى لاحقاً." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir xəta baş verdi. Lütfən daha sonra yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ھِل (خاموش) ثابت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Упс, узнікла памылка. Паспрабуйце пазней." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Опа, възникна грешка. Моля, опитайте отново по-късно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "উফ্‌, একটি ত্রুটি ঘটেছে। দয়া করে পরে আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, ha ocorregut un error. Torneu a provar-ho més tard, si us plau." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, došlo k chybě. Zkuste to prosím později." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wps, mae nam wedi digwydd. Ceisiwch eto yn nes ymlaen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, en fejl opstod. Prøv venligst igen senere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, ein Fehler ist aufgetreten. Bitte versuche es später noch einmal." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ωχ, παρουσιάστηκε σφάλμα. Παρακαλώ προσπαθήστε ξανά αργότερα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, an error occurred. Please try again later." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, eraro okazis. Bonvolu provi poste." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaya, se produjo un error. Por favor, inténtalo más tarde." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaya, ocurrió un error. Por favor, inténtelo más tarde." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, ilmnes viga. Palun proovige hiljem uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hara, errore bat gertatu da. Saiatu berriro geroago." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اوه، یک خطا رخ داد. لطفا دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hups, tapahtui virhe. Yritä myöhemmin uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, may nangyaring error. Pakisubukan muli mamaya." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oups, une erreur s’est produite. Veuillez réessayer plus tard." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, produciuse un erro. Por favor, ténteo de novo máis tarde." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, wani kuskure ya faru. Da fatan za a sake gwadawa bayan lokaci." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אופס, אירעה שגיאה. אנא נסה שוב מאוחר יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उफ़, एक त्रुटि हुई। कृपया बाद में पुन: प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, došlo je do pogreške. Molimo pokušajte kasnije." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoppá, hiba történt. Kérlek próbáld újra később!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վայ, խնդիր կատարվեց: Խնդրում ենք փորձել նորից ավելի ուշ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, terjadi kesalahan. Silahkan coba lagi nanti." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, si è verificato un errore. Per favore riprova più tardi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "エラーが発生しました。後でもう一度試してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უი, მოხდა შეცდომა. გთხოვთ, სცადეთ ისევ მოგვიანებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមអភ័យទោស មានកំហុសមួយក្នុងការបញ្ចូល។ សូមព្យាយាមម្តងទៀតក្រោយមួយរយះពេល។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೌದು, ದೋಷವೊಂದು ಸಂಭವಿಸಿದೆ. ದಯವಿಟ್ಟು ತರುವಾಯ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "문제가 발생했습니다. 나중에 다시 시도해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ببورە، هەڵەیەک ڕوویدا. تکایە دواتر هەوڵ دەربڕە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kibusasibi kibaddewo. Gezaako nate oluvanyuma" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, an error occurred. Please try again later." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, notika kļūda. Lūdzu, mēģiniet vēlreiz vēlāk." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Упс, се случи грешка. Обидете се повторно подоцна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уучлаарай, алдаа гарлаа. Дараа дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, terjadi ralat. Sila cuba lagi nanti." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟီး၊ အမှားတစ်ခုဖြစ်ပွားသောကြောင့် ဖြစ်ပါသည်။ ကျေးဇူးပြု၍ နောက်တစ်ကြိမ်ကြီး စမ်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, en feil oppstod. Prøv igjen senere." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ओहो, एक त्रुटि भयो। कृपया पछि पुन: प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oeps, er is een fout opgetreden. Probeer het later opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beklager, ein feil oppstod. Venleg prøv igjen seinare." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zovuta zalakwika. Chonde yesaninso pambuyo pake." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੋਈ ਗ਼ਲਤੀ, ਕਿਰਪਾ ਕਰਕੇ ਵਧੇਰੇ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, wystąpił błąd. Spróbuj ponownie później." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اوپس، یوه تېروتنه وشوه. لطفاً وروسته بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ops, ocorreu um erro. Por favor, tente novamente mais tarde." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ops, ocorreu um erro. Por favor, tente novamente mais tarde." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, a apărut o eroare. Vă rugăm să încercați din nou mai târziu." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Упс, произошла ошибка. Пожалуйста, повторите попытку позже." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, došlo je do greške. Molimo pokušajte ponovo kasnije." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අප්ස් අපහසුතාවයකට ලක්විණි. කරුණාකර පසුව නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, nastala chyba. Skúste to prosím neskôr." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, prišlo je do napake. Poskusite znova pozneje." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops, ndodhi një gabim. Ju lutemi provoni përsëri më vonë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Упс, дошло је до грешке. Молимо покушајте касније." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ups, došlo je do greške. Molimo pokušajte ponovo kasnije." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoppsan, ett fel uppstod. Vänligen försök igen senare." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pole, hitilafu imetokea. Tafadhali jaribu tena baadaye." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஓஹோ, ஒரு பிழை ஏற்பட்டுள்ளது. தயவுசெய்து பின்னர் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అయ్యో, తప్పు జరిగింది. దయచేసి తరువాత ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อุ๊บส์ เกิดข้อผิดพลาด กรุณาลองใหม่อีกครั้งภายหลัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata oluştu, lütfen daha sonra tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Еге ж, сталася помилка. Будь ласка, спробуйте пізніше." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اوپس، ایک خرابی واقع ہوئی۔ براہ کرم بعد میں کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kechirasiz, xato yuz berdi. Iltimos, keyinroq qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rất tiếc, đã xảy ra lỗi. Vui lòng thử lại sau." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ooppsi, liphutha lenzekile. Khethe phinde uzame kamva." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "哎呀,发生了错误。请稍后再试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "哎呀,發生錯誤。請稍後再試。" + } + } + } + }, + "communityInvitation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemeenskap Uitnodiging" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوة المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma dəvəti" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрашэнне ў суполку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покана за Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitació a la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvánka do komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahoddiad Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation til fællesskab" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-Einladung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόσκληση σε κοινότητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito de Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación a la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación a la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonna kutse" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitate gonbidapena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteisökutsu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbitasyon ng Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation à rejoindre une communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación á Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gayyatar Al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמנה ל-Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक निमंत्रण" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivnica za zajednicu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségi meghívó" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համայնքի հրավեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undangan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito a una Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティ招待" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯದ ಆಹ್ವಾನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 초대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگەوازکردن بۆ Community" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuyitibwa mu Bwekulakulanyo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຄືນສູນພະເດັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendruomenės kvietimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopienas ielūgums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покана за Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Урилга" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemputan Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fellesskapsinvitasjon" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging voor Community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samfunnsinvitasjon" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chitanthauzo cha Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀ ਨਿਆਂਤਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszenie do społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پیغام غوښتنې ټولنې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite da Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite para a Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitație în comunitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приглашение в сообщество" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivnica zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජා ආරාධනය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvanie do komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vabilo skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftesë për bashkësi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позивница за заједницу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv za zajednicu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwaliko wa Community" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీ ఆహ్వానం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk Daveti" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрошення до спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Invitation" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat Taklifi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lời mời tham gia cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isimemo Soluntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群邀请" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群邀請" + } + } + } + }, + "communityJoin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sluit aan by Gemeenskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انضم إلى المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcmaya qoşul" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community میں شامل ہوئیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далучайцеся да супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присъединете се към Обществото" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community যোগদান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uneix-te a una comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připojit se ke komunitě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymuno â'r Gymuned" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilslut Fællesskab" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community beitreten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνετε μέλος της Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join Community" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algrupiĝi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse a Comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse a la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitu Kogukonnaga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitatean sartu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوستن به انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liity yhteisöön" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sumali sa Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejoindre la communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse á Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiga Community" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצטרף ל־Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community में शामिल हों" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se Zajednici" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csatlakozás egy közösséghez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միանալ համայնքին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabung dengan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unisciti alla Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティに参加する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეუერთდით Community-ს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចូលរួមសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯ ಸೇರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 가입" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بوونی کۆمەڵگە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwegatta ku Community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prisijungti prie Community" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienoties kopienai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приклучи се на Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-д Нэгдэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sertai Community" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community တွင် ပူးပေါင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bli med i nettsamfunn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदायमा सामेल हुनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Word lid van de Community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bli med i netsamfunn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwati Community" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮੇਟੀ ਵਿੱਚ ਸ਼ਾਮਿਲ ਹੋਵੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dołącz do społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولنه سره یوځای شئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrar na Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Junte-se à comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alătură-te comunității" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присоединиться к сообществу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se Community" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community එකට එක්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripojte sa ku komunite" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bashkohu me Community" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Придружите се заједници" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se Zajednici" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå med i Community" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jiunge na Jamii" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகத்தில் சேர்ந்தல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communityలో చేరండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เข้าร่วม Community" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluğa Katıl" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приєднатися до спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community میں شامل ہوں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ga qo'shilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tham gia Community" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joyina iCommunity" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入社群" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入社群" + } + } + } + }, + "communityJoinDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {community_name} aansluit?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد الانضمام إلى {community_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} icmasına qoşulmaq istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {community_name} میں شامل بی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце далучыцца да {community_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да се присъединиш към {community_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {community_name} কমিউনিটিতে যোগ দিতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu unir-vos a {community_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu se chcete připojit ke komunitě {community_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ymuno â {community_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil deltage i {community_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {community_name} wirklich beitreten?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να γίνετε μέλος στην κοινότητα {community_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to join {community_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas aliĝi al {community_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas unirte a {community_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres unirte a {community_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite liituda kogukonnaga {community_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {community_name} batu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید به {community_name} بپیوندید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti liittyä yhteisöön {community_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong sumali sa {community_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir rejoindre {community_name} ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer entrar en {community_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka shiga {community_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שאתה רוצה להצטרף לקבוצה {community_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {community_name} में शामिल होना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite pridružiti se {community_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy csatlakozni szeretnél a(z) {community_name} közösséghez?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք միանալ {community_name} համայնքին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin bergabung dengan {community_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler unirti a {community_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{community_name}に参加しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {community_name} შეუერთდეთ?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដថាចង់ចូលរួម {community_name} ដែរឬទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {community_name} ಸೇರಲು ಖಚಿತವಾಗಿದೆಯ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 {community_name}에 가입하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت بەشداری {community_name} بکەیت؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuyingira {community_name}?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການເຂົ້າຮ່ວມ {community_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite prisijungti prie {community_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties pievienoties {community_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да се придружите на {community_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {community_name}-д нэгдэхдээ итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyertai {community_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ {community_name} ကို ထည့်ဝင်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil bli med i {community_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {community_name} सामुदायमा सामेल हुन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u lid wilt worden van {community_name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å bli med i {community_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kulowa {community_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {community_name} ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz dołączyć do społeczności {community_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ {community_name} سره یوځای شئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja se juntar à {community_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que quer entrar {community_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să te alături comunității {community_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите присоединиться к {community_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš pridružiti {community_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {community_name} ට එක්වීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj sa chcete pripojiť ku komunite {community_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite pridružiti skupnosti {community_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i bashkoheni {community_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да хоћете да приступите {community_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste li sigurni da želite da se pridružite {community_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill gå med i {community_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kujiunga na {community_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} யில் சேர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {community_name} లో చేరాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเข้าร่วม {community_name}?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} topluluğuna katılmak istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете приєднатися до {community_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {community_name} میں شامل ہونا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {community_name} ga qo'shilmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn tham gia {community_name}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukujoyina i {community_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要加入{community_name}吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要加入 {community_name} 嗎?" + } + } + } + }, + "communityJoined" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aangesluit by Gemeenskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انضم إلى المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcmaya qoşuldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community میں شامل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далучыўся да супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присъедих се към Обществото" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community তে যোগদান করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha unit a comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připojeno ke komunitě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymuno â'r Gymuned" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deltaget i Fællesskab" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community beigetreten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έγγραφα Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joined Community" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aliĝitis al Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unido a Comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te uniste a la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitunud Kogukonnaga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitatean sartuta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوست به انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitytty yhteisöön" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sumali sa Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communauté rejointe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uníronse á Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiga Community" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצטרפת ל־Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community में शामिल हो गए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridružili ste se zajednici" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csatlakozott a közösséghez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացել ենք համայնքին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bergabung dengan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei entrato nella Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティに参加しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეუერთდით Community-ს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានចូលរួមសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ಸೇರಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티에 가입했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کۆمەڵگەی بوونیشت لەگەڵ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wegattadda ku Community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prisijungė prie Community" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienojies kopienai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приклучи се на Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-д Нэгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telah menyertai Community" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community အသစ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bli med i nettsamfunn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदायमा सामेल हुनुभयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lid geworden van de Community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blei med nettsamfunn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwati Community" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮੇਟੀ ਵਿੱਚ ਸ਼ਾਮਿਲ ਹੋ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dołączono do społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولنې سره یوځای شوې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserido na Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrou na comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "S-a alăturat comunității" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присоединились к сообществу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridružio se Community" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community එකට එක්වුණා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripojil sa ku komunite" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridružili ste se skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bashkua në Community" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Придружили сте се заједници" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridružen Zajednici" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gått med i Community" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umejiunga na Jamii" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகத்தில் சேர்ந்தார்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communityలో చేరారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เข้าร่วม Community แล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluğa Katıldınız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приєднано до спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community میں شامل ہوا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ga qo'shilindi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã tham gia Community" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujoyine i Community" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已加入社群" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已加入社群" + } + } + } + }, + "communityJoinedAlready" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy is reeds 'n lid van hierdie Gemeenskap." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت متصل بالفعل بهذا المجتمع." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Artıq bu icmanın üzvüsünüz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمنینت تراچ بیتے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўжо з'яўляецеся ўдзельнікам гэтай community." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вече сте член на тази общност." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are already a member of this community." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja sou membre d'aquesta comunitat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Již jste členem této komunity." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych eisoes yn aelod o'r gymuned hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er allerede medlem af dette fællesskab." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du bist bereits ein Mitglied dieser Community." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε ήδη μέλος αυτής της community." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are already a member of this community." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi jam estas membro de ĉi tiu komunumo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya eres miembro de esta comunidad." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya eres miembro de esta comunidad." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olete juba selle kogukonna liige." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dagoeneko komunitate honetako kidea zara." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما قبلا عضو این گروه شده اید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olet jo jäsen tässä yhteisössä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay kasapi na ng komunidad na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous êtes déjà membre de cette communauté." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xa es membro desta comunidade." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai ma memba ne na wannan al'ummar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה כבר חבר בקהילה הזו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप पहले से ही इस समुदाय के सदस्य हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Već ste član ove zajednice." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te már csatlakoztál ehhez a közösséghez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք արդեն այս համայնքի անդամ եք։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda sudah menjadi anggota komunitas ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fai già parte di questa Comunità." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたは既にこのCommunityのメンバーです。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ უკვე წევრია ამ Community-ში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកជាសមាជិករួចហើយនៃសហគមន៍នេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈಗಾಗಲೇ ಈ ಸಮುದಾಯದ ಸದಸ್ಯರಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이미 이 그룹에 연결되어 있습니다!" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ پێشتر ئەم کۆمەڵگایە عضو بوویت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mwendamu mu bukulakulanya buno bwonna." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs jau esate šioje bendruomenėje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs jau esat šīs kopienas loceklis." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие веќе сте член на оваа заедница." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та аль хэдийн энэ Community-н гишүүн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda sudah menjadi ahli komuniti ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are already a member of this community." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er allerede medlem av dette fellesskapet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं पहिल्यै यो समुदायको सदस्य हुनुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent al bij deze community aangesloten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er allereie medlem av denne fellesskapet." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu muli kale membala wa gulu ili." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਪਹਿਲਾਂ ਹੀ ਇਸ ਕਮਿਊਨਿਟੀ ਦੇ ਮੈਂਬਰ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesteś już członkiem tej społeczności." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو دمخه د دې ټولنې غړی یاست." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você já é um membro deste Community." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você já está associado a esta comunidade." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești deja membru al acestei comunități." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уже являетесь участником этого сообщества." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Već ste član ove zajednice." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ දැනටමත් මෙම ප්‍රජාවට එක් වී ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "K tejto komunite ste už pripojení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste že član te skupnosti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju jeni tashmë anëtar i kësaj komuniteti." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Већ сте члан ове Community." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Već ste član ove zajednice." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du är redan medlem i denna gemenskap." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe tayari ni mwanachama wa huu jumuiya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் ஏற்கனவே இந்த சமுதாயத்தின் உறுப்பினராக உள்ளீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఇప్పటికే ఈ Community యొక్క సభ్యులు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณเป็นสมาชิกของชุมชนนี้แล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu topluluğun zaten üyesisiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви вже є учасником цієї спільноти." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ پہلے سے ہی اس community کے رکن ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz allaqachon bu hamjamiyat a'zosi bo'lgansiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã là thành viên của cộng đồng này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvele ube lilungu lale Community." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已是这个社群的成员了。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已經是此社群的成員。" + } + } + } + }, + "communityJoinError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie by gemeenskap aansluit nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في الانضمام إلى المجتمع" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونیٹی میں شامل ہونے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася далучыцца да суполкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно присъединяване към общност" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কমিউনিটিতে যোগ দিতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat intentar unir-se a la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo připojení ke komunitě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd ymuno â chymuned" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke deltage i fællesskabet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Beitritt zur Community" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία συμμετοχής στην κοινότητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to join community" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis aniĝi al komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo unir a la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al unirse a la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonnaga liitumine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da komunitatean sartzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوستن به انجمن ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liittyminen yhteisöön epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong sumali sa community" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de rejoindre la communauté" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa shiga al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להצטרף לקהילה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदाय में शामिल होना विफल रहा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruživanje zajednici nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült csatlakozni a közösséghez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց միանալ համայնքին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal bergabung ke komunitas" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティに参加できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შეუერთდა თემს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការចូលរួមសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕುಟುಂಬಕ್ಕೆ ಸೇರಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 참여 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی ئەو دانگە وەربوون" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwetaaza ku community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko prisijungti prie bendruomenės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās pievienoties kopienai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно приклучување во заедницата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Коммюнити нэгдэхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menyertai komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိုင်းအဝန်းကို ပူးပေါင်းလိုက်၍ မရ ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke bli med i community" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदायमा सामेल हुन असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het is niet gelukt om lid te worden van de community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje bli med i community" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuvomereza mgulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮਿਉਨਿਟੀ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się dołączyć do społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ټولنې سره یوځای کیدل ناکام شول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível participar da comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível participar na comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut alătura comunității" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось присоединиться к сообществу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo pridruživanje zajednici" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවට එක් වීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné sa pripojiť ku komunite" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni se uspelo pridružiti skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi bashkimi me komunitetin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Придруживање заједници није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešno pridruživanje zajednici" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att gå med i gemenskapen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kujiunga na jamii" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகம் சேருவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహంలో చేరడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเข้าร่วมชุมชนได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluğa katılınamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося приєднатися до спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹی میں شامل ہونے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamoaga qo'shilishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể tham gia cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukujoyina uluntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入社群失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法加入社群" + } + } + } + }, + "communityJoinOfficial" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Of sluit aan by een van hierdie..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أو انضم إلى واحدة من..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya da bunlardan birinə qoşulun..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہاں ھَنی اھد يېں..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Або далучыцеся да аднаго з гэтых..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Или се присъедините към някоя от тези..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অথবা এরকম আরও কোথাও যোগ দিন..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "O uneix-te a alguns d'aquests..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nebo se připojte k jedné z těchto..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neu ymunwch ag un o'r rhain..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eller deltag i en af disse..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oder tritt eine von diesen bei..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ή γίνετε μέλος σε ένα από αυτά..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Or join one of these..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭ aliĝu unu de ĉi tiuj…..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "O únete a uno de estos..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "O únete a uno de estos..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Või liituge ühega neist..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edo batu hauetara..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یا به یکی از این‌ها بپیوندید…" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai liity johonkin näistä..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "O sumali sa isa sa mga ito…..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ou rejoignez un de ceux-ci..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ou únete a algunha destas..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko shiga ɗaya daga cikin waɗannan..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "או הצטרף לאחד מאלה…..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "या इनमें से एक को जोड़ें..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ili se pridružite jednom od ovih..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vagy csatlakozz az egyikhez az alábbiakból..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կամ միացե՛ք սրանցից մեկին…" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atau gabung salah satu dari ini..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppure unisciti a uno di questi..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "または、以下のグループに参加する…" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ან შემოუერთდით ერთ-ერთს..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឬចូលរួមក្នុងចំណោមណាមួយនេះ…" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಥವಾ ಇವುಗಳಲ್ಲಿ ಒಂದನ್ನು ಸೇರಿಯಿರಿ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "또는 이 중에서 참여..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "یان یەکێک لە ئەم هەژماران ببە دەبەش..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oba jjangira emu kuzinno..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arba prisijunkite prie vienos iš šių..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai pievienojies kādai no šīm..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Или приклучи се на една од овие..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эсвэл эдгээрийн нэгийг ороорой..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atau sertai salah satu dari ini..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သို့မဟုတ် ဤဝက်ဘ်ဆိုက်တစ်ခုမှတစ်ခုကို ဝင်ရောက်ကြပါ..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eller bli med i en av disse..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वा ती मध्ये कुनैमा सम्मिलित हुनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Of neem deel aan een van deze..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eller bli med i ein av desse…..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapena lumikizanani ndi limodzi la izi..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਾਂ ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਇੱਕ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ…" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lub dołącz do jednej z tych..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یا د دې یو سره یوځای شئ..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ou junte-se a um desses..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ou junte-se a um destes..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sau alătură-te uneia dintre acestea..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Или присоединитесь к одной из этих..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ili se pridruži jednom od ovih..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැත්නම් මේ එකකට එකතු වෙන්න..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alebo sa pripojte k jednej z týchto…..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali se pridruži eni izmed teh..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ose bashkohuni me njërën nga këto..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Или се придружите једној од ових…..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ili se pridružite nekoj od ovih..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eller gå med i en av dessa..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ama ujiunge na mojawapo ya hizi..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அல்லது இவற்றில் ஏதேனும் ஒன்றில் சேருங்கள்..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ వాటిలో ఒకటిలో చేరండి..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หรือเข้าร่วมอย่างใดอย่างหนึ่งเหล่านี้..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veya bunlardan birine katılın..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Або приєднуйтесь до однієї з цих..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یا ان میں سے کسی میں شامل ہوں..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yoki bulardan biriga qo'shiling..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoặc tham gia một trong các cộng đồng này..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okanye joyina elinye lala..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "或加入下列社群…..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "或加入這些..." + } + } + } + }, + "communityLeave" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat Gemeenskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مغادرة المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcmanı tərk et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community چھوڑ دیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пакінуць суполку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусни Общността" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community পরিত্যাগ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marxar de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustit komunitu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael y Gymuned" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlad Fællesskab" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Verlassen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποχώρηση από την Κοινότητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave Community" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlasi Komunumon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar Comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahku Kogukonnast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitatetik Irten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترک انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistu yhteisöstä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iwanan ang Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quitter la communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deixar Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bar Community" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עזוב את ה-Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदाय छोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti zajednicu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés a közösségből" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լքել համայնքը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinggalkan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbandona Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティーを抜ける" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დატოვე Community" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាកចេញពីសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ತೊರೆಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 나가기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کۆمەڵگە لا بردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vamu ku Community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeiti iš Community" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atstāt kopienu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напушти Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-с гарах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinggalkan Community" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ကို ထွက်ရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat nettsamfunn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदाय छोड्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat Community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat samfunn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekayo Community" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮੇਟੀ ਛੱਡ ਦਿਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opuść społeczność" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community پرېږده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair da Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair da comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Părăsește Comunitatea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покинуть Сообщество" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti Community" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community එක හැරයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustiť komunitu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapusti skupnost" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Braktise Community" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусти заједницу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti Zajednicu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lämna Community" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toka kwenye Jamii" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகத்தைவிட்டு வெளியேறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community వదిలివేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออกจาก Community" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluktan Ayrıl" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вийти зі спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community چھوڑ دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community dan chiqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rời Community" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiya iCommunity" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开社群" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "離開社群" + } + } + } + }, + "communityLeaveError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {community_name} verlaat nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في مغادرة {community_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} icmasını tərk etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} کو چھوڑنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася пакінуць {community_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно напускане на {community_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ছাড়তে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat intentar deixar {community_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo odhlášení z komunity {community_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gadael {community_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke forlade fællesskabet {community_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Verlassen von {community_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αποχώρησης από το {community_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to leave {community_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis foriri el {community_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al salir de {community_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo salir de {community_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus lahkuda kogukonnast {community_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {community_name} uzten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترک {community_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistuminen yhteisöstä {community_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong umalis sa {community_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de quitter {community_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido abandonar {community_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa barin {community_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לעזוב את {community_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} छोड़ने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napustanje zajednice {community_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült kilépni a {community_name} közösségből" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց լքել {community_name} համայնքը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal meninggalkan {community_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile abbandonare {community_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} を退出できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {community_name} თემიდან ანუ მიცემა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការចាកចេញពី {community_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ತೊರೆಯಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name}을(를) 떠날 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانرا لاتەوێ بۆ {community_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwetaalya mu {community_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດອອກຈາກ {community_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko išeiti iš {community_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās pamest {community_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно напуштање на {community_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} оос гарахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal keluar dari {community_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ကိုစွန့်ပစ်၍မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke forlate {community_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} छोड्न असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaten van {community_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje forlata {community_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kusiya {community_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ਨੂੰ ਛੱਡਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się opuścić społeczności {community_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {community_name} پرېښودو کې ناکامه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao sair da {community_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao sair da comunidade {community_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut părăsi comunitatea {community_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось выйти из {community_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo napuštanje {community_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} හැර පිටවීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa opustiť komunitu {community_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo zapustiti skupnosti {community_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi dalja nga {community_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напуштање {community_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo napuštanje zajednice {community_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att lämna {community_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuondoka {community_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} யை விட்டு நீக்குவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} ను వదిలివేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถออกจาก {community_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} çıkış yapılamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося вийти з {community_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} کو چھوڑنے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{community_name} dan chiqishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể rời khỏi {community_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuphuma ku {community_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开{community_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法退出 {community_name}" + } + } + } + }, + "communityUnknown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekende Community" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجتمع غير معروف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinməyən İcma" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم کمیونٹی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невядомая Супольнасць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната общност" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অজানা কমিউনিটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunitat desconeguda" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznámá komunita" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Anhysbys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukendt Community" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekannte Community" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άγνωστη Κοινότητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown Community" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonata Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community desconocida" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidad desconocida" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tundmatu kogukond" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezezagun Community" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انجمن ناشناس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuntematon Community" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi kilalang Community" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communauté inconnue" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community descoñecida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a san Community ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community לא ידועה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनजान Community" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata Community" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen közösség" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ Community" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community tidak dikenal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunità sconosciuta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "不明なコミュニティ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი Community" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សហគមន៍មិនដឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ ಸಮುದಾಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 커뮤니티" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communityێکی نەناسراو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekitundu Ekitaategeerekesebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nežinoma bendruomenė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nezināma kopiena" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тодорхойгүй Community" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Tidak Dikenali" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မသိ Community" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjent Community" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अज्ञात समुदाय" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekende Community" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjend Community" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulu Losadziwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਜਾਣ ਕਮਿਊਨਿਟੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieznana społeczność" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلومه ټولنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidade Desconhecida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidade Desconhecida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunitate necunoscută" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неизвестное сообщество" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata zajednica" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා Community" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznáma Community" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznana Community" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community e Panjohur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната заједница" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznato Community" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okänd Community" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community isiyojulikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறியாத Community" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తెలియని Community" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ที่ไม่ทราบ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen Community" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невідома спільнота" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم کمیونٹی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma’lum Community" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cộng đồng không rõ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikomyunithi Ayaziwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知社群" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知的社群" + } + } + } + }, + "communityUrl" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemeenskap URL" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابط المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma URL-si" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL на Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adresa komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fællesskabs URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-URL" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunumo-URL" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de Comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonna URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitate URLa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteisön URL" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ng Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de la communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL da Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL na Al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קישור Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक यूआरएल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL zajednice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségi URL" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համայնքի URL" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tautan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link della Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティ URL" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL សហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯದ URL" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 URL" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ی Community" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ya Community" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທີ່ເວສາດຄືນໄທທັກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendruomenės URL" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopienas URL" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL на Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fellesskaps-URL" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samfunns-URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ya M'gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀ URL" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adres URL społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم تایید کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL da Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL da Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ul comunității" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවේ ඒ.ස.නි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL adresa komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL bashkësie" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL заједнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zajednica URL" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக URL" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీ URL" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk URL'si" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat URL" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "i-URL yoLuntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群連結" + } + } + } + }, + "communityUrlCopy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer Gemeenskap URL" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخ رابط المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma URL-sini kopyala" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL کاپی کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіяваць URL супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирай URL на Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL কপি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovat adresu komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïo URL Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiér Fællesskabs URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-URL kopieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγραφή URL Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Community URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopii URL de la Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar el URL de la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL de la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri kogukonna URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitate URLa kopiatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی کردن URL انجمن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi yhteisön URL-osoite" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin ang URL ng Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copier l'URL de la communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL da Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi URL na Al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק קישור Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक यूआरएल कॉपी करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL zajednice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségi URL másolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենել Համայնքի URL-ն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin Tautan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia link Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティURLをコピー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL-ის დაკოპირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចម្លង URL សហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸುಮುದಾಯ URL ಅನ್ನು ನಕಲು ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 URL 복사" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ی لا Community هەڵبگرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa Community URL" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບເອີຢ໇ລໍ່ເອົາເອິ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopijuoti bendruomenės URL" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopēt kopienas URL" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај URL на Заедница" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL-г хуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin URL Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL ကို ကူးယူပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier fellesskapets nettadresse" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL प्रतिलिपि गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer Community URL" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier samfunns-URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani URL ya M'gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀ URL ਕਾਪੀ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiuj adres URL społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلطی او پای" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL da Comunidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL da Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiere adresă URL comunitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копировать ссылку сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj Community URL" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවේ ඒ.ස.නි. පිටපත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovať adresu URL komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjo URL-në e bashkësisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај URL заједнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL zajednice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera community-URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili Community URL" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக URLஐ நகலெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీ URL కాపీ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Community URL" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk URL'sini Kopyala" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копіювати URL спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community URL کاپی کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat URL sini nusxalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép URL cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa i-URL yoLuntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制社群链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "複製社群連結" + } + } + } + }, + "confirm" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevestig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تأكيد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təsdiqlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пацвердзіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потвърдете" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নিশ্চিত করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadarnhau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekræft" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestätigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιβεβαίωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirm" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinnita" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berretsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تأیید کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vahvista" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpirmahin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tabbatar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुष्टि करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megerősítés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաստատել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conferma" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "確認する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დადასტურება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចាក់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದೃಢೀಕರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "확인" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دووپەنجێ کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kkiriza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patvirtinkite" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apstiprināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврди" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Баталгаажуулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sahkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အတည်ပြုပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekreft" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirm" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevestigen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekreft" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsimikizani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੁਸ਼ਟੀ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potwierdź" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подтвердить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තහවුරු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrdi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврди" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekräfta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thibitisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உறுதிசெய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిర్ధారించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยืนยัน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onayla" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підтвердити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدیق کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tasdiqlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xác nhận" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qinisekisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "确认" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "確認" + } + } + } + }, + "contactContacts" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جهات الاتصال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Кантакты" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কন্টাক্টস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cysylltiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επαφές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مخاطبین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteystiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacts" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lambobin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנשי קשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संपर्क" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կոնտակտներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contatti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კონტაქტები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ជីទំនាក់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutuukiriza" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລິລາມີ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adresatai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцагчид" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဆက်အသွယ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पर्कहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kudziwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਪਰਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakty" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contatos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контакты" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබඳතා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stiki" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контакти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mawasiliano" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடர்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాంటాక్ట్స్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้ติดต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişiler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контакти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liên hệ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qhagamshelana" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "聯絡人" + } + } + } + }, + "contactDelete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Kontak" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف جهة اتصال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktı sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطہ حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць кантакт" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий контакт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "যোগাযোগটি মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborrar contacte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat kontakt" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Cyswllt" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet kontakt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakt löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή επαφής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Contact" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi kontakton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar contacto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar Contacto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kontakt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktua Ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف مخاطب" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista yhteystieto" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "ALisin ang Contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer le contact" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar contacto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Hulɗa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק איש קשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संपर्क हटाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši kontakt" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Névjegy törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել կոնտակտը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Kontak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina contatto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先を削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კონტაქტის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបទំនាក់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕವನ್ನು ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처 삭제하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی پەیوەندیکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Omukwano" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບການຕິດຕໍ່" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti kontaktą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst kontaktu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши контакт" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Контактыг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam Kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဆက်အသွယ် ဖျက်ရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slette kontakt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पर्क मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder contactpersoon" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett kontakt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Kulankhulana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਪਰਸ਼ ਕਰਨ ਵਾਲਾ ਹਟਾਉ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń kontakt" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اړیکه ړنګول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir contato" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar Contacto" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge contact" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить контакт" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši kontakt" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්බන්ධතා මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať kontakt" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši stik" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi kontaktin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши контакт" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrišite kontakt" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera kontakt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Mwasiliani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடர்பை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరిచయాన్ని తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบผู้ติดต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişiyi Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити контакт" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطہ حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktni o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xoá liên hệ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula Qhagamshelwano" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除聯絡人" + } + } + } + }, + "contactDeleteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {name} van jou kontakte verwyder? Nuwe boodskappe van {name} sal as ‘n boodskapversoek arriveer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح {name}؟ من قائمة جهات إتصالك؟ ستصل أي رسائل جديدة من {name} كطلب رسالة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini silmək istədiyinizə əminsiniz? {name} göndərən yeni mesajlar mesaj tələbi olaraq gələcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {name} کو آپ کی رابطے سے حذف کرنا چاہتے ہیں؟ {name} سے نئے پیغامات ایک پیغام کی درخواست کے طور پر آئیں گے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць {name}? з вашых кантактаў? Новыя паведамленні ад {name} будуць прыходзіць як запыт паведамлення." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изтриете {name} от контактите си? Новите съобщения от {name} ще се получат като заявки за съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি কন্টাক্ট তালিকা থেকে {name} কে মুছে ফেলতে চান? {name} থেকে নতুন বার্তাগুলি ম্যাসেজ রিকোয়েস্ট হিসেবে আসবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir {name} dels vostres contactes? Els nous missatges de {name} us arribaran com a sol·licitud de missatge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat {name} ze svých kontaktů? Nové zprávy od {name} budou doručeny jako žádosti o komunikaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu {name} o'ch cysylltiadau? Bydd negeseuon newydd gan {name} yn cyrraedd fel cais neges." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette {name} fra dine kontakter? Nye beskeder fra {name} vil komme som en beskedanmodning." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {name} aus deinen Kontakten löschen möchtest? Neue Nachrichten von {name} werden als Nachrichtenanfrage eintreffen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε το {name} από τις επαφές σας; Νέα μηνύματα από {name} θα φτάσουν ως αίτημα μηνύματος." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete {name} from your contacts? New messages from {name} will arrive as a message request." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi {name} el viaj kontaktoj? Novaj mesaĝoj de {name} alvenos kiel mesaĝpeto." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar a {name} de tus contactos? Los nuevos mensajes de {name} llegarán como una solicitud de mensaje." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de querer eliminar a {name} de tus contactos? Los nuevos mensajes de {name} aparecerán como una solicitud de mensaje." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kontakeist kustutada {name}? {name}'lt uued sõnumid jõuavad teieni sõnumitaotlusena." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {name} zure kontaktuetatik ezabatu nahi duzula? {name} erabiltzailearen mezu berriak mezu eskaera bezala iritsiko dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید {name} را از مخاطبین خود حذف کنید؟ پیام‌های جدید از {name} به صورت درخواست پیام دریافت خواهند شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa yhteystiedon {name}? Uudet viestit käyttäjältä {name} saapuvat viestipyyntönä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin si {name} mula sa iyong mga contact? Ang mga bagong mensahe mula sa {name} ay darating bilang isang kahilingan sa mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr·e de vouloir supprimer {name} de vos contacts? Les nouveaux messages de {name} arriveront sous forme de demande de message." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar a {name} dos teus contactos? As novas mensaxes de {name} chegarán como solicitude de mensaxe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka goge {name} daga jerin suna? Sabbin saƙonni daga {name} za su iso a matsayin roƙon saƙo." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את {name} מאנשי הקשר שלך? הודעות חדשות מ-{name} יגיעו כבקשת הודעה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने संपर्कों से {name} को हटाना चाहते हैं? {name} से आने वाले नए संदेश एक संदेश अनुरोध के रूप में आएंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite obrisati {name} iz svojih kontakata? Nove poruke od {name} će dolaziti kao zahtjev za porukom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd {name} a névjegyeid közül? {name} új üzenetei üzenetkérelemként fognak megérkezni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել {name}-ը ձեր կոնտակտներից: Նոր հաղորդագրությունները {name}-ից կձևակերպվի որպես հաղորդագրության հարցում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus {name}? dari kontak Anda? Pesan baru dari {name} akan tiba sebagai permintaan pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare {name} dai tuoi contatti? I nuovi messaggi da {name} arriveranno come una richiesta di messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に連絡先から{name}を削除しますか?{name}からの新しいメッセージはメッセージリクエストとして到着します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {name}-ის წაშლა თქვენი კონტაქტებიდან? ახალი შეტყობინებები {name}-ისგან მოდის როგორც შეტყობინების მოთხოვნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់លុប {name} ពីទំនាក់ទំនងរបស់អ្នក? សារថ្មីពី {name} នឹងមកដល់ជាសំណើសារ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಖಚಿತವಾಗಿ {name} ಅದನ್ನು ನಿಮ್ಮ ಸಂಪರ್ಕಗಳಿಂದ ಅಳಿಸಲು ಬಯಸುವಿರಾ? {name} ಅವರಿಂದ ಹಾವು ಸಂದೇಶಗಳು ಸಂದೇಶ ವಿನಂತಿಯಾಗಿ ಬರುತ್ತವೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete {name} from your contacts? New messages from {name} will arrive as a message request." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لەسڕینەوەی {name} له پەیوەندەکانی؟ پەیامە نوێەکان له {name} بەهۆی داواکاری نامە پەیوەندی دەپێون." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula {name} okuva ku mikutu jo? Obubaka obupya okuvva {name} buggwe mu okusaba okw'obubaka." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບ {name} ອອກຈາກລາຍຊື່ຕິດຕໍ່ຂອງທ່ານ? ຂໍ້ຄວາມໃໝ່ຈາກ {name} ຈະມາຮອດເປັນຄໍາຂໍຂໍ້ຄວາມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti {name} iš savo kontaktų? Naujos žinutės nuo {name}atvyks kaip žinutės užklausa." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst {name} no saviem kontaktiem? Jauni ziņojumi no {name} parādīsies kā ziņojumu pieprasījumi." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го избришете {name} од вашите контакти? Новите пораки од {name} ќе пристигнат како барања за порака." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} -г харилцагчаасаа устгахыг хүсэж байгаадаа итгэлтэй байна уу? {name} -аас ирэх шинэ мессежүүд нь мессеж хүсэлт байдлаар ирнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu memadamkan {name} daripada kenalan anda? Mesej baharu daripada {name} akan tiba sebagai permintaan mesej." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ကွန်ရက်တယ်လီဖုန်းဘွန်းမှ {name} ကိုဖျက်လိုသည်မှာသေချာပါသလား? {name} မှစကားပေးစာအသစ်များသည် စကားပေးစာတောင်းသွင်းပေးသည်အဖြစ်ရောက်ရှိမည်ဖြစ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette {name} fra dine kontakter? Nye meldinger fra {name} vil komme som en meldingsforespørsel." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई {name} लाई तपाईका सम्पर्कहरूबाट मेटाउन चाहनुहुन्छ? {name} बाटका नयाँ सन्देशहरू सन्देश अनुरोधको रूपमा आइपुग्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {name} uit uw contacten wilt verwijderen? Nieuwe berichten van {name} komen binnen als een berichtverzoek." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette {name} frå kontaktene dine? Nye meldinger frå {name} vil komme som ei meldingsforespørsel." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kufufuta {name} kuchokera pazolumikizanazo? Mauthenga atsopano kuchokera kwa {name} adzafika ngati pempho lauthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਸੰਪਰਕਾਂ ਤੋਂ {name} ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? {name} ਤੋਂ ਨਵੇਂ ਸੁਨੇਹੇ ਸੁਨੇਹਾ ਬੇਨਤੀਆਂ ਵਜੋਂ ਪਹੁੰਚਣਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć z konktaktów użytkownika {name}? Nowe wiadomości od użytkownika {name} będą pojawiać się jako prośby o wiadomość." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې {name} له خپلو اړیکو څخه حذفول غواړې؟ نوي پیغامونه له {name} به د پیغام غوښتنې په توګه راشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar {name} dos seus contatos? Novas mensagens de {name} chegarão como uma solicitação de mensagem." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende eliminar {name} dos seus contactos? Novas mensagens de {name} chegarão como um pedido de mensagem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur că vrei să ștergi pe {name} din contactele tale? Mesajele noi de la {name} vor ajunge ca o solicitare de mesaj." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить {name} из ваших контактов? Новые сообщения от {name} будут поступать как запросы сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati {name} iz svojih kontakata? Nove poruke od {name} će stići kao zahtjev za poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඔබේ සබඳතා ලැයිස්තුව වන {name} සමග ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද? නව පණිවිඩ {name} දි ගනු ඇත පණිවිඩ ඉල්ලීමක් ලෙස." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Určite chcete vymazať {name} zo svojich kontaktov? Nové správy od {name} prídu ako žiadosť o správu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati {name} iz vaših stikov? Nova sporočila od {name} bodo prispela kot zahteva za sporočilo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini {name} nga kontaktet tuaja? Mesazhet e reja nga {name} do të vijnë si kërkesë për mesazh." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете {name} из својих контаката? Нове поруке од {name} ће доћи као захтев за поруке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da obrišete {name}? iz vaših kontakata? Nove poruke od {name} će stići kao zahtev za poruku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera {name} från dina kontakter? Nya meddelanden från {name} kommer att anlända som en meddelandeförfrågan." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta {name} kutoka kwa mawasiliano yako? Jumbe mpya kutoka {name} zitawasili kama maombi ya jumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக உங்கள் தொடர்புகளை {name} நீக்க விரும்புகிறீர்களா? புதிய தகவல்கள் {name} என வரப்போகும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} ని మీ పరిచయాల నుండి తొలగించాలనుకుంటున్నారా? {name} నుండి కొత్త సందేశాలు సందేశ అభ్యర్థన రూపంలో వస్తాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบ {name}? จากผู้ติดต่อของคุณ ข้อความใหม่จาก {name} จะมาในลักษณะคำร้องขอข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}'i kişilerinizden silmek istediğinizden emin misiniz? {name}'den gelen yeni mesajlar mesaj isteği olarak gelecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити {name} з ваших контактів? Нові повідомлення від {name} будуть приходити як запит на повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} کو اپنے رابطوں سے حذف کرنا چاہتے ہیں؟ نئے میسیجز {name} سے میسیج درخواست کے طور پر آئیں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} ni kontaktlaringizdan o'chirmoqchimisiz? Yangi xabarlar {name} dan xabar so'rovi sifatida keladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa {name} khỏi danh bạ của bạn? Tin nhắn mới từ {name} sẽ đến dưới dạng yêu cầu tin nhắn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima {name} kwiinkcukacha zakho? Imiyalezo emitsha evela {name} iya kuza njengezicelo zemiyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除联系人{name}吗?来自{name}的新消息将被视为消息请求。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要從聯絡人中刪除 {name} 嗎?刪除後來自 {name} 的新訊息將變為訊息請求。" + } + } + } + }, + "contactNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het nog nie enige kontakte nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا تملك اي جهات اتصال حتى الآن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hələ heç bir kontaktınız yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما ناہی پڑ نڑنگین مابتینگ پیش دادیں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы пакуль не маеце кантактаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Все още нямате контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার কোনো কনট্যাক্ট নেই এখনো" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Encara no teniu cap contacte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatím nemáte žádné kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych unrhyw gysylltiadau eto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen kontakter endnu" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast noch keine Kontakte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε επαφές ακόμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't have any contacts yet" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ankoraŭ ne havas kontaktpersonojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes ningún contacto todavía" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aún no tienes contactos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil pole ühtegi kontakti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu kontakturik oraindik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما هنوز هیچ مخاطبی ندارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole vielä yhteystietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala ka pang anumang contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez pas encore de contacts" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aínda non tes ningún contacto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da lambobin sadarwa a yanzu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עדיין אין לך אנשי קשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अभी तक आपके पास कोई संपर्क नहीं हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemate kontakata" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Még nincsenek kontaktjaid" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք դեռևս ոչ մի կոնտակտ չունեք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum memiliki kontak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai ancora nessun contatto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "まだ連絡先がありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ჯერ არ გაქვთ კონტაქტები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនទាន់មានទំនាក់ទំនងណាមួយនៅឡើយទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಸಂಪರ್ಕಗಳನ್ನು ಹೊಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "아직 연락처가 없습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ هیچ پەیوەندیەکت نییە یەکەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolowooza na walala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kol kas neturite jokių adresatų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patreiz Tev nav neviena kontakta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сè уште немате контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд холбоо барих хүн байхгүй байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum mempunyai sebarang kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်တွင် အဆက်အသွယ်များ မရှိသေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen kontakter ennå" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग अहिलेसम्म कुनै सम्पर्कहरू छैनन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft nog geen contactpersonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga kontaktar enno" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simuli ndi mabwenzi patsogolo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ ਹਾਲੇ ਤੱਕ ਕੋਈ ਸੰਪਰਕ ਨਹੀਂ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz jeszcze żadnych kontaktów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو لا تر اوسه هیڅ اړیکه نلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você ainda não possui contatos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainda não tem contatos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Încă nu ai contacte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас еще нет контактов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemaš nijedan kontakt" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට තවම සම්බන්ධතා කිසිවක් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatiaľ nemáte žiadne kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimate še stikov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni ende ndonje kontakt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Још увек немате ниједан контакт" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemate nijedan kontakt" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga kontakter än" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna waasiliani wowote bado" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களிடம் எதுவும் தொடர்புகள் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఇప్పటికి ఎలాంటి కనెక్ట్‌లను కలిగి లేరు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณยังไม่มีผู้ติดต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Henüz herhangi bir kişi yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас ще немає жодних контактів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پاس ابھی تک کوئی رابطے نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda hali kontaktlar yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn chưa có danh bạ nào" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awunazo naziphi na iincoko okwangoku" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您还没有任何联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您尚未添加聯絡人" + } + } + } + }, + "contactSelect" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies Kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر اتصالات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktları seç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "روابط انتخاب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вылучыць кантакты" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কন্টাক্ট নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecciona contactes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrat kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewis Cysylltiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg Kontakter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte auswählen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλογή Επαφών" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elekti Kontaktpersonojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar contactos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar contactos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vali kontaktid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktuak Hautatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب مخاطبین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse yhteystiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piliin ang Mga Contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sélectionner des contacts" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar contactos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi Lambobin Sadarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר אנשי קשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कांटेक्ट चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi kontakte" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktok kiválasztása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրել Կոնտակտներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Kontak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleziona contatti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先を選択" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კონტაქტების მონიშვნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសទំនាក់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처 선택" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیکاران هەڵبژێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa Abakonti" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkti adresatus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlieties kontaktus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери Контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбоо барихуудыг сонгох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်သွယ်ရန်ကို ရွေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पर्कहरू छन्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacten selecteren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel kontakter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Contacts" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਪਰਕ ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz kontakty" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اړیکو انتخاب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar Contatos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar Contactos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selectare contacte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбрать контакты" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi kontakte" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්බන්ධතා තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Výber kontaktov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberi stike" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përzgjidhni Kontaktet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изабери контакте" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberite kontakte" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj Kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua Mawasiliano" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடர்புகளை தேர்ந்தெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరిచయాల ఎంపిక" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกผู้ติดต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişileri Seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрати контакти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطے منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktlarni tanlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn liên lạc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha abafowunelwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選取聯絡人" + } + } + } + }, + "contactUserDetails" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruikerbesonderhede" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفاصيل المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçi detalları" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کی تفصیلات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадзеныя аб карыстальніку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Детайли за потребителя" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইউজার বিস্তারিত" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalls de l'usuari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrobnosti uživatele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manylion Defnyddiwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruger Informationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktdetails ansehen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λεπτομέρειες Χρήστη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Details" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzanto-Detaloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalles de usuario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalles del usuario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasutaja andmed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzaile xehetasunak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جزئیات کاربر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjätiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalye ng User" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Détails de l'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalles do usuario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanin mai amfani" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרטי משתמש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता विवरण" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalji o korisniku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó adatai" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտատիրոջ տվյալներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rincian Pengguna" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dettagli utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーの詳細" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლის დეტალები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មានលម្អិតអ្នកប្រើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರ ವಿವರಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 정보 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ووردەکارییەکان بەکارهێنەر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebikwata ku Mukozesa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vartotojo informacija" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietotāja informācija" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Детали за корисникот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийн дэлгэрэнгүй мэдээлэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Butiran Pengguna" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူ၏ အသေးစိတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruker detaljer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता विवरण" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruikersgegevens" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brukaroplysningar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri Za Wogwiritsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਵੇਰਵਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szczegóły użytkownika" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارن توضیحات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalhes do Usuário" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalhes do Utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalii utilizator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сведения о пользователе" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalji korisnika" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක විස්තර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrobnosti o používateľovi" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrobnosti o uporabniku" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detajet e Përdoruesit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Детаљи корисника" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detalji korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa användardetaljer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maelezo ya Mtumiaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனர் விவரங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాడుకరి వివరాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายละเอียดผู้ใช้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı Detayları" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Деталі користувача" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کی تفصیلات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchi tafsilotlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi tiết của người dùng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iinkcukacha zoMsebenzisi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "用户详情" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用者詳細資料" + } + } + } + }, + "contentDescriptionCamera" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كاميرا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ক্যামেরা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Càmera" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κάμερα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaamera" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوربین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caméra" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cámara" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyamara" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מצלמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कैमरा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսախցիկ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotocamera" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "カメラ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კამერა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កាមេរ៉ា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕ್ಯಾಮರಾ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "카메라" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کامێرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກ້ອງຖ່າຍຮູບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камер" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကင်မရာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यामेरा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Camera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੈਮਰਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparat" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمره" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Câmera" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Câmara" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cameră" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කැමරා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotoaparat" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேமரா" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కెమెరా" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กล้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamera" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Камера" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیمرہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kameralar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máy ảnh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikhamera" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "相机" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "相機" + } + } + } + }, + "contentDescriptionChooseConversationType" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies 'n aksie om 'n gesprek te begin" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر إجراءً لبدء المحادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıq başlatmaq üçün bir fəaliyyət seçin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بات چیت شروع کرنے کے لئے ایک کارروائی منتخب کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абярыце дзеянне, каб пачаць размову" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете действие за започване на разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি কথোপকথন শুরু করতে একটি কর্ম নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trieu una acció per iniciar una conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvolte akci pro zahájení konverzace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch weithred i gychwyn sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg en handling for at starte en samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wähle eine Aktion, um eine Unterhaltung zu starten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλέξτε μια ενέργεια για να ξεκινήσετε μια συνομιλία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose an action to start a conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elektu agon ekkonversacii" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecciona una acción para iniciar una conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elija una acción para iniciar una conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valige tegevus, et alustada vestlust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose an action to start a conversation" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک اقدام برای شروع مکالمه انتخاب کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse toiminto aloittaaksesi keskustelun" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumili ng aksyon upang simulan ang isang pag-uusap" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choisissez une action pour démarrer une conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolla unha acción para comezar unha conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi aiki don fara tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר פעולה כדי להתחיל בשיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक संवादी शुरू करने के लिए एक क्रिया चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite akciju za pokretanje razgovora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válasszon egy műveletet a beszélgetés megkezdéséhez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խոսակցություն սկսելու համար ընտրեք գործողություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ketuk kontak untuk memulai percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli un'azione per iniziare una chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話を開始するアクションを選択してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეარჩიეთ მოქმედება საუბრების დასაწყებად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសសកម្មភាពមួយដើម្បីចាប់ផ្តើមការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ಒಂದು ಕ್ರಿಯೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화를 시작할 작업을 선택하세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لایەنی ناردن بۆ پێش تۆ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose an action to start a conversation" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເລືອກວາດທີ່ນ້ອຂອງການລືມການສະແດງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite veiksmą, norėdami pradėti pokalbį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlieties darbību, lai sāktu sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете акција за да започнете разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ярилцлага эхлүүлэхийн тулд үйлдэл сонгоно уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih tindakan untuk memulakan perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောမှု စတင်ရန် လုပ်ဆောင်ချက် ရွေးချယ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg en handling for å starte en samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी सुरु गर्न कार्य छान्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies een actie om een gesprek te beginnen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel ei handling for å starte ein samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose an action to start a conversation" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚਰਚਾ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਇੱਕ ਕਾਰਵਾਈ ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby rozpocząć rozmowę, wybierz akcję" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خبرو اترو پیل کولو لپاره یو عمل غوره کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha uma ação para iniciar uma conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha uma ação para começar uma conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alegeți o acțiune pentru a începe o conversație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберите действие для начала беседы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite akciju za početak razgovora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදයක් ආරම්භ කිරීමට කුමන ක්‍රියාවක් තෝරා ගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte akciu na začatie konverzácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberite dejanje za začetek pogovora" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjidhni një veprim për të filluar një bisedë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одаберите акцију за почетак конверзације" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite akciju za pokretanje razgovora" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj en åtgärd för att starta en konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua kitendo cha kuanza mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலை தொடங்குவது செயலாக தேர்வு செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణ ప్రారంభించడానికి ఒక చర్య ఎంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกการกระทำเพื่อเริ่มการสนทนาใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir sohbet başlatmak için bir eylem seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виберіть дію, щоб розпочати розмову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو شروع کرنے کے لئے ایک عمل کا انتخاب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni boshlash uchun harakat tanlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn một hành động để bắt đầu một cuộc trò chuyện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha isenzo sokwazisa incoko" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择一个方式开始会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選擇一個操作以開始對話" + } + } + } + }, + "contentDescriptionMediaMessage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media Boodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسالة وسائط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media mesajı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media message" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медыя паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медийно съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মিডিয়া বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatge multimèdia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimediální zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges cyfryngau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediebesked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht mit Medieninhalten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μήνυμα πολυμέσων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭdvida mesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje multimedia" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje multimedia" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meediasõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia-mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام رسانه‌ای" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediaviesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaheng media" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message multimédia" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxe multimedia" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙon Kafofin watsa labarai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעת מדיה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मीडिया संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medijska poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Médiaüzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մեդիա հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan media" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio multimediale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メディアメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მედია შეტყობინება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារមេឌា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೀಡಿಯಾ ಸಂದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "미디어 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیام میدیا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bukwaatiddwa bwa media" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medija žinutė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multivides ziņa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порака со медиум" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиа мессеж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej Media" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မီဒီယာ မက်ဆေ့ဂျ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediebeskjed" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिडिया सन्देश" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediabericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediemelding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media chikalata" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੀਡੀਆ ਸੁਨੇਹਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość multimedialna" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "میډیا پیغام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem multimídia" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem multimédia" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj media" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиа-сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාධ්යය පණිවිඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimediálna správa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedijsko sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazh media" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мултимедијална порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medijska poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediameddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe wa vyombo vya habari" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீடியா செய்தி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీడియా సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความสื่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medya iletisi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медіа повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میڈیا پیغام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media xabar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn đa phương tiện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umongo wobugqithi beMidhiya" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "媒体消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "媒體訊息" + } + } + } + }, + "contentDescriptionMessageComposition" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap samestelling" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تكوين الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj tərtib et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message composition" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напісанне паведамлення" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създаване на съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা রচনা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Composició del missatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sestavení zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfansoddiad neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskedsammensætning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht verfassen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σύνθεση μηνύματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message composition" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝa redakto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redactar mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redactar mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi koostamine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu-osaketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوشتن پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin kirjoitus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komposisyon ng mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rédaction d’un message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redacción da mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rubuta Saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חיבור הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश संरचना" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sastav poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet írása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության գրառում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isi pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Composizione messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ作成" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების შედგენილობა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការបង្កើតសារថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಸಂಯೋಜನೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 작성" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیام درووست بە کردنی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusomesako obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės rašymas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņu sastādīšana" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Составување на порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж зохиомж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komposisi Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက္ကမ်း (composition)" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsskriving" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश संरचना" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtsamenstelling" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsskriving" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata kufotokozera mauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਰਚਨਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Treść wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام ترتیب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Composição de mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Composição da mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compunere mesaj" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Написание сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sastavljanje poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ සංයුතිය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Písanie správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sestava sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hartim mesazhi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Састављање поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sastavljanje poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa meddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utungaji wa ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி உருவாக்குதல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాన్ని కూర్పుము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสร้างข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti oluştur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Написання повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی ترکیب" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar tarkibi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soạn tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukwakhiwa komyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息编辑框" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "編輯訊息" + } + } + } + }, + "contentDescriptionQuoteThumbnail" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiekie van prentjie uit aangehaalde boodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الصورة المصغرة للصورة من الرسالة المقتبسة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sitat gətirilmiş təsvirdən kiçik şəkil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویرین کم پیغامء وھیل چھیٹگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мініяцюра выявы з цытуемага паведамлення" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Миниатюра изображения из цитируемого сообщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail of image from quoted message" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura d'una imatge d'un missatge citat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhled obrázku z citované zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bawdlun o ddelwedd o neges wedi'i dyfynnu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatur af billede fra citeret besked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniaturbild aus zitierter Nachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μικρογραφία της εικόνας από το μήνυμα σε παράθεση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail of image from quoted message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildominiaturo el citita mesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura de una foto como cita de un mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura de una foto como cita de un mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsiteeritud sõnumist pärit pildi pisipilt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esan mezuen irudiaren miniatura" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش‌نمایش تصویر از پیام نقل قول شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lainatun kuvaviestin pikkukuva" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail ng imahe mula sa quoted na mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagette du message cité" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura da imaxe da mensaxe citada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙananan hoton hoto daga saƙon da aka faɗi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תמונה ממוזערת מהודעה מצוטטת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उद्धृत संदेश से छवि का थंबनेल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sličica slike iz citirane poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az idézett üzenetben megjelenített fotó előnézeti képe" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Քաղված հաղորդագրությունից պատկերի մանրապատկերը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuplikan gambar dari pesan yang dikutip" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anteprima dell'immagine dal messaggio citato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "引用されたメッセージから画像のサムネール" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სურათის მინიატურა ციტირებული გზავნილიდან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រូបភាពតូចៗនៃរូបភាពពីសារដែលបានដកស្រង់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಲ್ಲೇಖಿತ ಸಂದೇಶದ ಚಿತ್ರನಾಂದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인용된 메시지의 축소된 이미지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەڕاگرەوەی وێنەیەک لە پەیامی بڵاوکراوەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekasero ka ekifaananyi okuva ku bubaka obulondeddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paveikslo iš cituotos žinutės miniatiūra" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail of image from quoted message" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сликичка од слика од цитирана порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ишлэл бүхий зургаас гаргасан зургийн жижиг зураг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imej kecil untuk mesej yang dipetik" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟောင်းရဲ့မက်ဆေ့ချ်မှ ပုံလေးများ၏ သေးငယ်သောပုံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatyrbilde i sitert melding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उद्धृत सन्देशको छवि को थम्बनेल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatuur van afbeelding uit aangehaald bericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatyrbilde av bilde frå sitert beskjed" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzi cha uthenga wokambidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕQuote ਬਣ ਲਈਾਰੀ ਛਵੀ ਦੀ ਵੀੱਕੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura obrazu z cytowanej wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د حواله شوي پیغام د عکس بدنۍ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura da imagem na citação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatura da imagem da mensagem citada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pictograma imaginii din mesajul citat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Миниатюра изображения из цитируемого сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sličica slike iz citirane poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපුටාගත් පණිවිඩයේ රූපයේ සිඟිති රුව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhľad obrázku z citovanej správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predogled slike citiranega sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniaturë e figurës nga mesazhi i cituar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед слике из поруке на коју се цитира" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sličica slike iz citirane poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miniatyr av bild för citerat meddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail ya picha kutoka kwa ujumbe ulionukuliwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மேற்கோளிடப்பட்ட செய்தியிலிருந்து படத்தின் சிறு படம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొటేషన్లలోని సందేశపు చిత్రపు ఉపచిత్రం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปย่อจากข้อความที่อ้างถึง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alıntılanmış iletideki görüntünün önizlemesi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мініатюра зображення цитованого повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اقتباس پیغام کی تصویر کا تھمب نیل" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanishizi rasmchasi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ảnh xem trước của tin nhắn trích dẫn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail of image from quoted message" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "引用消息图片的缩略图" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "引用訊息的縮圖" + } + } + } + }, + "contentDescriptionStartConversation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skep 'n gesprek met 'n nuwe kontak" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء محادثة مع جهة اتصال جديدة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni kontakt ilə danışıq yarat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نویں رابطے سیت گپ شروع کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварыць гутарку з новым кантактам" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създайте разговор с нов контакт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি নতুন কনট্যাক্টের সাথে একটি কথোপকথন তৈরি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear una conversa amb un nou contacte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvořit konverzaci s novým kontaktem" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creu sgwrs gyda chysylltiad newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opret en samtale med en ny kontakt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erstelle eine Unterhaltung mit einem neuen Kontakt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργία συνομιλίας με μια νέα επαφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create a conversation with a new contact" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krei konversacion kun nova kontakto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear una conversación con un nuevo contacto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear una conversación con un nuevo contacto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loo vestlus uue kontaktiga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talde berria sortu kontaktu batekin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک گفتگو با یک مخاطب جدید ایجاد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luo keskustelu uuden yhteystiedon kanssa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lumikha ng usapan sa bagong contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Créer une conversation avec un nouveau contact" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear unha conversa cun novo contacto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙiri tattaunawa da sabon lamba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צור שיחה עם איש קשר חדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नए संपर्क के साथ बातचीत बनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvori razgovor s novim kontaktom" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés indítása új kontakttal" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ստեղծեք զրույց նոր կոնտակտի հետ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat percakapan dengan kontak baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inizia una chat con un nuovo contatto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しい連絡先と会話を作成する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეაქმნით საუბარი ახალი კონტაქტისგან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្កើតការសន្ទនាជាមួយទំនាក់ទំនងថ្មីមួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಸಂಪರ್ಕದಿಂದ ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 연락처와 대화 만들기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتوگۆ بەرەپێ بکە بە پەیوەندێکی نوێ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika kukubaganya ebirowooza ne kyenkumba kifuuke ekipya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເກີນໄປຫພະໃຫ່ຂອງຍຽງຂໍ້ມູນແປໜຶ້າ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradėti pokalbį su nauju kontaktu" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveidojiet sarunu ar jaunu kontaktpersonu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај разговор со нов контакт" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ харилцагчтай харилцан яриа үүсгэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mula perbualan dengan kenalan baharu" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဆက်အသွယ် အသစ်နှင့် စကားပြောဆိုမှု တစ်ခု ဖန်တီးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett en samtale med en ny kontakt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नया संपर्कसंग वार्ता सुरु गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begin een gesprek met een nieuw contact" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett ei samtale med ein ny kontakt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangani kucheza ndi wolumikizana watsopano" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੇਂ ਸੰਪਰਕ ਨਾਲ ਗੱਲਬਾਤ ਬਣਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utwórz rozmowę z nowym kontaktem" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب جوړ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar uma conversa com um novo contato" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar uma conversa com um novo contacto" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creează o conversație cu un nou contact" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создать беседу с новым контактом" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni razgovor s novim kontaktom" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව සම්බන්ධතාවක් වෙනුවෙන් සංවාදයක් සාදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvoriť konverzáciu s novým kontaktom" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvarite pogovor z novim stikom" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filloni një bisedë me një kontakt të ri" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај преписку са новим контактом" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj konverzaciju sa novim kontaktom" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa en konversation med en ny kontakt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unda mazungumzo na mawasiliano mapya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய தொடர்புடன் உரையாடலை துவங்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త కాంటాక్ట్ తో సంభాషణ ప్రారంభించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create a conversation with a new contact" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir kişiyle görüşme oluşturma" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створити розмову з новим контактом" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نیا رابطہ کے ساتھ ایک مکالمہ بنائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi kontakt bilan suhbat yarating" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo một cuộc trò chuyện với liên hệ mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qala incoko kunye noqhagamshelwano olutsha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "与新联系人开始会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "與新聯絡人開始對話" + } + } + } + }, + "conversationsAddedToHome" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bygevoeg by tuisskerm" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت الإضافة للشاشة الرئيسية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əsas ekrana əlavə edildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "موبایل گندِ ایریں شود" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадана на галоўны экран" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавено на работния плот" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "হোম স্ক্রিনে যোগ করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha afegit a la pantalla d'inici." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přidáno na plochu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ychwanegwyd at y sgrin gartref" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Føjet til startskærm" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Startbildschirm hinzugefügt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προστέθηκε στην αρχική οθόνη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Added to home screen" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aldonita al la ĉefekrano" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agregado a la pantalla de inicio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agregado a la pantalla de inicio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avakuvale lisatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etxeko pantailara gehituta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به صفحهٔ اصلی اضافه شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisätty kotiruudulle" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naidagdag sa home screen" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouté à l’écran d’accueil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engadido á pantalla de inicio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An ƙara zuwa allon gida" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התווסף אל מסך הבית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "होम स्क्रीन में जोड़ा गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodano na početni zaslon" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parancsikon hozzáadva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելացված է գլխավոր էկրանին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditambahkan ke layar beranda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiunto alla schermata principale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ホーム画面に追加しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მთავარ ეკრანზე დამატებულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានបន្ថែមទៅអេក្រង់ដើម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಖಪುಟಕ್ಕೆ ಸೇರಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "홈 화면에 추가됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ژوورەوی پەیوەندیکردن زیادکرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiyongezeddwako ku nninga yange" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເພີ່ມໄປໃນເນື້ອເຫຼ່າເພື່ອ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridėta į pradžios ekraną" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienots sākuma ekrānam" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додадено на почетниот екран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эхлэх дэлгэцэнд нэмсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditambah ke skrin utama" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟုမ်းစကရင်ထဲသို့ ထည့်လိုက်ပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagt til på startskjermen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "घर स्क्रिनमा थपियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan thuisscherm toegevoegd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagt til heimeskjermen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oonjezeredwa ku chinsalu chachikulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੱਖ ਸਕ੍ਰੀਨ 'ਤੇ ਸ਼ਾਮਿਲ ਕੀਤਾ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodano do ekranu głównego" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کور پردې ته اضافه شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionada à tela inicial" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionado ao ecrã inicial" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adăugat pe ecranul principal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавлено на главный экран" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodano na početni ekran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුල් තිරයට එක් කරන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridané na plochu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodano na domači zaslon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U shtua te skena e kreut" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додато на почетни екран" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodato na početni ekran" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillagd på Hemskärmen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeongezwa kwenye skiirini ya mwanzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முகப்பு திரையில் சேர்க்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "హోమ్ స్క్రీన్కు జోడించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพิ่มไปยังหน้าจอหลักแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana ekrana eklendi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додано до домашнього екрана" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہوم اسکرین میں شامل کر دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asosiy ekranga qo'shildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã thêm vào màn hình chính" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikongeze kwiscreen sasekhaya" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已添加到主屏幕" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已新增至主畫面" + } + } + } + }, + "conversationsAddToHome" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voeg by tuisskerm" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أضِف إلى الشاشة الرئيسية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əsas ekrana əlavə et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "موبایل گند کسرہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадаць на галоўны экран" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавяне на работния плот" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add to home screen" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afegeix a la pantalla d'inici" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přidat na plochu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ychwanegu at y sgrin gartref" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Føj til startskærm" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Startbildschirm hinzufügen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσθήκη στην αρχική οθόνη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add to home screen" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aldoni al la ĉefekrano" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir a la pantalla de inicio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir a la pantalla de inicio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisa avakuvale" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gehitu etxeko pantailara" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "افزودن به صفحه اصلی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisää kotiruudulle" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idagdag sa home screen" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouter à l’écran d’accueil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engadir á pantalla de inicio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙara zuwa allon gida" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הוסף אל מסך הבית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "होम स्क्रीन में शामिल करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj na početni zaslon" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parancsikon hozzáadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելացնել Հիմնական էկրանին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambahkan ke layar beranda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiungi alla schermata principale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ホーム画面に追加する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მთავარ ეკრანზე დამატება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បន្ថែមទៅអេក្រង់ដើម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಖಪುಟಕ್ಕೆ ಸೇರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "홈 화면에 추가" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ژوورەوی پەیوەندیکردن زیاد بکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongeza ku nninga nalyo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເພີ່ມເນື້ອເຫຼ່າເຊື່ອ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridėti į pradžios ekraną" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienot sākuma ekrānam" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додади на почетниот екран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эхлэх дэлгэцэнд нэмэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah ke skrin utama" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပင်မ စခရင်သို့ ထည့်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til på startskjermen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "घर स्क्रिनमा थप्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan thuisscherm toevoegen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til heimeskjermen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjezerani ku chinsalu chachikulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੱਖ اسڪਰੀਨ ਤੇ ਸ਼ਾਮਿਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj do ekranu głównego" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کور پردې ته اضافه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar a tela inicial" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar ao ecrã inicial" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adaugă pe ecranul principal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавить на главный экран" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj na početni ekran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුල් තිරයට එකතු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridať na plochu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj na domači zaslon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shtoje te skena e kreut" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај на почетни екран" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj na početni ekran" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lägg till på hemskärmen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeza kwenye skrini ya nyumbani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முகப்பு திரையில் சேர்க்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "హోమ్ స్క్రీన్కు జోడించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพิ่มไปยังหน้าจอหลัก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana ekrana ekle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати до домашнього екрану" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہوم اسکرین میں شامل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asosiy ekranga qo'shish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thêm vào màn hình chính" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongeza kwiscreen sasekhaya" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "添加到主屏幕" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "新增至主畫面" + } + } + } + }, + "conversationsAudioMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oudioboodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل صوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو پیامات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўдыяпаведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অডিও Messages" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges d'àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvukové zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Sain" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lydmeddelelser" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio-Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ηχητικά Μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voĉaj mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes de audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes de audio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helisõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام‌های صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääniviestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Mensaheng Audio" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages audio" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes de audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonnin Sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות שמע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvučne poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangüzenetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Աուդիո հաղորդագրություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio vocale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვანი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារជាសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامەکانی دەنگی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Messages" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສນວາປາ ຄວາມສາມາດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garso įrašai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaņas ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио Пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио зурвасууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej Audio" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံမက်ဆေ့ခ်ျများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lydmeldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अडियो सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audioberichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lydmeldinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mauthenga Amamawa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਡੀਓ ਸੁਨੇਹੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomości audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Messages" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens de áudio" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens de Áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудиосообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හඬ පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasové správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvočna sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhe audio" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звучне поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljudmeddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe za Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேட்பொலி தகவல்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli Mesajlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудіоповідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Messages" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli Xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo ye-Audio" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語音訊息" + } + } + } + }, + "conversationsAutoplayAudioMessage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speel Oudio Boodskappe Outomaties" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التشغيل التلقائي للرسائل الصوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli mesajları avto-oxut" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو پیغامات خودکار پلے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтапрайграванне аўдыёпаведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично пускане на гласови съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্বয়ংক্রিয়ভাবে অডিও বার্তাগুলি চালুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducció automàtica de missatges d'àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky přehrát zvukové zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autochwarae Negeseuon Sain" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk afspilning af lydmeddelelser" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio-Nachrichten automatisch abspielen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη Αναπαραγωγή Ηχητικών Μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay Audio Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate Ludi Voĉajn Mesaĝojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automáticamente los mensajes de audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automáticamente los mensajes de audio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helisõnumite autom. esitamine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay Audio Messages" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پخش خودکار پیام‌های صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toista ääniviestit automaattisesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong i-play ang mga Mensaheng Audio" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lire automatiquement les messages audio" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automaticamente as mensaxes de audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tada Saƙonnin Sauti Kai tsaye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הפעלה אוטומטית של הודעות קוליות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो संदेश ऑटोप्ले करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatska reprodukcija audio poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangüzenetek automatikus lejátszása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Աուդիո հաղորդագրությունների ավտոմատ նվագարկում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putar Otomatis Pesan Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riproduzione automatica dei messaggi vocali" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声メッセージの自動再生" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატური ხმოვანი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាក់សារជាសំឡេងដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂ ಆಡಿಯೋ ಸಂದೇಶಗಳ ಆತೋ ಪ್ಲೇ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 메시지 자동재생" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامە دەنگەكاني خۆکار چالاک بکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay Audio Messages" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເປີດຄວາມຄິດໃໝ່ອັດຕະໂນມັດໃນການຕອບໂຕ້ວາດສອງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai leisti garso žinutes" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski atskaņot audio ziņas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматско пуштање на аудио пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио зурвасуудыг автоматаар тоглуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Main Auto Mesej Audio" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံမက်ဆေ့ခ်ျများ အလိုအလျောက်ဖွင့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autostart lydmeldinger automatisk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वतः प्ले अडियो सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audioberichten automatisch afspelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk avspilling av lydmeldinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay Audio Messages" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਟੋਪਲੇ ਆਡੀਓ ਸੁਨੇਹੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne odtwarzanie wiadomości audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اتوماتیک آډیو پیغامونه پلی کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproduzir mensagens de áudio automaticamente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproduzir automaticamente mensagens de áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redare automată mesaje audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автовоспроизведение аудиосообщений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatska reprodukcija audio poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හඬ පණිවිඩ ස්වයං වාදනය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky prehrať zvukové správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno predvajaj zvočna sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprodho automatikisht mesazhet audio" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматски пусти звучне поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni automatsko reprodukovanje audio poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spela automatiskt upp ljudmeddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chezesha Moja kwa Moja Ujumbe wa Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானாக ஒலிமுறை செய்திகளை இயங்கவிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో సందేశాలను ఆటోప్లే చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เล่นอัตโนมัติข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli Mesajları Otomatik Oynat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автовідтворення аудіоповідомлень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو پیغامات آٹوپلے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli xabarlarni avtomatik ravishda ijro etish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động phát Tin nhắn Âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dlala ngokuzenzekelayo imiyalezo eseAudiyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动播放语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動播放語音訊息" + } + } + } + }, + "conversationsAutoplayAudioMessageDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speel gevolglik gestuurde oudio-boodskappe outomaties af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التشغيل المتتابع للرسائل الصوتية المرسلة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ardıcıl göndərilən səsli mesajları avto-oxut" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسلسل بھیجے گئے آڈیو پیغامات خودکار طور پر چلائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтапрайграванне паслядоўных аўдыёпаведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично пускане на последователно изпратени гласови съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পরপর পাঠানো অডিও বার্তাগুলি স্বয়ংক্রিয়ভাবে চালানো হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproduïu automàticament missatges d'àudio consecutius" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky přehrát po sobě následující zvukové zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autochwarae negeseuon sain a anfonwyd yn olynol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afspil automatisk fortløbende sendte lyd-beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio-Nachrichten automatisch nacheinander abspielen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη αναπαραγωγή διαδοχικών ηχητικών μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay consecutively sent audio messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate ludi sinsekve senditajn voĉajn mesaĝojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automáticamente mensajes de audio enviados de manera consecutiva." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automáticamente mensajes de audio consecutivos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järjestikuste helisõnumite autom. esitamine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay consecutively sent audio messages" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پخش خودکار پیام‌های صوتی پشت‌سرهم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toista peräkkäisesti lähetetyt ääniviestit automaattisesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong i-play ang mga sunud-sunod na mensaheng audio" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lire automatiquement les messages audio envoyés consécutivement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproducir automaticamente as mensaxes de audio enviadas consecutivamente" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tada saƙonnin sauti da aka aika jere-jere kai tsaye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הפעלה אוטומטית של הודעות קוליות שנשלחות ברצף" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुक्रमित ऑडियो संदेशों को ऑटोप्ले करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatska reprodukcija uzastopno poslanih audio poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egymást követő hangüzenetek automatikus lejátszása." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավտոմատ նվագարկել հաջորդական աուդիո հաղորդագրությունները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putar otomatis pesan suara secara berurutan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riproduzione automatica dei messaggi vocali in successione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声メッセージを連続して自動的に再生する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატური განგრძობით ხმოვანი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាក់សារជាសំឡេងបន្តបន្ទាប់គ្នាដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಂದುವರಿಯಾವ ಆಡಿಯೋ ಸಂದೇಶಗಳನ್ನು ಸ್ವಯಂ ಪ್ಲೇ ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연속된 음성 메시지 자동재생" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "خۆکار پەیامە دەنگەکانی ئەوەندەی بەمەצבەت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay consecutively sent audio messages" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫຼຶນຳສຳລັບເຄື່ອງນວດທີ່ຍົວສົມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai atkurti nuosekliai išsiųstas garso žinutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski atskaņot secīgi sūtītās audio ziņas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски пуштај ги последователно пратените аудио пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дараалан илгээсэн аудио зурвасуудыг автоматаар тоглуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Main auto mesej audio yang dihantar berturut-turut" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်တိုက် အသံမက်ဆေ့ချ်များကို အလိုအလျောက်ဖွင့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spill automatisk av påfølgende sendte lydbeskjeder" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्रमैसँग पठाइएका अडियो सन्देशहरू स्वतः प्ले गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch achtereenvolgende audioberichten afspelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk avspilling av lydmeldinger som sendes etter kvarandre" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoplay consecutively sent audio messages" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਗਾਤਾਰ ਭੇਜੇ ਗਏ ਆਡੀਓ ਸੁਨੇਹਿਆਂ ਨੂੰ ਆਟੋਪਲੇ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne odtwarzanie kolejno wysłanych wiadomości audio" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیس په پرله پسې توګه لیږل شوي غږیز پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproduzir automaticamente mensagens de áudio consecutivas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reproduzir automaticamente mensagens de áudio consecutivas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redare automată a mesajelor audio consecutive" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Воспроизводить присланные последовательные аудиосообщения автоматически." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski reprodukuje audio poruke poslane zaredom" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අනුක්‍රමයෙන් එවන ලද ශ්‍රව්‍ය පණිවිඩ ස්වයංක්‍රීයව වාදනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky prehrať po sebe odoslané zvukové správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno predvajaj zaporedna zvočna sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprodho automatikisht mesazhet audio të dërguara njëri pas tjetrit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматски пусти узастопно послате звучне поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni automatsko reprodukovanje uzastopno poslatih audio poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spela automatiskt upp ljudmeddelanden i följd" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chezesha Moja kwa Moja ujumbe wa sauti uliotumwa mfululizo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடர்ந்து அனுப்பப்பட்ட ஒலிமுறை செய்திகளைக் தானாக இயங்கவிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తదుపరి పంపబడిన ఆడియో సందేశాలను ఆటోప్లే చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เล่นข้อความเสียงต่อเนื่องกันโดยอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ardışık olarak gönderilen sesli mesajları otomatik olarak çal" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично та послідовно відтворює надіслані аудіоповідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسلسل بھیجے گئے آڈیو پیغامات کو آٹوپلے کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Birlashgan tarzda yuborilgan ovozli xabarlarni avtomatik ravishda ijro etish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động phát các tin nhắn âm thanh được gửi liên tục" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dlala ngokuzenzekelayo imiyalezo eseAudiyo ethunyelwe ngokulandelelanayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动连续播放语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動播放連續發送的音訊訊息" + } + } + } + }, + "conversationsBlockedContacts" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geblokkeerde Kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جهات الاتصال المحظورة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əngəllənən kontaktlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود رابطے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блакіраваныя кантакты" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирани контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্লক করা কন্টাক্টস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactes blocats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokované kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cysylltiadau wedi'u rhwystro" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokerede kontakter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockierte Kontakte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επαφές σε Φραγή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked Contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baritaj kontaktoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos bloqueados" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos bloqueados" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeritud kontaktid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked Contacts" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مخاطبین مسدودشده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estetyt yhteystiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Naka-block na Contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacts bloqués" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos bloqueados" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuntuɓar da aka To'she" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנשי קשר חסומים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ब्लॉक किये हुए कॉन्टेक्ट्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokirani kontakti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letiltott kapcsolatok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակված կոնտակտներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontak Diblokir" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contatti bloccati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ブロック リスト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკილი კონტაქტები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទំនាក់ទំនងដែលបានទប់ស្កាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತಡೆ ಮಾಡಲಾದ ಸಂಪರ್ಕಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "차단된 연락처" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیوەندیکردنە دوورکراوەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked Contacts" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຜູ້ຕິດຕໍ່ທີ່ຖືກຫ້າມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užblokuoti adresatai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķētās kontaktpersonas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирани контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаагдсан холбоо барьсан хүмүүс" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kenalan Disekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဘလော့ထားသော အဆက်အသွယ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkerte kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ब्लक गरिएका सम्पर्कहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geblokkeerde contacten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkerte kontaktar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocked Contacts" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬਲੌਕ ਕੀਤੇ ਗਏ ਸੰਪਰਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokowane kontakty" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلاک شوي اړیکې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contatos Bloqueados" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactos Bloqueados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacte blocate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокированные контакты" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokirani kontakti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවහිර කළ සබධතා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokované kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokirani stiki" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte të bllokuara" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирани контакти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokirani kontakti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spärrade kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anwani Zilizozuiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தடையமைக்கப்பட்ட தொடர்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిరోధించిన పరిచయాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายชื่อผู้ที่ถูกบล็อก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engellenen Kişiler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблоковані контакти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلاک شدہ روابط" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloklangan kontaktlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liên hệ đã chặn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo eVimbileyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已屏蔽的联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已封鎖的聯絡人" + } + } + } + }, + "conversationsCommunities" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemeenskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجتمعات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcmalar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunitats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cymunedau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fællesskaber" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunumoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidades" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidades" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonnad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitateak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انجمن‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteisöt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communautés" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidades" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Al'ummomi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קהילות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zajednice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համայնքներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティーズ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ພະເດັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendruomenės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopienas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заедници" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fellesskap" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samfunn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "M'gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀਆਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تیر په ټولنه کې غلطي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidades" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunidades" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comunități" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවන්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitetet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заједнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zajednice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kommuner" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumuiya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీస్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluklar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyatlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uluntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群" + } + } + } + }, + "conversationsDelete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Gesprek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف المحادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışığı sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بات چیت حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць размову" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтриване на разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra la conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat konverzaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unterhaltung löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Συνομιλίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu forviŝi la konversacion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta vestlus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketa Ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف مکالمه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista keskustelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-delete ang Usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer la conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संभाषण हटाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši razgovor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել զրույցը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話を削除する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საუბრის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی گفتوگۆ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Olukusuddenko" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບການສົນທະນາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti pokalbį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцан яриаг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောဆိုမှု ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी मेटाउन चाहानुहुन्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Kulankhulana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń konwersację" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمه ړنګول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge conversația" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить беседу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදය මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať konverzáciu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši pogovor" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heshtoje bisedën" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши преписку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši konverzaciju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణను తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบการสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbeti Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити розмову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa cuộc hội thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula Inkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除對話" + } + } + } + }, + "conversationsDeleted" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek geskrap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف المحادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıq silindi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گپ وڑی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гутарка выдалена" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разговорът е изтрит" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন মুছে ফেলা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha suprimit la conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konverzace byla smazána" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sgwrs wedi'i dileu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtale slettet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Unterhaltung wurde gelöscht." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η συνομιλία διαγράφηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversation deleted" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konversacio forviŝite" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversación eliminada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversación eliminada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vestlus kustutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketa ezabatuta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمه حذف شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keskustelu poistettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-delete na ang usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversation supprimée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversa borrada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tattaunawa an share" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השיחה נמחקה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बातचीत हटाई गई" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Razgovor uklonjen" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés törölve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Percakapan dihapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversazione eliminata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話を削除しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საუბარი წაშლილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការសន្ទនាត្រូវបានលុប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಅಳಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화를 삭제함" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتوگۆ سڕایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuggya okwekeneenya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບຫຼາຍເເລ້ວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokalbis ištrintas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saruna izdzēsta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разговорот е избришан" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцан яриа устгагдсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perbualan dipadam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောဆိုမှု ဖျက်ပြီးပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtalen slettet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्ता मेटियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek verwijderd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konversasjonen sletta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rikani Kukambirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਮਿਟਾ ਦਿੱਤੀ ਗਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozmowa usunięta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرتیا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversa excluída" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversa excluída" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversație ștearsă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Беседа удалена" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Razgovor je izbrisan" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදය මකා දමන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konverzácia úspešne zmazaná" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogovor izbrisan" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biseda u fshi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преписка је избрисана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konverzacija je obrisana" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konversationen har raderats" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mazungumzo yamefutwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடல் அழிக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణ తొలగించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversation deleted" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konuşma silindi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розмову видалено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمہ حذف کردیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbat o'chirildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuộc hội thoại đã được xoá" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incoko icinyiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "会话已删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "對話已刪除" + } + } + } + }, + "conversationsDeleteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil jou gesprek met {name} uitvee? Nuwe boodskappe van {name} sal 'n nuwe gesprek begin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف محادثتك مع {name}? ستبدأ الرسائل الجديدة من {name} محادثة جديدة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ilə danışığınızı silmək istədiyinizə əminsiniz? {name} göndərən yeni mesajlar yeni bir danışıq başladacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چو شما یقینت بنت کہ اپنے گپ و گفت {name} کنت؟ نوی پیغاماں {name} نا نوی گپ شروع بیت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць размову з {name}? Новыя паведамленні ад {name} пачнуць новую размову." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш своя разговор с {name}? Нови съобщения от {name} ще започнат нов разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {name}‍ সাথে আপনার কথোপকথন মুছে দিতে চান? {name}‍ থেকে নতুন বার্তাগুলি একটি নতুন কথোপকথন শুরু করবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir la vostra conversa amb {name}? Els nous missatges de {name} començaran una nova conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete smazat svou konverzaci s {name}? Nové zprávy od {name} zahájí novou konverzaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu eich sgwrs gyda {name}? Bydd negeseuon newydd gan {name} yn cychwyn sgwrs newydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette din samtale med {name}? Nye beskeder fra {name} vil starte en ny samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du deine Unterhaltung mit {name} wirklich löschen? Neue Nachrichten von {name} werden eine neue Unterhaltung starten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε τη συνομιλία σας με {name}? Νέα μηνύματα από {name} θα ξεκινήσουν μια νέα συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete your conversation with {name}? New messages from {name} will start a new conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi vian konversacion kun {name}? Novaj mesaĝoj de {name} komencos novan konversacion." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar tu conversación con {name}? Los mensajes nuevos de {name}? iniciarán una nueva conversación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar tu conversación con {name}? Los nuevos mensajes de {name} iniciarán una nueva conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kustutada oma vestluse kasutajaga {name}? Uued sõnumid kasutajalt {name} käivitavad uue vestluse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude zure elkarrizketa {name}-rekin ezabatu nahi duzula? {name}-ren mezu berriak elkarrizketa berri bat hasiko du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید مکالمه خود را با {name}‍ حذف کنید؟ پیام‌های جدید از {name} یک مکالمه جدید را شروع می‌کنند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa keskustelusi käyttäjän {name} kanssa? Uudet viestit käyttäjältä {name} aloittavat uuden keskustelun." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang iyong usapan kay {name}? Ang mga bagong mensahe mula kay {name} ay magsisimula ng bagong usapan." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer votre conversation avec {name} ? Les nouveaux messages de {name} commenceront une nouvelle conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar a túa conversa con {name}? As novas mensaxes de {name} iniciarán unha nova conversa." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge tattaunawarka da {name}? Sabbin saƙonni daga {name} zasu fara sabuwar tattaunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את השיחה שלך עם {name}? הודעות חדשות מ־{name} יתחילו שיחה חדשה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {name} के साथ अपनी वार्तालाप हटाना चाहते हैं? {name} से नए संदेश नई वार्तालाप शुरू करेंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati razgovor s {name}? Nove poruke od {name} započet će novi razgovor." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd a(z) {name} beszélgetést? {name} új üzenetei új beszélgetést indítanak." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել Ձեր խոսակցությունը {name}֊ի հետ: Նոր հաղորդագրությունները {name}֊ից կսկսեն նոր զրույց։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus percakapan Anda dengan {name}? Pesan baru dari {name} akan memulai percakapan baru." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare la tua conversazione con {name}? Nuovi messaggi da parte di {name} avvieranno una nuova chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{name}との会話を削除しますか?{name}からの新しいメッセージは新しい会話として扱われます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ თქვენი საუბრის წაშლა {name}-თან? ახალი შეტყობინებები {name}-დან დაიწყებს ახალ საუბარს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបការសន្ទនារបស់អ្នកជាមួយ {name}? សារថ្មីពី {name} នឹងចាប់ផ្តើមការសន្ទនាថ្មី។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಸಮಾಗಮವನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? {name}ರಿಂದ ಹೊಸ ಸಂದೇಶಗಳು ಹೊಸ ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲಿವೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}과의 대화를 삭제하시겠습니까? {name}로부터 새로운 메시지가 오면 새로운 대화가 시작됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت گفتوگۆکەت لەگەڵ {name} بسڕیتەوە؟ پەیامە نوێەکان لە {name} دەستی پەیوەندی نوێ دەکەن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu okuteesa kwo ne {name}? Obubaka obuggya okuva eri {name} bunaddamu okutandika okuteseza kuno." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບການສົນທະນາຂອງທ່ານກັບ {name}? ຂໍ້ຄວາມໃໝ່ຈາກ {name} ຈະເລີ່ມການສົນທະນາໃໝ່." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti savo pokalbį su {name}? Naujos žinutės iš {name} sukurs naują pokalbį." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst savu sarunu ar {name}? Jauni ziņojumi no {name} sāks jaunu sarunu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете вашата конверзација со {name}? Новите пораки од {name} ќе почнат нова конверзација." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} -тэй яриагаа устгахдаа итгэлтэй байна уу? {name} -ээс ирэх шинэ зурвасууд шинэ яриаг эхлүүлнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan perbualan anda dengan {name}? Mesej baru daripada {name} akan memulakan perbualan baru." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {name} နှင့်သော ဆက်သွယ်မှုကို ဖျက်လိုကြောင်း ယဉ်သောပါသလား? {name} မှ ပေးပို့သော သစ်စ(Python)သည် အသစ်သော ဆက်သွယ်မှု တစ်ခုစတင်မှာဖြစ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette samtalen din med {name}? Nye meldinger fra {name} vil starte en ny samtale." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {name} सँगको कुराकानी मेटाउन निश्चित हुनुहुन्छ? {name} बाट नयाँ सन्देशहरूले नयाँ कुराकानी सुरु गर्नेछन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u uw conversatie met {name} wilt verwijderen? Nieuwe berichten van {name} zullen een nieuwe conversatie starten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette samtalen med {name} ? Nye meldingar frå {name} vil starte ein ny samtale." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta mauthenga anu ndi {name}? Mauthenga atsopano kuchokera kwa {name} ayamba kulankhula kwatsopano." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੀ ਗੱਲਬਾਤ {name} ਨਾਲ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? {name} ਤੋਂ ਨਵੇਂ ਸੁਨੇਹੇ ਇਕ ਨਵੀਂ ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰਨਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć swoją konwersację z użytkownikiem {name}? Nowe wiadomości od użytkownika {name} rozpoczną nową konwersację." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ له {name} سره خپل مکالمه حذف کړئ؟ د {name} نوې پیغامونه به نوې مکالمه پیل کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir sua conversa com {name}? Novas mensagens de {name} iniciarão uma nova conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar sua conversa com {name}? Novas mensagens de {name} iniciarão uma nova conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi conversația cu {name}? Mesajele noi de la {name} vor începe o conversație nouă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить вашу беседу с {name}? Новые сообщения от {name} начнут новую беседу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati svoj razgovor sa {name}? Nove poruke od {name} pokrenuće novi razgovor." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සමඟ ඇති ඔබේ සංවාදය මකීමට අවශ්‍ය බව විශ්වාසද? {name} වෙතින් පැමිණෙන නව පණිවිඩ නව සංවාදයක් ආරම්භ කරනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať svoju konverzáciu s {name}? Nové správy od {name} začnú novú konverzáciu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati svoj pogovor z {name}? Nova sporočila od {name} bodo začela nov pogovor." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini bisedën tuaj me {name}? Mesazhet e reja nga {name} do të fillojnë një bisedë të re." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете вашу преписку са {name}? Нове поруке од {name} ће започети нову преписку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete svoj razgovor sa {name}? Nove poruke od {name} će započeti novi razgovor." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera din konversation med {name}? Nya meddelanden från {name} kommer att starta en ny konversation." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta mazungumzo yako na {name}? Jumbe mpya kutoka kwa {name} zitaanzisha mazungumzo mapya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} உடன் உங்கள் உரையாடலை நீக்க விரும்புகிறீர்களா? {name} வழங்கிய புதிய தகவல்கள் புதிய உரையாடலைத் தொடங்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} తో మీ సంభాషణను తొలగించాలనుకుంటున్నారా? {name} నుండి కొత్త సందేశాలు ఒక కొత్త సంభాషణను ప్రారంభిస్తాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบการสนทนาของคุณกับ {name}? ข้อความใหม่จาก {name} จะเริ่มการสนทนาใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sohbeti {name} ile silmek istediğinizden emin misiniz? {name} tarafından gelen yeni mesajlar yeni bir sohbet başlatacaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дійсно хочете видалити розмову з {name}? Нові повідомлення від {name} почнуть нову розмову." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {name} کے ساتھ اپنی گفتگو حذف کرنا چاہتے ہیں؟ {name} سے نئے پیغامات ایک نئی گفتگو شروع کریں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {name} bilan suhbatni o'chirmoqchimisiz? Yangi xabarlar {name} dan yangi suhbat bostiradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá cuộc trò chuyện với {name}? Các tin nhắn mới từ {name} sẽ bắt đầu một cuộc trò chuyện mới." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa incoko yakho no {name}? Imiyalezo emitsha ivela {name} iza kuqala incoko entsha." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除您与{name}的会话吗?来自{name}的新消息将创建一个新会话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除與 {name} 的對話嗎?來自 {name} 的新訊息將開始一個新的對話。" + } + } + } + }, + "conversationsEmpty" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar is geen boodskappe in {conversation_name} nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا توجد رسائل في {conversation_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} danışığında heç bir mesaj yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} میں کوئی پیغام نہیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У {conversation_name} няма паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма съобщения в {conversation_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} এ কোনো মেসেজ নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha missatges a {conversation_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "V {conversation_name} nejsou žádné zprávy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes negeseuon yn {conversation_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der er ingen beskeder i {conversation_name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es sind keine Nachrichten in {conversation_name}." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν υπάρχουν μηνύματα σε {conversation_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There are no messages in {conversation_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne estas mesaĝoj en {conversation_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay mensajes en {conversation_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay mensajes en {conversation_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} ei ole sõnumeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago mezurik {conversation_name} barruan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ پیامی در {conversation_name} وجود ندارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keskustelussa {conversation_name} ei ole viestejä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang mensahe sa {conversation_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il n'y a aucun message dans {conversation_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai mensaxes en {conversation_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu saƙonni a cikin {conversation_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין הודעות ב-{conversation_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} में कोई संदेश नहीं हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema poruka u {conversation_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A {conversation_name} beszélgetésben nincsenek további üzenetek." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}-ում հաղորդագրություններ չկան." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tak ada pesan di {conversation_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non ci sono messaggi in {conversation_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} にはメッセージがありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}-ში არ არის შეტყობინებები." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មានសារណាមួយនៅក្នុង {conversation_name} ឡើយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} ನಲ್ಲಿ ಯಾವುದೇ ಸಂದೇಶಗಳಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}에는 메시지가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ پەیامێک نیە لە {conversation_name}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali bubaka mu {conversation_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra žinučių {conversation_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav ziņojumu {conversation_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема пораки во {conversation_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}-нд мессеж байхгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada mesej di dalam {conversation_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} တွင် မက်ဆေ့ချ် မရှိပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen meldinger i {conversation_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} मा कुनै संदेशहरू छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er zijn geen berichten in {conversation_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen meldinger i {conversation_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe mauthenga mu {conversation_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} ਵਿੱਚ ਕੋਈ ਸੁਨੇਹੇ ਨਹੀਂ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "W {conversation_name} nie ma żadnych wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په {conversation_name} کې هیڅ پیغام نشته." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há mensagens em {conversation_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não existem mensagens em {conversation_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu există mesaje în {conversation_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет сообщений в {conversation_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema poruka u {conversation_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}හි පණිවිඩ නැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V {conversation_name} nie sú žiadne správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V {conversation_name} ni sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk ka mesazhe në {conversation_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема порука у {conversation_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema poruka u {conversation_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finns inga meddelanden i {conversation_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna jumbe kwenye {conversation_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} இல் எந்த செய்தியும் இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} లో ఎలాంటి సందేశాలు లేవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีข้อความใน {conversation_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}'de mesaj yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немає повідомлень в {conversation_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} میں کوئی پیغامات نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} nomli suhbatda xabarlar yo'q." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có tin nhắn nào trong {conversation_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho myalezo kwi-{conversation_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name}中没有消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} 中沒有訊息。" + } + } + } + }, + "conversationsEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer sleutel in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل المفتاح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter düyməsi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کنجی درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце Key" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете ключ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কী লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix clau" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte klíč" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch Allwedd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast nøgle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eingabetaste" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε Key" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Key" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eniri ŝlosilon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce tecla" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introducir Clave" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta Key" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu Tekla" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلید را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä avain" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang Key" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrer une clé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza a clave" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da Maɓalli" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן מקש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुंजी दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite ključ" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter billentyű" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրել Key" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Kunci" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci chiave" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "キーを入力" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ გასაღები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល Key" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಂಟರ್ ಕೀ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "키 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلیدەکە بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Key" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນປຸມ Enter" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Key" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet atslēgu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете клуч" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түлхүүр оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Key" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခြေလှမ်းရွေးချယ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn nøkkel" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुञ्जी प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer toets in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn Tast" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani kiyi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੁੰਜੀ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klawisz Enter" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیلي ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira a tecla Enter" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserir ENTER" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți tasta" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите ключ" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi ključ" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇතුල්වීමේ යතුර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte Kľúč" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite ključ" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni çelësin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите кључ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite Key" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange Key" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingiza Kitufe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Key உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కీని ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อน Key" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giriş Tuşu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть Key" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلید درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tugmani kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập Key" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa iqhosha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "回车键" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回車鍵" + } + } + } + }, + "conversationsEnterDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funksie van die Enter-sleutel wanneer u 'n gesprek tik." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "وظيفة مفتاح الإدخال عند الكتابة في محادثة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir danışıqda yazarkən Enter düyməsinin funksiyası." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "واژئے کُنجیء کارکردگی ہدباتءَ نیںّ گفتگوئے شتگ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функцыя клавішы Enter пры наборы тэксту ў гутарцы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функция на клавиша Enter, когато пишете в разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথনে টাইপ করার সময় এন্টার কী এর ফাংশন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funció de la tecla d'introducció durant l'escriptura en una conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkce klávesy Enter při psaní v konverzaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Swyddogaeth allwedd enter wrth deipio mewn sgwrs." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funktion af enter-tasten, når du skriver i en samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funktion der Eingabetaste beim Tippen in einer Unterhaltung." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λειτουργία του πλήκτρου εισαγωγής κατά την πληκτρολόγηση σε συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Function of the enter key when typing in a conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcio de la eniga klavo dum tajpado en konversacio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Función de la tecla enter al escribir en una conversación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Función de la tecla Enter al escribir en una conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter-klahvi funktsioon vestluse ajal tippimisel." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu tekla funtzioa elkarrizketan idazten ari zarenean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویژگی کلید Enter در هنگام تایپ در یک مکالمه." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter-näppäimen toiminto keskustelussa kirjoittaessa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gamit ang Enter Key kapag nagta-type sa isang usapan." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fonction de la touche Entrée lors de la saisie dans une conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Función da tecla Enter ao escribir nunha conversa." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aikin maɓallin shigar yayin rubutu a cikin tattaunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פונקציה של מקש ה-Enter בעת הקלדה בשיחה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्तालाप में टाइप करते समय एंटर कुंजी का कार्य।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija tipke enter pri pisanju u razgovoru." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az Enter billentyű funkciója beszélgetés közben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter ստեղնի գործառույթը զրույցի ժամանակ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fungsi tombol enter saat mengetik dalam percakapan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funzione del tasto invio quando si digita in una chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話中のEnterキーの機能" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფუნქცია, როცა კლავიატურაზე იყენებთ Enter ღილაკს საუბრის დროს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មុខងាររបស់ឃី enter នៅពេលវាយក្នុងការសន្ទនា។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯಲ್ಲಿ ಟೈಪಿಂಗ್‌ನಲ್ಲಿ ಎಂಟರ್ ಕೀಯ ತಂತ್ರಜ್ಞಾನ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화에서 Enter 키 기능." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فەرمیۆنی لەگەڵ داخستنی کلیلەکەرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkola ya ki Enter okunyiga kulwokola message nga wandikira mu kwogereza." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite pokalbio metu naudojamo enter klavišo funkciją." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter taustiņa funkcija, rakstot sarunā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функција на Enter копчето при пишување во разговор." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Товчилсон түлхүүрийн үүрэг нь харилцан ярианы үед." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fungsi kekunci enter semasa menaip dalam perbualan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောမှာ enter key ရဲ့လုပ်ဆောင်ချက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funksjon til enter-tasten når man skriver i en samtale." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह निमन्त्रणा सफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Functie van de entertoets bij het typen in een gesprek." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funksjon for enter-tasten ved skriving i samtale." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ntchito ya kiyi ya enter mukalemba mu kukambirana." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਵਿੱਚ ਲਿਖਣ ਵੇਲੇ ਐਂਟਰ ਕੀ ਦਾ ਫੰਕਸ਼ਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcja klawisza Enter podczas pisania wiadomości w konwersacji." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خبرو اترو په دوران کې د انټر کیلي دنده." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Função da tecla Enter ao digitar em uma conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Função da tecla Enter numa conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funcția tastei Enter când scrii într-o conversație." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функция клавиши Enter при вводе текста в беседе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija tastera enter tokom tipkanja u razgovoru." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදයේ, Enter යතුරේ ක්‍රියාකාරිත්වය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcia klávesy Enter pri písaní v konverzácii." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija tipke enter pri tipkanju v pogovoru." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funksioni i tastit enter kur shkrini mesazhe." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функција тастера ентер при куцању у разговору." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija tastera enter prilikom kucanja poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funktionen av Enter-tangenten när du skriver i en konversation." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kazi ya kitufe cha kuingiza wakati wa kuandika katika mazungumzo." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலில் தட்டச்சு செய்வதற்கான எந்திரக் கை நுட்பம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణలో టైపింగ్ చేస్తున్నప్పుడు ఎంటర్ కీ యొక్క విధానం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฟังก์ชันของปุ่ม Enter เมื่อพิมพ์ในบทสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbette yazarken enter tuşunun fonksiyonu." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функція клавіші Enter під час набору повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو میں ٹائپ کرتے وقت انٹر کی کلید کا فنکشن" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatda enter tugmasining vazifasi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chức năng của phím enter khi nhập nội dung trong cuộc trò chuyện." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umsebenzi weqhosha loku ngenisa xa uchwetheza kwincoko." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在对话中输入回车键时的功能。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在對話中鍵入時回車鍵的功能。" + } + } + } + }, + "conversationsEnterNewLine" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER stuur 'n boodskap, ENTER begin 'n nuwe lyn" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER يرسل الرسالة، ENTER يبدأ سطرًا جديدًا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER mesajı göndərir, ENTER yeni sətrə keçir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER پیام روانگی، ENTER نوکی خط شروع کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER адпраўляе паведамленне, ENTER пачынае новы радок" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER изпраща съобщение, ENTER започва нов ред" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER একটি বার্তা পাঠাবে, ENTER একটি নতুন লাইন শুরু করবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "MAJÚSCULA + ENTRA envia un missatge, ENTRA comença una línia nova" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER odešle zprávu, ENTER začne nový řádek" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER yn anfon neges, ENTER yn dechrau llinell newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sender en besked, ENTER starter en ny linje" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + Eingabe sendet eine Nachricht, Eingabe startet eine neue Zeile" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER στέλνει ένα μήνυμα, ENTER ξεκινά μια νέα γραμμή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sends a message, ENTER starts a new line" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sendas mesaĝon, ENTER komencas novan linion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER envía un mensaje, ENTER inicia una nueva línea" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER envía un mensaje, ENTER inicia una nueva línea" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER saadab sõnumi, ENTER alustab uut rida" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER mezu bat bidaltzen du, ENTER lerro berri bat hasten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ارسال پیام، ENTER خط جدید آغاز می‌کند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER lähettää viestin, ENTER aloittaa uuden rivin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ang magpapadala ng mensahe, ENTER ang magsisimula ng bagong linya" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "MAJUSCULE + ENTRÉE envoie un message, ENTRÉE commence une nouvelle ligne" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER envía unha mensaxe, ENTER inicia unha nova liña" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER yana aikawa da saƙo, ENTER yana fara sabon layi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER שולח הודעה, ENTER מתחיל שורה חדשה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER एक संदेश भेजता है, ENTER एक नई पंक्ति शुरू करता है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER šalje poruku, ENTER započinje novi redak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER elküldi az üzenetet, ENTER új sort kezd" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER-ը ուղարկում է հաղորդագրություն, ENTER-ը սկսում է նոր տող" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER mengirim pesan, ENTER mulai baris baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + INVIO invia un messaggio, INVIO inizia una nuova riga" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER 送信, ENTER 改行" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER აგზავნის შეტყობინებას, ENTER იწყებს ახალ სტრიქონს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ផ្ញើសារ ENTER ចាប់ផ្តើមបន្ទាត់ថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ಒಂದು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುತ್ತದೆ, ENTER ಹೊಸ ಎರಡು ಸಾಲು ಪ್ರಾರಂಭಿಸುತ್ತದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER 메시지 전송, ENTER 새 줄 시작" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER (وێنەی هاوبەش بە ناوی کانفرم ، ENTER (نوێ دەستەکی." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER esoose obubaka, ENTER entandiika olumuli" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER siunčia žinutę, ENTER pradeda naują eilutę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER nosūta ziņu, ENTER sāk jaunu rindu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER испраќа порака, ENTER започнува нов ред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER мессеж илгээнэ, ENTER шинэ мөр эхлүүлнэ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER untuk menghantar mesej, ENTER untuk memulakan baris baru" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER သည် စာ မက်ဆေ့ချ်ပေးပါ။ ENTER သည် စာကြောင်းအသစ်စ လား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sender en melding, ENTER starter en ny linje" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER सन्देश पठाउँछ, ENTER नयाँ लाइन सुरु गर्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER verzendt een bericht, ENTER begint een nieuwe regel" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sender ei melding, ENTER startar ei ny linje" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sends a message, ENTER starts a new line" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ਇੱਕ ਸੁਨੇਹਾ ਭੇਜਦਾ ਹੈ, ENTER ਇੱਕ ਨਵੀ ਲਾਈਨ ਸ਼ੁਰੂ ਕਰਦਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER wysyła wiadomość, ENTER zaczyna nową linijkę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER پیغام لیږي، ENTER نوی کرښه پیلوي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER envia uma mensagem, ENTER inicia uma nova linha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER envia uma mensagem, ENTER começa uma nova linha" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER trimite un mesaj, ENTER începe o linie nouă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER отправляет сообщение, ENTER начинает новую строку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER šalje poruku, ENTER započinje novi red" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER පණිවිඩය යවයි, ENTER නව මූලය පටන් ගනී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER odošle správu, ENTER začne nový riadok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER pošlje sporočilo, ENTER začne novo vrstico" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER dërgon një mesazh, ENTER fillon një rresht të ri" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER шаље поруку, ENTER почиње нови ред" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER šalje poruku, ENTER započinje novi red" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER skickar ett meddelande, ENTER startar en ny rad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER kutuma ujumbe, ENTER kuanza mstari mpya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER செய்தி அனுப்பும், ENTER புதிய வரியைத் தொடங்குகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER సందేశం పంపుతుంది, ENTER కొత్త పంక్తిని ప్రారంభిస్తుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER ส่งข้อความ, ENTER เริ่มบรรทัดใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER mesaj gönderir, ENTER yeni bir satır başlatır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER надсилає повідомлення, ENTER починає новий рядок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شفٹ + انٹر پیغام بھیجتا ہے، انٹر نئی لائن شروع کرتا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER xabarni yuboradi, ENTER yangi qatordan boshlaydi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER gửi tin nhắn, ENTER bắt đầu dòng mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER sends a message, ENTER starts a new line" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT+回车键发送消息,回车键换行" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "SHIFT + ENTER 傳送訊息, ENTER 起新行" + } + } + } + }, + "conversationsEnterSends" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER stuur 'n boodskap, SHIFT + ENTER begin 'n nuwe lyn" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إدخال يرسل رسالة، SHIFT + ENTER يبدأ سطر جديد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER mesajı göndərir, SHIFT + ENTER yeni sətrə keçir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ایک پیغام بھیجتا ہے، SHIFT + ENTER ایک نیا لائن شروع کرتا ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER адпраўляе паведамленне, SHIFT + ENTER пачынае новы радок" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER изпраща съобщение, SHIFT + ENTER започва нов ред" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER একটি বার্তা পাঠাবে, SHIFT + ENTER একটি নতুন লাইন শুরু করে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envia un missatge, SHIFT + ENTER comença una nova línia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmáčknutím ENTER se zpráva odešle, SHIFT + ENTER vytvoří nový řádek" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER yn anfon neges, SHIFT + ENTER yn dechrau llinell newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sender en besked, SHIFT + ENTER starter ny linje" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Eingabetaste sendet eine Nachricht, Shift-Taste + Eingabetaste startet eine neue Zeile" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER στέλνει ένα μήνυμα, SHIFT + ENTER ξεκινάει μια νέα γραμμή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sends a message, SHIFT + ENTER starts a new line" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sendas mesaĝon, SHIFT + ENTER startas novan linion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envía un mensaje, SHIFT + ENTER empieza una nueva línea" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envía un mensaje, SHIFT + ENTER inicia una nueva línea" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER saadab sõnumi, SHIFT + ENTER alustab uut rida" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "SARRERA mezu bat bidaltzen du, SHIFT + SARRERA lerro berri bat hasten du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کلید Enter پیام را ارسال می‌کند، SHIFT + ENTER یک خط جدید شروع می‌کند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER lähettää viestin, SHIFT + ENTER aloittaa uuden rivin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang ENTER ay nagsesend ng mensahe, ang SHIFT + ENTER ay nagsisimula ng bagong linya" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTRÉE envoie un message, MAJ + ENTRÉE commence une nouvelle ligne" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envía unha mensaxe, SHIFT + ENTER comeza unha nova liña" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "MENU tana aika saƙo, SHIFT + MENU yana farawa da layi na sabo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER שולח הודעה, SHIFT + ENTER מתחיל שורה חדשה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER संदेश भेजता है, SHIFT + ENTER नई लाइन शुरू करता है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER šalje poruku, SHIFT + ENTER započinje novi red" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER elküldi az üzenetet, SHIFT + ENTER új sort kezd" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter ստեղնը հաղորդագրություն է ուղարկում, SHIFT + ENTER-ը նոր տող է սկսում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER mengirim pesan, SHIFT + ENTER memulai baris baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "INVIO invia un messaggio, MAIUSC + INVIO inizia una nuova riga" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "エンターでメッセージを送信、シフト + エンターで改行を開始" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER იღებს შეტყობინებას, SHIFT + ENTER იწყება ახალ ხაზზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ផ្ញើសារ, SHIFT + ENTER ចាប់ផ្តើមបន្ទាត់ថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುತ್ತದೆ, SHIFT + ENTER ಹೊಸ ಸಾಲನ್ನು ಪ್ರಾರಂಭಿಸುತ್ತದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "엔터(ENTER) 키로 메시지를 보내고, 시프트(Shift) + 엔터(ENTER) 키로 새 줄을 시작합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER نامەیەک نێردە، SHIFT + ENTER هێڵەکی تازە دەستپێبکات" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENU yerekawo, SHIFT + ENU evvumbula olunyiriri olupya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ສົ່ງຂໍ້ຄວາມ, SHIFT + ENTER ເລີ່ມແຖວໃຫມ່" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER išsiųs žinutę, SHIFT + ENTER pradės naują eilutę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER nosūta ziņojumu, SHIFT + ENTER sāk jaunu rindu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER испраќа порака, SHIFT + ENTER започнува нов ред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER мессеж явуулна, SHIFT + ENTER шинэ мөр эхэлнэ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER menghantar mesej, SHIFT + ENTER memulakan baris baru" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ဆို Message ပို့ပါ၊ SHIFT + ENTER ဆို စာကြောင်းအသစ်စတင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sender en melding, SHIFT + ENTER starter en ny linje" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER सन्देश पठाउँछ, SHIFT + ENTER नयाँ लाइन सुरु गर्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER verzendt een bericht, SHIFT + ENTER begint een nieuwe regel" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sender ei melding, SHIFT + ENTER startar ei ny linje" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER imatumiza uthenga, SHIFT + ENTER imayamba mzere watsopano" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ਸੰਦੇਸ਼ ਭੇਜਦਾ ਹੈ, SHIFT + ENTER ਇੱਕ ਨਵੀਂ ਲਾਈਨ ਤੋਂ ਸ਼ੁਰੂ ਹੁੰਦਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER wysyła wiadomość, SHIFT + ENTER rozpoczyna nową linijkę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER پیغام لیږي، SHIFT + ENTER نوی کرښه پیلوي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envia uma mensagem, SHIFT + ENTER inicia uma nova linha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER envia a mensagem, SHIFT + ENTER inicia uma nova linha" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER trimite un mesaj, SHIFT + ENTER începe o linie nouă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER для отправки, SHIFT + ENTER для новой строки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER šalje poruku, SHIFT + ENTER započinje novi red" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER පණිවිඩයක් යොමු කරයි, SHIFT + ENTER නව නිමාවක් ආරම්භ කරයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER odosiela správu, SHIFT + ENTER začína nový riadok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER pošlje sporočilo, SHIFT + ENTER začne novo vrstico" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER dërgon një mesazh, SHIFT + ENTER nis një rresht të ri" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER шаље поруку, SHIFT + ENTER започиње нови ред" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER šalje poruku, SHIFT + ENTER započinje novi red" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER sänder ett meddelande, SHIFT + ENTER påbörjar en ny rad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER hutuma ujumbe, SHIFT + ENTER inaanza mstari mpya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER செய்தியை அனுப்பும், SHIFT + ENTER புதிய வரியை ஆரம்பிக்கும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER సందేశం పంపుతుంది, SHIFT + ENTER కొత్త పంక్తిని ప్రారంభిస్తుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ส่งข้อความ, SHIFT + ENTER เริ่มบรรทัดใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER mesajı gönderir, SHIFT + ENTER yeni satır başlatır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER надсилає повідомлення, SHIFT + ENTER починає новий рядок" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER پیغام بھیجتا ہے، SHIFT + ENTER نئی لائن شروع کرتا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER xabarni yuboradi, SHIFT + ENTER yangi qatordan boshlaydi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter gửi tin nhắn, SHIFT + ENTER bắt đầu một dòng mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ithumela umyalezo, SHIFT + ENTER uqala ulayini omtsha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "回车键发送消息,SHIFT+回车键换行" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER 發送訊息,SHIFT + ENTER 創建新行" + } + } + } + }, + "conversationsGroups" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجموعات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qruplar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grups" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grwpiau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ομάδες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groups" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmät" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groupes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rukuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבוצות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoportok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪುಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebibinja" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډلې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupuri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுக்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruplar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپس" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組" + } + } + } + }, + "conversationsMessageTrimming" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap Snoei" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تقليم الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajları kəs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Trimming" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абрэзка паведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съкращаване на съобщенията" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা সংক্ষিপ্তকরণ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escapçament de missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročištění zpráv" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocio Negeseuon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimning af beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenkürzung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Περικοπή μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Trimming" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tondeto de mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recorte de mensajes en chats" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recorte de mensajes en chats" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi piiramine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuen ebaketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیرایش پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keskustelujen tiivistys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pag-trim ng Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Élagage des messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recorte das mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rage Saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קיצוץ הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश ट्रिमिंग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skraćivanje poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetek rövidítése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նամակների կարճեցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemangkasan Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sfoltitura dei messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージの削減" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "deleteAfterGroupPR1MessageSound" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តម្រឹមសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳ ಕತ್ತರಿಸಿ ಹಾಕುವಿಕೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 줄이기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بڕینی نامە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka olubaka olwa teriiko ly’oteereza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinučių išvalymas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņu apgriešana" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сечење на пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж хасалт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemangkasan Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မဇ်ဆေ့ဂ ှ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk sletting" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश ट्रिमिंग" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beperk bewaartermijn" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsbeskjæring" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusandulika mauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਕਟਾਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przycinanie wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام تراشې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Corte de Mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redução do tamanho de mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scurtarea mesajelor" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрезка сообщений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skraćivanje poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ කැපීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Premazávanie správ" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrezovanje sporočil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkurtim mesazhesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скраћивање порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skraćivanje poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimma meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe unapunguza" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி மேராசூக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం కత్తిరించి సరి చేయుట" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตัดข้อความให้สั้นลง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti kırpma" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрізка повідомлень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی کانٹ چھانٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarni chetlatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thu gọn tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuskrowa umyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息整理" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息清理" + } + } + } + }, + "conversationsMessageTrimmingTrimCommunities" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Gemeenskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تقليم المجتمعات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcmalarda kəsmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹیز کو تراشیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абрэжце супольніцтва" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подрязване на Общности" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কমিউনিটিস ট্রিম করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limiteu comunitats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročistit komunity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimio Cymunedau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities kürzen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Περικοπή Κοινοτήτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oblikvi Komunumojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recortar Comunidades" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recortar Comunidades" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähenda kogukonnad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitateen Ebaketak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوتاه‌سازی انجمن‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiivistä yhteisöt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Mga Mensaheng Nagtagal ng Higit sa 6 (na) Buwan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Purger les groupes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recortar Comunidades" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datse Communities" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חתוך Communities" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदायों को ट्रिम करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sažimanje zajednica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségek rövidítése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կարճացրեք համայնքները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangkas Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sfoltisci Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティをトリムする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თემების შემცირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្រួមសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯಗಳನ್ನು ಟ್ರಿಮ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 정돈" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fengereza Community" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apkarpyti Communities" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apgriezt kopienas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тримување на заедници" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community хасах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖြတ်တောက်မှု အသိုင်းအဝိုင်းများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदायहरू ट्रिम गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Communities opschonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Samfunn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chepetsani Community" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮਿਊਨਿਟੀਆਂ ਟਰਿਮ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przytnij społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټرم ټولنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar Comunidades" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparar Comunidades" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajustare comunități" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрезать сообщения в сообществах" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජා ශිෂ්ටීකිරීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prečistiť komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrezovanje skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastro Communities" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрати Заједницу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskär gemenskaper" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Community" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூகங்களை சுருக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యూనిటీలను ట్రిమ్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trim Communities" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toplulukları Kırp" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрізати спільноти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹیز ٹرم کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyatlarni qisqartiring" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cắt bớt Communities" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca i-Community" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清理群组旧消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪裁社群舊訊息" + } + } + } + }, + "conversationsMessageTrimmingTrimCommunitiesDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap boodskappe van Gemeenskap geselsies ouer as 6 maande, en waar daar meer as 2,000 boodskappe is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل القديمة من محادثات المجتمع التي تكون أقدم من 6 أشهر، وحيث يوجد أكثر من 2000 رسالة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "6 aydan köhnə və 2,000-dən çox mesajın olduğu İcma danışıqlarındakı mesajları sil." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹی کی بات چیت میں 6 ماہ سے زیادہ پرانے اور 2000 سے زیادہ پیغامات حذف کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленні з гутаркоў супольнасці, старыя за 6 месяцаў, і калі там больш за 2,000 паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрийте съобщения от Community разговори по-стари от 6 месеца, и където има над 2000 съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কমিউনিটি কথোপকথনের ৬ মাসের বেশি পুরনো এবং যেখানে ২,০০০ এর বেশি মেসেজ আছে তা মুছুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix missatges de converses de la Community més antics de 6 mesos i quan hi ha més de 2,000 missatges." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Z komunit vymazat zprávy starší než 6 měsíců a ponechat maximálně 2000 nejnovějších zpráv v každé komunitě." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu negeseuon o sgyrsiau Cymuned hŷn na 6 mis, a lle mae dros 2,000 o negeseuon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet beskeder fra Community-samtaler der er ældre end 6 måneder, og hvor der er over 2.000 beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löschen Sie Nachrichten aus Community-Gesprächen, die älter als 6 Monate sind und bei denen es mehr als 2.000 Nachrichten gibt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή μηνυμάτων από Community συνομιλίες άνω των 6 μηνών και όπου υπάρχουν πάνω από 2,000 μηνύματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete messages from Community conversations older than 6 months, and where there are over 2,000 messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi mesaĝojn de Komunumo konversacioj pli malnovajn ol 6 monatoj, kaj kie estas pli ol 2,000 mesaĝoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar mensajes de conversaciones de Comunidad mayores a 6 meses, y donde hay más de 2,000 mensajes." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar mensajes de conversaciones de Comunidad con más de 6 meses y donde haya más de 2,000 mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustutage sõnumid Community vestlustest, mis on vanemad kui 6 kuud ja kus on üle 2 000 sõnumi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "6 hilabete baino zaharragoak diren eta 2,000 mezu baino gehiago dituzten Community elkarrizketetako mezuak ezabatu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف پیام از انجمن‌های قدیمی تر از ۶ ماه و انجمن‌هایی با بیش از 2000 پیام." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista viestit Community-keskusteluista, jotka ovat yli 6 kuukautta vanhoja ja joissa on yli 2,000 viestiä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Mga Mensaheng Nagtagal ng Higit sa 6 (na) Buwan at kung saan may higit sa 2,000 (na) mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimez les messages des Communautés de plus de 6 mois et où il y a plus de 2 000 messages." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar mensaxes das conversas en Comunidade de máis de 6 meses, e onde hai máis de 2,000 mensaxes." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge saƙonni daga tattaunawar Community wanda ya fi watanni 6 da wucewa, kuma inda akwai saƙonni sama da 2,000." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק הודעות משיחות קהילה שגילן מעל 6 חודשים, ובהן יש יותר מ-2,000 הודעות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "6 महीने से अधिक पुराने सामुदायिक वार्तालापों से, और जहां 2,000 से अधिक संदेश हों, संदेशों को हटा दें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbrišite poruke iz Community razgovora starije od 6 mjeseci i gdje ima više od 2.000 poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetek törlése a közösségi beszélgetésekből, amelyek régebbiek, mint 6 hónap, és ahol több, mint 2.000 üzenet van." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել Community զրույցների հաղորդագրությունները, որոնք հին են 6 ամիսից ավել և որտեղ առկա է 2,000-ից ավել հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus pesan dari percakapan Community yang lebih lama dari 6 bulan, dan di mana ada lebih dari 2.000 pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminare i messaggi dalle chat delle Comunità più vecchie di 6 mesi e con oltre 2.000 messaggi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "6ヶ月以上のコミュニティと2,000以上のメッセージがあるコミュニティからメッセージを削除します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშალეთ შეტყობინებები Community-ის საუბრებიდან, რომლებიც 6 თვეზე ძველია და 2,000-ზე მეტი შეტყობინებაა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបសារចេញពីសន្ទនាសហគមន៍ ដែលមាន វ័យចាស់ជាង ៦ ខែ និងមានចំណុចប្រទាក់សារលើសពី 2000" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "6 ತಿಂಗಳಿಗಿಂತ ಹಳೆಮಾದಿ ಮತ್ತು ೨,೦೦೦ ಸಂದೇಶಗಳು ಇರುವ ಸಮುದಾಯ ಸಂಭಾಷಣೆಗಳಿಂದ ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "6개월 이상된 커뮤니티 대화의 메시지와 2,000개 이상의 메시지를 삭제합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی پەیامەکان لەلایەن گفتوگۆیی کۆمەڵگا ئێستا لە 6 مانگان زووتر، و هەڵەتوان زۆربەی 2,000 پەیام هەبێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuggya ebibukiribwa mu Community conversations mapya nga z’emiyezi 6 ez’ensi, y29,000." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບຂໍ້ຄວາມຈາກການສົນທະນາຂອງ Community ເກີນຫົກເດືອນ, ແລະມີເກີນສອງພັນຂໍ້ຄວາມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti žinutes iš Bendruomenės pokalbių, senesnius nei 6 mėnesiai ir kur yra virš 2 000 žinučių." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst ziņojumus no Kopienas sarunām, kas vecāki par 6 mēnešiem un kur ir vairāk nekā 2 000 ziņojumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши пораки од разговори со заедницата постари од 6 месеци и каде што има повеќе од 2,000 пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community харилцан ярианаас 6 сараас дээш хугацааны, 2,000-аас дээш мессежтэй яриа устгана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padamkan mesej dari perbualan Community yang lebih lama dari 6 bulan, dan di mana terdapat lebih dari 2000 mesej." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community စကားပြောဆိုမှုများမှ ၆ လကျော်အရွယ်ရှိပြီး မက်ဆေ့ချ် ၂,၀၀၀ ကျော်ရှိသော မက်ဆေ့ချ်များကို ဖျက်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett meldinger fra Community-samtaler eldre enn 6 måneder, og der det er over 2,000 meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "६ महिना भन्दा पुराना र २,००० भन्दा बढी सन्देशहरू भएका समुदाय कुराकानीहरू मेटाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-berichten ouder dan 6 maanden verwijderen en afromen op 2000 berichten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett meldingar frå Community-samtalar eldre enn 6 månader, og der det er over 2 000 meldingar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani mauthenga kuchokera pa zokambirana za Community zosapitilira miyezi 6, ndi pamene pali mauthenga opitilira 2,000." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮਿਊਨਿਟੀ ਗੱਲਬਾਤਾਂ ਤੋਂ 6 ਮਹੀਨੇ ਤੋਂ ਵੱਧ ਪੁਰੇ ਹੋਏ ਅਤੇ 2,000 ਸੰਦੇਸ਼ ਸੰਦੇਸ਼ ਹਟਾਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń wiadomości z konwersacji społecznościowych starszych niż 6 miesięcy i zawierających ponad 2000 wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د 6 میاشتو څخه زاړه او 2000 څخه زیات پیغامونه له Community مکالمو پاک کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir mensagens de conversas da Comunidade mais antigas que 6 meses, e onde há mais de 2.000 mensagens." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar mensagens de conversas da Comunidade com mais de 6 meses, e onde há mais de 2,000 mensagens." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge mesajele din conversațiile din comunități mai vechi de 6 luni și din conversațiile unde sunt peste 2.000 de mesaje." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить сообщения из переписок сообщества старше 6 месяцев и в которых более 2,000 сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruke iz Community razgovora starijih od 6 mjeseci, gdje ima više od 2,000 poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජාවේ සම්භාෂණ වලින් මාස 6කට වඩා පැරණි පණිවිඩ මකා දමන්න, සහ පණිවිඩ 2,000 ඉක්මවී ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať správy z Community konverzácií starších ako 6 mesiacov, a kde je viac ako 2,000 správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbrišite sporočila iz pogovorov v skupnostih, ki so starejša od 6 mesecev in kjer je več kot 2000 sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshiji mesazhet nga bisedat e Community më të vjetra se 6 muaj, dhe ku ka mbi 2,000 mesazhe." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши поруке из Community преписки старије од 6 месеци, и када има преко 2000 порука." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruke iz konverzacija u Community starije od 6 meseci, i gde ih ima više od 2,000." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera meddelanden från Community-konversationer äldre än 6 månader, och där det finns över 2 000 meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa ujumbe kutoka Mazungumzo ya Community wenye umri zaidi ya miezi 6, na ambapo kuna zaidi ya jumbe 2,000." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "6 மாதங்களுக்கு மேற்பட்ட மற்றும் 2,000 தகவல்களுக்கு மேற்பட்ட Community உரையாடலிலிருந்து தகவலைகளை நீக்கு." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంఘాల సంభాషణల నుండి 6 నెలల కంటే పాతవి మరియు 2,000 సందేశాల కంటే ఎక్కువ ఉన్న సందేశాలను తొలగించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อความใน Community การสนทนาที่อายุมากกว่า 6 เดือน และมีข้อความมากกว่า 2,000 ข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk sohbetlerinden 6 aydan eski ve 2.000'den fazla mesaj içeren iletileri silin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видаляти повідомлення у спільнотах старше 6 місяців і де більше 2 000 повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community گفتگو سے پیغامات حذف کریں جو 6 مہینے سے زیادہ پرانے ہوں اور 2,000 سے زیادہ پیغامات ہوں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat suhbatlaridan 6 oydan oshgan va 2000 dan ortiq xabar mavjud bo'lgan xabarlarni o'chirish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa tin nhắn từ cuộc hội thoại Community cũ hơn 6 tháng, và nơi có hơn 2.000 tin nhắn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula imilayezo yeNguquko ezingaphaya kweinyanga ezi-6, nee malunga ne-2,000 yemilayezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除来自拥有超过2,000条消息的社群内6个月以上的旧消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除擁有2000條以上訊息的社群中,六個月之前的舊訊息" + } + } + } + }, + "conversationsNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuwe gesprek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مراسلة جديدة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni danışıq" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گلبگ ءِ کَتگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новая размова" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нов разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন কথোপকথন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversa nova" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nová konverzace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sgwrs newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neue Unterhaltung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Νέα Συνομιλία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova Konversacio" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nueva conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nueva conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uus vestlus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketa Berria" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمه جدید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusi keskustelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagong Pag-uusap" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nouvelle conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabon Tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחה חדשה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नई बातचीत" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novi razgovor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új beszélgetés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նոր զրույց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Percakapan Baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuova chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しい会話" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ახალი საუბარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការសន្ទនាថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಸಂಭಾಷಣೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 대화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتوگۆی نوێ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eddoboozi empya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naujas pokalbis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jauna sarakste" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нов разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ харилцан яриа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perbualan Baru" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Conversation" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नयाँ कुराकानी" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuw gesprek" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mushuk rimariy" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੀਂ ਗੱਲਬਾਤ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nowa rozmowa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوې خبرې اترې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova Conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversație nouă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новая беседа" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novi razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව සංවාදය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nová konverzácia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nov pogovor" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisedë e re" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова преписка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova konverzacija" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mazungumzo mapya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய உரையாடல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త సంభాషణ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสนทนาใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni Konuşma" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова бесіда" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نئی گفتگو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi Suhbat" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chuyện trò mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingxoxo Entsha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "新建会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "新對話" + } + } + } + }, + "conversationsNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het nog nie enige gesprekke nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا تملك أي محادثات حتى الآن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hələ heç bir danışığınız yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما نیش کنورزیشن بیت۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы пакуль не маеце размоў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие нямате никакви разговори досега" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার কোনো কথোপকথন নেই এখনো" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Encara no tens cap conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatím nemáte žádné konverzace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych unrhyw sgyrsiau eto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen samtaler endnu" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast noch keine Unterhaltungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε συνομιλίες ακόμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't have any conversations yet" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ankoraŭ ne havas konversaciojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aún no tienes conversaciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aún no tienes conversaciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil pole veel ühtegi vestlust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu elkarrizketarik oraindik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما هنوز هیچ مکالمه‌ای ندارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole vielä yhtään keskustelua" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala ka pang anumang pag-uusap" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez pas encore de conversations" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aínda non tes ningunha conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da zantuka a halin yanzu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עדיין אין לך שיחות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पास अभी तक कोई वार्तालाप नहीं है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemate razgovora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Még nincsenek beszélgetéseid" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք դեռևս ոչ մի զրույց ունեք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum memiliki percakapan satu pun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai ancora nessuna chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "まだ通知はありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ჯერ არ გაქვთ საუბრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​មិន​ទាន់​មានការសន្ទនាណាមួយនៅឡើយទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಇನ್ನೂ ಯಾವುದೇ ಸಂಭಾಷಣೆಗಳನ್ನು ಹೊಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "아직 대화가 없습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ هیچ گفتگووەکت نییە یەکەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina ngeri yenna ya kulagamu bukati." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs dar neturite pokalbių" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tev vēl nav nevienas sarunas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сè уште немате разговори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд одоогоор яриа байхгүй байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda belum mempunyai sebarang perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်တွင် စကားဝိုင်း မရှိသေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen samtaler ennå" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग अहिलेसम्म कुनै कुराकानीहरू छैनन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft nog geen gesprekken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga samtalar enno" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simunayambe kuyankhulana ndi aliyense" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ ਹਾਲੇ ਤੱਕ ਕੋਈ ਗੱਲਬਾਤ ਨਹੀਂ ਹੋਈ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz jeszcze żadnych konwersacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو لا تراوسه هېڅ خبرې ندي کړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você ainda não tem nenhuma conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainda não tem conversas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Încă nu ai conversații" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас пока нет бесед" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemaš nijednu poruku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට තවම සංවාදයක් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatiaľ nemáte žiadne konverzácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimate še nobenih pogovorov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni ende ndonjë bisedë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Још увек немате ниједан разговор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Još nemate nijednu konverzaciju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga konversationer än" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna mazungumzo yoyote bado" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களிடம் இதுவரை உரையாடல்கள் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీకు ఇంకా ఏ టిందనో సంభాషణలు లేవు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณยังไม่มีการสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Henüz herhangi bir konuşmanız yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас ще немає жодних розмов" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پاس ابھی تک کوئی گفتگو نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda hali suhbatlar yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn chưa có cuộc trò chuyện nào" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awunazo naziphi na iincoko okwangoku" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您还没有任何会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您還沒有任何對話" + } + } + } + }, + "conversationsSendWithEnterKey" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur met Enter Sleutel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسل مع مفتاح الدخول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter düyməsi ilə göndər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج کے ساتھ انٹر کلید" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адпраўце, націснуўшы клавішу Enter" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане с Enter клавиш" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এন্টার কি দিয়ে পাঠান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envieu amb la tecla Enter" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat klávesou Enter" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon gyda'r Allwedd Enter" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send med Enter-tasten" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mit Eingabetaste senden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή με το πλήκτρο Enter" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send with Enter Key" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi per la Eniga klavo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar con la tecla Into" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar con la tecla de enter" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada Enter-klahviga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidali Enter Teklarekin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال با کلید Enter" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä Enter-näppäimellä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-send gamit ang Enter Key" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer avec bouton Entrée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar coa tecla Enter" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika tare da Maɓallin Shigarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח עם מקש Enter" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एन्टर कुंजी के साथ भेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pomoću tipke Enter" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés az enter billentyűvel" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել Enter ստեղնով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim dengan Tombol Enter" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invia con il tasto Invio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter キーで送信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER ღილაკით გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើដោយប្រើខ្យល់ Key" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಂಟರ್ ಕೀ ಬಳಸಿ ಕಳುಹಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter 키를 사용하여 보내기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردن بە کلیلی ئێنتر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikira nga okozesa Enter Key" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti naudojant Enter" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīt ar Enter taustiņu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати со копчето Enter" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter товчлуурыг ашиглан илгээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar dengan Kekunci Enter" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Key ဖြင့် ပို့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send med Enter Key" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter कुञ्जीबाट पठाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzenden met Enter toets" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send med Enter Key" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send with Enter Key" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਨਟੀਰ ਕੁੰਜੀ ਨਾਲ ਭੇਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij za pomocą klawisza Enter" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د Enter کیلي سره ولیږئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar com a tecla Enter" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar com Enter" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite cu tasta Enter" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить с помощью клавиши Enter" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji sa Enter tipkom" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter යතුර සමග යවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odoslať správu tlačidlom Enter" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji s tipko Enter" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgoni me Enter Key" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи са ентер тастером" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pomoću tipke Enter" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sänd via tryckning på returtangent" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma na Kibonyezo cha Enter" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter விசையால் அனுப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎంటర్ కీతో పంపుము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งด้วยปุ่ม Enter" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter tuşu ile gönder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати клавішею Enter" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Key کے ساتھ بھیجنا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter tugmasi bilan jo'natish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi bằng Phím Enter" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela ngazo Ukhiye we-Enter" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用回车键发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回車鍵發送" + } + } + } + }, + "conversationsSendWithEnterKeyDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikking van die Enter Key sal boodskappe stuur in plaas van om ‘n nuwe lyn te begin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "النقر على مفتاح الدخول سوف يرسل الرسالة بدلا من بدء سطر جديد." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter düyməsinə toxunmaq, yeni bir sətir əlavə etmək əvəzinə mesajı göndərəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER کی تپی ھتادیپی پیام بجھڈی ہے، SHIFT + ENTER نوکی کورتھ شروع کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Націсканне Enter прывядзе да адпраўкі паведамлення замест пераходу на новы радок." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натискането на клавиша Enter ще изпрати съобщение вместо да започне нов ред." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এন্টার কী ট্যাপ করলে নতুন লাইন শুরু করার পরিবর্তে মেসেজ পাঠাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si piqueu la tecla Intro, s'enviarà un missatge en lloc d'iniciar una línia nova." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klepnutím na klávesu Enter odešlete zprávu namísto zahájení nového řádku." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapio'r Allwedd Mynd i mewn bydd yn anfon neges yn lle dechrau llinell newydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Når du trykker på Enter-tasten, sendes beskeder i stedet for at starte en ny linje." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durch Tippen auf die Eingabetaste wird eine Nachricht gesendet, anstatt eine neue Zeile zu beginnen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πατώντας το πλήκτρο Enter θα σταλεί μήνυμα αντί να ξεκινήσει μια νέα γραμμή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapping the Enter Key will send message instead of starting a new line." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frapante la Enigareton sendos mesaĝon anstataŭ komenci novan linion." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulsar la tecla Intro enviará el mensaje en lugar de empezar una nueva línea." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulsar la tecla Intro enviará el mensaje en lugar de empezar una nueva línea." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uuelt realt alustamise asemel saadab Enter-klahvi koputamine sõnumi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter Tekla sakatzeak mezua bidaliko du, lerro berri bat hasi beharrean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ضربه زدن روی کلید Enter به جای شروع یک خط جدید، پیام را ارسال خواهد کرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rivinvaihdon sijaan Enter-näppäimen painallus lähettää viestin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang pag-tap sa Enter Key ay magse-send ng mensahe sa halip na magsimula ng bagong linya." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appuyer sur la touche Entrée enverra un message au lieu de commencer une nouvelle ligne." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocar a tecla Enter enviará a mensaxe en vez de comezar unha nova liña." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matsawa maɓallin Shigarwa zai aika saƙo maimakon fara sabon layi." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לחיצה על מקש Enter תשלח הודעה במקום לפתוח שורה חדשה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एन्टर कुंजी को दबाने से संदेश भेजा जाएगा नई लाइन शुरू करने से बजाय।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritiskom na tipku Enter poslati će se poruka umjesto započinjanja novog retka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az Enter billentyű lenyomása elküldi az üzenetet új sor kezdése helyett." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter ստեղնը սեղմելով՝ նոր տող սկսելու փոխարեն հաղորդագրություն կուղարկվի:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengetuk Tombol Enter akan mengirim pesan alih-alih memulai baris baru." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Premere il tasto Invio invierà il messaggio invece d'iniziare una nuova riga." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enterキーをタップすると、改行ではなく、メッセージが送信されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter ღილაკზე დაჭერა აერტგზავნის შეტყობინებას, არა ახალი ხაზის დაწყებას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការ​ចុចលើឃី Enter នឹងផ្ញើសារជំនួសឱ្យការចុះបន្ទាត់ថ្មី។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಂಟರ್ ಕಿವಿಯನ್ನು ಟ್ಯಾಪ್ ಮಾಡುವುದರಿಂದ ಹೊಸ ಸಾಲು ಪ್ರಾರಂಭಿಸುವ ಬದಲು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter를 누를 때 줄바꿈 대신 메시지를 전송합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فەرمی پەیوەندیدانی کردنی کلیکی ئەنتەر پەیامیەک دەنێریت لە کاتی گۆڕینی هێڵی نوێ." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okukonako ku Kiwandiiko kye Kikuta kiyinza okuweereza obubaka ne kuttandika olunyiriri olupya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter klavišas siųs žinutę vietoje naujos eilutės pradžios." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieskaroties Enter taustiņam, tiks nosūtīta ziņa, nevis sākta jauna rinda." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Допирањето на копчето Enter ќе испрати порака наместо да започне нов ред." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter товч дарахад шинэ мөр эхлүүлэхийн оронд мессеж илгээнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengetuk Kekunci Masuk akan menghantar mesej daripada memulakan barisan baharu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter key ကိုနှိပ်ခြင်းဖြင့် စာကြောင်းအသစ်ကို စမည့်အစား မက်ဆေ့ခ်ျကို ပေးပို့ပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å trykke på Enter nøkkel vil sende melding i stedet for å starte en ny linje." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ENTER कुञ्जीले सन्देश पठाउनेछ भनेको नयाँ लाइन सुरु गर्नुको सट्टा।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Met de Enter Toets direct het bericht versturen in plaats van een nieuwe regel beginnen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å trykke på Enter nøkkel vil sende melding i stedet for å starte en ny linje." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dinani Makiyi Olimba kuti mutumize uthenga m'malo moyamba mzere watsopano." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੰਟਰ ਕੀ ਨੂੰ ਟੈਪ ਕਰਨ ਨਾਲ ਸੁਨੇਹਾ ਭੇਜਿਆ ਜਾਵੇਗਾ ਤਦ ਇਹ ਇਕ ਨਵੀਂ ਲਾਈਨ ਸ਼ੁਰੂ ਕਰਨ ਦੇ ਬਜਾਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naciśnięcie klawisza Enter spowoduje wysłanie wiadomości zamiast rozpoczęcia nowej linijki." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د انټر کلیک کول به پیغام واستوي پرځای د نوي کرښې پیل کولو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocar na tecla Enter enviará uma mensagem em vez de iniciar uma nova linha." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocar na tecla Enter enviará uma mensagem em vez de iniciar uma nova linha." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atingerea tastei Enter va trimite un mesaj în loc de a iniția o nouă linie." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нажатие Enter будет отправлять сообщение, а не начинать новую строку." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritiskom na tipku Enter poslat će se poruka umjesto da se započne novi redak." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇතුළුවීමේ යතුර තට්ටු කිරීම මෙම පණිවිඩය යවනු ඇත මෙන්ම නව තීරුවක් ආරම්භ කිරීම වෙනුවට." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Namiesto vytvorenia nového riadku v správe, aplikácia odošle správu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritiskanje tipke Enter bo namesto začetka nove vrstice poslalo sporočilo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klikimi i tastit Enter do të dërgojë mesazhin në vend që të fillojë një rresht të ri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Притиском на Enter тастер шаље се порука уместо започетог новог реда." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodir tastera Enter će poslati poruku umesto da započne novi red." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryck på returtangent sänder meddelande istället för att radbryta." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusa kitufe cha Ingiza ili kutuma ujumbe badala ya kuanza mstari mpya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "என்டர் விசையை அழுத்துவதன் மூலம் புதிய வரியை ஆரம்பிக்காமல் செய்தியினை அனுப்புகிறது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎంటర్ కీని టాప్ చేయడం ద్వారా కొత్త పంక్తి ప్రారంభం కాకుండా సందేశం పంపబడుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแตะปุ่ม Enter จะส่งข้อความแทนการเริ่มบรรทัดใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter tuşuna basmak yeni bir satıra geçmek yerine mesaj gönderir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натискання клавіші Enter буде відправляти повідомлення замість переходу на новий рядок." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "انٹر کی دبانے سے پیغام بھیجا جائے گا نہ کہ نئی سطر شروع کی جائے گی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter tugmasini bosish xabarni yuboradi, yangi satrdan boshlash o‘rniga." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bấm phím Enter sẽ gửi tin nhắn thay vì bắt đầu một dòng mới." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapping the Enter Key will send message instead of starting a new line." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "按回车键发送消息而非换行" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回車鍵發送訊息,而不是另起一行。" + } + } + } + }, + "conversationsSettingsAllMedia" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Media" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جميع الوسائط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün media" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام میڈیا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усе медыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виж всички файлове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সমস্ত মিডিয়া" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tot el contingut multimèdia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všechna média" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pob Cyfrwng" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle medier" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Medieninhalte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όλα τα πολυμέσα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "All Media" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉiuj aŭdvidaĵoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjuntos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adjuntos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogu meedia" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia guztia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام مدیا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaikki media" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahat ng Media" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tous les médias" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiros multimedia" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duk Kafofin Watsa Labarai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כל המדיה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी मीडिया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sva multimedija" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes médiafájl" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բոլոր մեդիաները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Semua Media" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutti i contenuti multimediali" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのメディア" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველა მედია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មានទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲ ಮಾಧ್ಯಮ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 미디어" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەموو میدیایەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emikutu Gyonna" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສື່ທັງໝົດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa medija" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa multivide" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сите медиуми" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүх Медианууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Semua Media" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မီဒီယာအားလုံး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle medier" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै मिडिया" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle media" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle medier" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zonse Zakanema" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰੀ ਮੀਡੀਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wszystkie media" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول میډیا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todas as mídias" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toda a Multimédia" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toate fișierele media" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Все медиафайлы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svi mediji" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලු මාධ්යය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všetky média" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vsi mediji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krejt mediat" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сви медији" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svi mediji" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alla media" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyombo vyote vya habari" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனைத்து ஊடகங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని మీడియా" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm Medya" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Всі медіа" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام میڈیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha Media" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tất cả tệp phương tiện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yonke Imithombo yeendaba" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "所有媒体" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "所有媒體" + } + } + } + }, + "conversationsSpellCheck" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speltoets" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التدقيق الإملائي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Orfoqrafiya yoxlanışı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسیلا چیک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Праверка правапісу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проверка на правописа" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বানান ঠিক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Revisar ortografia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrola pravopisu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiriad Sillafu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stavekontrol" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rechtschreibprüfung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορθογραφικός Έλεγχος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spell Check" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Literumkontrolo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Revisión ortográfica" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Revisión ortográfica" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Õigekirjakontroll" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ortografia Egiaztapena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بررسی املا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oikeinkirjoituksen tarkistus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spell Check" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vérification orthographique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Corrección Ortográfica" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Binciken Kalmomi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בדיקת איות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वर्तनी की जाँच" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Provjera pravopisa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helyesírás ellenőrzése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղղագրության ստուգում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemeriksa Ejaan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controllo ortografico" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スペルチェック" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოცნობა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពិនិត្យអក្ខរាវិរុទ្ធ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂಚಾಲಿತ ಪರಿಶೀಲನೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "맞춤법 검사" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پشکنینی ڕستەكان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spell Check" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rašybos tikrinimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pareizrakstības Pārbaude" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Правописна Провера" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үг бичих шалгалт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyemak Ejaan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားလုံးစစ်ခြင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stavekontroll" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हिज्जे जाँच" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spellingcontrole" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stavekontroll" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spell Check" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਜੇਸ਼ਉ ਚੈੱਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprawdzanie pisowni" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "املایي چک" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Corretor ortográfico" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificação ortográfica" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificare ortografie" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проверка орфографии" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Provjeravanje pravopisa" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අක්ෂර වින්‍යාස පරීක්ෂාව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrola pravopisu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preverjanje črkovanja" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrolli i drejtshkrimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Провера правописа" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Provera pravopisa" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrollera stavning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukaguzi wa Tahajia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சொல் சரிபார்ப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పర్యాశలించడానికి చెక్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจสอบการสะกด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yazım Denetimi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перевірка орфографії" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہجے چیک" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imlo tekshiruvi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiểm tra chính tả" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spell Check" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "拼写检查" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "拼寫檢查" + } + } + } + }, + "conversationsSpellCheckDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiveer speltoetsing wanneer boodskappe getik word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفعيل التحقق الإملائي عند كتابة الرسائل." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj yazarkən orfoqrafik yoxlanışı fəallaşdır." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات ٹائپ کرتے وقت ہجے کی تصدیق کو فعال کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уключыць праверку правапісу пры наборы паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активиране на автокорекция при писане на съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা টাইপ করার সময় বানান পরীক্ষা সক্রিয় করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activa la revisió ortogràfica quan escrius missatges." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povolit kontrolu pravopisu při psaní zpráv." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galluogi gwirio sillafu wrth deipio negeseuon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver stavekontrol, når du skriver beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rechtschreibprüfung bei der Eingabe von Nachrichten aktivieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ενεργοποίηση ορθογραφικού ελέγχου κατά την πληκτρολόγηση μηνυμάτων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enable spell check when typing messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebligi literumkontrolon dum skribadi mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar el corrector ortográfico." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar corrección ortográfica al escribir mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luba õigekirjakontrolli, kui kirjutate sõnumeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak idaztean ortografia-egiaztatzea gaitu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "چک کردن املای کلمات را در هنگام تایپ کردن فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käytä oikolukua kirjoitettaessa viestejä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-enable ang spell check kapag nagta-type ng mga mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activer le correcteur d'orthographe pour la saisie des messages." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunna dubawa na rubutu lokacin shigar da saƙonni." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לאפשר בדיקת איות בעת הקלדת הודעות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश टाइप करते समय वर्तनी जांच सक्षम करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi provjeru pravopisa prilikom tipkanja poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A helyesírás-ellenőrzés engedélyezése üzenetek írásakor." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել ուղղագրության ստուգումը հաղորդագրություններ մուտքագրելիս:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan pemeriksaan ejaan saat mengetik pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abilita i suggerimenti da tastiera." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებების აკრეფისას ჩართე მართლწერის შემოწმება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើកការពិនិត្យអក្ខរាវិរុទ្ធនៅពេលវាយសារ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಟೈಪ್ ಮಾಡುವಾಗ ಸ್ಪೆಲ್ ಚೆಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지를 입력할 때 맞춤법 검사를 활성화합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالاککردنی ڕاستەکەوت لە کاتی نوسینی پەیامەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika spell check bw'ogwandiika obubaka." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įjungti rašybos tikrinimą, rašant žinutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iespējot pareizrakstības pārbaudi, rakstot ziņojumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможи проверка на правопис додека пишувате пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж бичих үед гарын үсгийн алдааг шалгахыг идэвхжүүлэх." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan pemeriksaan ejaan semasa menaip mesej." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်ရိုက်နေစဉ် အမှားများစစ်ဆေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver stavekontroll når du skriver meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश टाइप गर्दै Spell चेक सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spellingscontrole inschakelen tijdens het typen van berichten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru på stavekontroll når du skriv meldingar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yambitsa kuwunika kolakwitsa mukamalemba mauthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਦਰਸ਼ਣ ਹਿਜੇ ਲਿਖਣ ਦੇ ਸਮੇਂ ਸੁਧਾਰ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Włącz sprawdzanie pisowni podczas pisania wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پیغامونو ټایپولو پر مهال د املا چک فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Habilitar verificação ortográfica ao digitar mensagens." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir corretor ortográfico ao escrever mensagens." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activează verificarea ortografică pentru scrierea mesajelor." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включить проверку орфографии при наборе сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući provjeru pravopisa prilikom tipkanja poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ ලිවීමේදී අක්ෂර වින්‍යාස පරීක්ෂාව සබල කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povoliť kontrolu pravopisu pri písaní správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogočite preverjanje črkovanja med tipkanjem sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivizo drejtshkrimin kur shkruan mesazhe." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Омогући проверу правописа приликом куцања порука." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogućava proveru pravopisa prilikom kucanja poruka." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivera stavningskontroll när du skriver meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wezesha uangalizi wa tahajia unapopatajumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்திகளை தட்டச்சு செய்யும்பொழுது, எழுத்துப் பரிசோதனையை இயக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు టైప్ చేయడం ప్రారంభించినప్పుడు స్పెల్ చెక్ ప్రారంభించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิดใช้การตรวจสอบการสะกดเมื่อพิมพ์ข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj yazarken yazım denetimini etkinleştirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увімкнути перевірку орфографії під час введення повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات لکھتے وقت ہجے کی جانچ فعال کریں." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlarni yozayotganda imlo tekshiruvini yoqish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bật kiểm tra chính tả khi nhập tin nhắn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela ukupela ngokuzenzekelayo xa ubhala imilayezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在输入消息时启用拼写检查。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入訊息時進行拼寫檢查。" + } + } + } + }, + "conversationsStart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begin Gesprek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابدأ محادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıq başlat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گپتاری شروع کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пачаць гутарку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започнете разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন শুরু করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comença una conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahájit konverzaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dechrau Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unterhaltung beginnen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έναρξη Συνομιλίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komenci Babilon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comenzar Conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alusta vestlust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has zaitez Elkarrizketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شروع گفتگو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aloita keskustelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulan ang Usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Démarrer une conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fara Tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התחל שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्तालाप शुरू करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započni razgovor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés indítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկսել զրույցը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulai Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inizia chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話を開始する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საუბრის დაწყება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាប់ផ្តើមសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 시작하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەستپێکردنی گفتوگۆ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika Okwogera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradėti naują pokalbį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sākt Sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни Конверзација" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Яриа эхлүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulakan Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောစတင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी सुरु गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek starten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Conversation" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozpocznij rozmowę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرو اترو پیل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Începe o conversație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Начать беседу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්භාෂණය ආරම්භ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začať príhovor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začni pogovor" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filloni Bisedën" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни разговор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započni razgovor" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starta konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anza Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலைத் தொடங்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణ ప్రారంభించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เริ่มการสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbet Başlat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Почати розмову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو شروع کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni boshlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bắt đầu cuộc trò chuyện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Conversation" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "开始会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "開始會話" + } + } + } + }, + "copied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gekopieër" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم النسخ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyalandı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نکل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіравана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирано" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কপি করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha copiat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkopírováno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïwyd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieret" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγράφηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copied" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiite" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeritud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiatu da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی‌شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioitu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakopya na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copié" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiouse" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הועתק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉपी किया गया!" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Másolva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենվել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disalin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コピーしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაკოპირებულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានចម្លង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಕಲು ಮಾಡಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복사됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبەرگرتن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຄັດລອກເເລ້ວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nukopijuota" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nokopēts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуулсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disalin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကို ကူးယူပြီးပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiert" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतिलिपि बनाइएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gekopieerd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiert" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotengera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਕਲ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopiowano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "S-a copiat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопировано" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිටපත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopírované" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kopjua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopirano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopierad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imenakiliwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நகலெடுக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రతి తీసుకోబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คัดลอกแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyalandı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопійовано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپی کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nusxalandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã sao chép" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikopiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已复制" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已複製" + } + } + } + }, + "copy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyala" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіяваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কপি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiér" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγραφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopii" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copier" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉपी करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Másolás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コピーする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაკოპირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចម្លង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಕಲಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복사" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبەرگرتن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopijuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကူးယူမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतिलिपि गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਕਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د حساب ID کاپي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiază" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිටපත්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நகலெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాపీ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คัดลอก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyala" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копіювати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپی کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nusxalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "拷貝" + } + } + } + }, + "create" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yarat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بناؤ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създай" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "তৈরি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvořit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opret" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erstellen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krei" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loo" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sortu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایجاد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luo" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lumikha" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Créer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙiri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvori" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Létrehozás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ստեղծել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "作成する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შექმნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្កើត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರಚಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "만들기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دروستکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilira" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລູດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sukurti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveidot" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үүсгэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖန်တီးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिर्जना गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanmaken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeretsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬਨਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utwórz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د نوي اړیکې سره خبرې اترې پیل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සාදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvoriť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvari" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krijo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unda" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உருவாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సృష్టించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oluştur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بنائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaratish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenza" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "建立" + } + } + } + }, + "cut" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sny" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قص" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kəs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выразаць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изрязване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কাটুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retalla" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyjmout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Torri" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klip" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ausschneiden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποκοπή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cut" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltondi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lõika" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaki" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leikkaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putulin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couper" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanke" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גזור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izreži" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kivágás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կտրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potong" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taglia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "切り取り" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამოჭრა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕತ್ತರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘라내기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "قطع کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "temula" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຕັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iškirpti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgriezt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сечи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таслах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potong" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ချည်းကုတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klipp ut" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "काट्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Knippen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klipp ut" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dula" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੱਟੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wytnij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات له منځه ندي تللي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cortar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Decupează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вырезать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izreži" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කපන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vystrihnúť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odreži" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prije" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изрежи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iseci" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klipp ut" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பிரி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కట్ చేయడం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตัด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kes" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вирізати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاٹیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cắt" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sika" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "剪切" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "剪下" + } + } + } + }, + "databaseErrorGeneric" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "’n Databasisfout het voorgekom.

Voer jou toepassingslogboeke uit om te deel vir foutsporing. Indien dit onsuksesvol is, herinstalleer {app_name} en herstel jou rekening.

Waarskuwing: Dit sal lei tot die verlies van alle boodskappe, aanhegsels, en rekeningdata ouer as twee weke." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدث خطأ في قاعدة البيانات.

صدر سجلات التطبيق الخاصة بك للمشاركة في استكشاف الأخطاء وإصلاحها. إذا لم ينجح ذلك، أعد تثبيت {app_name} واستعد حسابك.

تحذير: سيؤدي ذلك إلى فقدان جميع الرسائل والمرفقات وبيانات الحساب التي يزيد عمرها عن أسبوعين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir databaza xətası baş verdi.

Problemin aradan qaldırılması üçün tətbiq jurnalınızı paylaşmaq məqsədilə xaricə köçürün. Bu uğursuz olsa, {app_name} tətbiqini təkrar quraşdırıb hesabınızı bərpa edin.

Xəbərdarlıq: Bu, iki həftədən köhnə olan bütün mesajların, qoşmaların və hesab datasının itməsi ilə nəticələnəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database error wajaht bravestā.

Apē application logs export ke troubleshooting bare. Agar u naęt, {app_name} reinstall ke a hare account still bāz ke.

Warning: Ē war result hōk wando messages attachment a all account data pur z du hafte purān gōh." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адбылася памылка базы дадзеных.

Экспартаваць часопісы прыкладання для падзелу для ліквідацыі непаладак. Калі гэта не ўдасца, перавстанавіць {app_name} і аднавіць свой уліковы запіс.

Папярэджанне: гэта прывядзе да страты ўсіх паведамленняў, укладанняў і дадзеных уліковага запісу, старэйшых за два тыдні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възникна грешка в базата данни.

Експортирайте логовете на приложението, за да ги споделите за отстраняване на проблемите. Ако това не успее, преинсталирайте {app_name} и възстановете акаунта си.

Предупреждение: Това ще доведе до загуба на всички съобщения, прикачени файлове и данни за акаунта, по-стари от две седмици." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি ডাটাবেস ত্রুটি ঘটেছে।

আপনার অ্যাপ্লিকেশন লগগুলি রপ্তানি করুন, সমস্যার সমাধানের জন্য শেয়ার করুন। এটি ব্যর্থ হলে, {app_name} পুনঃইনস্টল করুন এবং আপনার অ্যাকাউন্ট পুনরুদ্ধার করুন।

সতর্কতা: এটি সমস্ত মেসেজ, সংযুক্তি এবং দুই সপ্তাহের পুরানো অ্যাকাউন্ট ডেটার ক্ষতি করবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha produït un error de la base de dades.

Exporteu els registres de l'aplicació per compartir-los per a la resolució de problemes. Si no té èxit, reinstal·leu {app_name} i restaureu el vostre compte.

Advertència: Això suposarà la pèrdua de tots els missatges, fitxers adjunts i dades del compte anteriors a dues setmanes." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo k chybě databáze.

Exportujte své aplikační logy a sdílejte je pro účely diagnostiky. Pokud to nebude úspěšné, přeinstalujte {app_name} a obnovte svůj účet.

Varování: To povede ke ztrátě všech zpráv, příloh a údajů účtu starších než dva týdny.
" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gwall cronfa ddata wedi digwydd.

Allforiwch gofnodion eich cais i'w rhannu ar gyfer datrys problemau. Os yw hyn yn aflwyddiannus, ailosodwch {app_name} a adfer eich cyfrif.

Rhybudd: Bydd hyn yn arwain at golled o'r holl negeseuon, atodiadau, a data cyfrif sydd ymhellach i ffwrdd na phythefnos." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der opstod en databasefejl.

Eksportér dine applikationslogfiler for at dele til fejlfinding. Hvis dette ikke lykkes, geninstaller {app_name} og gendan din konto.

Advarsel: Dette vil resultere i tab af alle beskeder, vedhæftede filer og kontodata ældre end to uger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein Datenbankfehler ist aufgetreten.

Exportiere deine Protokolldateien, um sie für die Fehlerbehebung bereitzustellen. Wenn dies nicht erfolgreich ist, installiere {app_name} neu und stelle deinen Account wieder her.

Achtung: Dies führt zum Verlust aller Nachrichten, Anhänge und sonstigen Daten, die älter als zwei Wochen sind." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρουσιάστηκε σφάλμα στη βάση δεδομένων.

Εξάγετε τα αρχεία καταγραφής της εφαρμογής σας για να τα μοιραστείτε για αντιμετώπιση προβλημάτων. Αν αυτό δεν επιτύχει, επανεγκαταστήστε την εφαρμογή {app_name} και αποκαταστήστε το λογαριασμό σας.

Προειδοποίηση: Αυτό θα καταλήξει σε απώλεια όλων των μηνυμάτων, συνημμένων και δεδομένων λογαριασμού που είναι παλαιότερα από δύο εβδομάδες." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A database error occurred.

Export your application logs to share for troubleshooting. If this is unsuccessful, reinstall {app_name} and restore your account.

Warning: This will result in loss of all messages, attachments, and account data older than two weeks." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okazis datumbaza eraro.

Eksportu viajn uzaddosierojn por kunhavigi por sensiligi. Se ĉi tio malsukcesas, re-instalu {app_name} kaj restaŭru vian konton.

Averto: Ĉi tio rezultos en perdo de ĉiuj mesaĝoj, enmetaĵoj, kaj kontaj datumoj pli malnovaj ol du semajnoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se produjo un error en la base de datos.

Exporta tus registros de aplicación para compartirlos y solucionar problemas. Si no tiene éxito, reinstala {app_name} y restaura tu cuenta.

Advertencia: Esto resultará en la pérdida de todos los mensajes, adjuntos y datos de la cuenta mayores de dos semanas." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un error en la base de datos.

Exporta tus registros de aplicación para compartirlos con fines de resolución de problemas. Si esto no tiene éxito, reinstala {app_name} y restaura tu cuenta.

Advertencia: Esto resultará en la pérdida de todos los mensajes, archivos adjuntos y datos de cuenta anteriores a dos semanas." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmebaasi viga.

Ekspordi oma rakenduslogid, et jagada tõrkeotsinguteks. Kui see ei õnnestu, installige {app_name} uuesti ja taastage oma konto.

Hoiatus: Selle tulemusel kaotate kõik kaks nädalat vanemad sõnumid, manused ja kontoandmed." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datu-base errorea gertatu da.

Aplikazioaren egunkariak esportatu arakatzean partekatzeko. Honek huts egiten badu, {app_name} berriro instalatu eta zure kontua berreskuratu.

Abisua: Honek bi aste baino gehiagoko mezu, fitxategi eta kontu datu guztiak galduko ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطایی در پایگاه داده روی داده است.

گزارش‌های برنامه خود را به اشتراک بگذارید برای رفع مشکلات. اگر ناموفق بود، {app_name} را مجدداً نصب کنید و حساب خود را بازگردانید.

هشدار: این کار باعث از دست رفتن تمام پیام‌ها، پیوست‌ها و داده‌های حساب کاربری قدیمی‌تر از دو هفته می‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapahtui tietokantavirhe.

Vie sovelluslokisi vianselvitystä varten. Jollei tämä onnistu, asenna {app_name} uudelleen ja palauta tilisi.

Varoitus: Tämän seurauksena kaikki kahta viikkoa vanhemmat viestit, liitteet ja tilitiedot menetetään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagkaroon ng error sa database.

I-export ang mga log ng iyong application upang ibahagi para sa troubleshooting. Kung hindi ito magtagumpay, i-reinstall ang {app_name} at i-restore ang iyong account.

Babala: Magreresulta ito sa pagkawala ng lahat ng mensahe, attachment, at data ng account na mas luma sa dalawang linggo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une erreur de base de données est survenue.

Exportez vos journaux d'application pour les partager pour le dépannage. Si cela échoue, réinstallez {app_name} et restaurez votre compte.

Attention: Cela entraînera la perte de tout les messages, pièces jointes et données de compte de plus de deux semaines." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Produciuse un erro na base de datos.

Exporta os rexistros da túa aplicación para compartilos na resolución de problemas. Se non é exitoso, reinstala {app_name} e restaura a túa conta.

Advertencia: Isto resultará na perda de todas as mensaxes, anexos e datos de conta anteriores a dúas semanas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An sami kuskuren bayanai.

Fitar da bayanan aikace-aikacen ku don rabawa don warware matsala. Idan wannan bai yi nasara ba, sake sanya {app_name} kuma dawo da asusunku.

Gargadi: Wannan zai haifar da asarar duk saƙonni, haɗe-haɗe, da bayanan asusu sama da sati biyu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אירעה שגיאת מסד נתונים.

ייצא את יומני היישום שלך לשיתוף לצורך פתרון בעיות. אם זה לא יצליח, התקן מחדש את {app_name} ושחזר את חשבונך.

אזהרה: פעולה זו תגרום לאובדן כל ההודעות, הקבצים המצורפים ונתוני חשבונות שאינם חדשים יותר משבועיים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटाबेस त्रुटि हुई है।

समस्या निवारण के लिए अपने एप्लिकेशन लॉग्स को साझा करने के लिए निर्यात करें। यदि यह असफल रहता है, तो {app_name} को पुनर्स्थापित करें और अपना खाता पुनः प्राप्त करें।

चेतावनी: इससे सभी संदेशों, अनुलग्नकों, और खाते के डेटा का नुकसान होगा जो दो सप्ताह से अधिक पुराने हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do pogreške u bazi podataka.

Izvezite svoje zapisnike aplikacije kako biste ih podijelili za otklanjanje poteškoća. Ako to ne uspije, ponovo instalirajte {app_name} i vratite svoj račun.

Upozorenje: Ovo će rezultirati gubitkom svih poruka, privitaka i podataka računa starijih od dva tjedna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatbázishiba történt.

Exportáld az alkalmazás naplóit, hogy megoszhasd azokat a hibaelhárításhoz. Ha ez nem sikerül, telepítsd újra a(z) {app_name}-t és állítsd vissza a fiókod.

Figyelem: Ez az összes két hétnél régebbi üzenet, melléklet és fiókadat elvesztésével jár." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալների բազայի սխալ է տեղի ունեցել:

Արտահանեք ձեր ծրագրի տեղեկամատյանները՝ տրամադրելով դրանք troubleshooting-ի համար: Եթե դա չհաջողվի, վերատեղադրեք {app_name} և վերականգնեք ձեր հաշիվը:

Զգուշացում: Սա կհանգեցնի բոլոր հաղորդագրությունների, կցորդների և հաշվետվությունների տվյալների կորստի, որոնք անցել են ավելի քան երկու շաբաթ անց:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terjadi kesalahan database.

Ekspor log aplikasi Anda untuk dibagikan sebagai solusi pemecahan masalah. Jika tidak berhasil, instal ulang {app_name} dan pulihkan akun Anda.

Peringatan: Hal ini akan mengakibatkan hilangnya semua pesan, lampiran, dan data akun yang lebih lama dari dua minggu." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si è verificato un errore del database.

Esporta i log dell'applicazione per condividerli e analizzare il problema. Se ciò non riesce, reinstalla {app_name} e ripristina il tuo account.

Avviso: questo comporterà la perdita di tutti i messaggi, gli allegati e i dati dell'account più vecchi di due settimane." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データベース エラーが発生しました。

トラブルシューティングのために共有するためにアプリケーション ログをエクスポートします。これが失敗した場合は、{app_name} を再インストールし、アカウントを復元してください。

警告: これにより、2 週間以上前のすべてのメッセージ、添付ファイル、アカウント データが失われます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოხდა მონაცემთა ბაზის შეცდომა.

გამოიტანეთ თქვენი აპლიკაციის ჟურნალები, რათა გააზიაროთ პრობლემების აღმოფხვრა. თუ ეს წარუმატებელია, ხელახლა დააინსტალირეთ {app_name} და აღადგინეთ თქვენი ანგარიში.

გაფრთხილება: ეს გამოიწვევს ყველა შეტყობინების, დანართის და ორ კვირაზე ძველი ანგარიშის მონაცემის დაკარგვას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានបញ្ហាមូលដ្ឋានទិន្នន័យបានកើតឡើង។

នាំចេញការកំណត់ត្រាអនុវត្តរបស់អ្នកដើម្បីចែករំលែកសម្រាប់ដោះស្រាយបញ្ហា។ ប្រសិនបើការនេះមិនបានជោគជ័យទេ សូមធ្វើការដំឡើង {app_name}

ឡើងវិញ និងស្តារឡើងវិញគណនីរបស់អ្នក។ ព្រមាន៖ នេះនឹងធ្វើឲ្យពុះសារទាំងនោះ មាតិកាភ្ជាប់ខាងក្នុង និងទិន្នន័យគណនីដែលចាស់ជាងពីរ​សប្តាហ៍បាត់មួយរយៈពេលខ្លី។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೇಟಾಬೇಸ್ ದೋಷವಾಗಿದೆ.

ನಿಮ್ಮ ಅನ್ವಯಿಕ ಲಾಗ್‌ಗಳನ್ನು ರಫ್ತು ಮಾಡಿ ಹಾಗೂ ತಾಂತ್ರಿಕ ದೋಷ ನಿವಾರಣೆಗಾಗಿ ಹಂಚಿಕೆಗೆ ಒದಗಿಸಿ. ಇದು ಯಶಸ್ವಿಯಾಗದಿದ್ದರೆ, {app_name} ಅನ್ನು ಪುನಃಸ್ಥಾಪಿಸಿ ಮತ್ತು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹಿಂತಿರುಗಿಸಿ.

ಎಚ್ಚರಿಕೆ: ಇದರಿಂದ ಎರಡು ವಾರಕ್ಕಿಂತ ಹಳೆಯದಾದ ಎಲ್ಲಾ ಸಂದೇಶಗಳು, ಹೊಂದಿಕೆಗಳು, ಮತ್ತು ಖಾತೆ ಮಾಹಿತಿಗಳು ಕಳೆದುಹೋಗಲಿವೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 오류가 발생했습니다.

문제 해결을 위해 애플리케이션 로그를 내보내서 공유하십시오. 실패할 경우, {app_name}을 다시 설치하고 계정을 복원하십시오.

경고: 이 작업은 2주 이상 지난 모든 메시지, 첨부 파일 및 계정 데이터의 손실을 초래할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەی داتاکان ڕوویدا.

لۆگی کرداری بەکارهێنانەکانت بخەرە دەرەوە بۆ هاوبەشی هەڵەکە. ئەگەر ئەمە سەرکەوتوو نەبوو، {app_name} دووبارە دایبمەزرێنەوە و ئەکاونتەکەت ڕۆیشتنەوە.

ئاگاداری: ئەمە ئەنجامی بەسەرھەڵدەات له هەموو نامەکان، ھەڤپەیوەندەکان و داتاکانی ئەکاونت بەرە لە دوو هەفتە بچیت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waliwo ensobi mu database.

Weereza ebizito by'ebifaananyi by'ekiranga okusobola okuetongereza. Bw'eba ekino ki sembral, ndamu {app_name} otandiseewo n'okubizuuliza ku akooti yo.

Obulabe: Kino kijja kuba kwesitukira mu kufuuka kwa messages zonna, ebifaananyi, n'amatabi ga accounts ey'emyaka ebiri p..." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ມີຄວາມຜິດພາດຖານຂໍ້ມູນເກີດຂຶ້ນ.

ສົ່ງບັນທຶກແອັບຂອງທ່ານເພື່ອແບ່ງປັນສຳລັບການແກ້ໄຂບັນຫາ. ຖ້າບໍ່ສໍາເລັດ, ຕິດຕັ້ງໃໝ່ {app_name} ແລະ ໄດ້ຄືນມາສູ່ບັນຊີຂອງທ່ານ.

ເຕືອນ: ຜົນອັນນີ້ຈະງາມມີການສູນເສຍຂໍ້ຄວາມທັງໝົດ, ໄຟລ໌ແນບແລະຂໍ້ມູນບັນຊີຢ່າງເກົ່າສອງອາທິດ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įvyko duomenų bazės klaida.

Eksportuokite savo programos žurnalus, kad galėtumėte juos pasidalinti sprendžiant problemas. Jei tai bus nesėkminga, perinstaliuokite {app_name} ir atkurkite savo paskyrą.

Įspėjimas: Tai sukels visų pranešimų, priedų ir paskyros duomenų senesnių nei dviejų savaičių praradimą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notikusi datubāzes kļūda.

Eksportējiet savu lietotnes žurnālus, lai kopīgotu tos problēmu novēršanai. Ja tas nav veiksmīgs, pārinstalējiet {app_name} un atjaunojiet savu kontu.

Brīdinājums: Tas izraisīs visu ziņu, pielikumu un konta datu zaudēšanu, kas vecāki par divām nedēļām." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настана грешка во базата на податоци.

Извенете ги вашите дневници на апликација за да ги споделите за решавање на проблемите. Ако ова не е успешно, повторно инсталирајте ја {app_name} и вратете го вашиот акаунт.

Предупредување: Ова ќе резултира со губење на сите пораки, прилози и податочни записи постари од две недели." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өгөгдлийн сангийн алдаа гарлаа.

Алдааг олж засварлах зорилгоор аппликешны бүртгэлээ экспортлох. Хэрэв энэ амжилтгүй болвол {app_name}-г дахин суулгаад бүртгэлээ сэргээнэ үү.

Анхааруулга: Энэ нь хоёр долоо хоногоос дээш настай бүх мессеж, хавсралт болон бүртгэлийн өгөгдөл алдагдах болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat pangkalan data berlaku.

Eksport log aplikasi anda untuk bahagian penyelesaian masalah. Jika ini tidak berjaya, pasang semula {app_name} dan kembalikan akaun anda.

Amaran: Ini akan menyebabkan kehilangan semua mesej, lampiran, dan data akaun lebih lama daripada dua minggu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာဘေ့စ အမှားတစ်ခု ဖြစ်ပွားသည်။

သင့်အက်ပလီကေးရှင်း လော့ဂ်များကို ထုတ်လွှင့်ပြီး ပြဿနာရှင်းရန် မျှဝေပါ။ ဤအောင်မြင်မှုမရှိပါက {app_name} ကို ပြန်ထည့်သွင်းပြီး သင့်အကောင့်ကို ပြန်လည်ထူထောင်ပါ။

သတိပေးချက်- ဤလုပ်ဆောင်ချက်သည် သင့်မက်ဆေ့ချ်များ၊ ပူးတွဲချက်နှင့် သုံးလကြာသော အကောင့်ဒေတာအားလုံး ပျောက်ဆုံးစေနိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En databasefeil ,å dele for feilsøking.

Hvis dette mislykkes, installer {app_name} på nytt og gjenopprett kontoen din.

Advarsel: Dette vil resultere i tap av alle meldinger, vedlegg og kontodata som er eldre enn to uker." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटाबेस त्रुटि भयो।

आफ्ना एप्लिकेसन लगहरू निर्यात गर्नुहोस् troubleshooting को लागि साझा गर्न। यो असफल भएमा, {app_name} पुनर्स्थापना गर्नुहोस् र आफ्नो खाता पुनर्स्थापना गर्नुहोस्।

चेतावनी:यसले दुई हप्तासम्म पुरानो सबै सन्देश, संलग्नकहरू, र खाता डाटामा नोक्सान हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een databasefout opgetreden.

Exporteer uw applicatielogs om te delen voor probleemoplossing. Als dit niet lukt, installeer {app_name} opnieuw en herstel uw account.

Waarschuwing: Dit zorgt voor verlies van alle berichten, bijlagen en accountgegevens ouder dan twee weken." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det oppsto ein databasefeil.

Eksporter loggane dine for å dela for feilsøking. Om dette ikkje lukkast, installér {app_name} på nytt og gjenopprett kontoen din.

Advarsel: Dette vil resultere i tap av makulerte meldingar, vedlegg og kontodata eldre enn to uker." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakhala vuto la danga la data.

Tumizani zolembera zanu za mapulogalamu kuti mugawane ndi kukonza. Ngati izi sizichitika bwino, bwelersani {app_name} ndikubwezeretsanso akaunti yanu.

Chenjezo: Izi zidzakhudza kutayika kwa mauthenga onse, zolemba zomata, ndi data ya akaunti ya milungu iwiri." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਡੇਟਾਬੇਸ ਤਰੁੱਟੀ ਉਤਪੰਨ ਹੋਈ।

ਆਪਣੇ ਐਪਲੀਕੇਸ਼ਨ ਲਾਗਸ ਨੂੰ ਸ਼ੇਅਰ ਕਰਨ ਲਈ ਐਕਸਪੋਰਟ ਕਰੋ। ਜੇ ਇਹ ਅਸਫਲ ਹੋ ਜਾਂਦਾ ਹੈ, ਤਾਂ {app_name} ਦੁਬਾਰਾ ਇੰਸਟਾਲ ਕਰੋ ਅਤੇ ਆਪਣੇ ਖਾਤੇ ਨੂੰ ਬਚਾਓ।

ਚੇਤਾਵਨੀ: ਇਹ ਸਾਰੇ ਸੁਨੇਹੇ, ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਖਾਤਾ ਡਾਟਾ ਜੋ ਕਿ ਦੋ ਹਫਤੇ ਤੋਂ ਵੱਧ ਪੁਰਾਣੇ ਹਨ, ਖੋ ਜਾਣਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wystąpił błąd bazy danych.

Wyeksportuj dzienniki aplikacji, aby udostępnić je w celu rozwiązania problemu. Jeśli to się nie powiedzie, zainstaluj ponownie aplikację {app_name} i przywróć swoje konto.

Ostrzeżenie: spowoduje to utratę wszystkich wiadomości, załączników i danych konta starszych niż dwa tygodnie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډیټابیس تېروتنه وشوه.

خپل اپلیکیشن لوګونه صادر کړئ ترڅو د ډیبګ کولو لپاره یې شریک کړئ. که دا ناکامه شي، {app_name} بیا نصب کړئ او خپل حساب بیا فعاله کړئ.

خبرداری: دا به ټول پیغامونه، نښلول شوي سندونه او د حساب ډاډا له دوه اونیو څخه زوړ له لاسه ورکړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro no banco de dados.

Exporte seus logs de aplicativos para compartilhar para solução de problemas. Se isso não funcionar, reinstale {app_name} e restaure sua conta.

Aviso: Isso resultará na perda de todas as mensagens, anexos e dados da conta com mais de duas semanas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro na base de dados.

Exporte os registos da sua aplicação para partilhar para resolução do problema. Se isso não for bem-sucedido, reinstale {app_name} e restaure sua conta.

Aviso: Isto resultará na perda de todas as mensagens, anexos e dados da conta com mais de duas semanas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "A apărut o eroare în baza de date.

Exportați jurnalele aplicației dvs. pentru a le partaja în scopuri de depanare. Dacă acest lucru nu reușește, reinstalați {app_name} și restaurați contul.

Atenție: Acest lucru va duce la pierderea tuturor mesajelor, atașamentelor și datelor contului mai vechi de două săptămâni." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Произошла ошибка базы данных.

Экспортируйте журналы вашего приложения для устранения неполадок. Если это не поможет, переустановите {app_name} и восстановите ваш аккаунт.

Предупреждение: Это приведет к потере всех сообщений, вложений и данных аккаунта, которым больше двух недель." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do greške baze podataka.

Izvezi dnevnike aplikacije da biste ih podijelili za rješavanje problema. Ako to nije uspješno, ponovo instaliraj {app_name} i vrati svoj račun.

Upozorenje: Ovo će rezultirati gubitkom svih poruka, privitaka i podataka o računu starijih od dvije sedmice." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්ත සමුදාීය දෝෂයක් සිදුවිය.

නිරාකරණය සඳහා ඔබේ යෙදුම් ලොග් නිර්යාත කරන්න.මෙම අසාර්ථක නම් සිදු වුවහොත්,{app_name} යෙදුම නැවත ස්ථාපනය කර ඔබේ ගිනුම පිහිටුවන්න.

අවවාදය: මෙය සතියකට වැඩි පණිවුඩ, ඇමුණුම් සහ ගිනුම් දත්ත නැතිවීම කරටු සහිතව අවසන් කරාවි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyskytla sa chyba databázy.

Exportujte svoje denníky aplikácie, aby ste ich mohli zdieľať na riešenie problémov. Ak to nebude úspešné, preinštalujte {app_name} a obnovte váš účet.

Varovanie: To povedie k strate všetkých správ, príloh a údajov účtu starších ako dva týždne." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prišlo je do napake v podatkovni bazi.

Izvozite dnevnike aplikacije, da jih delite za odpravljanje težav. Če to ni uspešno, znova namestite {app_name} in obnovite svoj račun.

Opozorilo: To bo povzročilo izgubo vseh sporočil, prilog in podatkov računa, starejših od dveh tednov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një gabim në bazën e të dhënave.

Eksportoni regjistrat e aplikacionit tuaj për ndarjen e problemeve. Nëse kjo nuk ka sukses, ripaketoni {app_name} dhe riktheni llogarinë tuaj.

Paralajmërim: Kjo do të rezultojë në humbjen e të gjitha mesazheve, bashkangjitjeve dhe të dhënave të tjera të llogarisë më të vjetra se dy javë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дошло је до грешке у бази података.

Извезите своје апликације логове за дељење ради отклањања проблема. Ако ово не успе, поново инсталирајте {app_name} и обновите свој налог.

Упозорење: Ово ће довести до губитка свих порука, прилога и података о налогу старијих од две недеље." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do greške u bazi podataka.

Izvezite logove aplikacije kako biste ih podelili za rešavanje problema. Ako to ne uspe, ponovo instalirajte {app_name} i povratite svoj nalog.

Upozorenje: Ovo će rezultirati gubitkom svih poruka, priloga i podataka naloga starijih od dve nedelje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett databasfel uppstod.

Exportera dina programloggar för att dela för felsökning. Om detta misslyckas, installera om {app_name} och återställ ditt konto.

Varning: Detta kommer att resultera i förlust av alla meddelanden, bifogningar och kontodata äldre än två veckor." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa la database limetokea.

Toa logi za programu zako kushirikisha kwa utatuzi. Ikiwa hili halitafanikiwa, sakinisha tena {app_name} na urejeshe akaunti yako.

Onyo: Hii itasababisha kupotea kwa ujumbe wote, viambatisho, na data ya akaunti iliyo zaidi ya wiki mbili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தரவுத்தொகுப்பில் பிழை ஏற்பட்டது.

தரவுத்தொகுப்புகளை புக்கு தொடங்கும் பதிவு கொத்து கோப்புகளை ஈர்க. இது இயலாதபோது மீண்டும் {app_name} ஐ நிறுவி கணக்கை சீரமைக்கவும்.

எச்சரிக்கை: இது மூன்று வாரத்திற்கு முந்தைய அனைத்து தகவல்களையும், இணைப்புகளையும், கணக்கின் தகவல்களையும் இழக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటాబేస్ లోపం జరిగింది.

మీ అనువర్తనం లాగ్లను ఎగుమతి చేయండి మరియు సమస్య పరిష్కారం కోసం వాటిని పంచుకోండి. ఇది విజయవంతం కాకపోతే, {app_name} ను మళ్లీ ఇన్‌స్టాల్ చేసి మీ ఖాతాను పునరుద్ధరించండి.

హెచ్చరిక: దీనివలన రెండు వారాల కంటే పాత సందేశాలు, జతల్ని మరియు ఖాతా డేటా అన్నీ కోల్పోతారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดในฐานข้อมูล

ส่งออกล็อกแอปพลิเคชันของคุณเพื่อแบ่งปันแก้ไขปัญหา หากไม่สำเร็จ ให้ติดตั้ง {app_name} ใหม่และกู้คืนบัญชีของคุณ

คำเตือน: การดำเนินการนี้จะส่งผลให้สูญเสียข้อความ ไฟล์แนบ และข้อมูลบัญชีที่มีอายุมากกว่าสองสัปดาห์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı hatası oluştu.

Sorun giderme için uygulama günlüklerinizi dışa aktarın. Bu başarısız olursa, {app_name} uygulamasını yeniden yükleyin ve hesabınızı geri yükleyin.

Uyarı: Bu, iki haftadan eski olan tüm mesajların, eklerin ve hesap verilerinin kaybolmasına neden olacaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сталася помилка бази даних.

Експортуйте журнали програми, щоб надати спільний доступ для вирішення проблем. Якщо це не вдасться, перевстановіть {app_name} і відновіть обліковий запис.

Попередження: це призведе до втрати всіх повідомлень, вкладених файлів і даних облікового запису, старіших понад два тижні." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا بیس میں خرابی ہوئی ہے۔

اپنی درخواست کے لاگز برآمد کریں تاکہ مسئلہ حل کرنے کے لیے شیئر کیے جا سکیں۔ اگر یہ ناکام رہتا ہے تو {app_name} کو دوبارہ انسٹال کریں اور اپنا اکاؤنٹ بحال کریں۔

انتباہ: اس سے دو ہفتوں سے پرانے تمام پیغامات، منسلکات اور اکاؤنٹ کا ڈیٹا ضائع ہو جائے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar bazasida xato yuz berdi.

Dastur loglaringizni eksport qiling va muammolarni hal qilish uchun ulashing. Agar bu muvaffaqiyatsiz bo'lsa, {app_name} ni qayta o'rnating va akkauntingizni tiklang.

Ogohlik: Bu barcha xabarlar, ilova va ikki haftadan eski akkaunt ma'lumotlarini yo'qotishga olib keladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một lỗi cơ sở dữ liệu đã xảy ra.

Xuất nhật ký ứng dụng của bạn để chia sẻ nhằm xử lý sự cố. Nếu không thành công, hãy cài đặt lại {app_name} và khôi phục tài khoản của bạn.

Cảnh báo: Điều này sẽ dẫn đến mất tất cả tin nhắn, tệp đính kèm và dữ liệu tài khoản cũ hơn hai tuần." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kufunyenwe impazamo kwisiseko sedatha.

Nceda thumela ii-log zenkqubo yakho ukuze uwabelane ngazo ngeengxaki. Ukuba oku kuphumelele, reinstall {app_name} kwaye ubuyisele iakhawunti yakho.

Isilumkiso: oku kuya kubangela ukulahleka kwemiyalezo yonke, ii-attachements, kunye nedatha yeakhawunti endala ngokuphakama kweveki ezimbini." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发生数据库错误。

导出应用日志并分享给我们以进行故障排除。如果不成功,请重新安装{app_name}并恢复您的账户。

警告:这将导致两周前的所有消息、附件和账户数据丢失。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "資料庫發生錯誤。

導出你的應用程式日誌以便進行故障排除。如果這不成功,請重新安裝 {app_name} 並恢復您的帳戶。

警告:這將導致兩週前的所有訊息、附件和帳戶數據丟失。" + } + } + } + }, + "databaseErrorTimeout" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ons het opgemerk {app_name} neem lank om te begin.

Jy kan aanhou wag, jou toestel logs uitvoer om te deel vir foutsporing, of probeer om Session te herbegin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقد لاحظنا أن {app_name} يستغرق وقتًا طويلاً لبدء.

يمكنك مواصلة الانتظار، تصدير سجلات الجهاز للمشاركة في استكشاف الأخطاء وإصلاحها، أو محاولة إعادة تشغيل Session." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqinin başladılmasının çox vaxt apardığına fikir verdik.

Gözləməyə davam edə, problemin aradan qaldırılması üçün cihazınızın jurnallarını xaricə köçürə və ya Session-u yenidən başlatmağa çalışa bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما پٹِن گی اتہ {app_name} سرا کتن وقت گشتنت۔

باقی انتظار بکنت، سپاڈی بروک کردیا گزارش بکنت بیت ائی٬ گپچہ رفتارشت بار بکودنت بیت اتہ بھال دکنت۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы заўважылі, што {app_name} патрабуе шмат часу для запуску.

Вы можаце працягваць чакаць, экспартаваць журналы вашай прылады для спагнання праблем, альбо паспрабаваць перазапусціць Session." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забелязахме, че стартирането на {app_name} отнема много време.

Можете да продължите да чакате, да експортирате дневници на устройството си, за да ги споделите за отстраняване на неизправности, или да опитате да рестартирате Session." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "We've noticed {app_name} is taking a long time to start.

You can continue to wait, export your device logs to share for troubleshooting, or try restarting Session." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hem notat que {app_name} està trigant molt a començar.

Podeu continuar esperant, exportar els registres del dispositiu per compartir-los per solucionar problemes, o intentar reiniciar Session." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všimli jsme si, že spuštění aplikace {app_name} trvá dlouho.

Můžete pokračovat v čekání, exportovat logy zařízení k řešení problémů nebo zkusit restartovat {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydym wedi sylwi bod {app_name} yn cymryd llawer o amser i ddechrau.

Gallwch barhau i aros, allforio logiau eich dyfais i'w rhannu ar gyfer datrys problemau, neu geisio ailgychwyn Session." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi har bemærket, at {app_name} tager lang tid at starte.

Du kan fortsætte med at vente, eksportere dine enhedslogfiler for at dele dem til fejlfinding eller prøve at genstarte Session." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wir haben bemerkt, dass {app_name} lange zum Starten braucht.

Du kannst weiter warten, deine Geräteprotokolle zur Fehlerbehebung exportieren oder versuchen, {app_name} neu zu starten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρατηρήσαμε ότι το {app_name} χρειάζεται πολύ χρόνο για να ξεκινήσει.

Μπορείτε να συνεχίσετε να περιμένετε, να εξάγετε τα αρχεία καταγραφής της συσκευής σας για να τα μοιραστείτε για την αντιμετώπιση προβλημάτων ή να επανεκκινήσετε το Session." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We've noticed {app_name} is taking a long time to start.

You can continue to wait, export your device logs to share for troubleshooting, or try restarting {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni rimarkis ke {app_name} bezonas longe por komenci.

Vi povas daŭrigi atendadon, eksporti viajn aparato-protokolojn por dividi por cimo-serĉado, aŭ reprovi relanĉi Session." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hemos notado que {app_name} está tardando mucho en arrancar.

Puedes esperar, exportar los registros de tu dispositivo para compartirlos para la resolución de problemas, o intentar reiniciar Session." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hemos notado que {app_name} está tardando mucho en iniciar.

Puedes seguir esperando, exportar los registros de tu dispositivo para compartirlos y solucionar problemas, o intentar reiniciar Session." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oleme märganud, et {app_name} käivitamine võtab kaua aega.

Võite jätkata ootamist, eksportida oma seadme logisid tõrkeotsingu eesmärgil jagamiseks või proovida Session'i taaskäivitamist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} martxan jartzeko denbora gehiegi hartzen ari dela nabaritu dugu.

Jarrai itzazu itxaroten, esportatu zure gailu-erregistroak konpontzeko partekatzeko edo saiatu Session berrabiarazten." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما متوجه شده‌ایم که {app_name} زمان طولانی‌ای برای شروع می‌برد.

می‌توانید به انتظار ادامه دهید، گزارش‌های دستگاه‌تان را برای کمک به رفع مشکل صادركنید، یا Session را دوباره راه‌اندازی کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huomasimme, että {app_name} käynnistyy hitaasti.

Voit jatkaa odottamista, viedä laitteesi lokit jaettavaksi vianmäärityksessä tai yrittää käynnistää Sessionin uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napansin namin na matagal magbukas ang {app_name}.

Maaari kang maghintay, i-export ang logs ng iyong device para sa troubleshooting, o subukang i-restart ang Session." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous avons remarqué que {app_name} met beaucoup de temps à démarrer.

Vous pouvez continuer à attendre, exporter les journaux de votre appareil pour les partager pour le dépannage ou essayer de redémarrer Session." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notamos que {app_name} está a tardar moito en iniciar.

Podes esperar, exportar os teus rexistros do dispositivo para compartir e solucionar problemas, ou tentar reiniciar Session." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mun lura cewa {app_name} yana ɗaukar dogon lokaci don farawa.

Za ku iya ci gaba da jira, fitar da log ɗin na'urarku don rabawa don magance matsaloli, ko sake farawa Session." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמנו לב ל-{app_name} לוקח הרבה זמן להתחיל.

תוכל להמשיך להמתין, לייצא את יומני המכשיר שלך לשיתוף לצורך פתרון בעיות, או לנסות להפעיל מחדש את {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हमने देखा कि {app_name} प्रारंभ होने में बहुत समय ले रहा है।

आप प्रतीक्षा करना जारी रख सकते हैं, अपने डिवाइस लॉग को निर्यात कर सकते हैं ताकि समस्या निवारण के लिए साझा कर सकें, या Session पुनरारंभ करने का प्रयास कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primijetili smo da pokretanje {app_name} traje dugo.

Možete nastaviti čekati, izvesti zapise uređaja za dijeljenje radi rješavanja problema ili pokušati ponovo pokrenuti Session." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Észrevettük, hogy {app_name} indítása sokáig tart.

Továbbra is várhatsz, exportálhatod az eszköz naplóit a hibaelhárításhoz, vagy megpróbálhatod újraindítani {app_name}-t." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մենք նկատել ենք, որ {app_name} շատ երկար է սկսում աշխատել։

Դուք կարող եք շարունակել սպասել, արտահանել ձեր սարքի տեղեկամատյանները կիսելու համար հետաքրքրությունների համար, կամ փորձել վերագործարկել Session-ը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami menyadari {app_name} membutuhkan waktu lama untuk memulai.

Anda dapat terus menunggu, mengekspor log perangkat Anda untuk dibagikan dalam pemecahan masalah, atau mencoba memulai ulang Session." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbiamo notato che {app_name} ci impiega molto tempo ad avviarsi.

Puoi continuare ad attendere, esportare i log del dispositivo per la risoluzione dei problemi o provare a riavviare {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}が起動するのに時間がかかっていることを確認しました。

引き続きお待ちいただくか、トラブルシューティングのためにデバイスログをエクスポートして共有するか、Sessionを再起動してみてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გავიგეთ {app_name}-ის გაშვება დიდ დროს იკავებს.

თქვენ შეგიძლიათ დაელოდოთ, ექსპორტირდეთ თქვენი მოწყობილობის ჟურნალები რათა გაუზიაროთ პრობლემების დიაგნოსტირებისთვის, ან სცადოთ Session-ის გადატვირთვა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យើងគិតថា {app_name} ពុំអាចចាប់ផ្ដើមបានយ៉ាងចំហរមួយរយៈ

អ្នកអាចរង់ចាំតទៅ ហៅទិន្នន័យឧបករណ៍របស់អ្នកដើម្បីជួយដោះស្រាយ បើទោះអញ្ចឹងក៏ដោយ សាកល្បងចាប់ផ្ដើម Session" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾವು ಗಮನಿಸಿದ್ದೇವೆ {app_name} ಆರಂಭಿಸಲು ಹೆಚ್ಚು ಸಮಯ ತೆಗೆದುಕೊಳ್ಳುತ್ತಿದೆ.

ನೀವು ನಿರೀಕ್ಷಿಸಬಹುದು, ನಿಮ್ಮ ಸಾಧನ ರೆಕಾರ್ಡುಗಳನ್ನು ಹಂಚಿಕೊಳ್ಳಲು ದೋಷ ಪರಿಹಾರದೊಂದಿಗೆ ಎಕ್ಸ್‌ಪೋರ್ಟ್ ಮಾಡಬಹುದು ಅಥವಾ {app_name} ಪುನಃಪ್ರಾರಂಭಿಸಲು ಪ್ರಯತ್ನಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 이 오랜 시간동안 응답하지 않은 것으로 보입니다.

계속 기다리거나, 기기의 로그를 내보내 도움을 요청하거나, {app_name} 을 재시작 해보세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەبینین {app_name} بوونی دواخستنی درێژە.

تۆ دەتوانیت بەردەوام ببهێنین، کۆگایەکانی ئامرازەکەت بەکەشێنی بۆ پشکنین، یان هەوڵبدە بە سەرەکی Session دوژخستنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tukuboolabye {app_name} enetwala ebweru okuggwa.

Muliisa kulinda, kusitumidde ebirukanya ebyekusibiza okugabana oludde, oba kwemuddira Session." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastebėjome, kad {app_name} užtrunka ilgai paleisti.

Galite toliau laukti, eksportuoti savo įrenginio žurnalus, kad galėtumėte juos pasidalinti dėl trikčių šalinimo, arba bandykite iš naujo paleisti Session." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēs esam pamanījuši, ka {app_name} aizņem daudz laika, lai startētu.

Jūs varat turpināt gaidīt, eksportēt sava ierīces žurnālus, lai dalītos problēmas novēršanā, vai pamēģiniet restartēt Session." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забележавме дека {app_name} троши многу време за старт.

Можете да продолжите да чекате, да ги извезете дневниците на вашиот уред за решавање на проблеми или да се обидете да го рестартирате Session." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} эхлүүлэх их хугацаа зарцуулагдаж байна.

Хүлээсээр байх, төхөөрөмжийн тэмдэглэлийг экспортлоход хуваалцаж асуудал шийдэх, эсвэл {app_name}-г дахин эхлүүлэх боломжтой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami perasan {app_name} mengambil masa yang lama untuk bermula.

Anda boleh terus menunggu, eksport log peranti anda untuk perkongsian penyelesaian masalah atau cuba mulakan semula Session." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "We've noticed {app_name} is taking a long time to start.

You can continue to wait, export your device logs to share for troubleshooting, or try restarting Session." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi har lagt merke til at {app_name} tar lang tid å starte.

Du kan vente videre, eksportere loggene på enheten din for å dele for feilsøking, eller prøve å starte Session på nytt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हामीले नोटिस गर्यौं कि {app_name} सुरु हुन धेरै समय लिइरहेको छ।

तपाईं प्रतीक्षा जारी राख्न सक्नुहुन्छ, समस्या समाधानको लागि तपाईंको उपकरणको लक निकाल्न साझा गर्न सक्नुहुन्छ, वा {app_name} पुन: सुरु गर्न प्रयास गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "We hebben gemerkt dat {app_name} veel tijd nodig heeft om op te starten.

U kunt doorgaan met wachten, uw apparaatlogs exporteren om te delen voor probleemoplossing, of proberen {app_name} opnieuw op te starten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi har merka at {app_name} tar lang tid på å starte.

Du kan vente, eksportere loggar frå eininga di for deling til feilsøking, eller prøve å starte Session på nytt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timazindikira {app_name} kutenga nthawi kuti ayambe.

Inu mungapitirize kudikira, kutulutsira chipangizo malipoti kuti azipeza mavuto, kapena yesani kuyambiranso Session." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਸੀਂ ਨੋਟ ਕੀਤਾ ਹੈ ਕਿ {app_name} ਨੂੰ ਸ਼ੁਰੂ ਕਰਨ ਵਿੱਚ ਬਹੁਤ ਸਮਾਂ ਲੱਗ ਰਿਹਾ ਹੈ।

ਤੁਸੀਂ ਇੰਤਜ਼ਾਰ ਕਰ ਸਕਦੇ ਹੋ, ਆਪਣੇ ਔਜ਼ਾਰ ਦੇ ਲੌਗ ਨਿਕਾਸੀ ਕਰ ਸਕਦੇ ਹੋ ਚੋਣ ਕਰਨ ਲਈ Troubleshooting ਲਈ ਸਾਂਝੇ ਕਰਨ ਲਈ, ਜਾਂ Session ਨੂੰ ਮੁੜ ਸ਼ੁਰੂ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zauważyliśmy, że uruchomienie aplikacji {app_name} zajmuje dużo czasu.

Możesz kontynuować oczekiwanie, wyeksportować dzienniki urządzenia do udostępnienia w celu rozwiązania problemów lub spróbować ponownie uruchomić aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ ولیدل چې {app_name} د پیل کولو لپاره اوږد وخت نیسي.

تاسو کولی شئ انتظار وکړئ، د ستونزې لپاره د شریکولو لپاره خپل وسیله لاګونه صادر کړئ، یا د بیا پیل کولو هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Observamos que {app_name} está demorando muito para iniciar.

Você pode continuar esperando, exportar os logs do seu dispositivo para compartilhar para solução de problemas, ou tentar reiniciar o Session." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Percebemos que {app_name} está a demorar muito a iniciar.

Pode continuar a esperar, exportar os registos do seu dispositivo e partilhar para analisarmos o problema, ou tentar reiniciar o {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Am observat că {app_name} durează mult timp să pornească.

Puteți continua să așteptați, să exportați jurnalele dispozitivului pentru a le partaja pentru depanare sau să încercați să reporniți {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы заметили, что {app_name} занимает много времени для запуска.

Вы можете продолжить ждать, экспортировать журналы вашего устройства для устранения неполадок или попробовать перезапустить {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primetili smo da pokretanje {app_name} traje dugo.

Možete nastaviti da čekate, izvesti logove uređaja za deljenje radi otklanjanja grešaka, ili pokušati ponovo pokrenuti Session." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අප සැකසූවානම් {app_name} ආරම්භ කිරීමට වැඩි කාලයක් ගත වන බව දැක ඇත.

ඔබට සිතියෙන්නේ, උපකරණ ලොග් දත්ත අපට යැවිය හැකි, නැවත Session ආරම්භ කර බලන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všimli sme si, že {app_name} sa dlho spúšťa.

Môžete pokračovať v čakaní, exportovať záznamy z vášho zariadenia kvôli riešeniu problémov alebo skúsiť reštartovať {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opažamo, da {app_name} potrebuje dolgo časa za zagon.

Lahko nadaljujete s čakanjem, izvozite dnevniške datoteke naprave za odpravljanje težav ali poskusite znova zagnati Session." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne kemi vërejtur që {app_name} po merr shumë kohë për tu nisur.

Ju mund të prisni, eksportoni regjistrat e pajisjes suaj për ndihmë në zgjidhjen e problemeve, ose provoni të rinisni Session." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приметили смо да {app_name} треба дуго времена да се покрене.

Можете наставити да чекате, извести дневнике уређаја да их делите за решавање проблема или покушати поново покренути Session." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primetili smo da aplikaciji {app_name} treba dugo vremena da se pokrene.

Možete da nastavite da čekate, izvezete logove uređaja za deljenje radi rešavanja problema ili pokušate ponovo da pokrenete Session." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi har märkt att {app_name} tar lång tid att starta.

Du kan fortsätta vänta, exportera dina felsökningsloggar för att dela för felsökning, eller försöka starta om Session." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumeona {app_name} inachukua muda mrefu kuanza.

Unaweza kuendelea kusubiri, kuhamisha kumbukumbu za kifaa chako kushiriki kwa kutatua shida, au jaribu kuanzisha Session upya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} தொடங்க அதிக நேரம் ஆகிறதே எனக் காணப்படுகின்றது.

நீங்கள் தொடர்ந்தும் காத்திருக்கலாம், உங்களின் சாதன பதிவு பட்டியலை வெளியிட்டு பகிரவும் அல்லது {app_name} புனரஇயக்க முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మేము గమనించాము {app_name} ప్రారంభమవ్వడానికి చాలా సమయం పడుతోంది.

మీరు వేచి ఉండవచ్చు, సమస్యను నిర్ధారించడానికి పరికరం లాగ్‌లను ఎగుమతి చేసి షేర్ చేయవచ్చు లేదా Session రీస్టార్ట్ చేయవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เราได้สังเกตว่า {app_name} ใช้เวลานานในการเริ่มต้น

คุณสามารถรอต่อไป ส่งออกบันทึกอุปกรณ์ของคุณเพื่อแบ่งปันเพื่อแก้ไขปัญหา หรือลองรีสตาร์ท Session" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının başlatılması uzun sürüyor fark ettik.

Beklemeye devam edebilir, cihaz günlüklerinizi paylaşmak için dışa aktarabilir veya Session'ı yeniden başlatmayı deneyebilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ми помітили, що {app_name} довго запускається.

Ви можете продовжити чекати, експортувати журнали вашого пристрою для аналізу або спробувати перезапустити {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم نے دیکھا ہے کہ {app_name} شروع ہونے میں کافی وقت لے رہا ہے۔

آپ انتظار کر سکتے ہیں، مسئلے کے حل کے لیے اپنے ڈیوائس لاگز ایکسپورٹ کر سکتے ہیں، یا Session کو دوبارہ شروع کرنے کی کوشش کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biz {app_name}ning ishga tushishi uzoq vaqt talab qilayotganini sezib qoldik.

Siz kutishni davom ettirishingiz, apparat yozuvlarini eksport qilib ulashishingiz yoki Sessionni qayta ishga tushirishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chúng tôi nhận thấy {app_name} mất nhiều thời gian để khởi động.

Bạn có thể tiếp tục chờ, xuất nhật ký thiết bị để chia sẻ hỗ trợ khắc phục sự cố, hoặc thử khởi động lại Session." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siqaphele ukuba i-{app_name} ithatha ixesha elide ukuqala.

Ungaqhubeka ulinde, uthumele iingxelo zesixhobo sakho ukwabelana ngazo ukulungisa iingxaki, okanye uzame ukuqala ngokutsha i-Session." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我们注意到{app_name}启动时间过长。

您可以选择继续等待,导出设备日志以分享故障排除,或尝试重新启动{app_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我們注意到 {app_name} 啟動時間過長。

您可以繼續等待,匯出您的設備日誌以便排除故障,或者嘗試重新啟動 {app_name}。" + } + } + } + }, + "databaseErrorUpdate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou app databasis is onversoenbaar met hierdie weergawe van {app_name}. Herinstalleer die app en herstel jou rekening om 'n nuwe databasis te genereer en voort te gaan met die gebruik van {app_name}.

Waarskuwing: Dit sal lei tot die verlies van alle boodskappe en aanhegsels ouer as twee weke." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قاعدة بيانات تطبيقك غير متوافقة مع هذا الإصدار من {app_name}. أعد تثبيت التطبيق واستعد حسابك لإنشاء قاعدة بيانات جديدة ومتابعة استخدام {app_name}.

تحذير: سيؤدي هذا إلى فقدان جميع الرسائل والمرفقات التي يزيد عمرها عن أسبوعين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tətbiqinizin databazası {app_name} tətbiqinin versiyası ilə uyumlu deyil. Yeni bir databaza yaratmaq və {app_name} istifadə etməyə davam etmək üçün tətbiqi yenidən quraşdırın və hesabınızı bərpa edin.

Xəbərdarlıq: Bu, iki həftədən köhnə olan bütün mesajların və qoşmaların itkisi ilə nəticələnəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کس ای ورژنئے نکہ ایپ دیټابیس ناہم آهن. اِیپ نوک بزا من اَکاونٹ بازگری کن تا پن نوک دیټابیس پیدا بکن تا {app_name} دابی مرت استفاده بکن.

چیتپا: ماہیت زامبلاونکین دو ہفتہ ناہند، تمام پیامانءِ و اٹیچمنٹاں گم بیت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша база даных прыкладання несумяшчальная з гэтай версіяй {app_name}. Пераўсталюйце прыкладанне і аднавіце ўліковы запіс, каб стварыць новую базу даных і працягнуць выкарыстанне {app_name}.

Увага: гэта прывядзе да страты ўсіх паведамленняў і ўкладанняў старэйшых за два тыдні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата база данни на приложението е несъвместима с тази версия на {app_name}. Инсталирайте повторно приложението и възстановете своя акаунт, за да генерирате нова база данни и да продължите да използвате {app_name}.

Внимание: Това ще доведе до загуба на всички съобщения и прикачени файлове по-стари от две седмици." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার অ্যাপ্লিকেশন ডাটাবেস {app_name} এর এই সংস্করণের সাথে অসঙ্গতিপূর্ণ। অ্যাপ পুনরায় ইনস্টল করুন এবং আপনার অ্যাকাউন্ট পুনরুদ্ধার করুন একটি নতুন ডাটাবেস তৈরি করতে এবং {app_name} ব্যবহার করতে থাকুন।

সতর্কতা: এর ফলে আপনার সমস্ত বার্তা এবং সংযুক্তিগুলি দুই সপ্তাহের বেশি পুরানো হারিয়ে যাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La base de dades de la vostra aplicació no és compatible amb aquesta versió de {app_name}. Reinstal·leu l'aplicació i restaureu el vostre compte per generar una nova base de dades i continuar utilitzant {app_name}.

Avís: Això donarà lloc a la pèrdua de tots els missatges i adjunts anteriors a dues setmanes." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databáze vaší aplikace není kompatibilní s touto verzí {app_name}. Přeinstalujte aplikaci a obnovte svůj účet pro vytvoření nové databáze a pokračování v používání {app_name}.

Varování: To povede ke ztrátě všech zpráv a příloh starších než dva týdny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cronfa ddata ap yn anghydnaws â'r fersiwn hon o {app_name}. Ailosodwch yr ap a darganfod eich cyfrif i greu cronfa ddata newydd a pharhau i ddefnyddio {app_name}.

Rhybudd: Bydd hyn yn arwain at golli’r holl negeseuon a’r atodiadau sy’n hŷn na phythefnos." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din app-database er inkompatibel med denne version af {app_name}. Geninstaller appen og gendan din konto for at generere en ny database og fortsætte med at bruge {app_name}.

Advarsel: Dette vil resultere i tab af alle beskeder og vedhæftninger, der er ældre end to uger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deine App-Datenbank ist mit dieser Version von {app_name} nicht kompatibel. Installiere die App neu und stelle deinen Account wieder her, um eine neue Datenbank zu erstellen und {app_name} weiter zu verwenden.

Warnung: Dadurch gehen alle Nachrichten und Anhänge verloren, die älter als zwei Wochen sind." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η βάση δεδομένων της εφαρμογής σας δεν είναι συμβατή με αυτήν την έκδοση του {app_name}. Επανεγκαταστήστε την εφαρμογή και αποκαταστήστε τον λογαριασμό σας για να δημιουργήσετε μια νέα βάση δεδομένων και να συνεχίσετε να χρησιμοποιείτε το {app_name}.

Προειδοποίηση: Αυτό θα έχει ως αποτέλεσμα την απώλεια όλων των μηνυμάτων και των συνημμένων που είναι παλαιότερα των δύο εβδομάδων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your app database is incompatible with this version of {app_name}. Reinstall the app and restore your account to generate a new database and continue using {app_name}.

Warning: This will result in the loss of all messages and attachments older than two weeks." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via aplikaĵa datumbazo ne kongruas kun ĉi tiu versio de {app_name}. Reinstalu la aplikaĵon kaj restarigu vian konton por generi novan datumbazon kaj daŭrigi la uzadon de {app_name}.

Averto: Ĉi tio rezultos en la perdo de ĉiuj mesaĝoj kaj aldonaĵoj pli aĝaj ol du semajnoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu base de datos de la app es incompatible con esta versión de {app_name}. Reinstala la app y restaura tu cuenta para generar una nueva base de datos y continuar usando {app_name}.

Advertencia: Esto resultará en la pérdida de todos los mensajes y archivos adjuntos mayores a dos semanas." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Su base de datos de la aplicación no es compatible con esta versión de {app_name}. Reinstala la aplicación y restaura tu cuenta para generar una nueva base de datos y continuar usando {app_name}.

Advertencia: Esto resultará en la pérdida de todos los mensajes y archivos adjuntos anteriores a dos semanas." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie rakenduse andmebaas ei ühildu selle {app_name} versiooniga. Installige rakendus uuesti ja taastage oma konto, et luua uus andmebaas ja jätkata {app_name} kasutamist.

Hoiatus: See kaotab kõik vanemad kui kaks nädalat sõnumid ja manused." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure aplikazio-datubasea ez da bateragarria {app_name} bertsio honekin. Berrinstalatu aplikazioa eta leheneratu zure kontua datubase berri bat sortzeko eta {app_name} erabiltzen jarraitzeko.

Abisua: Honek bi astetik gorako mezu eta eranskinen galera eragingo du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پایگاه داده برنامه شما با این نسخه از {app_name} سازگار نیست. برنامه را دوباره نصب کنید و حساب خود را بازیابی کنید تا یک پایگاه داده جدید ایجاد کنید و به استفاده از {app_name} ادامه دهید.

هشدار: این باعث از دست رفتن همه پیام‌ها و پیوست‌های قدیمی‌تر از دو هفته می‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sovellustietokanta ei ole yhteensopiva tämän {app_name} version kanssa. Asenna sovellus uudelleen ja palauta tilisi, jotta voit luoda uuden tietokannan ja jatkaa {app_name} käyttöä.

Varoitus: Tämä johtaa yli kaksi viikkoa vanhojen viestien ja liitteiden menetykseen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang database ng iyong app ay hindi tugma sa bersyong ito ng {app_name}. I-reinstall ang app at ibalik ang iyong account upang makabuo ng bagong database at ipagpatuloy ang paggamit ng {app_name}.

Babala: Magdudulot ito ng pagkawala ng lahat ng mensahe at attachment na mas matanda sa dalawang linggo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La base de données de votre application est incompatible avec cette version de {app_name}. Réinstallez l'application et restaurez votre compte pour générer une nouvelle base de données et continuer à utiliser {app_name}.

Avertissement : Cela entraînera la perte de tous les messages et pièces jointes datant de plus de deux semaines." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A base de datos da túa aplicación non é compatible con esta versión de {app_name}. Reinstala a aplicación e restaura a túa conta para xerar unha nova base de datos e continuar usando {app_name}.

Advertencia: Isto resultará na perda de todas as mensaxes e adxuntos anteriores a dúas semanas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan aikace-aikacen ku ba su dace da wannan sigar {app_name}. Sake shigar da aikace-aikacen kuma dawo da asusunka don samar da sabon database kuma ci gaba da amfani da {app_name}.

Gargadi: Wannan zai haifar da rasa duk sakonni da fayiloli fiye da makonni biyu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מאגר נתונים של האפליקציה שלך אינו תואם לגרסה זו של {app_name}. התקן מחדש את האפליקציה ושחזר את החשבון שלך כדי ליצור מאגר נתונים חדש ולהמשיך להשתמש ב-{app_name}.

אזהרה: פעולה זו תשאיר את כל ההודעות והצרופות הישנות משבועיים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} का यह संस्करण आपके ऐप डेटाबेस के साथ असंगत है। ऐप को पुन: स्थापित करें और अपना खाता पुनर्स्थापित करें ताकि नया डेटाबेस उत्पन्न हो सके और {app_name} का उपयोग जारी रख सकें।

चेतावनी: इससे दो सप्ताह से पुराने सभी संदेश और संलग्नक खो जाएंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša aplikacijska baza podataka nije kompatibilna s ovom verzijom {app_name}. Ponovno instalirajte aplikaciju i vratite svoj račun kako biste generirali novu bazu podataka i nastavili koristiti {app_name}.

Upozorenje: Ovo će rezultirati gubitkom svih poruka i privitaka starijih od dva tjedna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az alkalmazás adatbázisa nem kompatibilis a {app_name} jelenlegi verziójával. Telepítsd újra az alkalmazást, és állítsd vissza fiókját egy új adatbázis létrehozásához és a {app_name} további használathoz.

Figyelmeztetés: Ez minden két hétnél régebbi üzenet és melléklet elvesztését eredményezi." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հավելվածի տվյալների բազան համադրված չէ այս {app_name} տարբերակի հետ։ Վերակայանացրեք հավելվածը և վերագործարկեք ձեր հաշիվը նոր տվյալների բազա ստեղծելու և {app_name} շարունակելու համար։

Զգուշացում: Սա կհանգեցնի բոլոր հաղորդագրությունների և կցաթղթերի երկու շաբաթից ավելի հնության կորստին։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database aplikasi Anda tidak kompatibel dengan versi {app_name} ini. Instal ulang aplikasi dan pulihkan akun Anda untuk menghasilkan database baru dan terus menggunakan {app_name}.

Peringatan: Ini akan menyebabkan hilangnya semua pesan dan lampiran yang lebih dari dua minggu." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il database della tua app non è compatibile con questa versione di {app_name}. Reinstalla l'app e ripristina il tuo account per generare un nuovo database e continuare a utilizzare {app_name}.

Attenzione: Questo comporterà la perdita di tutti i messaggi e di tutti gli allegati più vecchi di due settimane." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "お使いのアプリデータベースはこのバージョンの {app_name} と互換性がありません。アプリを再インストールしてアカウントを復元し、新しいデータベースを生成して {app_name} を使用し続けてください。

警告: これにより、2週間以上前のすべてのメッセージと添付ファイルが失われます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი აპლიკაციის მონაცემთა ბაზა არ შეესაბამება {app_name}-ის ამ ვერსიას. ხელახლა დააინსტალირეთ აპლიკაცია და აღადგინეთ თქვენი ანგარიში ახალი მონაცემთა ბაზის შესაქმნელად და {app_name} გამოყენების გაგრძელებისთვის.

გაფრთხილება: ეს გამოიწვევს ყველა მესიჯის და ფაილის დაკარგვას, რომლებიც ორ კვირაზე მეტი ხნისაა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឃ្លាំងទិន្នន័យរបស់កម្មវិធីរបស់អ្នកមិនអាចបើកជាមួយ {app_name} នេះទេ។ កញ្ចួញកម្មវិធីឡើងវិញ ហើយស្ដារគណនីរបស់អ្នកដើម្បីបង្កើតឃ្លាំងទិន្នន័យថ្មី និង​បន្តប្រើ {app_name}។

ការព្រមាន៖ នេះនឹងលុបបាត់ជាស្ថាពរ នូវសារទាំងអស់ និងឯកសារភ្ជាប់ដែលអាយុចាស់ជាងពីរសប្ដាហ៍។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಅಪ್ಲಿಕೇಶನ್ ಡೇಟಾಬೇಸ್ {app_name} ಆವೃತ್ತಿಯೊಂದಿಗೆ ಅನುರೂಪವಲ್ಲ. ಹೊಸ ಡೇಟಾಬೇಸ್ನನ್ನು ರಚಿಸಲು ಅಪ್ಲಿಕೇಶನನನ್ನು ಪುನಃಹುಹಾಯಿಸಿ ಮತ್ತು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪುನಃಸ್ಥಾಪಿಸಿ ಮತ್ತು {app_name} ಬಳಸಿದ್ದು ನಿರಂತರ ಪ್ರದರ್ಶಿಸಲು.

ಎಚ್ಚರಿಕೆ: ಇದು ಎರಡು ವಾರಗಳಿಗಿಂತ ಹೆಚ್ಚಿನ ವಯಸ್ಸಿನ ಎಲ್ಲಾ ಸಂದೇಶಗಳು ಮತ್ತು ಜೊತೆಯುಡುಕಳವನ್ನು ಕಳೆದುಹಾಕುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}의 이 버전은 앱 데이터베이스와 호환되지 않습니다. 앱을 재설치하고 계정을 복원하여 새 데이터베이스를 생성하고 {app_name}을 계속 사용하십시오.

경고: 이렇게 하면 2주 이상 된 모든 메시지와 첨부 파일이 손실됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بنکەی زانیاری بەرنامەکەت ناگەلێرد بەم وه‌ شەپکنیکی {app_name}. بەخێربەستەوە بەرنامەکە و ئەژمێرت پاشەکەوتی بکەیت بۆ بەکاربردنی {app_name}.

ئاگاداری: ئەمە دوای دیترین مەکموو بەرەوکردنەکان و هاوبەشەکان بەکارە لأختە دەکاتە دوو هەفتە ئەگەری پەیامەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database y’app yo si yagwanira ne verison ya {app_name}. Tegyamu app ne kuba okwongera ku Account yo okwongera okukozesa {app_name}.

Warning: Kino kyakuleeteka okufiirwa kwa bubaka bwona n’empapula ezisazeewo ezinyuuse emywaka ebiri ebalagala." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų programos duomenų bazė nesuderinama su šia {app_name} versija. Iš naujo įdiekite programą ir atkurkite savo paskyrą, kad sugeneruotumėte naują duomenų bazę ir toliau naudotumėte {app_name}.

Įspėjimas: Dėl to visos pranešimų ir priedų, senesnių nei dvi savaitės, bus prarastos." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu lietotnes datubāze nav saderīga ar šo {app_name} versiju. Pārsūtiet lietotni un atjaunojiet savu kontu, lai izveidotu jaunu datubāzi un turpinātu izmantot {app_name}.

Brīdinājums: Tas rezultēsies visu ziņojumu un pielikumu, kas ir vecāki par divām nedēļām, zaudēšanā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата база на податоци на апликацијата не е компатибилна со оваа верзија на {app_name}. Повторно инсталирајте ја апликацијата и вратете го вашиот профил за да генерирате нова база на податоци и да продолжите да го користите {app_name}.

Предупредување: Ова ќе резултира со губење на сите пораки и прикачувања постари од две недели." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны програмын өгөгдлийн сан {app_name}-ийн энэ хувилбарт нийцэхгүй байна. Програмыг дахин суулгаж, профайлыг сэргээснээр шинэ өгөгдлийн сан үүсгэж, {app_name} ашиглах боломжтой болно.

Сануулга: Энэ нь хоёр долоо хоногоос дээш хугацаатай бүх мессежүүд болон хавсралтууд алдагдах болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangkalan data aplikasi anda tidak serasi dengan versi {app_name} ini. Pasang semula aplikasi ini dan pulihkan akaun anda untuk menjana pangkalan data baru dan terus menggunakan {app_name}.

Amaran: Ini akan menyebabkan kehilangan semua mesej dan lampiran yang lebih lama daripada dua minggu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အက်ပ်ဒေတာဘေ့စ်သည် {app_name} ၏ ဤဗားရှင်းနှင့် မက်စ်ပေါ်နိုင်ပါ။ အက်ပ်ကို ပြန်ထည့်သွင်းပြီး သင့်အကောင့်ကို ပြန်လည်ထားပြီး {app_name} ကို ဆက်လက်သုံးဆောင်ရန် အချက်ပြပီးနောက် ငါးပတ်အတွင်းလက်ရှိမက်ဆေ့ခ်ျနှင့်လိုက်ဖက်မှုအတင်ပျောက်သွားနိုင်သည်။

သတိပေးချက်: ဤလုပ်ဆောင်ချက်ကြောင့် အဆိုပါကာလထက်ပိုကြာသော မက်ဆေ့ခ်ျများနှင့် ပျက်စီးပိုင်ဆိုင်မှုများ ပျောက်ဆုံးသွားမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "App-databasen din er inkompatibel med denne versjonen av {app_name}. Installer appen på nytt og gjenopprett kontoen din for å generere en ny database og fortsette å bruke {app_name}.

Advarsel: Dette vil resultere i tap av alle meldinger og vedlegg eldre enn to uker." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको एप डाटाबेस {app_name} को यो संस्करणसँग असंगत छ। एपलाई पुनः स्थापना गर्नुहोस् र आफ्नो खाता पुनर्स्थापना गर्नुहोस् नयाँ डाटाबेस सिर्जना गर्न र {app_name} प्रयोग गर्न जारी राख्न।

चेतावनी: यसले दुई हप्ता भन्दा पुरानो सबै सन्देशहरू र अट्याचमेन्टहरूको हानि हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw app-database is niet compatibel met deze versie van {app_name}. Installeer de app opnieuw en herstel uw account om een nieuwe database te genereren en {app_name} te blijven gebruiken.

Waarschuwing: Dit leidt tot verlies van alle berichten en bijlagen ouder dan twee weken." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasen til appen din er ikkje kompatibel med denne versjonen av {app_name}. Installer appen på nytt og gjenopprett kontoen din for å generera ein ny database og fortset å bruka {app_name}.

Advarsel: Dette vil resultera i at alle meldingar og vedlegg eldre enn to veker går tapt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deta la pulogalamu yanu silikugwirizana ndi mtundu uwu wa {app_name}. Yikani pulogalamu yatsopanoyi ndikubwezerani akaunti yanu kuti mupange deta yatsopano ndikupitiriza kugwiritsa ntchito {app_name}.

Chenjezo: Izi zidzachititsa kuti mutaye mauthenga onse ndi zoyikapo zoposa masabata awo pafupifupi ziwiri." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਐਪ ਦਾ ਡਾਟਾਬੇਸ ਇਸ ਸੰਸਕਰਣ ਨਾਲ ਅਨੁਕੂਲ ਨਹੀਂ ਹੈ {app_name}। ਐਪ ਨੂੰ ਦੁਬਾਰਾ ਇੰਸਟਾਲ ਕਰੋ ਅਤੇ ਆਪਣਾ ਖਾਤਾ ਬਹਾਲ ਕਰੋ ਇੱਕ ਨਵਾਂ ਡਾਟਾਬੇਸ ਬਣਾਉਣ ਅਤੇ ਜਾਰੀ ਰੱਖਣ ਲਈ {app_name} ਵਰਤੋਂ.

ਚੇਤਾਵਨੀ: ਇਸ ਨਾਲ ਦੋ ਹਫ਼ਤਿਆਂ ਤੋਂ ਪੁਰਾਣੇ ਸਾਰੇ ਸੰਦੇਸ਼ ਅਤੇ ਅਟੈਕਮੈਂਟ ਗੁਆਚ ਜਾਣਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twoja baza danych aplikacji jest niezgodna z tą wersją aplikacji {app_name}. Aby wygenerować nową bazę danych i dalej korzystać z aplikacji {app_name}, zainstaluj aplikację ponownie i przywróć swoje konto.

Uwaga: spowoduje to utratę wszystkich wiadomości i załączników starszych niż dwa tygodnie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د اپ ڈیٹ ډیټابیس د {app_name} دې نسخې سره همغږي نه لري. د اپلیکیشن بیا نصب کړئ او خپل حساب بیا جوړ کړئ ترڅو یو نوی ډیټابیس جوړ کړئ او {app_name} کارول دوام ورکړئ.

خبرداری: دا به د دوو هفتو څخه زوړ ټول پیغامونه او ملحقات له لاسه ورکیدو لامل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O banco de dados do seu aplicativo é incompatível com esta versão do {app_name}. Reinstale o aplicativo e restaure sua conta para gerar um novo banco de dados e continuar usando {app_name}.

Aviso: Isso resultará na perda de todas as mensagens e anexos com mais de duas semanas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A base de dados do seu aplicativo é incompatível com esta versão do {app_name}. Reinstale o aplicativo e restaure a sua conta para gerar uma nova base de dados e continuar a usar o {app_name}.

Aviso: Isso resultará na perda de todas as mensagens e anexos com mais de duas semanas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baza de date a aplicației dumneavoastră este incompatibilă cu această versiune de {app_name}. Reinstalați aplicația și restaurați contul pentru a genera o nouă bază de date și a continua să folosiți {app_name}.

Atenție: Aceasta va conduce la pierderea tuturor mesajelor și atașamentelor mai vechi de două săptămâni." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "База данных вашего приложения несовместима с этой версией {app_name}. Переустановите приложение и восстановите свой аккаунт, чтобы создать новую базу данных и продолжить использовать {app_name}.

Внимание: Это приведет к потере всех сообщений и вложений старше двух недель." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoja baza podataka aplikacije nije kompatibilna s ovom verzijom {app_name}. Ponovo instaliraj aplikaciju i obnovi svoj račun da stvoriš novu bazu podataka i nastaviš koristiti {app_name}.

Upozorenje: Ovo će dovesti do gubitka svih poruka i privitaka starijih od dvije sedmice." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ යෙදුම් දත්ත කේතය {app_name} මෙහෙයුම් එක්වී නොමැත. යෙදුම නැවත ස්ථාපනය කර ඔබේ ගිණුම ප්‍රතිස්ථාපනය කර යුත්සේ {app_name} භාවිතා කිරීමට නව දත්ත ගබඩායක් සෑදී යමි.

අවවාදයයි: මෙය සතියක පරණ මායිම් සහ සියළු පණිවිඩ හා සම්බන්ධතා දත්ත කාසිවී අහිමියාවක් ලැබේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša databáza aplikácie nie je kompatibilná s touto verziou {app_name}. Preinštalujte aplikáciu a obnovte svoj účet, aby sa vygenerovala nová databáza a mohli ste pokračovať v používaní {app_name}.

Upozornenie: Týmto dôjde k strate všetkých správ a príloh starších ako dva týždne." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša baza podatkov aplikacije ni združljiva s to različico {app_name}. Ponovno namestite aplikacijo in obnovite svoj račun, da ustvarite novo bazo podatkov in nadaljujete z uporabo {app_name}.

Opozorilo: To bo povzročilo izgubo vseh sporočil in prilog, starejših od dveh tednov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baza e të dhënave të aplikacionit tuaj është e papajtueshme me këtë version të {app_name}. Rinstaloni aplikacionin dhe riktheni llogarinë tuaj për të gjeneruar një bazë të re të të dhënave dhe për të vazhduar përdorimin e {app_name}.

Paralajmërim: Kjo do të rezultojë në humbjen e të gjitha mesazheve dhe bashkëngjitjeve më të vjetra se dy javë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша база података апликације није компатибилна са овом верзијом {app_name}. Поново инсталирајте апликацију и повратите ваш налог да бисте генерисали нову базу података и наставили да користите {app_name}.

Упозорење: Ово ће резултирати губитком свих порука и прилога старијих од две недеље." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baza podataka vaše aplikacije nije kompatibilna sa ovom verzijom {app_name}. Ponovo instalirajte aplikaciju i vratite vaš nalog kako biste generisali novu bazu podataka i nastavili sa korišćenjem {app_name}.

Upozorenje: Ovo će rezultirati gubitkom wszystkich poruka i privitaka starijih od dve nedelje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din appdatabas är inkompatibel med den här versionen av {app_name}. Installera om appen och återställ ditt konto för att skapa en ny databas och fortsätta använda {app_name}.

Varning: Detta resulterar i förlust av alla meddelanden och bilagor äldre än två veckor." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhidata ya programu yako hailingani na toleo hili la {app_name}. Sakinusha programu na urejeshe akaunti yako ili kuunda hifadhidata mpya na uendelee kutumia {app_name}.

Onyo: Hii itasababisha kupoteza ujumbe na viambatanisho vyote vilivyo zaidi ya wiki mbili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் பயன்பாட்டு தரவுத்தொகுப்பு இந்த {app_name} பதிப்புடன் இணக்கமில்லை. பயன்பாட்டை மறுதொன்று முடியும் மற்றும் உங்கள் கணக்கை மறுஆதிக்கவும் புதிய தரவுத்தொகுப்பை உருவாக்கி {app_name} பயன்பாட்டைப் பயன்படுத்தி தொடரவும்.

புரிந்து கொள்ளுங்கள்: இது இரண்டு வாரத்திற்கு முதலில் உள்ள அனைத்து செய்தி மற்றும் இணைப்புகளை இழக்கச் செய்யும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ యాప్ డేటాబేస్ {app_name} యొక్క ఈ వెర్షన్ తో అనుకూలంగా లేదు. యాప్‌ను పున సంస్థాపించి మీ ఖాతాను పునరుద్ధరించండి ఒక కొత్త డేటాబేస్ ను సృష్టించి {app_name} కొనసాగించడానికి.

హెచ్చరిక: ఇది రెండు వారాల క్రితం ఉన్న అన్ని సందేశాలు మరియు అటాచ్మెంట్లు కోల్పోవడానికి అనుమతిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฐานข้อมูลแอปของคุณไม่สามารถใช้งานร่วมกับเวอร์ชันนี้ของ {app_name} ติดตั้งใหม่และกู้คืนบัญชีเพื่อสร้างฐานข้อมูลใหม่และใช้งาน {app_name} ต่อไป

คำเตือน: สิ่งนี้จะส่งผลให้สูญเสียข้อความและไฟล์แนบทั้งหมดที่มีอายุเกินสองสัปดาห์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamanızın veritabanı bu sürüm ile uyumsuz. Uygulamayı yeniden yükleyin ve yeni bir veritabanı oluşturmak ve {app_name} kullanmaya devam etmek için hesabınızı geri yükleyin.

Uyarı: Bu, iki haftadan daha eski olan tüm mesaj ve eklerin kaybolmasına neden olacaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "База даних вашого додатку несумісна з цією версією {app_name}. Перевстановіть додаток та відновіть свій обліковий запис, щоб створити нову базу даних і продовжувати користуватися {app_name}.

Увага: Це призведе до втрати всіх повідомлень та вкладень, старших двох тижнів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا ایپ ڈیٹا بیس {app_name} کے اس ورژن سے مطابقت نہیں رکھتا ہے۔ ایپ کو دوبارہ انسٹال کریں اور نیا ڈیٹا بیس بنانے کے لیے اپنا اکاؤنٹ بحال کریں اور {app_name} کا استعمال جاری رکھیں۔

انتباہ: اس کے نتیجے میں دو ہفتوں سے پرانے تمام پیغامات اور منسلکات ضائع ہو جائیں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizning ilova ma'lumotlar bazasi ushbu {app_name} versiyasi bilan mos kelmaydi. Ilovani qayta o'rnating va hisobingizni tiklang, yangi ma'lumotlar bazasini yaratish va {app_name} dan foydalanishni davom ettirish uchun.

Ogohlantirish: bu ikki haftalikdan katta barcha xabarlar va ilovalarni yo'qotishga olib keladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cơ sở dữ liệu ứng dụng của bạn không tương thích với phiên bản {app_name} này. Cài đặt lại ứng dụng và khôi phục tài khoản của bạn để tạo một cơ sở dữ liệu mới và tiếp tục sử dụng {app_name}.

Cảnh báo: Điều này sẽ dẫn đến việc mất tất cả tin nhắn và tệp đính kèm cũ hơn hai tuần." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-database yakho yohlelo lwe-app ayinakuvisisana nohlobo lwangoku lwe {app_name}. Faka app kwakhona kwaye ubuyisele i-akhawunti yakho ukuphuhlisa database entsha kwaye uqhubeke usebenzisa {app_name}.

Isilumkiso: Oku kuya kubangela ukulahleka kwemiyalezo yonke kunye nezinto ezihambelanayo ezindala kunokuba yiveki ezimbini." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的应用数据库与此版本的{app_name}不兼容。请重新安装应用并恢复您的账户以生成新的数据库并继续使用{app_name}。

警告:该操作将导致两周前的所有消息和附件丢失。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的應用程式資料庫與此版本的 {app_name} 不相容。重新安裝應用程式並恢復您的帳戶以生成新的資料庫並繼續使用 {app_name}。

警告:這將導致丟失所有兩週前的訊息和附件。" + } + } + } + }, + "databaseOptimizing" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimalisering databasis" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحسين قاعدة البيانات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databaza optimallaşdırılır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹابیس شخصکورانی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аптымізацыя базы даных" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Опресняване на базата данни" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাটাবেস অপ্টিমাইজ করা হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimitzant la base de dades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimalizace databáze" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimeiddio Cronfa Ddata" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimerer Database" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimiere Datenbank" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Βελτιστοποίηση Βάσης Δεδομένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizing Database" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimumigante Datumbazon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizando base de datos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizando base de datos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmebaasi optimeerimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datu Basea Optimizatzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بهینه‌سازی پایگاه داده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimoidaan tietokanta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ina-optimize ang Database" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimisation de la base de données" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizando a Base de Datos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙarƙare Bayanai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מעדכן מסד נתונים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाटाबेस का अनुकूलन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizacija Baze podataka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatbázis optimalizálása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Շտեմարանն օպտիմալացվում է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengoptimalkan Database" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ottimizzazione del database" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データベースを更新中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემთა ბაზის ოპტიმიზაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងធ្វើបច្ចុប្បន្នភាពមូលដ្ខានទិន្នន័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೇಟಾಬೇಸ್ ಆಪ್ಟಿಮೈಸಿಂಗ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 최적화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "باشکردنی بنکەدراوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuza Database" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizuojama duomenų bazė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizē datu bāzi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оптимизирање на базата на податоци" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдээллийн сантай оптимжуулалт хийх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengoptimumkan Pangkalan Data" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာဘေ့စ် ဖြည့်စွမ်းနေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimaliserer databasen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाटाबेस अनकुल पारिदै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimaliseer Database" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimaliserer databasen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupanga bwino Database" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾਬੇਸ ਦਾ ਅਦਾਕਾਰ ਬਣਾ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optymalizacja bazy danych" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیټابیس سمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otimizando base de dados" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otimizando a base de dados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizare bază de date" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оптимизация базы данных" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizacija baze podataka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්ත සමුදාය ප්‍රශස්ත කිරීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimalizácia databázy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizacija podatkovne baze" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizimi i Bazës së të Dhënave" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оптимизација базе података" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimizacija baze podataka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Optimerar databas" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuhamisha Hifadhidata" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தரவுத்தொகுப்பை மேம்படுத்துகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటాబేస్‌ను మెరుగ్గాచేయడం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเพิ่มประสิทธิภาพฐานข้อมูล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı En İyi Duruma Getiriliyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оптимізація бази даних" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹابیس کو بہتر بنانا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar bazasi optimallashtirilmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tối ưu hóa cơ sở dữ liệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuphucula iDatha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在优化数据库" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "最佳化資料庫中" + } + } + } + }, + "debugLog" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ontfout Log" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سجل تصحيح الأخطاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sazlama jurnalı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیبگ لگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Логі адладкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug Log" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডিবাগ লগ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registre de depuració" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladící log" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cofnod Dadfygio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug log" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug-Protokoll" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αρχείο καταγραφής Αποσφαλμάτωσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug Log" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sencimiga protokolo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registro de depuración" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registro de depuración" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silumislogi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arazketa egunkaria" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گزارش اشکال‌زدایی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virheenkorjausloki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-debug ang Log" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Journal de débogage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rexistro de depuración" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskuren Tsari" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יומן תקלות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डीबग लॉग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Evidencija o otklanjanju grešaka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hibakeresési napló" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վրիպազերծման մատյան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Catatan Awakutu" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log di debug" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "デバッグログ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამართვის ჟურნალი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់ត្រាបញ្ហា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೀಬಗ್ ಲಾಗ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "디버그 로그" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەگەڵکردنی پەیام" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log ya Debug" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບັນທຶກການດັດແກ້" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Derinimo žurnalas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atkļūdošanas žurnāls" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дневник на грешки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Засварын бүртгэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log Nyahpepijat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug မှတ်တမ်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feilsøkingslogg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिबग लग" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foutopsporingslogboek" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feilsøkingslogg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lowani mu Debug Log" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਬੱਗ ਲਾਗ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dziennik debugowania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیباگ لاګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log de Depuração" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log de debug" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jurnal Depanare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Журнал отладки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug log" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දෝශ නිරාකරණ ලොගය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladiaci log" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemska zabeležba" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Regjistër Diagnostikimesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извештај о грешкама" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveštaj o greškama" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felsökningslogg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Logi ya Kurekebisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பிழைத்திருத்த பதிவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డీబగ్ లాగ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug Log" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata Ayıklama Raporu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Журнал відладки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debug Log" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tahlil yozuvi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhật ký sửa lỗi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilogi yeSipseko" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "调试日志" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "除錯紀錄" + } + } + } + }, + "decline" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weier" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أرفض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rədd et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامنظور" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адхіліць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отхвърляне" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অগ্রাহ্য করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Declineu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odmítnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwrthod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afvis" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ablehnen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόρριψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Decline" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malakcepti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rechazar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rechazar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keeldu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baztertu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رد تماس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kieltäydy" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggihan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refuser" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rexeitar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ki ɗiɗe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अस्वीकृत करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbaci" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elutasítás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մերժել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rifiuta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "拒否" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უარყოფა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បដិសេធ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರಾಕರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "거절" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "رەتی کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gana" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປະຕິເສດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atmesti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noraidīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одбиј" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Татгалзах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolak" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ငြင်းပယ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avvis" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अस्वीकार गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afwijzen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslå" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਨਕਾਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odrzuć" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "رد کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recusar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recusar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respinge" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отклонить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbij" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රතික්‍ෂේප" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odmietnuť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zavrni" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refuzoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одбиј" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avböj" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kataa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மறுக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిరాకరించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปฏิเสธ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reddet" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відхилити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسوخ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rad etish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Từ chối" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caphula" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "拒绝" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "拒絕" + } + } + } + }, + "delete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أحذف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کرنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтриване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-delete" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ړنګول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాన్ని తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除" + } + } + } + }, + "deleteAfterGroupFirstReleaseConfigOutdated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sommige van jou toestelle gebruik verouderde weergawes. Sinchronisering mag onbetroubaar wees totdat hulle opgedateer word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعض أجهزتك تستخدم إصدارات قديمة. قد تكون المزامنة غير موثوقة حتى يتم تحديثها." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bəzi cihazlarınız köhnə versiyaları istifadə edir. Güncəllənənə qədər sinxronlaşdırma güvənli olmaya bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کچھ دستگاهاتیں یونی اپڈیتاہ ضخ و عرض چکس" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некаторыя з вашых прылад выкарыстоўваюць састарэлую версію. Сінхранізацыя можа быць ненадзейнай, пакуль яны не будуць абноўлены." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Някои от вашите устройства използват остарели версии. Синхронизацията може да бъде ненадеждна, докато не бъдат актуализирани." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার কিছু ডিভাইস পুরোনো ভার্সন ব্যবহার করছে। যতক্ষন না আপডেট হয়, সিঙ্কিং ভরসাযোগ্য নাও হতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alguns dels vostres dispositius tenen versions antigues. La sincronització pot no ser fialbe fins que estiguin actualitzats." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Některá z vašich zařízení používají zastaralé verze. Synchronizace může být nespolehlivá, dokud nebudou aktualizovány." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae rhai o'ch dyfeisiau'n defnyddio fersiynau allan o ddyddiad. Efallai na fydd cydamseru'n ddibynadwy nes cânt eu diweddaru." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nogle af dine enheder bruger forældede versioner. Synkroniseringen kan være upålidelig, indtil de er opdaterede." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einige deiner Geräte verwenden veraltete Versionen. Die Synchronisierung kann unzuverlässig sein, bis sie aktualisiert werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μερικές από τις συσκευές σας χρησιμοποιούν ξεπερασμένες εκδόσεις. Ο συγχρονισμός μπορεί να είναι αναξιόπιστος μέχρι να ενημερωθούν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iuj el viaj aparatoj uzas malnoviĝintajn versiojn. Sinkronigado povas esti nefidinda ĝis ili ĝisdatigos." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunos de tus dispositivos están utilizando versiones desactualizadas. La sincronización puede ser poco confiable hasta que se actualicen." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunos de tus dispositivos están utilizando versiones desactualizadas. La sincronización puede ser poco confiable hasta que se actualicen." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mõned teie seadmed kasutavad aegunud versioone. Sünkroonimine võib olla ebausaldusväärne, kuni neid värskendatakse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure gailu batzuk bertsio zaharkituak erabiltzen ari dira. Sinkronizazioa ez da fidagarria izango eguneratu arte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برخی از دستگاه‌های شما از نسخه‌های قدیمی استفاده می‌کنند. همگام سازی ممکن است غیر قابل اعتماد باشد تا زمانی که به روز شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jotkin laitteesi käyttävät vanhentuneita versioita ja synkronoinnin toiminnassa voi olla ongelmia, kunnes ne on päivitetty." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang ilan sa iyong mga devices ay gumagamit ng mga lumang bersyon. Maaaring hindi maging maaasahan ang pag-syncronize hanggang sa ma-update ang mga ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certains de vos appareils utilisent des versions obsolètes. La synchronisation peut être instable jusqu'à ce qu'ils soient mis à jour." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algúns dos teus dispositivos están usando versións desactualizadas. A sincronización pode non ser de confianza ata que se actualicen." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wasu daga cikin na'urorinku suna amfani da tsoffin sigogi. Hada na'urorin na iya zama maras tabbas har sai an sabunta su." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חלק מהמכשירים שלך משתמשים בגרסאות מיושנות. הסנכרון עשוי להיות לא יציב עד שהם יעודכנו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके कुछ डिवाइस पुराने संस्करणों का उपयोग कर रहे हैं। जब तक वे अपडेट नहीं हो जाते, सिंक अविश्वसनीय हो सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neki od vaših uređaja koriste zastarjele verzije. Sinkronizacija može biti nepouzdana dok se ne ažuriraju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egyes eszközeid elavult verziókat használnak. A szinkronizálás megbízhatatlan lehet a frissítésig." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր որոշ սարքեր օգտագործում են հնացած տարբերակներ։ Համաժամեցումը կարող է լինել ոչ կայուն մինչ դրանք թարմացվեն։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beberapa perangkat Anda menggunakan versi lama. Sinkronisasi mungkin tidak dapat diandalkan hingga diperbarui." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alcuni dei tuoi dispositivi stanno utilizzando una versione obsoleta. La sincronizzazione potrebbe risultare inaffidabile finché non verranno aggiornati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "一部のデバイスは古いバージョンを使用しています。同期が更新されるまで信頼性が低い場合があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზოგიერთი თქვენი მოწყობილობა იყენებს მოძველებულ ვერსიებს. სინქრონიზაცია შეიძლება არაკეთილსაწინააღმდეგო იყოს სანამ ისინი განახლებენ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឧបករណ៍របស់អ្នកមួយចំនួនបានប្រើប្រាស់កំណែហួសសម័យ។ ការសមកាលកម្មអាចមិនគួរឱ្យទុកចិត្តរហូតពួកគេត្រូវបានអាប់ដេត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಕೆಲವು ಉಪಕರಣಗಳು ಹಳೆಯ ಆವೃತ್ತಿಗಳನ್ನು ಬಳಸುತ್ತಿವೆ. ಅವುಗಳನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಿದರೆ ಸಂಬಂಧಿಕ ವೇಳೆಾಂಗಿತ ದೂರವಿರಲುಂದು ಸಂಕರವಾಗಿದದ್ದು ಎನ್ಕಉಂಬುದೋನು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "일부 기기가 구버전을 사용 중입니다. 업데이트되지 않은 경우 동기화가 불안정할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەندێك لە ئامێرەکانت بە كۆمپەرسیەکانە کۆن بەکاردەهێنن. یەکخستن کردنی دەکرێت بە پەیوەندیدار نەبێت تاکوو یەکدەکرێن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebimu ku byuma byo birina amakyaaga g'omukadde. Okukola kw'ebigatta okulowoofu kunaawera okutuusa lwe bidikusibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai kurie jūsų įrenginiai naudoja pasenusias versijas. Sinchronizavimas gali būti nestabilus, kol jie nebus atnaujinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dažas no tavām ierīcēm izmanto novecojušas versijas. Sinhronizācija var būt neuzticama, kamēr tās netiks atjauninātas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некои од твоите уреди користат застарени верзии. Синхронизацијата може да биде непостојана додека не ги ажурираш." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны зарим төхөөрөмж хуучирсан хувилбаруудыг ашиглаж байна. Тааруулах үйл явц найдвартай байхгүй байж магадгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beberapa peranti anda menggunakan versi yang telah lapuk. Penyelarasan mungkin tidak boleh dipercayai sehingga ia dikemas kini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်စက်အချို့မှာ နောက်ဆုံးပေါ် ဗားရှင်းကို မသုံးထားပါ ။ ပြန်လုပ်ခွင့်မပြုပြီး ဖော်ပြမှုတို့အပြီး Update လုပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noen av enhetene dine bruker utdaterte versjoner. Synkronisering kan være upålitelig frem til de er oppdatert." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंका केही उपकरणहरू पुराना संस्करणहरू प्रयोग गरिरहेका छन्। तिनीहरूको अद्यावधिक नभएसम्म समकालन अस्थिर हुन सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sommige van je apparaten gebruiken verouderde versies. Synchroniseren kan onbetrouwbaar zijn totdat ze zijn bijgewerkt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nokre av einingane dine brukar utdaterte versjonar. Synkronisering kan vere upåliteleg til desse er oppdaterte." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੁਝ ਉਪਕਰਣ ਪੁਰਾਣਾ ਵਰਜਨ ਵਰਤ ਰਹੇ ਹਨ। ਸਿੰਕ ਰੀਲਾਇਸਬਲ ਨਹੀ ਹੋ ਸਕਦਾ ਜਦ ਤਕ ਕਿ ਉਹ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾਂਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niektóre urządzenia korzystają z nieaktualnych wersji. Synchronizacja może być zawodna do czasu ich aktualizacji." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ځینې ستاسو وسایل زوړ نسخې کاروي. همغږي د دې وسایلو تر تازه کولو پورې بې باوره کېدی شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alguns dos seus dispositivos estão usando versões desatualizadas. A sincronização pode não ser confiável até que sejam atualizados." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alguns dos seus dispositivos estão a usar versões antigas. A sincronização pode ser pouco confiável até que sejam atualizados." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unele dintre dispozitivele tale folosesc versiuni învechite. Sincronizarea poate fi nesigură până când acestea sunt actualizate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некоторые из ваших устройств используют устаревшие версии. Синхронизация может быть ненадежной до тех пор, пока они не будут обновлены." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neki od vaših uređaja koriste zastarjele verzije. Sinhronizacija može biti nepouzdana dok se ne ažuriraju." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ උපාංග කිහිපයක් පැරණි අනුවාද භාවිත කරයි. දක්නට ඇති බවකට පරීක්ෂා විය හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niektoré vaše zariadenia používajú zastarané verzie. Synchronizácia môže byť nespoľahlivá, kým nebudú aktualizované." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekatere vaše naprave uporabljajo zastarele različice. Sinhronizacija morda ne bo zanesljiva, dokler ne bodo posodobljene." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disa nga pajisjet tuaja po përdorin versione të vjetra. Sinkronizimi mund të mos jetë i besueshëm deri sa të përditësohen." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неки од твојих уређаја користе застареле верзије. Синхронизација може бити непоуздана до ажурирања." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neki od vaših uređaja koriste zastarele verzije. Sinhronizacija može biti nepouzdana dok se ne ažuriraju." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Några av dina enheter använder gamla versioner. Synkronisering kan vara opålitlig tills de uppdateras." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baadhi ya vifaa vyako vina matoleo yasiyo ya kisasa. Usawazishaji unaweza kuwa si wa kuaminika hadi yamesasishwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் சாதனங்களில் சில பழைய பதிப்புகளைப் பயன்படுத்திக் கொண்டிருக்கின்றன. சிங்கிங் வாங்கുവையில் குறிப்பாக விசையமைப்புகளைப் பயன்படுத்தவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ పరికరాలలో కొన్ని పాత సంస్కరణలను ఉపయోగిస్తున్నాయి. అవి నవీకరించేవరకూ సింక్ అవ్వడంలో విశ్వసనీయత ఉండకపోవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อุปกรณ์บางอย่างของคุณใช้เวอร์ชันที่ล้าสมัย การซิงค์อาจไม่น่าเชื่อถือจนกว่าจะได้รับการอัปเดต" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bazı cihazlarınız eski sürümleri kullanıyor. Güncellenene kadar senkronizasyon güvenilir olmayabilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Деякі з ваших пристроїв використовують застарілу версію застосунку. Синхронізація може не вдатись, доки вони не будуть оновлені." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے کچھ آلات پرانی ورژن استعمال کر رہے ہیں۔ ہم آہنگی قابل اعتماد نہیں ہوسکتی جب تک کہ انہیں اپ ڈیٹ نہ کیا جائے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayrim qurilmalaringiz eskirgan versiyalarni ishlatmoqda. Sinxronizatsiya yangilanmaganicha ishonchsiz bo'lishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một số thiết bị của bạn đang sử dụng các phiên bản đã lỗi thời. Đồng bộ hóa có thể không đáng tin cậy cho đến khi chúng được cập nhật." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的某些设备正在使用旧版本客户端。同步功能可能在更新之前不稳定。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的部分裝置正在使用過時的版本。在更新之前,同步可能不可靠。" + } + } + } + }, + "deleteAfterGroupPR1BlockThisUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer Hierdie Gebruiker" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حظر هذا المستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu istifadəçini əngəllə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس صارف کو روکو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблакіраваць гэтага карыстальніка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирай този потребител" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই ব্যবহারকারীকে ব্লক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejar a aquest usuari/a" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovat tohoto uživatele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhwystro'r Defnyddiwr Hwn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloker Denne Bruger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Person blockieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φραγή Αυτού του Χρήστη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block This User" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloki tiun uzanton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeri see kasutaja" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block This User" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود کردن کاربر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estä tämä käyttäjä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-block ang User na Ito" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquer cet utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear a este usuario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "To'she Wannan Mai Amfani" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חסום משתמש זה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस उपयोगकर्ता को ब्लॉक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj ovog korisnika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó letiltása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակել այս օգտատիրոջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokir Pengguna Ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocca questo utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このユーザーをブロックする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკეთ ეს მომხმარებელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទប់ស្កាត់អ្នក​ប្រើ​" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಬಳಕೆದಾರರನ್ನು ತಡೆಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 사용자를 차단" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوورخستنەوەی ئەم بەکارهێنەرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block This User" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫ້າມຜູ້ນັກນັບນີ້" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užblokuoti šį naudotoją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēt šo lietotāju" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај го овој корисник" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ хэрэглэгчийг хориглох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekat Pengguna Ini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသုံးစွဲသူကို ဘလော့မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker denne brukeren" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस प्रयोगकर्तालाई ब्लक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze gebruiker blokkeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker denne brukaren" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block This User" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਉਪਭੋਗਤਾ ਨੂੰ ਬਲੌਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj tego użytkownika" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا کاروونکی بلاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear este usuário" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear este utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blochează acest utilizator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокировать этого пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj ovog korisnika" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම පරිශීලකයා අවහිර කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovať tohto používateľa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj uporabnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bllokoni këtë përdorues" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирати овог корисника" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj ovog korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockera denna användare" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuia Mtumiaji Huyu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த பயனரைத் தடை செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ వినియోగదారుని నిరోధించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บล็อกคนนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu Kullanıcıyı Engelle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокувати користувача" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس صارف کو بلاک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu foydalanuvchini bloklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chặn Người dùng này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vimba Lo Msebenzisi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "屏蔽该用户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖此使用者" + } + } + } + }, + "deleteAfterGroupPR1BlockUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer Gebruiker" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حظر مستخدم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçini əngəllə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو روکو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблакіраваць карыстальніка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокиране на потребител" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যবহারকারীকে ব্লক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejar usuari" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokovat uživatele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhwystro Defnyddiwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloker Bruger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Person blockieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φραγή Χρήστη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block User" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloki uzanton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeeri kasutaja" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block User" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسدود کردن کاربر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estä käyttäjä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-block ang User" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquer l'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear usuario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "To'she Mai Amfani" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חסום משתמש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता को ब्लॉक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj korisnika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó letiltása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արգելափակել օգտատիրոջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokir Pengguna" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocca utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーをブロック" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბლოკეთ მომხმარებელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទប់ស្កាត់អ្នក​ប្រើ​" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ತಡೆಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 차단" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەسەڵاتدانە کەسی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block User" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫ້າມຜູ້ນັກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užblokuoti naudotoją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēt lietotāju" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај корисник" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekat Pengguna" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သုံးစွဲသူကို ဘလော့မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker bruker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता ब्लक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokkeer gebruiker" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokker brukar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block User" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਭੋਗਤਾ ਨੂੰ ਬਲੌਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj użytkownika" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاروونکی بلاک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear Usuário" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blochează utilizator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокировать пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj korisnika" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවහිර කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokovať používateľa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj uporabnika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bllokoni përdoruesin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Блокирај корисника" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokiraj korisnika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blockera användare" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuia Mtumiaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனரைத் தடை செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారుని నిరోధించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บล็อกผู้ใช้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıyı Engelle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокувати користувача" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو بلاک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchini bloklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chặn Người dùng này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vimba Umsebenzisi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "屏蔽用户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "封鎖使用者" + } + } + } + }, + "deleteAfterGroupPR1GroupSettings" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep Instellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعدادات المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup ayarları" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپءِ ستینز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налады групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настройки на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ সেটিংস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuració del Grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavení skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosodiadau Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppens indstillinger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppen-Einstellungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ρυθμίσεις Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group Settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupaj Agordoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuración del grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuración del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi sätted" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen Ezarpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیمات گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmäasetukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Setting ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paramètres de groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axustes do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saitunan rukunin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרות קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह सेटिंग्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport beállítások" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի կարգավորումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengaturan grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impostazioni gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის პარამეტრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការកំណត់ក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ಸಂಯೋಜನೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕێکەوتکردنی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setingi ze Kibinja" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės nustatymai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas iestatījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поставки за групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн тохиргоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုဆက်တင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeinnstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह सेटिङ्हरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsinstellingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeinnstillinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zikhazikiko za Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਸੈਟਿੰਗਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienia grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې تنظیمات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurações do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definições do grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setările grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настройки группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ සේටින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavenia skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavitve skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cilësimet e grupit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подешавања групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podešavanja grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppinställningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mipangilio ya Kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு அமைப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ సెట్టింగ్‌లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่ากลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Ayarları" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налаштування групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی ترتیبات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhning sozlamalari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cài đặt nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "UsesiQela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組設定" + } + } + } + }, + "deleteAfterGroupPR1MentionsOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slegs waarsku vir vermeldings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إشعار للإشارات فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız adçəkmələr üçün bildir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساب گون ناچ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнне толькі для згадак" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия само за споменавания" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozorňovat pouze na zmínky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ond hysbysu am Gyfeiriadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Underret kun når jeg bliver omtalt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur für Erwähnungen benachrichtigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποίηση Μόνο για Αναφορές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificar Solo Menciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificar Solo Menciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teavita vaid mainimistest" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazi Aipamenetarako bakarrik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط برای ذکر شده ها اطلاع دهید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huomioi vain mainitut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-notify para sa Mentions Lamang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activer les notifications que sur mention" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificar só por mencións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanar Da Aka Kira Na Mentions Kadai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल उल्लेखों के लिए सूचित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti samo kod spominjanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítés csak említések esetén" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խոսել միայն հիշատակումների համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beri Tahu Hanya untuk Sebutan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche solo per le menzioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メンションのみ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ მოხსენებები გამომყენებელთათვის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಲ್ಲೇಖಗಳು ಮಾತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "멘션만 알림 받기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تەنها بۆ بیرکردنەوەکان ئاگادار بکەرەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegeera okuyitibwa nze kwokka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņot tikai pieminēšanas gadījumā" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извести само за спомнувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн дурсамжийн талаар мэдэгдээрэй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan hanya untuk Sebutan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့၀င်များ၏ ဆိုင်းချက်အတွက်သာ အသိပေးချက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsle kun når jeg blir omtalt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल उल्लेखहरूको लागि सूचित गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen melding bij vermeldingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsle kun når jeg blir omtalt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zidziwitso za ntchitoyi zimatumizidwa mukafuna kutsatira off - features." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੇਵਲ ਜ਼ਿਕਰ ਲਈ ਸੂਚਿਤ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadom tylko o wzmiankach" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې یادونه لپاره خبرتیا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificar apenas menções" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificar apenas quando sou mencionado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifică doar pentru mențiuni" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомлять только об упоминаниях" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo obavijesti za spomene" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සඳහන් කිරීම් සඳහා පමණක් දැනුම් දෙන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozorniť Len ak Spomenutý" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvesti le za omembe" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veç për Përmendjet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештавај само за помене" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavesti samo kada se pominje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiera endast för omnämnanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taarifa za bubu tu kwa kutajwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குறிப்பில் மட்டும் அறிவிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కేవలం పేర్లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แจ้งเฉพาะการกล่าวถึง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnızca Bahsedildiğinde Bildir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщати лише про згадки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف تذکرات کے لئے اطلاع دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat tilash haqida habar qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notify for Mentions Only" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaziso ZeMentions Kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅在提及时通知" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "提及我時才通知" + } + } + } + }, + "deleteAfterGroupPR1MentionsOnlyDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wanneer geaktiveer, sal jy net kennisgewings ontvang vir boodskappe wat jou noem." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عند التمكين، سيتم إشعارك فقط بالرسائل التي تذكرك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fəal olduqda, yalnız adınız çəkilən mesajlar barədə məlumatlandırılacaqsınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہنرگنتہ، شمای چہگان پیغاماتی آ اینیگ ذکری بکود بیتنگ، گپ چندکندگ۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі гэта ўключана, вы будзеце атрымліваць апавяшчэнні толькі аб паведамленнях, у якіх вы згадваецеся." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Когато е включено, ще получавате известия само за съобщения, които ви споменават." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "When enabled, you'll only be notified for messages mentioning you." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quan estigui activat, només rebreu notificacions per missatges que us mencionin." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Když je povoleno, budete upozorněni pouze na zprávy, které vás zmiňují." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pan fydd ar gael, dim ond y negeseuon sy'n eich crybwyll byddwch chi'n cael eich hysbysu amdanynt." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Når aktiveret, vil du kun blive underrettet for beskeder, der nævner dig." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wenn aktiviert, wirst du nur über Nachrichten benachrichtigt, in denen du erwähnt wirst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όταν ενεργοποιηθεί, θα ειδοποιηθείτε μόνο για μηνύματα που σας αναφέρουν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "When enabled, you'll only be notified for messages mentioning you." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiam ebligita, vi ricevos notifikojn nur pri mesaĝoj kiuj mencios vin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuando está activado, sólo se te notificará de mensajes que te mencionen." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuando está activado, sólo se te notificará de mensajes que te mencionen." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kui lubatud, teavitatakse teid ainult sõnumitest, mis mainivad teid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaituta dagoenean, zu aipatzen dituzten mezuek soilik abisatuko zaituzte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "وقتی فعال باشد، فقط برای پیام هایی که از شما نام می برند مطلع می شوید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun toiminto on käytössä, saat ilmoituksia vain sinut mainitsevista viesteistä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapag naka-enable, maaabisuhan ka lamang para sa mga mensaheng nagbabanggit sa iyo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quand activé, vous recevrez les notifications uniquement pour les messages qui vous mentionnent." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cando estea activado, só recibirás notificacións para mensaxes que te mencionen." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokacin da aka kunna, za a sanar da ku kawai don saƙonni da suke ambatarku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כאשר אופציה זו מופעלת, תקבל/י הודעות על הודעות בהן הוזכרת בלבד." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सक्षम होने पर, आपको केवल उन्हीं संदेशों के लिए सूचित किया जाएगा जो आपको उल्लेखित करते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kad je omogućeno, bit ćete obaviješteni samo o porukama koje vas spominju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha engedélyezve van, csak a téged említő üzenetekről kapsz értesítést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնելու դեպքում, դուք ծանուցվելու եք միայն ձեզ նշող հաղորդագրությունների համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saat diaktifkan, Anda hanya akan diberi tahu untuk pesan yang menyebut Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se abilitato, verrai notificato solo per i messaggi in cui vieni menzionano." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "有効にすると、あなたに言及するメッセージのみが通知されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "როდესაც ჩართულია, მხოლოდ იმ შეტყობინებებზე მიიღებთ შეტყობინებებს, რომლებიც თქვენ გეხებიან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជាប្រព្រឹត្តិការណ៍ អ្នកនឹងត្រូវបានជូនដំណឹងសម្រាប់សារដែលបានហៅ ឬកិច្ចសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಚಾಲನೆ ಮಾಡಿದಾಗ, ನಿಮಗೆ ಮಾತ್ರ ನಿಮ್ಮಲ್ಲಿ ಉಲ್ಲೇಖಿಸಿದ ಸಂದೇಶಗಳಿಗೆ ನೋಟಿಫಿಕೇಶನ್ ದೊರೆಯುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "활성화되면 당신이 언급된 메시지만 알림을 받게 됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاتێک داچوو، تۆ تەنها باسی دەکەیت بۆ نامەکانی پاراستنی تۆ." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nga okolezebwa, onajanjaluka bubi ku bubakabwe bujanjaluko" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai įjungta, būsite informuoti tik apie žinutes, kuriose esate paminėti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja iespējots, tev tiks paziņots tikai par ziņojumiem, kuros esi pieminēts." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Кога е овозможено, ќе добивате известувања само за пораките кои ве споменуваат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идэвхжүүлсэн үед зөвхөн таныг дурдсан мессежүүдэд л мэдэгдэл ирнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apabila diaktifkan, anda hanya akan diberitahu untuk mesej yang menyebut anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "When enabled, you'll only be notified for messages mentioning you." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Når aktivert vil du bare bli varslet når meldinger omtaler deg." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जब यो सक्षम गर्ने, तपाईंलाई केवल तपाईंको उल्लेख गर्ने सन्देशहरूको लागि सूचना दिइनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wanneer ingeschakeld, wordt u alleen op de hoogte gesteld voor berichten waarin u vermeld wordt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Når aktivert vil du bare bli varslet når meldinger omtaler deg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukayambitsa, mudzalengezedwa zokha kwa mauthenga omwe akukuthandizani." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਦੋਂ ਇਹ ਸਬੰਧਿਤ ਹੁੰਦਾ ਹੈ, ਤੁਸੀਂ ਸਿਰਫ ਮੇਨਸ਼ਨ ਕੀਤੇ ਜਾਣ ਵਾਲੇ ਸੰਦੇਸ਼ਾਂ ਲਈ ਸੂਚਿਤ ਹੋਵੋਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po włączeniu tej opcji będziesz otrzymywać powiadomienia tylko o wiadomościach, w których o Tobie wspomniano." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کله چې فعال کړئ، تاسو به یوازې د هغه پیغامونو لپاره خبرتیاوې ترلاسه کړئ چې تاسو ته اشاره کوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quando ativo, você só receberá notificações quando alguém mencionar você." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Após a sua ativação, apenas será notificado quando for mencionado numa mensagem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "În urma activării, vei primi notificări doar pentru mesajele care te menționează." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Когда включено, вы будете уведомлены только о сообщениях, упоминающих вас." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kada je omogućena, dobićete samo obaveštenja za poruke koje vas pominju." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබල කළ විට, ඔබ සඳහන් කරන පණිවිඩ සඳහා පමණක් ඔබට දැනුම් දෙනු ලැබේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po povolení budete dostávať upozornenia len na správy, v ktorých ste spomenutí." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko je omogočeno, boste dobili obvestila le za sporočila, ki vas omenijo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kur aktivizohet, do të njoftoheni vetëm për mesazhet që ju përmendin ju." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Када је омогућено, бићете обавештени само за поруке које вас помињу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kada je omogućeno, bićete obavešteni samo za poruke u kojima ste pomenuti." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "När detta är aktiverat kommer du bara att meddelas för meddelanden som nämner dig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukiwezeshwa, utaarifiwa tu kwa ujumbe unaokutaja." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இதை இயக்கினால், உங்களை குறிப்பிட்டுள்ள தகவல்களை மட்டும் அறிவிப்பீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది ప్రారంభించినప్పుడు, మీరు మాత్రమే చేర్పించిన సందేశాల కోసం నోటిఫికేషన్‌లు అందుకుంటారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เมื่อเปิดใช้งาน คุณจะได้รับการแจ้งเตือนเฉพาะข้อความที่พูดถึงคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etkinleştirildiğinde, yalnızca sizden bahseden mesajlar için bilgilendirileceksiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Коли увімкнено, ви будете отримувати сповіщення лише про повідомлення, в яких згадують вас." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جب فعال ہو جائے، آپ کو صرف ان پیغامات کے لیے مطلع کیا جائے گا جو آپ کا ذکر کرتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faollashtirilganda, faqat sizni tilga oladigan xabarlar haqida xabarlar olasiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khi được bật, bạn sẽ chỉ nhận thông báo cho các tin nhắn đề cập đến bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xa ivuliwe, uza kuziswa kuphela ngemiyalezo ekukhankanywayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "启用后,您只会收到提及您的消息通知。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "啟用後,你將只會收到提及你的訊息之通知。" + } + } + } + }, + "deleteAfterGroupPR1MessageSound" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap Klank" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صوت الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj səsi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Sound" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гук паведамлення" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тон на съобщенията" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ম্যাসেজের শব্দ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "So de missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sain Neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskedlyd" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenton" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ήχος Μηνύματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Sound" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝa Sono" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes con sonido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones sonoras" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumiheli" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu soinua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صدای پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestien ilmoitusääni" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunog ng Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son de message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son da mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sautin saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צליל הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश ध्वनि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet hangja" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության ձայն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suara Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suono messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージサウンド" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების ხმა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សម្លេងប្រព័ន្ធផ្សព្វផ្សាយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಶಬ್ಧ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 소리" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەنگی نامە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amazzi agata fuka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinučių garsas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojuma skaņa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук на пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежийн Дуу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bunyi Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ခြင်းအသုံယွက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingslyd" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश ध्वनि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geluid van bericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding lyd" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phokoso la uthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਸਾਊਂਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dźwięk wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام غږ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som de mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som da Mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunet notificare mesaj" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ ශබ්දය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvok sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tingull mesazhi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandeljud" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti ya Ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Sound" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశ ధ్వని" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เสียงข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj Sesi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی آواز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar ohangi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Âm báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isandi soMyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息提示音" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息音效" + } + } + } + }, + "deleteAfterGroupPR3DeleteMessagesConfirmation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder die boodskappe in hierdie gesprek permanent?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف المحادثة بصفة نهائية ؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu danışıqdakı mesajlar həmişəlik silinsin?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ گفتگوءِ پیاماں ہمیشہءِ خاطر حذف کئیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленні ў гэтай размове назаўсёды?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перманентно изтриване на този разговор?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই কথোপকথনের বার্তাগুলি স্থায়ীভাবে মুছবেন?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu suprimir aquesta conversa de forma permanent?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trvale smazat tuto konverzaci?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu'r negeseuon yn y sgwrs hon yn barhaol?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet samtale permanent?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soll diese Unterhaltung unwiderruflich gelöscht werden?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Να διαγραφούν οριστικά τα μηνύματα σε αυτήν τη συνομιλία;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanently delete the messages in this conversation?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu porĉiame forigi tiun ĉi tutan interparolon?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Eliminar permanentemente los mensajes en esta conversación?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Eliminar los mensajes de esta conversación permanentemente?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas kustutada see vestlus jäädavalt?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak betiko ezabatu elkarrizketa honetan?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید این گفتگو را برای همیشه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistetaanko tämä keskustelu pysyvästi?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanente bang ide-delete ang mga mensahe sa usapang ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer définitivement les messages dans cette conversation ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar permanentemente as mensaxes nesta conversa?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "A kashe keɓewa cikin wannan tattaunawa?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם למחוק לצמיתות שיחה זו?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस वार्तालाप को स्थायी रूप से हटाएं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno obrisati ovaj razgovor?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Véglegesen törlöd ezt a beszélgetést?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընդմիշտ ջնջե՞լ այս խոսակցության հաղորդագրությունները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus obrolan ini selamanya?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovere definitivamente la chat?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この会話のメッセージを完全に削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ რომ სამუდამოდ წაშალოთ შეტყობინებები ამ სასაუბროში?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបការសន្ទនានេះចោលរហូត?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿನ ಸಂದೇಶಗಳನ್ನು ಶಾಶ್ವತವಾಗಿ ಅಳಾಯಿಸಿದಿವಾದೇ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화에서 이 메세지를 영원히 지웁니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامەکان تەنها بەرێوەبەران لە پەیامەکەدا دەبێ پەیامەکان نادیدار بکەن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buggya ddala oba ebiwandiiko mu kwogera kuno?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar ištrinti šį pokalbį visiems laikams?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst ziņojumus šajā sarunā uz visiem laikiem?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате трајно да ги избришете пораките во овој разговор?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ яриан дахь мессежүүдийг бүрмөсөн устгах уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus mesej dalam perbualan ini secara kekal?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤစကားပြောဆိုမှုမှ မက်ဆေ့ဂျ်များကို အပြီးတိုင်ဖျက်ပစ်မည်မှာ သေချာပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett beskjedene permanent i denne samtalen?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस कुराकानीका सन्देशहरू स्थायी रूपमा मेटाउनु हुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "De berichten in dit gesprek voorgoed wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett beskjedene permanent i denne samtalen?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kufufuta uthenga mu kukambirana uku mwamvuma?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਇਸ ਗੱਲਬਾਤ ਦੇ ਸੁਨੇਹਿਆਂ ਨੂੰ ਸਥਾਈ ਤੌਰ 'ਤੇ ਮਿਟਾਉਣਾ ਹੈ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trwale usunąć wiadomości w tej konwersacji?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا غواړئ په دې خبرو کې پیغامونه تلپاتې حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você deseja apagar esta conversa definitivamente?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deseja apagar definitivamente esta conversa?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ștergi permanent mesajele din acestă conversație?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить эту беседу без возможности восстановления?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li zaista želite trajno obrisati poruke iz ovog razgovora?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සංවාදයේ ඇති පණිවිඩ ස්ථිරවම මකන්නද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Natrvalo zmazať túto konverzáciu?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali res želite nepovratno izbrisati ta pogovor?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të fshihet përgjithmonë kjo bisedë?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неопозиво уклонити преписку?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neopozivo ukloniti poruke u ovoj konverzaciji?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du radera denna konversation för alltid?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unataka kufuta meseji hizi kabisa kwenye mazungumzo haya?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த உரையாடலில் உள்ள செய்திகளை நிரந்தரமாக நீக்கவா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సంభాషణలోని సందేశాలను శాశ్వతంగా తొలగించాలా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบการสนทนานี้โดยถาวรหรือไม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sohbeti kalıcı olarak sil?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити повідомлення у цій розмові назавжди?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گفتگو میں پیغامات کو مستقل طور پر حذف کریں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu suhbatni tag-tomiri bilan o'chiremi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa cuộc trò chuyện này vĩnh viễn?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cima imiyalezo kule ncoko unaphakade?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "永久删除此会话中的消息?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "永久刪除對話中的訊息?" + } + } + } + }, + "deleteAfterGroupPR3GroupErrorLeave" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie verlaat terwyl ander lede gevoeg of verwyder word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكن المغادرة أثناء إضافة أو إزالة أعضاء آخرين." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digər üzvləri əlavə edərkən və ya çıxardarkən tərk edilə bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوسرے ممبروں کو شامل یا ہٹانے کے دوران آپ اس گروپ کو نہیں چھوڑ سکتے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нельга пакінуць пры даданні або выдаленні іншых удзельнікаў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да напуснете докато добавяте или премахвате други членове." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অন্যান্য সদস্য যোগ বা অপসারণ করার সময় ছেড়ে যাওয়া সম্ভব নয়।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pots sortir mentre s'afegeixen o s'eliminen altres membres." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze odejít při přidávání nebo odebírání dalších členů." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gadael wrth ychwanegu neu dynnu aelodau eraill." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke forlade gruppen, mens du tilføjer eller fjerner andre medlemmer." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst die Gruppe nicht verlassen, während andere Mitglieder hinzugefügt oder entfernt werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν είναι δυνατή η αποχώρηση από την ομάδα κατά την προσθήκη ή αφαίρεση άλλων μελών." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't leave while adding or removing other members." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne povas forlasi dum aldoni aŭ forigi aliajn membrojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede salir mientras se agregan o eliminan miembros." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede salir mientras se agregan o eliminan miembros." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei saa lahkuda, kui on teisi liikmeid lisatud või eemaldatud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't leave while adding or removing other members." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هنگام افزودن یا حذف سایر اعضا، نمی‌توانید گروه را ترک کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei voida poistua lisättäessä tai poistettaessa muita jäseniä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi maaaring umalis habang nagdaragdag o nagtatanggal ng mga miyembro." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de quitter lors de l'ajout ou la suppression d'autres membres." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode saír mentres se engaden ou eliminan outros membros." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya barin lokacin ƙara ko cire membobin ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לעזוב בעת הוספה או הסרה של משתתפים אחרים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्य सदस्यों को जोड़ते या हटाते समय छोड़ नहीं सकते।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete izaći dok dodajete ili uklanjate druge članove." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem tudsz kilépni addig, amíg hozzáadsz, vagy eltávolítasz csoporttagokat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չեք կարող դուրս գալ մինչ ավելացնում կամ հեռացնում եք այլ անդամներին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat keluar saat menambahkan atau menghapus anggota lain." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non puoi abbandonare il gruppo durante l'aggiunta o la rimozione di altri membri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "他のメンバーを追加または削除中は退出できません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ დატოვებთ ჯგუფს, რადგან მიმდინარეობს წევრობის შეცვლა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចចាកចេញនៅពេលបន្ថែមឬដកសមាជិកផ្សេងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತರ ಸದಸ್ಯರನ್ನು ಸೇರಿಸುವ ಅಥವಾ ತೆಗೆದು ಹಾಕುವ ಸಂದರ್ಭದಲ್ಲಿ విడೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다른 멤버를 추가하거나 제거하는 동안 나갈 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : ".ناتوانیت بەیەکتوانی کۆمەڵە ئەندام زیاد یان کەموەندام بکەیت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't leave while adding or removing other members." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດອອກໄດ້ໃນຂະນະນີ້ທ່ານກໍາລັງເພີ່ມຫຼຶລົບສະມາຊິກ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta išeiti, kol pridedami arba pašalinami kiti nariai." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar iziet, kamēr pievieno vai noņem citus dalībniekus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да го напуштите додека додавате или отстранувате други членови." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бусад гишүүдийг нэмэх буюу хасахдаа энэ бүлгээс гарах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak boleh meninggalkan semasa menambah atau mengeluarkan ahli lain." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အခြားအဖွဲ့ဝင်များကို ထည့်ခြင်း သို့မဟုတ် ဖယ်ရှားခြင်းအနေဖြင့် ထွက်ခွာ၍မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke forlate mens du legger til eller fjerner andre medlemmer." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्य सदस्यहरू थप्दा वा हटाउँदा छोड्न सकिँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan niet verlaten terwijl andere leden worden toegevoegd of verwijderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikkje forlata medan du legg til eller fjernar andre medlemmar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't leave while adding or removing other members." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੋਰ ਮੈਂਬਰਾਂ ਨੂੰ ਜੋੜਦੇ ਜਾਂ ਹਟਾਉਂਦੇ ਸਮੇਂ ਛੱਡ ਨਹੀਂ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można opuścić podczas dodawania lub usuwania innych członków." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په داسې حال کې چې نور غړي اضافه یا لرې کوي، پریږدئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível sair enquanto adiciona ou remove outros membros." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não pode sair enquanto não adicionar ou remover outros membros do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu se poate părăsi în timp ce adăugați sau eliminați alți membri." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нельзя покинуть, пока добавляются или удаляются другие участники." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete napustiti grupu dok dodajete ili uklanjate druge članove." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අන් අයට සෙසු සාමාජිකයන් එකතු කිරීම හෝ ඉවත් කිරීමේදී ප්‍රস্থান කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemôžete odísť počas pridávania alebo odstraňovania iných členov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morete zapustiti, medtem ko dodajate ali odstranjujete druge člane." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mund të largoheni ndërsa shtoni ose hiqni anëtarë të tjerë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете напустити док додајете или уклањате друге чланове." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete napustiti dok dodajete ili uklanjate druge članove." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan inte lämna medan andra medlemmar läggs till eller tas bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi kuondoka huku unaongeza au unapunguza wanachama wengine." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மற்ற உறுப்பினர்களை சேர்த்தவுடன் அல்லது அகத்தியவுடன் குழுவிலிருந்து வெளியேற முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇతర సభ్యులను చేర్చడంలో లేదా తొలగించడంలో ఉన్నప్పుడు లీవ్ చేయలేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถออกในขณะที่กำลังเพิ่มหรือลบสมาชิกอื่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diğer üyeleri eklerken veya çıkarırken çıkış yapılamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можна залишити під час додавання або видалення інших учасників." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوسرے اراکین کو شامل یا ہٹاتے وقت آپ اس گروپ کو نہیں چھوڑ سکتے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boshqa a'zolarni qo'shish yoki olib tashlash vaqtida chiqib bo'lmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể rời đi trong khi đang thêm hoặc xóa các thành viên khác." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awukwazi ukuhamba xa ungezelela okanye ususa amalungu amanye." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "添加或移除其他成员时无法离开。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法在添加或移除其他成員時離開本群組。" + } + } + } + }, + "deleteAfterLegacyDisappearingMessagesLegacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erfenis" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قديم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Köhnə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ранейшыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Наследен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রাচীন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herència" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastaralé" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etifeddiaeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heredaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pärand" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "قدیمی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vanha" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Héritage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ancestral" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarihi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מורשת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिगेसी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naslijeđeno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "レガシー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អក្សនាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪರಂಪರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "레거시" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەگەڵی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senesnis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mantojums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Наследство" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уламжлалт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warisan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မွေးဟောင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "विरासत" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਰਾਂਵਿਧੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starsze" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem învechit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устаревшее" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastarané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Urithi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வரலாறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లెగసీ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รุ่นก่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Застарілий" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرانا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merosi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legacy" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilifa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "旧版" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "舊版" + } + } + } + }, + "deleteAfterLegacyDisappearingMessagesOriginal" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oorspronklike weergawe van verdwene boodskappe." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "النسخة الأصلية من الرسائل المختفية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yox olan mesajların orijinal versiyası." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلانی ورژن په دستیں پیغاماں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Першапачатковы варыянт рэалізацыі знікнення паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригинална версия на изчезващи съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অদৃশ্য হয়ে যাওয়া বার্তাগুলির মূল সংস্করণ।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versió original dels missatges efímers." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Původní verze mizejících zpráv." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fersiwn wreiddiol o negeseuon diflannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original version af forsvindende beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalversion von verschwindenden Nachrichten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αρχική έκδοση των μηνυμάτων που εξαφανίζονται." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original version of disappearing messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originala versio de memviŝontataj mesaĝoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión original de los mensajes desaparecidos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión original de los mensajes desaparecidos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esialgne kaduvate sõnumite versioon." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu desagertzaileen jatorrizko bertsioa." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخه اصلی پیام‌های محوشونده." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoavien viestien alkuperäinen versio." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Orhinal na bersyon ng nawawalang mga mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version originale des messages éphémères." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión orixinal das mensaxes que desaparecen." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nau'in sakonnin ɓacewa na asali." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גרסה מקורית של הודעות נעלמות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गायब होने वाले संदेशों का मूल संस्करण।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvorna verzija nestajućih poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az eltűnő üzenetek eredeti verziója." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետացող հաղորդագրությունների բնօրինակ տարբերակը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi asli dari pesan menghilang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La versione originale dei messaggi effimeri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "消滅メッセージの元のバージョン。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ქრება შეტყობინებების ორიგინალური ვერსია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណែដើមនៃការបាត់ទៅរបស់សារ." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೆಚ್ಚುಗೆ ಸಂದೇಶಗಳ ಮೂಲ ಆವೃತ್ತಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 자동 삭제 원본 버전." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وەشانی بنەڕەتی پەیامەکانی نادیار ئەنجامەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versiyo eyasooka ya obubaka obubula." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original version of disappearing messages." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaistošo ziņojumu oriģinālā versija." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригинална верзија на исчезнати пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устгагдах мессежийн эх хувилбар." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi asal mesej hilang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပျောက်သွားမည့် မက်ဆေ့ဂျ် စနစ်မူကြမ်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprinnelig versjon av tidsbegrensede beskjeder." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अदृश्य सन्देशहरूको मूल संस्करण।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oorspronkelijke versie van verdwijnende berichten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprinnelig versjon av forsvinnande meldingar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu wapoyambirira wa uthenga wosatheka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੁੰਮ ਹੋਣ ਵਾਲੇ ਸੁਨੇਹਿਆਂ ਦਾ ਮੂਲ ਸੰਸਕਰਣ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oryginalna wersja znikających wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ورکیدونکو پیغامونو اصلی نسخه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão original das mensagens temporárias." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão original das mensagens que desaparecem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versiunea originală a mesajelor temporare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исходная версия исчезающих сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalna verzija nestajućih poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original version of disappearing messages." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pôvodná verzia miznúcich správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvorna različica izginjajočih sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versioni origjinal i mesazheve që zhduken." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригинална верзија Disappearing Messages." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalna verzija nestajućih poruka." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ursprunglig version av försvinnande meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toleo la awali la meseji zinazopotea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மாய்ஞாயிறு சீகிரம் அழிக்கும் செய்திகள் இப்போதும் மீட்டெடுக்க முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కనుమరుగవుతున్న సందేశాల అసలు స్వరూపం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เวอร์ชันดั้งเดิมของข้อความที่ลบตัวเอง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaybolan iletilerin orijinal sürümü." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригінальна версія зникнення повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غائب ہونے والے پیغامات کا اصل ورژن۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yoʻqolgan xabarlarning asl nusxasi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phiên bản gốc của tin nhắn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo lwangaphambili lwemiyalezo edisela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "旧版阅后即焚。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "舊自動銷毀訊息。" + } + } + } + }, + "deleteAfterLegacyDisappearingMessagesTheyChangedTimer" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het die verdwynende boodskaptyd instel na {time}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قام بتعيين مؤقت الرسائل المختفية إلى {time}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yox olan mesaj taymerini {time} olaraq ayarladı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} disappearing messages timer {time} pe di ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} паставіў таймер знікнення паведамлення на {time}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} зададе таймер за изчезващи съобщения на {time}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} অদৃশ্য মেসেজ টাইমার {time} এ সেট করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha establert el temporitzador dels missatges efímers a {time}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nastavil(a) časovač mizejících zpráv na {time}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosododd {name} amserydd y neges diflannu i {time}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har indstillet timern for forsvindende beskeder til {time}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat den Timer für verschwindenen Nachrichten auf {time} eingestellt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} όρισε το χρονοδιακόπτη των εξαφανιζόμενων μηνυμάτων σε {time}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} set the disappearing message timer to {time}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} agordis la memviŝontajn mesaĝojn al {time} " + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha fijado la desaparición de mensajes en {time}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha fijado la desaparición de mensajes en {time}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} määras kaduvate sõnumite taimeri väärtusele {time}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} (e)k mezu desagerkorraren denboragailua {time}-ra ezarri du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تایمر پیام نابود شونده را روی {time} تنظیم کرد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} asetti viestien katoamisajan: {time}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay na-set ang timer ng naglalahong mensahe sa {time}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a défini le minuteur des messages éphémères à {time}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estableceu o temporizador de desaparición das mensaxes a {time}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya sa mai ƙidaya saƙon wucewa zuwa {time}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הגדיר/ה את קוצב הזמן של ההודעות הנעלמות אל {time}‏" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने गायब संदेश टाइमर को {time} पर सेट कर दिया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je postavio/la vrijeme za koliko će poruke nestati na {time}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} beállította, hogy az üzenetek ennyi idő után tűnjenek el: {time}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը անհետացող հաղորդագրության ժամաչափը դրեց {time}:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mengatur pesan menghilang dalam {time}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha impostato il timer dei messaggi effimeri a {time}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}は消えるメッセージの消去時間を{time}に設定しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს დაყენებულია ქრება შეტყობინებების თაიმერი {time}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ បានកំណ់រយៈពល សាដរែលងាចបាត់ទៅវិញា {time}‍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಮಾಯವಾಗುವ ಸಂದೇಶದ ಟೈಮರ್ ಅನ್ನು {time} ಗೆ ಹೊಂದಿಸಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{time}로 메시지 삭제 타이머를 설정했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کاتە پەیام دەسڕێنەوەی دانا بە {time}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yakyusa ebiseera ebirere olw'okuggyawo message nga bwe ziseera ku {time}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ໄດ້ກຳນົດລະຍະເວລາໃນການຂໍແກ້ຂອງຂໍ້ຄາບຊ່ວງທ່ານ{time}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nustatė išnykstančių žinučių laikmatį į {time}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} iestatīja pazūdošo ziņu taimeri uz {time}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} го постави тајмерот за исчезнување на пораките на {time}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} мессежийг арилгах таймерийг {time} тохируулсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menetapkan pemasa disappearing message kepada {time}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် ပျောက်မည့် မက်ဆေ့ချ်အတွက် အချိန်မှတ်စက်ကို {time} အဖြစ် သတ်မှတ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} satt selvutslettende meldinger timer til {time}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले आफै मेटिने सन्देशको टाइमर {time}मा सेट गर्नुभयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft de timer voor verdwijnende berichten ingesteld op {time}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} satte utløpstiden for beskjeder til {time}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wakonza nthawi ya uthenga wochoka pa mauthenga otayika kukhala {time}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਸੁਨੇਹੇ ਰੱਖਣ ਦਾ ਟਾਈਮਰ {time}ਤੇ ਸੈੱਟ ਕੀਤਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ustawił(a) znikające wiadomości na {time}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د ورک شوي پیغام ټایمر {time} ته وټاکه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} definiu o tempo de duração das mensagens temporárias como {time}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} definiu o temporizador de mensagens que desaparecem para {time}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a setat timpul pentru mesajele temporare la {time}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} установил(а) таймер исчезающих сообщений на {time}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je postavio tajmer za nestajuće poruke na {time}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} අතුරුදහන් වන පණිවිඩ ටයිමරය {time} කාලයට සකසා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nastavil/a časovač miznúcich správ na {time}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je nastavil_a odštevanje za izginjajoča sporočila na {time}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} caktoi kohëmatësin e zhdukjes së mesazheve në {time}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је подесио тајмер за нестајуће поруке на {time}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je podesio/la tajmer za nestajuće poruke na {time}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} satt försvinnande meddelanden timern till {time}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ameseti kipima muda wa ujumbe unaopotea kwa {time}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மறைந்த தகவல்களுக்கான நேரம் அமைக்கப்படுகிறது {time}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} కనుమరుగవుతున్న సందేశాన్ని టైమర్కు సెట్ చేశారు {time}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ตั้งค่าตัวตั้งเวลาข้อความที่ลบตัวเองไว้ที่ {time}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaybolan mesaj zamanlayıcısını {time} olarak ayarladı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} встановив/ла таймер зникаючих повідомлень на {time}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے غائب ہونے والے پیغامات کا ٹائمر {time} پر سیٹ کیا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yo'qolgan xabar taymerini {time} ga o'rnatdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã đặt đồng hồ đếm ngược tin nhắn tự huỷ đến {time}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} uyicala ixesha eliphumzayo lemyalezo ukuya ku {time}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}将阅后即焚时间设置为{time}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已將訊息自動銷毀時間設為 {time}" + } + } + } + }, + "deleteAfterLegacyGroupsGroupCreation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wag asseblief terwyl die groep geskep word..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يرجى الانتظار أثناء إنشاء المجموعة..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup yaradılarkən lütfən gözləyin..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ اَپٹنٹ بگو انتظار کن..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, пачакайце, пакуль група ствараецца..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, изчакайте, докато групата се създаде..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অনুগ্রহ করে অপেক্ষা করুন, গ্রুপ তৈরি হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Espereu mentre es crea el grup..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počkejte prosím, než se skupina vytvoří..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arhoswch tra mae'r grŵp yn cael ei greu..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vent venligst mens gruppen oprettes..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte warte, während die Gruppe erstellt wird..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ περιμένετε όσο δημιουργείται η ομάδα..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please wait while the group is created..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu atendi dum la grupo estas kreata..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, espera mientras se crea el grupo..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, espere mientras se crea el grupo..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun oota kuni grupp saab loodud..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez itxaron taldea sortzen den bitartean..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تا زمانی که گروه ایجاد شود، لطفاً صبر کنید..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odota kunnes ryhmä on luotu..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mangyaring maghintay habang ginagawa ang grupo..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez patienter pendant la création du groupe..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da fatan za a jira yayin da ake ƙirƙirar ƙungiyar..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא המתן בזמן שהקבוצה נוצרת..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया समूह बनने तक प्रतीक्षा करें ..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo pričekajte dok se grupa kreira..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Várj amíg a csoport elkészül..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք սպասել, մինչ խումբը կստեղծվի..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Harap tunggu sementara grup sedang dibuat..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attendi, la creazione del gruppo è in corso..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループが作成されるまでお待ちください..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ დაიცადოთ, სანამ ჯგუფი შეიქმნება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមរង់ចាំ ខណៈពេលដែលកំពុងតែបង្កើតក្រុម..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪನ್ನು ರಚಿಸಲಾಗುತ್ತಿದೆ, ದಯವಿಟ್ಟು ಕಾಯಿರಿ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 생성 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تکایە چاوەڕێی چێنێکی گروپ دەکرێ..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weerezaawo akaseera nga kibiina kikyajjibwa..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palaukite, kol yra kuriama grupė..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме почекајте додека се креира групата..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлэг үүсгэгдэх хүртэл хүлээгээд байгаарай..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila tunggu sementara kumpulan sedang dicipta..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုကို ဖန်တီးနေစဉ် ကျေးဇူးပြု၍ စောင့်ပါ..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst vent mens gruppen opprettes..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया समूह बनाउँदै गर्दा प्रतीक्षा गर्नुहोस्..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een moment geduld, de groep wordt aangemaakt..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please wait while the group is created..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde dikirani pamene gulu likupangidwa..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਉਡੀਕ ਕਰੋ ਜਦੋਂ تک ਗਰੁੱਪ ਬਣਦਾ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proszę czekać na utworzenie grupy…" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ انتظار وکړئ تر څو ګروپ جوړ شي..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, aguarde enquanto o grupo é criado..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, espere enquanto o grupo é criado..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te rugăm să aștepți până când grupul este creat..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, подождите, пока группа будет создана..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo pričekajte dok se grupa kreira..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර රැදී සිටින්න, කණ්ඩායම නිර්මාණය වෙමු." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počkajte prosím, kým sa vytvorí skupina..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosim, počakajte med ustvarjanjem skupine..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi të prisni gjatë krijimit të grupit..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачекајте док се група креира..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo sačekajte dok se grupa kreira..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen vänta medans gruppen skapas..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali subiri kundi linapoundwa..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு உருவாக்கப்படும் வரை காத்திருக்கவும்..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం సృష్టించబడుతున్నప్పటి వరకు దయచేసి వేచి ఉండండి..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดรอสักครู่ในขณะที่กำลังสร้างกลุ่ม..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup oluşturulurken lütfen bekleyin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, зачекайте поки створюється група..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم انتظار کریں جب تک کہ گروپ بن جائے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh yaratilyapti, kuting..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng chờ trong khi nhóm đang được tạo..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda linda ngeli xesha iqela liyalungiswa..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在创建群组,请稍候..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請稍候,正在建立群組……" + } + } + } + }, + "deleteAfterLegacyGroupsGroupUpdateErrorTitle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie die groep bywerk nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في تحديث المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup güncəlləmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ اَپڈیٹ ناکام بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося абнавіць групу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно обновяване на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ আপডেট করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut actualitzar el grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizace skupiny selhala" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd diweddaru'r grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke opdatere gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Aktualisieren der Gruppe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία Ενημέρωσης Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to Update Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis ĝisdatigi la grupon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al actualizar el grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al actualizar el grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi uuendamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da talde eguneratzean" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در به‌روزرسانی گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän päivitys epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong Mag-update ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la mise à jour du groupe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa Sabunta Ƙungiya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בעדכון הקבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह अपडेट करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspjelo ažuriranje grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült frissíteni a csoportot" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց թարմացնել խումբը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal Memperbarui Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "C'è stato un problema con l'aggiornamento del gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループの更新ができませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის განახლება ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ನವೀಕರಣ ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 업데이트 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی گەڕانەوەی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kibiina kya Update Kilememye" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko atnaujinti grupės" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно ажурирање на групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийг шинэчлэхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal Mengemas Kini Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုအား အပ်ဒိတ်မလုပ်နိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke oppdatere gruppen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह अद्यावधिक गर्न असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het is mislukt om de groep bij te werken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å oppdatera gruppa" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera Kusintha Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਨੂੰ ਅੱਪਡੇਟ ਕਰਨ ਵਿੱਚ ਨਾਕਾਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaktualizować grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ګروپ تازه کولو کې پاتې راغی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao atualizar o grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao Atualizar Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la actualizarea grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при обновлении группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ažurirati grupu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කණ්ඩායම යාවත්කාලීන කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa aktualizovať skupinu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo posodobiti skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi përditësimi i grupit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно ажурирање групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo ažuriranje grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades att uppdatera grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana Kusasisha Kundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவைப் புதுப்பிக்க முடியவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాన్ని అప్‌డేట్ చేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถอัปเดตกลุ่มได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup güncellenemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося оновити групу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ اپ ڈیٹ کرنے میں ناکامی ہوئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhni yangilashda xatolik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể Cập nhật Nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuhlaziya iqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新群组失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法更新群組" + } + } + } + }, + "deleteAfterMessageDeletionStandardisationMessageDeletionForbidden" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het nie toestemming om ander se boodskappe te verwyder nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ليس لديك صلاحيات حذف رسائل الاخرين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Başqalarının mesajlarını silmə icazəniz yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تہءِ اِسپی اجازت نَہ بوت کہ بروچنئے پیغامانی ماني ڈون" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас няма дазволу выдаляць чужыя паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нямате право да изтривате съобщенията на другите" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি অন্যদের বার্তা মুছে ফেলার অনুমতি নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No teniu autorització per esborrar els missatges d'altres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemáte oprávnění k mazání zpráv ostatních" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych ganiatâd i ddileu negeseuon pobl eraill" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ikke tilladelse til at slette andres beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast nicht die Berechtigung, Nachrichten anderer Teilnehmer zu löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε άδεια να διαγράψετε τα μηνύματα άλλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don’t have permission to delete others’ messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne permesiĝas forigi la mesaĝojn de aliuloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes permiso para borrar los mensajes de otros" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes permiso de borrar mensajes de otros" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sul ei ole õiguseid teiste sõnumeid kustutada" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez duzu besteek bidalitako mezuak ezabatzeko baimenik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اجازه حذف پیام‌های دیگران را ندارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole oikeutta poistaa muiden viestejä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang pahintulot na i-delete ang mga mensahe ng iba" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'êtes pas autorisé à supprimer les messages des autres utilisateurs" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da izinin share saƙonnin wasu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין לך הרשאה למחוק הודעות של אחרים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको दूसरों के संदेशों को हटाने की अनुमति नहीं है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate dozvolu za brisanje poruka drugih korisnika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs jogod mások üzeneteit törölni" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ուրիշների հաղորդագրությունները ջնջելու թույլտվություն չունեք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak diizinkan untuk menghapus pesan orang lain" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai il permesso di eliminare i messaggi altrui" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "他のユーザーの投稿を削除する権限はありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ არ გაქვთ იმის უფლება რომ წაშალოთ სხვისი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកគ្មានសិទ្ធដើម្បីលុបសារអ្នកផ្សេងៗទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮಗೆ ಇತರರ ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಲು ಅನುಮತಿ ಇಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다른 사람의 메시지를 삭제할 수 있는 권한이 없습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بڕیارەکانت ناکرێ کە پەیامەکانی تر لەبێریت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina busobozi kusazaamu obubaka bwa balala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs neturite leidimo trinti kitų žmonių žinučių" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате дозвола да ги бришете пораките на другите" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бусдын зурвас устгах эрхгүй байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak mempunyai kebenaran untuk memadam mesej orang lain" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် အခြားလူများ၏ မက်ဆေ့ချ်များ ဖျက်ပစ်ရန် ခွင့်မရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ikke tillatelse til å slette andres beskjeder" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई अरूसँग सन्देश मेट्नको अनुमति छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je hebt geen toestemming om andermans berichten te verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ikke tillatelse til å slette andres beskjeder" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simuli ndi chilolezo chothetsa mauthenga ena" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਦੂਜਿਆਂ ਦੇ ਸਨੇਹੇ ਮਿਟਾਉਣ ਦਾ ਅਧਿਕਾਰ ਨਹੀਂ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz uprawnień do usuwania wiadomości innych osób" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو د نورو پیغامونه ړنګولو اجازه نلرئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não tem permissão para excluir as mensagens de outros" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não tem permissão para eliminar mensagens de outros" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu aveți permisiunea de a șterge mesajele altora" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас недостаточно прав для удаления других сообщений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemaš dozvolu da brišeš tuđe poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට අන් අයගේ පණිවිඩ මැකීමට අවසර නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemáte právo vymazať správy ostatných" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimate dovoljenja za brisanje sporočil drugih" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni leje për të fshirë mesazhet e të tjerëve" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате дозволу да бришете туђе поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate dozvolu da brišete tuđe poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inte behörighet att ta bort andras meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huna ruhusa ya kufuta jumbe za wengine" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மற்றவர்களின் செய்திகளை நீக்க உங்களுக்கு அனுமதி இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఇతరుల సందేశాలను తొలగించే అనుమతి కలిగి లేరు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่มีสิทธิ์ในการลบข้อความของผู้อื่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Başkalarının mesajlarını silmek için yetkiniz bulunmamaktadır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас немає прав на видалення інших повідомлень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو دوسروں کے پیغامات حذف کرنے کی اجازت نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz boshqalarning xabarlarini oʻchira olmaysiz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không có quyền để xoá các tin nhắn của người khác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awunamvume yokucima imiyalezo yabanye" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您无权删除他人的消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您無權刪除他人訊息" + } + } + } + }, + "deleteMessage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Boodskap" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Boodskappe" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسالة" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف الرسائل" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajı sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajları sil" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Messages" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленні" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленні" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленне" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць паведамленні" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий съобщението" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий съобщенията" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা মুছুন" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তাগুলি মুছুন" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix el missatge" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix els missatges" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat zprávy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat zprávy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat zprávu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat zprávy" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Negeseuon" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Negeseuon" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Neges" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Negeseuon" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Negeseuon" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Negeseuon" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet besked" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet beskeder" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht löschen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten löschen" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Μηνύματος" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Μηνυμάτων" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Messages" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi mesaĝon" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi mesaĝojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar el mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar el mensaje" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Mensajes" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta sõnum" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta sõnumid" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua Ezabatu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak Ezabatu" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام را پاک کنید" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام ها را پاک کنید" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista viesti" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista viestit" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-delete ang Mensahe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-delete ang mga Mensahe" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer le message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer les messages" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Saƙo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Saƙonni" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק הודעות" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק הודעה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק הודעות" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק הודעות" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश मिटाएं" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश मिटाएं" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši poruku" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši poruku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši poruku" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet törlése" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetek törlése" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել հաղորդագրությունը" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել հաղորդագրությունները" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Pesan" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina Messaggio" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina Messaggi" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージを削除" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების წაშლა" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებების წაშლა" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបសារ" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವನ್ನು ಅಳಿಸಿ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಿ" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 삭제" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی پەیام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی پەیامەکان" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Olukome ngaleerake" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Ente" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti žinutes" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti žinutes" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti žinutę" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti žinutes" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши порака" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши пораки" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж устгах" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүдийг устгах" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam Mesej" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ် ဖျက်မည်" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett melding" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett meldinger" + } + } + } + } + } + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू मेट्नुहोस्" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू मेट्नुहोस्" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder bericht" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder berichten" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett beskjed" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett beskjeder" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Uthenga" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Mauthenga" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਮਿਟਾਓ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ ਮਿਟਾਓ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń wiadomości" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń wiadomości" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń wiadomość" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń wiadomości" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام ړنګول" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه ړنګول" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir Mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir mensagens" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Mensagens" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge mesajele" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge mesajul" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge mesajele" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить сообщения" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить сообщения" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить Сообщение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить сообщения" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruke" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruke" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය මකන්න" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ මකන්න" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať správy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať správy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať správu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať správy" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši sporočila" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši sporočilo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši sporočila" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši sporočili" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije Mesazhin" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshini mesazhe" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши поруке" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши поруку" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши поруке" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši poruku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni poruke" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera meddelande" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera meddelanden" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Ujumbe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Jumbe" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவலை நீக்கு" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவலைகளை நீக்கு" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాన్ని తొలగించు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలను తొలగించండి" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อความ" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajı Sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajları Sil" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити повідомлення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити повідомлення" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити повідомлення" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити повідомлення" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام حذف کریں" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات حذف کریں" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarni o'chirish" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlarni o'chirish" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa tin nhắn" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula Umphumela" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula Imiphumela" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除消息" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除訊息" + } + } + } + } + } + } + } + } + }, + "deleteMessageConfirm" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskap skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف هذه الرسالة؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی میسج ھذب بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць гэтае паведамленне?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че желаеш да изтриеш това съобщение?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই বার্তাটি মুছে দিতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquest missatge?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete smazat tuto zprávu?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r neges hon?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette denne besked?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachricht wirklich löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτό το μήνυμα;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete this message?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar este mensaje?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar este mensaje?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite selle sõnumi kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hau ezabatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این پیام را حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa tämän viestin?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang mensaheng ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer ce message ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar esta mensaxe?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge wannan saƙon?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את ההודעה הזו?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इस संदेश को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ovu poruku?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezt az üzenetet?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել այս հաղորդագրությունը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus pesan ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questo messaggio?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのメッセージを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინების წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបសារនេះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶವನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 메시지를 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم پەیامە بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu obubaka buno?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມນີ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šią žinutę?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti ka vēlaties dzēst šo ziņu?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете оваа порака?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэ зурвасыг устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan mesej ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ချ်ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette denne meldingen?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यो सन्देश मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u dit bericht wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette denne meldinga?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta uthenga umenewu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਸੁਨੇਹਾ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć tę wiadomość?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ دا پیغام حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir esta mensagem?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar esta mensagem?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi acest mesaj?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить это сообщение?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ovu poruku?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම පණිවිඩය මකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať túto správu?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati to sporočilo?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini këtë mesazh?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ову поруку?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ovu poruku?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera detta meddelande?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta ujumbe huu?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தியை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాన్ని తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความนี้?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дійсно хочете видалити це повідомлення?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اس پیغام کو حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarni o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá tin nhắn này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa lo myalezo?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除此消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除此訊息嗎?" + } + } + } + }, + "deleteMessageDeleted" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap verwyder" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskappe verwyder" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسائل" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسائل" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسالة" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسائل" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسائل" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف الرسائل" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj silindi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlar silindi" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message deleted" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages deleted" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні выдалены" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні выдалены" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленне выдалена" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні выдалены" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщението е изтрито" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщенията са изтрити" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা মুছে ফেলা হয়েছে" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তাগুলি মুছে ফেলা হয়েছে" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatge suprimit" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges suprimits" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy smazány" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy smazány" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpráva smazána" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy smazány" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u dileu" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u dileu" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges wedi'i dileu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u dileu" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u dileu" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u dileu" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besked slettet" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeder slettet" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht gelöscht" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten gelöscht" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το μήνυμα διαγράφηκε" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα μηνύματα διαγράφηκαν" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message deleted" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages deleted" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝo forigita" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝoj forigitaj" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje eliminado" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes eliminados" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje borrado" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes borrados" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnum kustutatud" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumid kustutatud" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua ezabatuta" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak ezabatuta" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام پاک شد" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پبام ها حذف شدند" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti poistettu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestit poistettu" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-delete ang mensahe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-delete ang mga mensahe" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message supprimé" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages supprimés" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "An goge saƙo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "An goge Saƙonni" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נמחקו" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה נמחקה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נמחקו" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נמחקו" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश मिटाया गया" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश मिटाये गए" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka izbrisana" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet törölve" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetek törölve" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունը ջնջված է" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունները ջնջված են" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan dihapus" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio eliminato" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggi eliminati" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージが削除されました" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინება წაშლილია" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებები წაშლილია" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារត្រូវបានលុបហើយ" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವನ್ನು ಅಳಿಸಲಾಗಿದೆ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಲಾಗಿದೆ" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지가 삭제되었습니다." + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامە سڕا" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەکان بسڕانەوە" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bukyusiddwako" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka obwokutorera obukyusiddwako" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės ištrintos" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės ištrintos" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutė ištrinta" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės ištrintos" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораката е избришана" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораките се избришани" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж устгагдсан" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүд устгагдсан" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej dipadam" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်များ ဖျက်ထားသည်" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding slettet" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldinger slettet" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht verwijderd" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten verwijderd" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskjed slettet" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskjeder slettet" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthenga wachotsedwa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mauthenga omwe achotsedwa" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਹਟਾਇਆ ਗਿਆ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ ਹਟਾਏ ਗਏ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usunięto wiadomości" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usunięto wiadomości" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość usunięta" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usunięto wiadomości" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام حذف شوی" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه حذف شوي" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem excluída" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens excluídas" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem eliminada" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens eliminadas" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje șterse" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj șters" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje șterse" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения удалены" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения удалены" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщение удалено" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения удалены" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka obrisana" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය මැකිණි" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ මැකිණි" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy vymazané" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy vymazané" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správa vymazaná" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy vymazané" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila so izbrisana" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočilo izbrisano" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila so izbrisana" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočili sta izbrisani" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhi u fshi" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поруке су обрисане" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порука је обрисана" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поруке су обрисане" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka obrisana" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke obrisane" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelande raderat" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelanden raderade" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe umefutwa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe zimefutwa" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி நீக்கப்பட்டது" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்திகள் அகற்றப்பட்டது" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం తొలగించబడింది" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు తొలగించబడ్డాయి" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความถูกลบ" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj silindi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlar silindi" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видалені" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видалені" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видалено" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видалені" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام حذف ہو گیا" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات حذف ہو گئے" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar o'chirildi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlar oʻchirildi" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tin nhắn đã bị xoá" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo ucinyiwe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo icinyiwe" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息已删除" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息已刪除" + } + } + } + } + } + } + } + } + }, + "deleteMessageDeletedGlobally" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie boodskap is verwyder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف هذه الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj silindi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام حذف کر دی گئی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта паведамленне было выдалена" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това съобщение беше изтрито" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই মেসেজটি মুছে ফেলা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest missatge s'ha suprimit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tato zpráva byla odstraněna." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dilewyd y neges hon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne besked er slettet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Nachricht wurde gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό το μήνυμα έχει διαγραφεί" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message was deleted" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu mesaĝo forigitis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje ha sido eliminado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje se ha eliminado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See sõnum on kustutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu hau ezabatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این پیام حذف شده است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä viesti on poistettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang mensaheng ito ay na-delete na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce message a été supprimé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensaxe foi eliminada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An goge wannan saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה זו נמחקה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह संदेश हटा दिया गया है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je izbrisana" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez az üzenet törölve lett" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս հաղորդագրությունը ջնջվել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan ini telah dihapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo messaggio è stato eliminato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このメッセージは削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს შეტყობინება წაშლილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message was deleted" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂದೇಶವನ್ನು ಅಳಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 메시지는 삭제되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم پەیامە سڕاوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka buno buno bwasaziddwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ši žinutė ištrinta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis ziņojums tika izdzēsts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа порака беше избришана" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ мессеж устгагдсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej ini telah dipadam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ခ်ျကို ဖျက်သိမ်းပြီးပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne meldingen har blitt slettet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सन्देश मेटिएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit bericht is verwijderd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne meldingen har blitt slettet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthengawu unachotsedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਸੁਨੇਹਾ ਮਿਟਾਇਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość została usunięta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا پیغام پاک شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essa mensagem foi deletada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensagem foi apagada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest mesaj a fost șters." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это сообщение было удалено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je izbrisana" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම පණිවිඩය මකා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Táto správa bola vymazaná" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To sporočilo je bilo izbrisano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky mesazh u fshi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова порука је обрисана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka je izbrisana" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta meddelande har raderats" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe huu umefutwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தி நீக்கப்பட்டுள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సందేశం తొలగించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความนี้ถูกลบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj silindi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це повідомлення було видалено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام حذف کردیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu xabar oʻchirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn này đã bị xóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lo myalezo ususiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此消息已被删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這則訊息已經刪除" + } + } + } + }, + "deleteMessageDeletedLocally" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie boodskap is op hierdie toestel verwyder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم حذف هذه الرسالة على هذا الجهاز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj bu cihazda silindi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام حذف کر دی گئی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта паведамленне было выдалена на гэтай прыладзе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това съобщение беше изтрито на това устройство" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই মেসেজটি এই ডিভাইসে মুছে ফেলা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest missatge s'ha suprimit en aquest dispositiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tato zpráva byla odstraněna na tomto zařízení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dilewyd y neges hon ar y ddyfais hon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne besked blev slettet på denne enhed" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Nachricht wurde auf diesem Gerät gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό το μήνυμα έχει διαγραφεί σε αυτή τη συσκευή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message was deleted on this device" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu mesaĝo estis forigita sur ĉi tiu aparato" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje ha sido eliminado en este dispositivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje se ha eliminado en este dispositivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See sõnum on sellest seadmest kustutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu hau tokian tokiko gailu honetan ezabatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این پیام در این دستگاه پاک شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä viesti on poistettu tästä laitteesta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang mensaheng ito ay na-delete sa device na ito" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce message a été supprimé sur cet appareil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensaxe foi eliminada neste dispositivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An share wannan saƙo a wannan na'ura" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה זו נמחקה במכשיר זה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह संदेश इस डिवाइस पर हटा दिया गया है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je izbrisana na ovom uređaju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez az üzenet törölve lett ezen az eszközön" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս հաղորդագրությունը ջնջվել է այս սարքում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan ini dihapus pada perangkat ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo messaggio è stato eliminato su questo dispositivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このメッセージはこのデバイス上で削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს შეტყობინება წაშლილია ამ მოწყობილობაზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message was deleted on this device" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂದೇಶವನ್ನು ಈ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್ ಮೇಲೆ ಅಳಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 장치에서 이 메시지가 삭제되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم پەیامە سڕاوە لەسەر ئەم ئامێرەیە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka buno bwasaziddwajo ku kifaananyi kino." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ši žinutė ištrinta šiame įrenginyje" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis ziņojums tika izdzēsts šajā ierīcē" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа порака беше избришана на овој уред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ мессеж энэ төхөөрөмж дээр устгагдсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej ini telah dipadam pada peranti ini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ခ်ျကို ဤကိရိယာတွင် ဖျက်သိမ်းပြီးပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne meldingen ble slettet på denne enheten" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सन्देश यस उपकरणमा मेटिएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit bericht is op dit apparaat verwijderd" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne meldingen ble slettet på denne enheten" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthengawu unachotsedwa pa chipangizochi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਸੁਨੇਹਾ ਇਸ ਡਿਵਾਈਸ ਤੇ ਮਿਟਾਇਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość została usunięta na tym urządzeniu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا پیغام په دې وسیله په دې ځای کې پاک شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensagem foi deletada neste dispositivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensagem foi apagada neste dispositivo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest mesaj a fost șters pe acest dispozitiv." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это сообщение было удалено на этом устройстве" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je izbrisana na ovom uređaju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම පණිවිඩය මෙම උපකරණයේ මකා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Táto správa bola vymazaná na tomto zariadení" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To sporočilo je bilo izbrisano na tej napravi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky mesazh u fshi në këtë pajisje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова порука је обрисана на овом уређају" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka je izbrisana na ovom uređaju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta meddelande har tagits bort på denna enhet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe huu umefutwa kwenye kifaa hiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தி இந்த சாதனத்தில் நீக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సందేశం ఈ పరికరంలో తొలగించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความนี้ถูกลบบนอุปกรณ์นี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj bu cihazda silinmiş" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це повідомлення було видалено на цьому пристрої" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام اس ڈیوائس پر حذف کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu xabar ushbu qurilmada oʻchirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn sẽ chỉ được xoá trên thiết bị này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lo myalezo ususiwe kweli sixhobo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此消息在此设备上已被删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "此段訊息已在本設備中刪除" + } + } + } + }, + "deleteMessageDescriptionDevice" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskap slegs van hierdie toestel skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف هذه الرسالة من هذا الجهاز فقط؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı yalnız bu cihazdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی امیسج صرف ھملڑی ژ ایی ڈیوائیس ھذب بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць гэтае паведамленне толькі з гэтай прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш това съобщение само от това устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই বার্তাটি শুধু এই যন্ত্র থেকে মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquest missatge només d'aquest dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tuto zprávu pouze z tohoto zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r neges hon oddi ar y ddyfais hon yn unig?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette denne besked kun fra denne enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachricht nur von diesem Gerät löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτό το μήνυμα μόνο από αυτή τη συσκευή;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete this message from this device only?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon nur de ĉi tiu aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar este mensaje solo de este dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar este mensaje solo de este dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite selle sõnumi ainult sellest seadmest kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hau gailu honetatik bakarrik ezabatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این پیام را فقط از این دستگاه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oletko varma, että haluat poistaa tämän viestin ainoastaan tästä laitteesta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang mensaheng ito mula sa aparatong ito lamang?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer ce message uniquement de cet appareil ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar esta mensaxe só deste dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge wannan saƙon daga wannan na'urar kawai?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה בטוח שברצונך למחוק את ההודעה הזו רק מהמכשיר הזה?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई केवल इस डिवाइस से इस संदेश को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ovu poruku samo s ovog uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezt az üzenetet csak erről az eszközről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ցանկանում եք ջնջել այս հաղորդագրությունը միայն այս սարքավորումից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus pesan ini hanya dari perangkat ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questo messaggio solo da questo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのメッセージをこのデバイスのみから削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინების წაშლა მხოლოდ ამ მოწყობილობიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបសារនេះចេញពីឧបករណ៍នេះតែប៉ុណ្ណោះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶವನ್ನು ಈ ಸಾಧನದಿಂದ ಮಾತ್ರ ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 메시지를 이 장치에서만 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم پەیامە بسڕیتەوە تەنها لەسەر ئەم ئاگاداریە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu obubaka buno okuva ku kidirisa kino kyokka?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມນີ້ຂອງຕ່າງອຸປະກອນນີ້ເທົ່ານັ້ນ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šią žinutę tik iš šio įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti ka vēlaties dzēst šo ziņu tikai no šīs ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете оваа порака само од овој уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэ зурвасыг зөвхөн энэ төхөөрөмжөөс устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan mesej ini hanya dari peranti ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ချ်ကို ဤစက်ကိရိယာမှသာ ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette denne meldingen kun fra denne enheten?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यो सन्देश यो उपकरणबाट मात्र मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u dit bericht alleen van dit apparaat wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette denne meldinga frå berre denne eininga?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta uthenga umenewu pa chipangizo ichi chokha?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਸੁਨੇਹਾ ਸਿਰਫ਼ ਇਸ ਜੰਤਰ ਤੋਂ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć tę wiadomość tylko z tego urządzenia?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ دا پیغام یوازې د دې وسیلې څخه حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir esta mensagem apenas deste dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar esta mensagem apenas deste dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi acest mesaj doar de pe acest dispozitiv?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить это сообщение (оно будет удалено только с этого устройства)?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ovu poruku samo sa ovog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙය පරිගණකයෙන් පමණක්ම මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať túto správu len z tohto zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati to sporočilo samo s te naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini këtë mesazh vetëm nga kjo pajisje?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ову поруку само са овог уређаја?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ovu poruku samo sa ovog uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera detta meddelande från denna enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta ujumbe huu kutoka kifaa hiki pekee?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தியை இந்த சாதனத்தில் மட்டும் நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాన్ని కేవలం ఈ పరికరం నుండి తీసివేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความนี้เฉพาะในอุปกรณ์นี้?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı sadece bu cihazdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити це повідомлення лише з цього пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی صرف اس ڈیوائس سے اس پیغام کو حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarni faqat ushbu qurilmadan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá tin nhắn này chỉ trên thiết bị này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa lo myalezo kule sixhobo kuphela?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定只从此设备删除此消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定只從本設備上刪除此訊息嗎?" + } + } + } + }, + "deleteMessageDescriptionEveryone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskap vir almal skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف هذه الرسالة للجميع؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı hamı üçün silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی امیسج ھذب بکنی؟؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць гэтае паведамленне для ўсіх?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш това съобщение за всички?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই বার্তা সবাই জন্য মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquest missatge per a tothom?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tuto zprávu pro všechny?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r neges hon i bawb?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette denne besked for alle?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachricht wirklich für alle löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτό το μήνυμα για όλους;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete this message for everyone?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon por ĉiuj?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar este mensaje para todos?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar este mensaje para todos?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite selle sõnumi kõigi jaoks kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hau guztiontzat ezabatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این پیام را برای همه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa tämän viestin kaikilta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang mensaheng ito para sa lahat?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer ce message pour tout le monde ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar esta mensaxe para todos?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge wannan saƙon ga kowa?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה בטוח שברצונך למחוק את ההודעה הזו לכולם?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इस संदेश को सभी के लिए हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ovu poruku za sve?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezt az üzenetet mindenki számára?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ցանկանում եք ջնջել այս հաղորդագրությունը բոլորի համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus pesan ini untuk semua orang?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questo messaggio per tutti?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのメッセージを全員に対して削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინების წაშლა ყველასთვის?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបសារនេះចេញពីទាំងអស់គ្នា?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶವನ್ನು ಎಲ್ಲರಿಗಾಗಿ ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 메시지를 모두에게서 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم پەیامە بسڕیتەوە بۆ هەموو کەسان؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu obubaka buno ku bantu bonna?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມນີ້ກັບທຸກຄົນ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šią žinutę visiems?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti ka vēlaties dzēst šo ziņu visiem?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете оваа порака за сите?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэ зурвасыг бүгдэд устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan mesej ini untuk semua orang?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ချ်ကို အားလုံးအတွက်ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette denne meldingen for alle?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यो सन्देश सबैलाई मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u dit bericht voor iedereen wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette denne meldinga for alle?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta uthenga umenewu kwa aliyense?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਸੁਨੇਹਾ ਸਭ ਲਈ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć tę wiadomość u wszystkich?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ دا پیغام د ټولو لپاره حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir esta mensagem para todos?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja eliminar esta mensagem para todos?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi acest mesaj pentru toată lumea?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить это сообщение для всех?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ovu poruku za sve?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම පණිවිඩය සියලු දෙනා සඳහා මකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete túto správu vymazať u všetkých?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati to sporočilo za vse?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini këtë mesazh për të gjithë?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ову поруку за све?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ovu poruku za sve?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera detta meddelande för alla?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta ujumbe huu kwa kila mtu?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தியை எல்லோருக்கும் நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాన్ని అందరికీ తీసివేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความนี้สำหรับทุกคน?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajı herkes için silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що бажаєте видалити це повідомлення для всіх?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اس پیغام کو سب کے لیے حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarni hammadan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá tin nhắn này cho mọi người không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa lo myalezo kubo bonke?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要为所有人删除此消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要為所有人刪除此訊息嗎?" + } + } + } + }, + "deleteMessageDeviceOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap net op hierdie toestel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف على هذا الجهاز فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız bu cihazda sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف اس آلے پر حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць толькі на гэтай прыладзе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий само на това устройство" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধু এই ডিভাইস থেকে মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix només en aquest dispositiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat pouze na tomto zařízení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu ar y ddyfais hon yn unig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet kun på denne enhed" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur auf diesem Gerät löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή μόνο σε αυτή τη συσκευή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete on this device only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi sole sur ĉi tiu aparato" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar solo en este dispositivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar solo en este dispositivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta ainult sellest seadmest" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gailu honetan bakarrik ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف فقط از این دستگاه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista vain tältä laitteelta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin lamang sa device na ito" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer uniquement sur cet appareil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar só neste dispositivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge a wannan na'ura kawai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק במכשיר זה בלבד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल इस डिवाइस पर मिटाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši samo na ovom uređaju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés csak ezen az eszközön" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել այս սարքում միայն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus hanya di perangkat ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina solo da questo dispositivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このデバイスのみを削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ ამ მოწყობილობაზე წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបតែឧបករណ៍នេះប៉ុណ្ណោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಯಂತ್ರದಲ್ಲಿ ಮಾತ್ರ ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 기기에서만 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تەنها لەسەر ئەم ئامێرەدا سڕینەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nsongera ekubamu ekyange ekijja okulondebwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບແຕ່ອຸປະກອນນີ້ເທົ່ານັ້ນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti tik šiame įrenginyje" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst tikai šajā ierīcē" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши само на овој уред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ төхөөрөмжөөс л устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam pada peranti ini sahaja" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ deviceတွင်သာ ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett kun på denne enheten" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो उपकरणमा मात्र मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen verwijderen op dit apparaat" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett berre på denne eininga" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani pa chida ichi chokha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਰਫ ਇਸ ਯੰਤਰ ਤੇ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń tylko na tym urządzeniu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې په دې وسیله ړنګ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir apenas neste dispositivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar apenas neste dispositivo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge doar pe acest dispozitiv" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить только на этом устройстве" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši samo na ovom uređaju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම උපාංගයේ පමණක් මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať iba na tomto zariadení" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši samo na tej napravi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije vetëm në këtë pajisje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши само на овом уређају" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši samo na ovom uređaju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera endast på denna enhet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kwenye kifaa hiki pekee" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த சாதனத்தில் மட்டுமே நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ పరికరంలో మాత్రమే తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบเฉพาะบนอุปกรณ์นี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnızca bu cihazda sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити тільки на цьому пристрої" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف اس آلہ پر حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat ushbu qurilmani o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ xóa trên thiết bị này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula kwisixhobo esi kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅从此设备上删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "只在這個裝置上刪除" + } + } + } + }, + "deleteMessageDevicesAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap op al my toestelle" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف على جميع أجهزتي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün cihazlarımda sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "میرے تمام آلات پر حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць на ўсіх маіх прыладах" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий на всички мои устройства" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সমস্ত ডিভাইসে মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix als meus dispositius" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat ze všech mých zařízení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu ar fy holl ddyfeisiau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet på alle mine enheder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Von allen meinen Geräten löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή από όλες τις συσκευές μου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete on all my devices" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi sur ĉiuj miaj aparatoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar en todos mis dispositivos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar en todos mis dispositivos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kõigis minu seadmetes" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nire gailu guztietan ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف از تمام دستگاه‌هایم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista kaikilta laitteiltani" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin sa lahat ng mga device ko" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer sur tous mes appareils" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar en todos os meus dispositivos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge akan dukkan na'urorina" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק בכל המכשירים שלי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी उपकरणों पर मिटाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši na svim uređajima" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés minden eszközömön" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել բոլոր իմ սարքերում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus di semua perangkat saya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina da tutti i miei dispositivi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのデバイスから削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლა ყველა ჩემს მოწყობილობაზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបចេញពីឧបករណ៍របស់ខ្ញុំទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲಾ ಡಿವೈಸ್‌ಗಳಲ್ಲಿ ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 기기에서 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە لە هەموو ئاڵاتەکانم" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu era e biwedde Doubiti ze Zzinyi" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບເທິງທຸກອຸປະກອນຂອງຂ້ອຍ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti visuose mano įrenginiuose" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst visās manās ierīcēs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши на сите мои уреди" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Миний бүх төхөөрөмжөөс устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam pada semua peranti saya" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျွန်ုပ်၏ devices များတွင်အားလုံးကို ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett på alle enheter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेरो सबै उपकरणमा मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder op al mijn apparaten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett på alle einingane mine" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani pa zida zanga zonse" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੇਰੇ ਸਾਰੇ ਯੰਤਰਾਂ ਤੇ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń na wszystkich moich urządzeniach" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په ټولو زما وسایلو کې ړنګ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir em todos os meus dispositivos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar de todos os meus dispositivos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge pe toate dispozitivele mele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить на всех моих устройствах" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši na svim mojim uređajima" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මගේ සියලුම උපාංගවල පණිවිඩ මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať na všetkých mojich zariadeniach" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši na vseh mojih napravah" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije në të gjitha pajisjet e mia" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши на свим мојим уређајима" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši na svim mojim uređajima" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera på alla mina enheter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kwenye vifaa vyangu vyote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எனது அனைத்து சாதனங்களிலும் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నా పరికరాలన్నింటిలో కూడా తొలగించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบบนอุปกรณ์ของฉันทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm cihazlarımda sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити на всіх моїх пристроях" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میرے تمام آلات پر حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha qurilmalarda o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa trên tất cả thiết bị của tôi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula kuzo zonke izixhobo zam" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "从我的所有设备删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在所有的裝置上刪除" + } + } + } + }, + "deleteMessageEveryone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap vir Almal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف للجميع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hər kəs üçün sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب کے لیے حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць для ўсіх" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий за всички" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সকলের জন্য মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix per a tothom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat pro všechny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu i bawb" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet for alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Für alle löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή για όλους" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete for everyone" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi por ĉiuj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar para todos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar para todos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta kõigi jaoks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denontzat ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف برای همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista kaikilta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-delete para sa lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer pour tous" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar para todos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge ga kowa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק לכולם" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी के लिए मिटायें |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši za sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés mindenkinek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել բոլորի համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus untuk semua orang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina per tutti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "全員から削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლა ყველასთვის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបចេញពីទាំងអស់គ្នា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲರಿಗಾಗಿ ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모두에게서 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە بۆ هەمووان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu omumekolero" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບໃຫ້ແກ່ທຸກຄົນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti visiems" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst visiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши за сите" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүгдийг нь устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam untuk semua orang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အားလုံးအတွက် ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett hos alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सर्वजनका लागि मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder voor iedereen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett for alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani kwa aliyense" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਭ ਲਈ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń u wszystkich" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ټولو لپاره ړنګ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir para todos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar para todos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge pentru toată lumea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить для всех" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලු දෙනා සඳහා මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať pre všetkých" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši za vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije Mesazhin për të gjithë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши за све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši za sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera för alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa kwa kila mtu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லோருக்கும் தகவலை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అందరికీ తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบสำหรับทุกคน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herkes için sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити для всіх" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب کے لئے حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hammadan oʻchirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xoá cho mọi người" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula kubo bonke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "为所有人删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "為所有人刪除" + } + } + } + }, + "deleteMessageFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie boodskap uitvee nie" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie boodskappe uitvee nie" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajın silinməsi uğursuz oldu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajların silinməsi uğursuz oldu" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیگام مٹ بوت ناکام بِئن" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامانی مٹ بوت ناکام بِئن" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць паведамленні" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць паведамленні" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць паведамленне" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць паведамленні" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно изтриване на съобщение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно изтриване на съобщения" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to delete message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to delete messages" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en eliminar el missatge" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en eliminar els missatges" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se smazat zprávy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se smazat zprávy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se smazat zprávu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se smazat zprávy" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dileu negeseuon" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd dileu negeseuon" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dileu neges" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dileu negeseuon" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dileu negeseuon" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu dileu neges" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke slette besked" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke slette beskeder" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Nachricht konnte nicht gelöscht werden" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Nachrichten konnten nicht gelöscht werden" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία διαγραφής μηνύματος" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία διαγραφής μηνύματος" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to delete message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to delete messages" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi mesaĝon" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi mesaĝojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar el mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar los mensajes" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar el mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar los mensajes" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi kustutamine ebaõnnestus" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumite kustutamine ebaõnnestus" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin izan da mezua ezabatu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin izan dira mezuak ezabatu" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در حذف پیام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در حذف پیام ها" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin poisto epäonnistui" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestien poisto epäonnistui" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong i-delete ang mensahe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong i-delete ang mga mensahe" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de suppression du message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de suppression des messages" + } + } + } + } + } + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao borrar a mensaxe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao borrar as mensaxes" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa share saƙo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa share saƙonni" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל במחיקת הודעות" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל במחיקת הודעה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל במחיקת הודעות" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל במחיקת הודעות" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश को हटाने में विफल रहा" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेशों को हटाने में विफल रहा" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno brisanje poruka" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno brisanje poruke" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno brisanje poruka" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült az üzenet törlése" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült az üzenetek törlése" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ջնջել հաղորդագրությունը" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ջնջել հաղորդագրությունները" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus pesan" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile eliminare il messaggio" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile eliminare i messaggi" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージの削除に失敗しました" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების წაშლა ვერ მოხერხდა" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებების წაშლა ვერ მოხერხდა" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការលុបសារ" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವನ್ನು ಅಳಿಸಲು ವಿಫಲವಾಯಿತು" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಲು ವಿಫಲವಾಯಿತು" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지를 삭제하지 못했습니다" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی هەندەڵکردنی پەیام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی هەندەڵکردنی پەیامەکان" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusazaamu obubaka kugaanye" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusazaamu obubaka kugaanye" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko ištrinti žinučių" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko ištrinti žinučių" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko ištrinti žinutės" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko ištrinti žinučių" + } + } + } + } + } + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās dzēst ziņu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās dzēst ziņas" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās dzēst ziņas" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не успеа да ја избришете пораката" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не успеа да ги избришете пораките" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж устгах амжилтгүй боллоо" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүд устгах амжилтгүй боллоо" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal untuk memadam mesej" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ခ်ျဖျက်ရန် မအောင်မြင်ပါ" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke slette meldingen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke slette meldinger" + } + } + } + } + } + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश मेट्न असफल भयो।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू मेट्न असफल भयो।" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht verwijderen mislukt" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten verwijderen mislukt" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje sletta meldinga" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje sletta meldingane" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa uthenga" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa mauthenga" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਮਿਟਾਉਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ ਮਿਟਾਉਣ ਵਿੱਚ ਅਸਫਲ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć wiadomości" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć wiadomości" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć wiadomości" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć wiadomości" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام حذف ناکام شو" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه حذف ناکام شول" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao deletar mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao deletar mensagens" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao eliminar mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao eliminar mensagens" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la ștergerea mesajelor" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la ștergerea mesajului" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la ștergerea mesajelor" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить сообщения" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить сообщения" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить сообщение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить сообщения" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje poruka nije uspjelo" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje poruka nije uspjelo" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje poruke nije uspjelo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje poruka nije uspjelo" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය මකා දැමීමට අසමත් විය" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ මකා දැමීමට අසමත් විය" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy sa nepodarilo vymazať" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy sa nepodarilo vymazať" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správu sa nepodarilo vymazať" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy sa nepodarilo vymazať" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešna odstranitev sporočil" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešna odstranitev sporočila" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešna odstranitev sporočil" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešna odstranitev sporočil" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi të fshihej mesazhi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi të fshihen mesazhet" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно брисање порука" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно брисање поруке" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно брисање порука" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo brisanje poruka" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo brisanje poruke" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspelo brisanje poruka" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att radera meddelandet" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att radera meddelanden" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kufuta ujumbe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kufuta jumbe" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தியை நீக்க முடியவில்லை" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்திகளை நீக்க முடியவில்லை" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం తొలగించడం విఫలమైంది" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు తొలగించడం విఫలమైంది" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อความล้มเหลว" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti teslim edilemedi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti teslim edilemedi" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити повідомлення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити повідомлення" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити повідомлення" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити повідомлення" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام حذف کرنے میں ناکام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات حذف کرنے میں ناکام" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarni o'chirishda muammo chiqdi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlarni o'chirishda muammo chiqdi" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xóa tin nhắn" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biganye okusindika obubaka" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biganye okusindika obubaka" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "未能删除消息。" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法刪除訊息" + } + } + } + } + } + } + } + } + }, + "deleteMessagesConfirm" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskappe skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف هذه الرسائل؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajları silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت که ایی امیسجات ھذب بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць гэтыя паведамленні?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш тези съобщения?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই বার্তাগুলি মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquests missatges?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete smazat tyto zprávy?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r neges(au) hyn?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette disse beskeder?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachrichten wirklich löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτά τα μηνύματα;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete these messages?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas forigi tiujn mesaĝojn?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar estos mensajes?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar estos mensajes?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite need sõnumid kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hauek ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این پیام‌ها را حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa nämä viestit?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang mga mensaheng ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer ces messages ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar estas mensaxes?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge waɗannan saƙonnin?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה בטוח שברצונך למחוק הודעות אלה?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इन संदेशों को मिटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ove poruke?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezeket az üzeneteket?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել այս հաղորդագրություններն:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus pesan-pesan ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questi messaggi?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこれらのメッセージを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინებების წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបសារទាំងនេះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 메시지를 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم پەیامانە بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu obubaka buno?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມເຫົານີ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šias žinutes?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti, ka vēlaties dzēst šos ziņojumus?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги избришете овие пораки?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та эдгээр зурвасуудыг устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan mesej-mesej ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ချ်များကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette disse meldingene?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यी सन्देशहरू मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u deze berichten wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette desse meldingane?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta uthenga umenewu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹਨਾਂ ਸੁਨੇਹਿਆਂ ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć te wiadomości?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ دا پیغامونه حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir estas mensagens?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar essas mensagens?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi aceste mesaje?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить эти сообщения?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ove poruke?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම පණිවිඩ මකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať tieto správy?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati ta sporočila?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të fshini këto mesazhe?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ове поруке?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ove poruke?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera dessa meddelanden?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta jumbe hizi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்திகளை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాలను తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความเหล่านี้?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu iletileri silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дійсно хочете видалити ці повідомлення?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی ان پیغامات کو حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarlarni o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá các tin nhắn này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa le miyalezo?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除这些消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除這些訊息嗎?" + } + } + } + }, + "deleteMessagesDescriptionDevice" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskappe net van hierdie toestel verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح هذه الرسائل من هذا الجهاز فقط؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajları yalnız bu cihazdan silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً یہ پیغامات صرف اس ڈیوائس سے حذف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць гэтыя паведамленні толькі з гэтай прылады?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изтриете тези съобщения само от това устройство?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি এই বার্তাগুলি শুধুমাত্র এই ডিভাইস থেকে মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar aquests missatges només d'aquest dispositiu?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tyto zprávy pouze z tohoto zařízení?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r negeseuon hyn o'r ddyfais hon yn unig?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette disse beskeder kun fra denne enhed?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachrichten wirklich nur von diesem Gerät löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτά τα μηνύματα μόνο από αυτή τη συσκευή;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete these messages from this device only?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiujn mesaĝojn nur el ĉi tiu aparato?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar estos mensajes solo de este dispositivo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de querer eliminar estos mensajes solamente de este dispositivo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite need sõnumid kustutada ainult sellest seadmest?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hauek gailu honetatik soilik ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید این پیام‌ها را فقط از این دستگاه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa nämä viestit vain tästä laitteesta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin ang mga mensaheng ito mula sa device na ito lamang?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain·e de vouloir supprimer ces messages seulement sur cet appareil?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar estas mensaxes só deste dispositivo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share waɗannan saƙonnin daga wannan na'urar kawai?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את ההודעות האלו מהמכשיר הזה בלבד?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई केवल इस डिवाइस से इन संदेशों को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ove poruke samo s ovog uređaja?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezeket az üzeneteket csak ebből az eszközről?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել այս հաղորդագրությունները միայն այս սարքից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus pesan ini hanya dari perangkat ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questi messaggi solo da questo dispositivo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このデバイスからのみメッセージを削除してもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინებების წაშლა მხოლოდ ამ მოწყობილობიდან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់លុបសារទាំងនេះពីឧបករណ៍នេះតែប៉ុណ្ណោះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶಗಳನ್ನು ಈ ಸಾಧನದಿಂದ ಮಾತ್ರ ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete these messages from this device only?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت بۆ سڕینەوەی هەموو پەیام دەتێنا زاتیە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye kusula ebubaka bino ku kyuma kino kyokka?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມເຫົານີ້ຂອງຕ່າງອຸປະກອນນີ້ເທົ່ານັ້ນ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šias žinutes tik iš šio įrenginio?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst šos ziņojumus tikai no šīs ierīces?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги избришете овие пораки само од овој уред?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та эдгээр мессежүүдийг зөвхөн энэ төхөөрөмжөөс л устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu memadamkan mesej ini daripada peranti ini sahaja?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤစက်ကိရိယာ မှသာ မက်ဆေ့ချ်များဖျက်လိုပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette disse meldingene fra bare denne enheten?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई यी सन्देशहरू यो उपकरणबाट मात्र मेटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u deze berichten alleen van dit apparaat wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette desse meldingane frå berre denne eininga?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kufufuta mauthenga awa kuchokera pa chipangizochi chokha?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਸੁਨੇਹੇ ਸਿਰਫ਼ ਇਸ ਸੰਦ ਤੋਂ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć te wiadomości tylko z tego urządzenia?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې دا پیغامونه یوازې له دې وسیلې څخه حذفول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja excluir essas mensagens apenas deste dispositivo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende eliminar estas mensagens apenas deste dispositivo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur că vrei să ștergi aceste mesaje doar de pe acest dispozitiv?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить эти сообщения (они будут удалены только с этого устройства)?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati ove poruke samo s ovog uređaja?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම පණිවිඩ මේ උපකරණයෙන් පමණක් මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete odstrániť tieto správy iba z tohto zariadenia?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite ta sporočila izbrisati samo iz te naprave?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini këto mesazhe vetëm nga kjo pajisje?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ове поруке само са овог уређаја?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da obrišete ove poruke samo sa ovog uređaja?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera dessa meddelanden endast från denna enhet?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe hizi kwenye kifaa hiki pekee?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக இந்த தகவல்களை இந்த கருவியிலிருந்து மட்டுமே நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాలను కేవలం ఈ పరికరం నుండి మాత్రమే తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความเหล่านี้จากอุปกรณ์นี้เท่านั้น?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajları sadece bu cihazdan silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити ці повідомлення лише з цього пристрою?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی یہ پیغامات صرف اس ڈیوائس سے حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarlarni faqat ushbu qurilma o'chirishmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc rằng bạn muốn xoá những tin nhắn này chỉ từ thiết bị này?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima le miyalezo kweli sixhobo kuphela?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要只从此设备中删除这些消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定只從此設備上刪除這些訊息嗎?" + } + } + } + }, + "deleteMessagesDescriptionEveryone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskappe vir almal verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح هذه الرسائل لدى الجميع؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesajları hər kəs üçün silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً یہ پیغامات سب کے لیے حذف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць гэтыя паведамленні для ўсіх?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изтриете тези съобщения за всички?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি এইবার্তাগুলো সবাইকে জন্য মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquests missatges per a tothom?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tyto zprávy pro všechny?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r negeseuon hyn i bawb?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette disse beskeder for alle?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Nachrichten wirklich für alle löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτά τα μηνύματα για όλους;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete these messages for everyone?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiujn mesaĝojn por ĉiuj?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar estos mensajes para todos?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de querer eliminar estos mensajes para todos?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite need sõnumid kõigi jaoks kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu hauek denentzat ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید این پیام‌ها را برای همه حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa nämä viestit kaikilta?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin ang mga mensaheng ito para sa lahat?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain·e de vouloir supprimer ces messages pour tout le monde?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar estas mensaxes para todos?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share waɗannan saƙonnin don kowa?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את ההודעות האלה לכולם?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई सभी के लिए इन संदेशों को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ove poruke za sve?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezeket az üzeneteket mindenki számára?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել այս հաղորդագրությունները բոլորի համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus pesan-pesan ini untuk semua orang?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questi messaggi per tutti?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのユーザーのメッセージを削除してもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინებების წაშლა ყველასთვის?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់លុបសារទាំងនេះសម្រាប់ចោល?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶಗಳನ್ನು ಎಲ್ಲರಿಗಾಗಿ ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete these messages for everyone?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت بۆ سڕینەوەی ئەم پەیامەکان بۆ هەموو ؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye kusula ebubaka bino byonna ku buli omu?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບຂໍ້ຄວາມເຫົານີ້ສຳລັບທຸກຄົນ?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šias žinutes visiems?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst šos ziņojumus visiem?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги избришете овие пораки за сите?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та эдгээр мессежүүдийг бүгдэд зориулж устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu memadamkan mesej ini untuk semua orang?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ဂျ်တွေ အားလုံး ကိုဖျက်လိုပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette disse meldingene for alle?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई यी सन्देशहरू सबैको लागि मेटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u deze berichten voor iedereen wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette desse meldingane for alle?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kufufuta mauthenga awa kwa aliyense?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਹ ਸੁਨੇਹੇ ਸਾਰੇ ਲਈ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć te wiadomości u wszystkich?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې دا پیغامونه د ټولو لپاره حذفول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja excluir essas mensagens para todos?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende eliminar estas mensagens para todos?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur că vrei să ștergi aceste mesaje pentru toată lumea?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить эти сообщения для всех?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati ove poruke za sve?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මේ පණිවුඩ සියලු දෙනා වෙනුවෙන් මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete odstrániť tieto správy pre všetkých?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati ta sporočila za vse?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini këto mesazhe për të gjithë?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете ове поруке за све?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da obrišete ove poruke za sve?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera dessa meddelanden för alla?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta jumbe hizi kwa kila mtu?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக இந்த தகவல்களை அனைவருக்கும் நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ సందేశాలను అందరికీ తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบข้อความเหล่านี้สำหรับทุกคน?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajları herkes için silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити ці повідомлення для всіх?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی یہ پیغامات سب کے لئے حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabarlarni hammadan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc rằng bạn muốn xoá những tin nhắn này cho tất cả mọi người?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima le miyalezo kubo bonke?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要为所有人删除这些消息吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要為所有人刪除這些訊息嗎?" + } + } + } + }, + "deleting" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silinir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کر رہا ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтриване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মুছে ফেলা হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimint" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mazání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wrthi'n dileu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sletter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται διαγραφή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forviŝante" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminando" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminando" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustutan" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezabatzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال حذف" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistetaan" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ina-aalis" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suppression" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrando" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana gogewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מוחק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हटाया जा रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջվում է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "削除中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლა მიმდინარეობს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងលុប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಳಿಸಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제 중…" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuggya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລາຍການລຶບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinama" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēšana" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бришење..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устгаж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memadam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖျက်နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sletter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेटाइएको बेला" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan het verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slettar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuchotsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuwanie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښکته کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deletando" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A eliminar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se șterge" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удаление" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මකා දැමීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mazanie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po fshihet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Брисање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brisanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raderar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kufuta" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்குகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలను తొలగిస్తోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังลบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siliniyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کرنے کا عمل جاری ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'chirilmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang xóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kisangulwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除中" + } + } + } + }, + "developerToolsToggle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skakel Ontwikkelaarhulpmiddels aan/af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحويل أدوات المطور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tərtibatçı Alətlərini aç/bağla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیولوپر ٹولز کو ٹوگل کر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пераключыць інструменты распрацоўшчыка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Превключване на инструменти за разработчици" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডেভেলপার টুলগুলি টগল করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activa o desactiva les eines de desenvolupament" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přepnout nástroje vývojáře" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toglo Offeryn Datblygwr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis udviklerværktøjer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entwicklertools ein-/ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εναλλαγή Εργαλείων Προγραμματιστή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Developer Tools" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baskuligi programistajn ilojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar herramientas de desarrollador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar herramientas de desarrollador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lülita arendusvahendid sisse/välja" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garatu Tresna Aldaketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاگل ابزار های توسعه دهنده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä/piilota kehittäjätyökalut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-toggle ang Mga Tool ng Developer" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher/masquer les outils pour développeurs" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alternar ferramentas de desenvolvedor" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauya Kayan Koya na Developer" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עורר כלי מפתחים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेवलपर टूल टॉगल करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi razvojne alate" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fejlesztői eszközök be-/kikapcsolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել ծրագրավորողի գործիքները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle perangkat pengembangan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apri gli strumenti di sviluppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "開発者ツールを切り替える" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დეველოპერის ხელსაწყოების გადართვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Developer Tools" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೇವಲಪರ್ ಟೂಲ್ ಬಗ್ಗೆ ಟಾಗಲ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Developer Tools" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گۆڕینی ئامرازە پەرەساکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guliko Developer Tools" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perjungti kūrėjo įrankius" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pārslēgt izstrādātāja rīkus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Префрли на алатки за развивачи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хөгжүүлэгчний багаж хэрэгслийг соль" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Togol Alat Pembangun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့အတွက် ထုတ်ဖော် အခြေအနေ တွင် Developer Tools ကို ခလုတ်ဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru av/på Utviklerverktøy" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेभलपर उपकरणहरू टगल गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ontwikkelopties weergeven" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru av/på Utviklerverktøy" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinthanani Zida Zopanga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਵੈਲਪਰ ਟੂਲਜ਼ ਅਨਲਾਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Narzędzia dla programistów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډېوېلپر وسیلې ټوګل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ferramentas de desenvolvimento" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar ferramentas do programador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comutare unelte dezvoltator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включить инструменты разработчика" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prebaci alate za programere" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවර්ධක මෙවලම් ටොගල් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nástroje pre vývojárov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preklopi orodja za razvijalce" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaq/Fshih Mjete Zhvilluesi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пребаците Developer Tools" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi/isključi programerski mod" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slå på utvecklingsverktyg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geuza Zana za Usanidi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "டெவலப்பர் கருவிகளாக மாற்றவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డెవలపర్ టూల్స్ ని మారుస్తుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สลับไปที่เครื่องมือสำหรับผู้พัฒนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geliştirici Araçlarını Aç/Kapat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відкрити засоби розробника" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈویلپر ٹولز ٹوگل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dasturchi asboblari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bật/Tắt Công Cụ Nhà Phát Triển" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guqula izixhobo zoMphuhlisi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "开发者工具" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "切換開發者工具" + } + } + } + }, + "dictationStart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begin Diktasie..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابدأ الإملاء..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İmlanı başlat..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تکرار" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пачаць дыктоўку..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започване на диктиране..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুরু Dictation..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comenceu la dictació..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začít diktovat..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dechrau Dikteiddio..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Diktat..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diktat starten..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έναρξη Υπαγόρευσης..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Dictation..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komenci Diktadon..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar dictado..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar dictado..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alusta dikteerimist..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasi Diktakzioa..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شروع دیکته..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aloita sanelu..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulan ang Dictation..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Démarrer la dictée..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Ditado..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fara Rubutun..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התחל הכתבה..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिक्टेशन शुरू करें..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni dikciju..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diktálás indítása..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկսել սղագրությունը..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulai Dikte..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inizia dettatura..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声入力の開始…" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დიქტაციის დაწყება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាប់ផ្តើម Dictation..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡಿಕ್ಟೇಶನ್ ಪ್ರಾರಂಭಿಸಿ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 입력 시작..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەستپێکردنی پەندار..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika Wandiko..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradėti diktavimą..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sākt Dikciju..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни Диктација..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Диктацийг эхлүүлэх..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulakan Dikte..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စတင် Dictation..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start diktering..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "शब्दDICTATION सुरु गर्नुहोस्..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dicteren starten..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start diktering..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Dictation..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਕਟੇਸ਼ਨ ਸ਼ੁਰੂ ਕਰੋ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozpocznij dyktowanie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیټشن پیل کړئ..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Ditado..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar Ditado..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Începe dictarea..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Начать диктовку..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni Diktiranje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dictation ආරම්භ කරන්න..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spustiť diktovanie..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začni zapisevanje..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fillo nje Diktime..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни диктат..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započni diktiranje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starta diktering..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anza Dikte..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பிரதியான பேச்சு தொடங்கு..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిడివక ప్రారంభిచు..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เริ่มการพิมพ์คำ..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dikteyi Başlat..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Почати диктування..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آمریت شروع کریں..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diktafonni boshlash..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bắt đầu chỉnh văn bản..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start Dictation..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "开始听写..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "開始聽寫..." + } + } + } + }, + "disappearingMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwynende Boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل المختفية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yox olan mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غائب ہونے والے پیغامات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікальныя паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезващи съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অদৃশ্য বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges efímers" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mizející zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Diflanedig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvindende Beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verschwindende Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφανιζόμενα Μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappearing Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memviŝontaj mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparición de mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparición de mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaduvad sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu Desagerkorrak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام‌های ناپدیدشونده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoavat viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglalahong mga mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages éphémères" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparición das mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonnin Bacewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נעלמות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गायब होने वाले संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestajuće poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltűnő üzenetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետացող հաղորդագրություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan Menghilang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggi effimeri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "消えるメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუჩინარებადი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារបាត់ទៅវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾಯವಾಗುವ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 자동 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمانی پەیامەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappearing Messages" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂໍ້ຄວາມສະບາຍພັງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išnykstančios žinutės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaistošie ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчезнувачки пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Алга болох мессежүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej Hilang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပျောက်သွားမည့် မက်‌ဆေ့ဂျ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidsbegrensede Meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफै मेटिने सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zelf-wissende berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinnande meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mauthenga Ozimiririka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੁਬਾਰ ਸੰਦੇਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znikające wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له منځه تلونکي پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens efêmeras" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destruição de Mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje temporare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчезающие сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestajuće poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අතුරුදහන් වන පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miznúce správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izginjajoča sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhdukje mesazhesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестајуће поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samonestajuće poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinnande meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe Unaoangamia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காணாமல் போகும் தகவல்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అదృశ్యమవుతున్న సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความที่ลบตัวเอง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaybolan Mesajlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникаючі повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غائب پیغامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yo'qolgan xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn tự huỷ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imilayezo Enyamalalayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "阅后即焚消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動銷毀訊息" + } + } + } + }, + "disappearingMessagesCountdownBig" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap sal geskrap word in {time_large}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيتم حذف الرسالة في {time_large}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj {time_large} ərzində silinəcək" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message will delete in {time_large}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленне будзе выдалена праз {time_large}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщението ще бъде изтрито след {time_large}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা মুছে যাবে {time_large} তে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "El missatge esborrarà en {time_large}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpráva zmizí za {time_large}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd y neges yn cael ei dileu mewn {time_large}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besked slettes om {time_large}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht wird in {time_large} gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το μήνυμα θα διαγραφεί σε {time_large}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message will delete in {time_large}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝo foriĝos je {time_large}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "El mensaje se eliminará en {time_large}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "El mensaje se eliminará en {time_large}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnum kustutatakse {time_large} pärast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua {time_large} barru ezabatuko da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام در {time_large} حذف خواهد شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti katoaa {time_large} kuluttua" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabubura ang mensahe sa loob ng {time_large}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le message s'effacera dans {time_large}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mensaxe eliminarase en {time_large}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙo zai gogewa a {time_large}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה תימחק בעוד {time_large}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश {time_large} में हटा दिया जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će se obrisati za {time_large}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenet {time_large} múlva törlődik" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունը կհեռացվի {time_large} ընթացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan akan dihapus dalam {time_large}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il messaggio verrà eliminato in {time_large}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージは {time_large} に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინება წაიშლება {time_large}-ში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារនឹងត្រូវលុបនៅខេត្ត {time_large}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವು {time_large} ನಲ್ಲಿ ಅಳಿಸಲ್ಪಡುತ್ತದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지가 {time_large} 후 삭제됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامە لە {time_large}دا بسڕدرێتەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bwenkya kugenda kukumuzibwa munda {time_large}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutė bus ištrinta po {time_large}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojums tiks izdzēsts pēc {time_large}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораката ќе се избрише за {time_large}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж нь {time_large} хугацааны дараа устгагдах болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej akan dipadam dalam {time_large}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက္ကမ္ ပြိန် နစ်ရွတ် {time_large} ပြုလုပ်နေပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding vil slettes om {time_large}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश {time_large} मा मेटिनेछ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht verdwijnt over {time_large}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding blir slettet om {time_large}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata chatsekedwani mu {time_large}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਵਿਖੇ {time_large} ਵਿੱਚ ਹਟਾਏ ਗਈ ਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość zostanie usunięta za {time_large}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام به په {time_large} کې پاک شي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem será excluída em {time_large}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mensagem será apagada em {time_large}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajul va fi șters în {time_large}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщение будет удалено через {time_large}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će biti obrisana za {time_large}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය මැකෙයි {time_large}දි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správa sa vymaže za {time_large}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočilo se bo izbrisalo čez {time_large}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhi do të fshihet për {time_large}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порука ће бити обрисана за {time_large}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će biti obrisana za {time_large}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelande kommer att raderas om {time_large}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe utajifuta baada ya {time_large}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி {time_large} இன்றியா அழிக்கப்படும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం {time_large} తర్వాత తొలగించబడుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความจะถูกลบใน {time_large}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti, {time_large} içerisinde silinecek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення буде видалено через {time_large}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام {time_large} میں حذف ہو جائے گا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar {time_large} ichida oʻchiriladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn sẽ tự huỷ trong {time_large}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo uza kucinywa ngaphakathi kwexesha elichazwe {time_large}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息将在{time_large}后自动焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息將在 {time_large} 後刪除" + } + } + } + }, + "disappearingMessagesCountdownBigMobile" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vervelg outomaties in {time_large}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتم الحذف تلقائيًا في {time_large}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ərzində avtomatik silinir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} بعد خودکار حذف" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычна выдаляецца праз {time_large}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично изтриване след {time_large}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} এ স্বয়ংক্রিয়ভাবে মুছে যাবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'elimina automàticament en {time_large}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické mazání za {time_large}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-dileu mewn {time_large}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sletter automatisk om {time_large}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löscht sich automatisch in {time_large}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη διαγραφή σε {time_large}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate forviŝiĝas en {time_large}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoeliminar en {time_large}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-eliminar en {time_large}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustutab automaatselt {time_large} pärast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به‌طور خودکار در {time_large} حذف می‌شود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistuu automaattisesti {time_large} kuluttua" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong nade-delete sa {time_large}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suppression automatique dans {time_large}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-elimínase en {time_large}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za a goge kai tsaye a cikin {time_large}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק אוטומטית בעוד {time_large}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} में स्वचालित रूप से नष्ट हो जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko brisanje za {time_large}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatikusan törlődik {time_large} múlva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանում է {time_large}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghapus otomatis dalam {time_large}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scomparirà tra {time_large}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large}後に自動的に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატურად წაიშლება {time_large}-ში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបដោយស្វ័យប្រវត្តិនៅ {time_large}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ರಲ್ಲಿ ಸ್ವಯಂ ಅಳಿಸಲಾಗುತ್ತದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} 후 자동 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بە شێوەی خۆکار ناچالاک دەبێت لە {time_large}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຈະຖືກລົບອັດຕະໂນມັດໃນ {time_large}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai išnyks per {time_large}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski izdzēšas pēc {time_large}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски се брише за {time_large}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} хугацааны дараа автоматаар устах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memadamkan auto dalam {time_large}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} အချိန်အတွင်း အလိုအလျောက် ဖျက်ပစ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk slettes om {time_large}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} मा स्वचालित रूपमा मेटाइन्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijdert zichzelf in {time_large}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slettar automatisk om {time_large}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ਵਿੱਚ ਆਪ੍ਰਾਪਤ ਹੋ ਰਹੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne usuwanie za {time_large}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په {time_large} کې اتوماتیک حذف کیږي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar automaticamente em {time_large}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apaga automaticamente em {time_large}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se șterge automat în {time_large}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматическое удаление через {time_large}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski se briše za {time_large}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ට ස්වයංක්‍රීයව මැකේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické vymazanie za {time_large}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno izbriše čez {time_large}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket automatikisht pas {time_large}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматско брисање за {time_large}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski se briše za {time_large}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-tar bort om {time_large}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itajifuta ndani ya {time_large}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானாக நீக்கப்படும் {time_large}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} లో ఆటో-డిలీట్ల్ అవుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "จะถูกลบอัตโนมัติในอีก {time_large}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} içinde otomatik silinir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично видалиться через {time_large}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} میں خودکار حذف ہوجاتا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik ravishda {time_large} dan so'ng o'chiriladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động xóa trong {time_large}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iya kucinywa ngokuzenzekelayo ku {time_large}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将在 {time_large} 后自动焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在 {time_large} 後自動銷毀" + } + } + } + }, + "disappearingMessagesCountdownBigSmall" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap sal geskrap word in {time_large} {time_small}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيتم حذف الرسالة في {time_large} {time_small}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj {time_large} {time_small} ərzində silinəcək" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message will delete in {time_large} {time_small}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленне будзе выдалена праз {time_large} {time_small}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщението ще бъде изтрито след {time_large} {time_small}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা মুছে যাবে {time_large} {time_small} তে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "El missatge esborrarà en {time_large} {time_small}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpráva zmizí za {time_large} {time_small}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd y neges yn cael ei dileu mewn {time_large} {time_small}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besked slettes om {time_large} {time_small}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht wird in {time_large} {time_small} gelöscht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το μήνυμα θα διαγραφεί σε {time_large} {time_small}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message will delete in {time_large} {time_small}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝo foriĝos je {time_large} {time_small}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "El mensaje se eliminará en {time_large} {time_small}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "El mensaje se eliminará en {time_large} {time_small}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnum kustutatakse {time_large} {time_small} pärast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua {time_large} {time_small} barru ezabatuko da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام در {time_large} {time_small} حذف خواهد شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti katoaa {time_large} {time_small} kuluttua" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabubura ang mensahe sa loob ng {time_large} {time_small}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le message s'effacera dans {time_large} {time_small}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mensaxe eliminarase en {time_large} {time_small}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙo zai gogewa a {time_large} {time_small}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה תימחק בעוד {time_large} {time_small}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश {time_large} {time_small} में हटा दिया जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će se obrisati za {time_large} {time_small}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenet {time_large} {time_small} múlva törlődik" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունը կհեռացվի {time_large} {time_small} ընթացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan akan dihapus dalam {time_large} {time_small}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il messaggio verrà eliminato in {time_large} {time_small}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージは {time_large} {time_small} に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინება წაიშლება {time_large}-ში {time_small}-ში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារនឹងត្រូវលុបនៅខេត្ត {time_large} {time_small}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ {time_large} {time_small} ನಲ್ಲಿ ಅಳಿಸಲಾಗುವುದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지가 {time_large} {time_small} 후 삭제됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامە لە {time_large} {time_small}دا بسڕدرێتەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bwenkya kugenda kukumuzibwa munda {time_large} {time_small}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutė bus ištrinta po {time_large} {time_small}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojums tiks izdzēsts pēc {time_large} {time_small}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораката ќе се избрише за {time_large} {time_small}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж нь {time_large} {time_small} хугацааны дараа устгагдах болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej akan dipadam dalam {time_large} {time_small}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက္ကမ္ ပြပက် {time_large} {time_small} ပြုလုပ်နေပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding vil slettes om {time_large} {time_small}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश {time_large} {time_small} मा मेटिनेछ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht verdwijnt over {time_large} {time_small}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding blir slettet om {time_large} {time_small}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata chatsekedwani mu {time_large} {time_small}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਵਿਖੇ {time_large} {time_small} ਵਿੱਚ ਹਟਾਏ ਗਈ ਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość zostanie usunięta za {time_large} {time_small}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام به په {time_large} {time_small} کې پاک شي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem será excluída em {time_large} {time_small}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mensagem será apagada em {time_large} {time_small}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajul va fi șters în {time_large} {time_small}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщение будет удалено через {time_large} {time_small}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će biti obrisana za {time_large} {time_small}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය මැකෙයි {time_large} {time_small}දි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správa sa vymaže za {time_large} {time_small}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočilo se bo izbrisalo čez {time_large} {time_small}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhi do të fshihet për {time_large} {time_small}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порука ће бити обрисана за {time_large} {time_small}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka će biti obrisana za {time_large} {time_small}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelande kommer att raderas om {time_large} {time_small}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe utajifuta baada ya {time_large} {time_small}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி {time_large} {time_small} கிடрийய குடைக்கப்படும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం {time_large} {time_small} తర్వాత తొలగించబడుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความจะถูกลบใน {time_large} {time_small}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti, {time_large} {time_small} içerisinde silinecek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення буде видалено через {time_large} {time_small}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام {time_large} {time_small} میں حذف ہو جائے گا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar {time_large} {time_small} ichida oʻchiriladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn sẽ tự huỷ trong {time_large} {time_small}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo uza kucinywa ngaphakathi kwexesha elichazwe {time_large} {time_small}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息将在{time_large}{time_small}后自动焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息將在 {time_large} {time_small} 後刪除" + } + } + } + }, + "disappearingMessagesCountdownBigSmallMobile" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vervelg outomaties in {time_large} {time_small}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتم الحذف تلقائيًا في {time_large} {time_small}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} ərzində avtomatik silinir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} بعد خودکار حذف" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычна выдаляецца праз {time_large} {time_small}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично изтриване след {time_large} {time_small}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} এ স্বয়ংক্রিয়ভাবে মুছে যাবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'elimina automàticament en {time_large} {time_small}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické mazání za {time_large} {time_small}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-dileu mewn {time_large} {time_small}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sletter automatisk om {time_large} {time_small}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löscht sich automatisch in {time_large} {time_small}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη διαγραφή σε {time_large} {time_small}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large} {time_small}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate forviŝiĝas en {time_large} {time_small}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoeliminar en {time_large} {time_small}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-eliminar en {time_large} {time_small}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustutab automaatselt {time_large} {time_small} pärast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large} {time_small}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به‌طور خودکار در {time_large} {time_small} حذف می‌شود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistuu automaattisesti {time_large} {time_small} kuluttua" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong nade-delete sa {time_large} {time_small}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suppression automatique dans {time_large} {time_small}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-elimínase en {time_large} {time_small}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za a goge kai tsaye a cikin {time_large} {time_small}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק אוטומטית בעוד {time_large} {time_small}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} में स्वचालित रूप से नष्ट हो जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko brisanje za {time_large} {time_small}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatikusan törlődik {time_large} {time_small} múlva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանում է {time_large} {time_small}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghapus otomatis dalam {time_large} {time_small}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scomparirà tra {time_large} {time_small}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small}後に自動的に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატურად წაიშლება {time_large} {time_small}-ში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបដោយស្វ័យប្រវត្តិនៅ {time_large} {time_small}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} ರಲ್ಲಿ ಸ್ವಯಂ ಅಳಿಸಲಾಗುತ್ತದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} 후 자동 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بە شێوەی خۆکار ناچالاک دەبێت لە {time_large} {time_small}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large} {time_small}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຈະຖືກລົບອັດຕະໂນມັດໃນ {time_large} {time_small}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai išnyks per {time_large} {time_small}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski izdzēšas pēc {time_large} {time_small}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски се брише за {time_large} {time_small}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} хугацааны дараа автоматаар устах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memadamkan auto dalam {time_large} {time_small}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} အချိန်အတွင်း အလိုအလျောက် ဖျက်ပစ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk slettes om {time_large} {time_small}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} मा स्वचालित रूपमा मेटाइन्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijdert zichzelf in {time_large} {time_small}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slettar automatisk om {time_large} {time_small}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-deletes in {time_large} {time_small}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} ਵਿੱਚ ਆਪ੍ਰਾਪਤ ਹੋ ਰਹੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne usuwanie za {time_large} {time_small}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په {time_large} {time_small} کې اتوماتیک حذف کیږي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagar automaticamente em {time_large} {time_small}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apaga automaticamente em {time_large} {time_small}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se șterge automat în {time_large} {time_small}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматическое удаление через {time_large} {time_small}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski se briše za {time_large} {time_small}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} ට ස්වයංක්‍රීයව මැකේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické vymazanie za {time_large} {time_small}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno izbriše čez {time_large} {time_small}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket automatikisht pas {time_large} {time_small}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматско брисање за {time_large} {time_small}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski se briše za {time_large} {time_small}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto-tar bort om {time_large} {time_small}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itajifuta ndani ya {time_large} {time_small}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானாக நீக்கப்படும் {time_large} {time_small}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} లో ఆటో-డిలీట్ల్ అవుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "จะถูกลบอัตโนมัติในอีก {time_large} {time_small}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} içinde otomatik silinir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично видалиться через {time_large} {time_small}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} {time_small} میں خودکار حذف ہوجاتا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik ravishda {time_large} {time_small} dan so'ng o'chiriladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động xóa trong {time_large} và {time_small}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iya kucinywa ngokuzenzekelayo ku {time_large} {time_small}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将在 {time_large} {time_small} 后自动删除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在 {time_large} {time_small} 後自動銷毀" + } + } + } + }, + "disappearingMessagesDeleteType" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Tipe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوع الحذف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silmə növü" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کریں قسم" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тып выдалення" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видове изтриване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মুছে ফেলার ধরন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipus de supressió" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typ smazání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Math" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet Type" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löschtyp" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τύπος Διαγραφής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Type" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tondeto de forviŝonta mesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de borrado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de borrado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustutamise tüüp" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezabatze Mota" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف تایپ" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista tyyppi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uri ng Pagkakawala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type d'effacement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de eliminación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Nau'i" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סוג מחיקה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिलीट प्रकार" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrsta brisanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Törlés típusa" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջելու տեսակ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Jenis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo di eliminazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "削除の種類" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლის ტიპი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រភេទលុប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಳಿಸುವ ಪ್ರಕಾರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제 유형" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "جۆری سڕینەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kisira dda" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປະເພດການລຶບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrynimo tipas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēšanas veids" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип на бришење" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устгах төрөл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jenis Padam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖျက်မှု အမျိုးအစား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type sletting" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेटाउने प्रकार" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type verwijdering" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slettetype" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu wa Kuchotsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਟਾਉਣ ਦਾ ਕਿਸਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń typ" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډول ړنګول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de Exclusão" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipos de Eliminação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge tip" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тип удаления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrsta brisanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මකන්න ද" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typ vymazania" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Type" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lloji i fshirjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши тип" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tip brisanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raderingstyp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aina ya Kufutwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீக்க வகை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తొలగింపు రకం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบประเภท" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silme Türü" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити тип" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کی قسم" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'chirish turi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loại bỏ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo loMsangano" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "阅后即焚类别" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除類型" + } + } + } + }, + "disappearingMessagesDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie instelling is van toepassing op almal in hierdie gesprek." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذا الإعداد ينطبق على الجميع في هذه المحادثة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayar, bu danışıqda hər kəsə aiddir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ ترتیب ہر کسی کو اس گفتگو میں لاغ میں ماںتاح." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты параметр прымяняецца да ўсіх у гэтай размове." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тази настройка се прилага за всички в този разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই সেটিংটি এই কথোপকথনে সবাইকে প্রযোজ্য।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquesta configuració s'aplica a tots els membres de la conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavení se týká všech účastníků této konverzace." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r gosodiad hwn yn berthnasol i bawb yn y sgwrs hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne indstilling gælder for alle i denne samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Einstellung gilt für alle in dieser Unterhaltung." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτή η ρύθμιση ισχύει για όλους σε αυτή τη συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu agordo aplikiĝas al ĉiuj en ĉi tiu konversacio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración aplica a todos los usuarios en esta conversación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración se aplica a todos los usuarios en esta conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See säte kehtib kõigile selles vestluses." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezarpen honek elkarrizketan parte hartzen duten guztientzat balio du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این تنظیمات بالای هر کسی در این مکالمه عملی می‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asetus koskee kaikkia keskustelun jäseniä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang setting na ito ay para sa lahat ng tao sa usapang ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce paramètre s'applique à tout le monde dans cette conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración aplícase a todos neste conversa." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan saitin yana aiki ga kowa a cikin wannan hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרה זו חלה על כל המשתתפים בשיחה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह सेटिंग इस बातचीत में सभी पर लागू होती है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova postavka vrijedi za sve u ovom razgovoru." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a beállítás mindenkire érvényes ebben a csoportban." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս կարգավորումը վերաբերում է այս խոսակցությանը բոլորին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setelan ini berlaku untuk semua orang dalam percakapan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questa impostazione si applica a tutti i partecipanti di questa chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この設定は、この会話の全員に適用されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს პარამეტრი ეხება ამ საუბარში ყველა ადამიანს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸೆಟ್ಟಿಂಗ್ ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿರುವ ಎಲ್ಲರಿಗೂ ಅನ್ವಯಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 설정은 이 대화의 모든 사람에게 적용됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم ڕێکخستنە ب پارێزگایەکان پەیوەندیدانی تۆڤتی هەینی کردن بۆ گفتوگۆی ئەم بەھڕێدانە بەكەیت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekikokyo kino kiri kyo gonya abantu bonna mu buwulizi buno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis nustatymas taikomas visiems šiame pokalbyje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis iestatījums attiecas uz visiem šajā sarunā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа поставка се однесува на сите во овој разговор." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ тохиргоо бүх гишүүдэд хамаарна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan ini terpakai kepada semua orang dalam perbualan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဆက်သွယ်မှုတွင် ဤပြဿနာအားလုံးကို ထိန်းသိမ်းပြုလုပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillingen gjelder for alle i denne samtalen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सेटिङ सबैलाई कुराकानीमा लागू हुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze instelling geldt voor iedereen in dit gesprek." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillingen gjelder for alle i denne samtalen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makonda awa amagwira ntchito kwa aliyense mu mgwirizano uno." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਸੈਟਿੰਗ ਇਸ ਗੱਲਬਾਤ ਵਿੱਚ ਹਰੇਕ ਲਈ ਲਾਗੂ ਹੁੰਦੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienie dotyczy wszystkich uczestników rozmowy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا ترتیب په دې مجلس کې ټولو ته پلي کیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essa configuração se aplica a todos nesta conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuração aplica-se a todos os membros desta conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această setare se aplică tuturor celor din această conversație." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта настройка применяется ко всем участникам беседы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova postavka se odnosi na sve u ovom razgovoru." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සැකසුම මෙම සංවාදයේ සියලු දෙනාට බලපෑම් වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavenie sa týka všetkých účastníkov v tejto konverzácii." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta nastavitev velja za vse v tem pogovoru." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo cilësim aplikohet për të gjithë në këtë bisedë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово подешавање важи за све у овом разговору." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo podešavanje se primenjuje na sve u ovoj konverzaciji." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna inställning gäller för alla i denna konversation." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mpangilio huu unawahusu wote katika mazungumzo haya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த அமைப்பு இந்த உரையாடலில் உள்ள அனைவருக்கும் பொருந்தும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సెట్టింగ్ ఈ సంభాషణలోని ప్రతిఒక్కరికీ వర్తిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่านี้มีผลบังคับใช้กับทุกคนในการสนทนานี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayar bu konuşmadaki herkesi kapsar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей параметр застосовується до всіх в цій розмові." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ سیٹنگ اس بات چیت میں بھیجے گئے ہر شخص کے پیغامات پر لاگو ہوتی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sozlama ushbu suhbatdagi har bir kishiga tegishli." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết lập này áp dụng cho tất cả mọi người trong cuộc trò chuyện này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esi sicwangciso sisebenza kuwo wonke umntu kwincoko." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此设置适用于此对话中的所有人。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個設置適用於對話中的所有人。" + } + } + } + }, + "disappearingMessagesDescription1" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie instelling is van toepassing op boodskappe wat jy in hierdie gesprek stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذا الإعداد ينطبق على الرسائل التي ترسلها في هذه المحادثة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayar, bu danışıqda göndərdiyiniz mesajlara aiddir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ ترتیب اس پیغام طرف کرے گا جسے آپ اس گفتگو میں بھیجتے ہیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты параметр прымяняецца да паведамленняў, якія вы дасылаеце ў гэтай размове." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тази настройка се прилага за съобщенията, които изпращате в този разговор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই সেটিংটি আপনার পাঠানো মেসেজে প্রযোজ্য।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquesta configuració s'aplica als missatges que envieu en aquesta conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavení se týká zpráv, které odešlete v této konverzaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r gosodiad hwn yn berthnasol i negeseuon a anfonwch yn y sgwrs hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne indstilling gælder for beskeder du sender i denne samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Einstellung gilt für Nachrichten, die du in dieser Unterhaltung sendest." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτή η ρύθμιση ισχύει για τα μηνύματα που στέλνετε σε αυτή τη συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to messages you send in this conversation." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu agordo aplikiĝas al mesaĝoj, kiujn vi sendas en ĉi tiu konversacio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración aplica a los mensajes que envíes en esta conversación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración se aplica a los mensajes que envías en esta conversación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See säte kehtib sõnumitele, mida saadate selles vestluses." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezarpen honek elkarrizketan bidaltzen dituzun mezuetarako balio du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این تنظیم بالای پیام‌هایی که شما در این مکالمه ارسال می‌کنید اعمال می‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asetus koskee lähettämiäsi viestejä tässä keskustelussa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang setting na ito ay para sa mga mensaheng ipapadala mo sa usapang ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce paramètre s'applique aux messages que vous envoyez dans cette conversation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuración aplícase ás mensaxes que envíes neste conversación." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan saitin yana amfani ga saƙonnin da ka aika a cikin wannan hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרה זו חלה על ההודעות שאתה שולח בשיחה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह सेटिंग इस बातचीत में आप द्वारा भेजे गए संदेशों पर लागू होती है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova postavka vrijedi za poruke koje šaljete u ovom razgovoru." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a beállítás az általad küldött üzenetekre vonatkozik." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս կարգավորումը վերաբերում է ձեր ուղարկած հաղորդագրություններին այս խոսակցությունում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setelan ini berlaku untuk pesan yang Anda kirim dalam percakapan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questa impostazione si applica ai messaggi che invii in questa chat." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この設定は、この会話で送信するメッセージに適用されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს პარამეტრი ურთიერთობაში გაგზავნილ შეტყობინებებს ეხება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to messages you send in this conversation." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸೆಟ್ಟಿಂಗ್ ನೀವು ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿ ಕಳುಹಿಸಿದ ಸಂದೇಶಗಳಿಗೆ ಅನ್ವಯಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 설정은 이 대화에서 당신이 보낸 메시지에 적용됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم ڕێکخستنە ب يو نەخشە بۆ زانیارەکان لە گفتوگۆیەندا دەكەیت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekikokyo kino kiri kyo gonya obubaka bw'ofoyose mu buwulizi buno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis nustatymas taikomas žinutėms, kurias siunčiate šiame pokalbyje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis iestatījums attiecas uz ziņām, ko tu sūti šajā sarunā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа поставка се однесува на пораките што ги испраќате во овој разговор." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ тохиргоо таны илгээсэн мессежүүдэд хамаарна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan ini terpakai kepada mesej yang anda hantar dalam perbualan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤရေးသားမှုသည် သင်ပေးပို့သော မက်ဆေ့ချ်များတွင် သက်ဆိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillingen gjelder for meldinger du sender i denne samtalen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सेटिङ तपाईंले यो कुराकानीमा पठाएका सन्देशहरूमा लागू हुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze instelling geldt voor berichten die u in dit gesprek verstuurt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillingen gjelder for meldinger du sender i denne samtalen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makonda awa amagwira ntchito kwa mauthenga omwe mumatumiza mu mgwirizano uno." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਥੇ ਭੇਜੇ ਜਾਣ ਵਾਲੇ ਸੁਨੇਹਿਆਂ ਲਈ ਲਾਗੂ ਹੁੰਦੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienie dotyczy wiadomości, które wysyłasz w tej rozmowie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا ترتیب په دې مجلس کې پیغامو ته پلي کیږي چې تاسو یې لیږئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essa configuração se aplica às mensagens que você envia nesta conversa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuração aplica-se às mensagens que envia nesta conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această setare se aplică mesajelor pe care le trimiți în această conversație." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта настройка применяется к сообщениям, которые вы отправляете в этой беседе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova postavka se odnosi na poruke koje šalješ u ovom razgovoru." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සැකසුම ඔබ මෙම සංවාදයේ යවන පණිවිඩ සඳහා වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavenie sa vzťahuje na správy, ktoré odošlete v tejto konverzácii." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta nastavitev velja za sporočila, ki jih pošljete v tem pogovoru." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo cilësim aplikohet për mesazhet që ju i dërgoni në këtë bisedë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово подешавање важи за поруке које шаљете у овом разговору." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo podešavanje se primenjuje na poruke koje šaljete u ovoj konverzaciji." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna inställning gäller för meddelanden som du skickar i denna konversation." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mpangilio huu unahusu jumbe unazotuma katika mazungumzo haya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த அமைப்பு நீங்கள் அனுப்பும் செய்திகளுக்கு அனுப்பும் உரையாடலில் பொருந்தும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సెట్టింగ్ మీరు ఈ సంభాషణలో పంపిన సందేశాలకు వర్తిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่านี้มีผลกับข้อความที่คุณส่งในการสนทนานี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayar bu konuşmada gönderdiğiniz iletileri kapsar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей параметр застосовується до повідомлень, які ви надсилаєте в цій розмові." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ سیٹنگ اس بات چیت میں آپ کے بھیجے گئے پیغامات پر لاگو ہوتی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sozlama siz ushbu suhbatdagi xabarlarni yuborgan vaziyatda amal qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết lập này áp dụng cho các tin nhắn bạn gửi trong cuộc trò chuyện này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esi sicwangciso sisebenza kwimiyalezo oyithumela kwincoko." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此设置适用于您在此对话中发送的消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個設置適用於你在對話中發送的訊息。" + } + } + } + }, + "disappearingMessagesDescriptionGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie instelling is van toepassing op almal in hierdie gesprek.
Slegs groepadministrateurs kan hierdie instelling verander." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ينطبق هذا الإعداد على الجميع في هذه المحادثة.
يمكن لمسؤولي المجموعة فقط تغيير هذا الإعداد." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ سیٹنگ اس مکالمے کے تمام صارفین پر لاگو ہے۔
صرف گروپ ایڈمنس ہی اس سیٹنگ کو تبدیل کر سکتے ہیں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты параметр прымяняецца да ўсіх у гэтай размове.
Толькі адміністратары групы могуць змяніць гэты параметр." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тази настройка се прилага за всички в този разговор.
Само администраторите на групата могат да променят тази настройка." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই সেটিংটি এই সংলাপের সকলের জন্য প্রযোজ্য।
শুধু গ্রুপ অ্যাডমিনগণ এই সেটিংটি পরিবর্তন করতে পারেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquesta configuració s'aplica a tots els participants d'aquesta conversa.
Només els administradors de grup poden canviar aquesta configuració." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tato volba se týká všech v této konverzaci.
Tuto volbu mohou měnit pouze správci skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r gosodiad hwn yn berthnasol i bawb yn y sgwrs hon.
Dim ond gweinyddwyr grŵp all newid y gosodiad hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne indstilling gælder for alle i denne samtale.
Kun gruppeadministratorer kan ændre denne indstilling." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Einstellung gilt für alle in dieser Unterhaltung.
Nur Gruppenadministratoren können diese Einstellung ändern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτή η ρύθμιση ισχύει για όλους σε αυτή τη συνομιλία.
Μόνο οι διαχειριστές της ομάδας μπορούν να αλλάξουν αυτή τη ρύθμιση." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation.
Only group admins can change this setting." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation.
Only group admins can change this setting." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta opción se aplica a todos los usuarios en esta conversación.
Solo los administradores del grupo la pueden cambiar." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta opción se aplica a todos los usuarios en esta conversación.
Solo los administradores del grupo la pueden cambiar." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See säte kehtib kõigile selles vestluses.
Ainult grupi administraatorid saavad seda sätet muuta." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezarpen honek elkarrizketa honetan denei aplikatzen zaie.
Taldeko administratzaileek bakarrik alda dezakete ezarpen hau." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این تنظیمات برای کلیه افراد حاضر در این مکالمه اعمال می‌شود.
تنها مدیران گروه قادر به تغییر این تنظیماتند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asetus koskee kaikkia keskustelun jäseniä.
Vain ryhmän ylläpitäjät voivat muuttaa asetusta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang setting na ito ay naaangkop sa lahat ng nasa pag-uusap na ito.
Tanging ang mga Admin ng grupo ang maaaring magbago ng setting na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette option s'applique à tous dans cette conversation.
Seuls les admins du groupe peuvent modifier ce paramètre." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan saitin yana aiki ga kowa cikin wannan tattaunawar.
Sai kawai admin na kungiyar dake iya canza wannan saitin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרה זו חלה על כולם בשיחה זו.
רק מנהלי קבוצה יכולים לשנות הגדרה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस सेटिंग का प्रभाव इस बातचीत में सभी पर पड़ेगा।
केवल समूह एडमिन इसे बदल सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova postavka odnosi se na sve u ovom razgovoru.
Samo administratori grupe mogu promijeniti ovu postavku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a beállítás mindenkire érvényes a beszélgetésben.
Csak az adminisztrátorok módosíthatják ezt a beállítást." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս կարգավորումը վերաբերող է բոլորին այս զրույցում:
Միայն խմբի ադմիններն են կարող փոխել այս կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setelan ini berlaku untuk semua orang dalam percakapan ini.
Hanya admin grup yang dapat mengubah setelan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questa impostazione si applica a tutti i partecipanti a questa chat.
Solo gli amministratori possono modificare questa impostazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この設定はこの会話の全員に適用されます。
グループ管理者のみがこの設定を変更できます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation.
Only group admins can change this setting." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការកំណត់នេះត្រូវបានអនុវត្តសំរាប់អ្នកទាំងអស់នៅក្នុងការសន្ទនានេះ។
មានតែនាយកក្រុមដែលអាចផ្លាស់ប្តូរបាន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸೆಟ್ಟಿಂಗ್ ಈ ಸಂಭಾಷಣೆಯಲ್ಲಿರುವ ಎಲ್ಲರಿಗೂ ಅನ್ವಯಿಸುತ್ತದೆ.
ಸಮೂಹ ನಿರ್ವಾಹಕರು ಮಾತ್ರ ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 설정은 이 대화의 모든 사람에게 적용됩니다.
이 설정은 그룹 관리자인 경우에만 변경할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم ڕێکخستندە بۆ هەموو کەسانی ئەم وەرزشە کاردەکات.
تەنها بەڕێوەبەری گروپەکان دەتوانن ئەم ڕێکخستندە بگۆڕن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekiterekeddwa kino kikwatagana ku buli muntu mu kwogerezagana kuno.
Bakulu ba kibiina bokka bebayinza okukyuka ekiterekeddwa kino." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis nustatymas taikomas visiems šio pokalbio dalyviams.
Tik grupės administratoriai gali pakeisti šį nustatymą." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваa поставка важи за сите во оваа конверзација.
Само администраторите на групата можат да ја променат оваa поставка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ тохиргоо нь энэ харилцлага дахь бүх хүнд хүчин төгөлдөр болно.
Зөвхөн бүлгийн админ л энэ тохиргоог өөрчилж чадна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan ini terpakai kepada semua orang dalam perbualan ini.
Hanya pentadbir kumpulan boleh mengubah tetapan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဆက်တင်သည် ဤစကားပြောချက်ရှိ လူတိုင်းသို့ ဆက်နွယ်သည်။
အဖွဲ့ဝင်စီမံခန့်ခွဲသူများသာ ဤဆက်တင်ကို ပြုပြင်နိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillingen gjelder for alle i denne samtalen.
Bare gruppeadministratorer kan endre denne innstillingen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सेटिङ सबैलाई लागू हुन्छ यस कुराकानीमा।
केवल समूह प्रशासकहरू मात्र यो सेटिङ परिवर्तन गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze instelling is van toepassing op iedereen in dit gesprek.
Alleen groepsbeheerders kunnen deze instelling wijzigen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne innstillinga gjeld for alle i denne samtalen.
Kun gruppestyrarar kan endre denne innstillinga." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zokhazikitsa zimakhudza aliyense mu zokambirana izi.
Otsogolera magulu okha amatha kusintha zokhazikitsa izi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਸੈਟਿੰਗ ਇਸ ਗੱਲਬਾਤ ਵਿੱਚ ਸਾਰੇ ਲੋਕਾਂ ਲਈ ਹੈ।
ਸਿਰਫ਼ ਗਰੁੱਪ ਐਡਮਿਨ ਇਸ ਸੈਟਿੰਗ ਨੂੰ ਬਦਲ ਸਕਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienie będzie stosowane do wszystkich uczestników rozmowy.
Tylko administrator grupy może zmienić to ustawienie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا تنظیم په دې خبرو اترو کې ټولو خلکو باندې پلي کیږي.
یوازې د ګروپ ادارې کولی شي دا تنظیم بدل کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta configuração aplica-se a todos nesta conversa.
Apenas os administradores de grupos podem alterar essa configuração." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta definição aplica-se a todos os membros desta conversa.
Apenas os admins do grupo podem alterar esta definição." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Această setare se aplică tuturor celor din această conversație.
Numai administratorii de grup pot schimba această setare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Этот параметр применим ко всем пользователям в этой беседе.
Только администраторы могут изменить этот параметр." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ove postavke važe za sve učesnike ovog razgovora.
Samo administratori grupe mogu promijeniti ove postavke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සැකසුම මෙම කතාබස් එක් එක් අයට බලාපොරොත්තු වේ.
මෙම සැකසුම වෙනස් කල හැක්කේ කණ්ඩායම් පරිපාලක විතරයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavenie sa týka všetkých účastníkov v tejto konverzácii.
Toto nastavenie môžu zmeniť iba správcovia skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta nastavitev velja za vse v tem pogovoru.
Samo skrbniki skupin lahko spremenijo to nastavitev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky cilësim aplikohet për të gjithë në këtë bisedë.
Vetëm administratorët e grupit mund ta ndryshojnë këtë cilësim." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово подешавање се односи на све у овој конверзацији.
Само администратори групе могу променити ово подешавање." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo podešavanje se odnosi na sve učesnike u ovom razgovoru.
Samo administratori grupe mogu menjati ovo podešavanje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna inställning gäller för alla i denna konversation.
Endast gruppadministratörer kan ändra denna inställning." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mpangilio huu unawahusu wote katika mazungumzo haya.
Ni wasimamizi tu wa kundi wanaoweza kubadilisha mpangilio huu." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இவ்வமைப்பு இக்கருத்தாரஞ்சரிக்க இவர்கள் அனைவருக்கும் பொருந்தும்.
குழு நிர்வாகிகள் மட்டும் இந்த அமைப்பை மாற்ற முடியும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సెట్టింగ్ ఈ సంభాషణలో ప్రతి ఒక్కరికి వర్తిస్తుంది.
కేవలం సమూహ అడ్మిన్లు ఈ సెట్టింగ్‌ ని మార్చగలరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่านี้ใช้กับทุกคนในบทสนทนานี้
มีเพียงผู้ดูแลกลุ่มเท่านั้นที่สามารถเปลี่ยนแปลงการตั้งค่านี้ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayar, bu sohbetteki herkes için geçerlidir.
Bu ayarı yalnızca grup yöneticileri değiştirebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це налаштування застосовується до всіх в цій розмові.
Тільки адміністратори групи можуть змінити це налаштування." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ سیٹنگ اس گفتگو میں سب پر لاگو ہوتی ہے۔
صرف گروپ ایڈمنز اس سیٹنگ کو تبدیل کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu sozlama ushbu suhbatdagi barcha uchun tatbiq etiladi.
Faqatgina guruh adminlari bu sozlamani o'zgartira olishadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết lập này áp dụng cho tất cả mọi người trong cuộc trò chuyện này.
Chỉ có quản trị viên nhóm mới có thể thay đổi thiết lập này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "This setting applies to everyone in this conversation.
Only group admins can change this setting." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "该设置适用于此会话中的所有人。
只有群组管理员可以更改该设置。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "此設定適用於此對話中的所有人。
僅群組管理員可更改此設定。" + } + } + } + }, + "disappearingMessagesDisappear" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwyn Na {disappearing_messages_type} - {time}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاختفاء بعد {disappearing_messages_type} - {time}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} olduqdan {time} sonra yox olur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} کے بعد غائب ہو جائے گا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікае пасля {disappearing_messages_type} - {time}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезват след {disappearing_messages_type} - {time}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} পরে অদৃশ্য হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els missatges desapareixen després de {disappearing_messages_type} - {time}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmizí po {disappearing_messages_type} - {time}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymestyn Ar Ôl {disappearing_messages_type} - {time}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvind efter {disappearing_messages_type} - {time}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verschwinden nach {disappearing_messages_type} - {time}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφάνιση Μετά Από {disappearing_messages_type} - {time}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After {disappearing_messages_type} - {time}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malaperos Post {disappearing_messages_type} - {time}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras {disappearing_messages_type} - {time}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras {disappearing_messages_type} - {time}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kadauvad pärast {disappearing_messages_type} - {time}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desagertu {disappearing_messages_type} ondoren - {time}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپدیدظشدن پس از {disappearing_messages_type} - {time}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoa, kun {disappearing_messages_type} - {time}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglalaho Pagkatapos ng {disappearing_messages_type} - {time}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disparaît après {disappearing_messages_type} - {time}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer despois de {disappearing_messages_type} - {time}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bacewa Bayan {disappearing_messages_type} - {time}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעלם לאחר {disappearing_messages_type} - {time}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} के बाद गायब हो जाएगा - {time}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon {disappearing_messages_type} - {time}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltűnik {disappearing_messages_type} - {time} után" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանալ {disappearing_messages_type} հետո - {time}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghilang Setelah {disappearing_messages_type} - {time}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scompaiono dopo {disappearing_messages_type} - {time}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} の後に消えます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმდება შემდეგ {disappearing_messages_type} - {time}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាត់ទៅវិញបន្ទាប់ពី {disappearing_messages_type} - {time}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} ನಂತರ ಹೊಗೇ - {time}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} 후 - {time}에 사라집니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمان پەیامەکان دوای {disappearing_messages_type} - {time}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nkula Njegeri {disappearing_messages_type} - {time}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສະບາຍພັງຫລັງ {disappearing_messages_type} - {time}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išnyks po {disappearing_messages_type} - {time}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pazudīs pēc {disappearing_messages_type} - {time}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе исчезне по {disappearing_messages_type} - {time}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} дараа алга болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilang Selepas {disappearing_messages_type} - {time}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} ပြီးနောက် ပျောက်ဆုံးပါမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinner etter {disappearing_messages_type} - {time}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} पछि मेटाउनुहोस् - {time}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwijnen na {disappearing_messages_type} - {time}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinn etter {disappearing_messages_type} - {time}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kungozimiririka Pambuyo pa {disappearing_messages_type} - {time}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} ਬਾਅਦ ਗਾਇਬ ਹੋਜਾਉ - {time}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zniknie po {disappearing_messages_type} - {time}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته له {disappearing_messages_type} - {time} له منځه ځي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após {disappearing_messages_type} - {time}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após {disappearing_messages_type} - {time}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dispare după {disappearing_messages_type} - {time}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить через {disappearing_messages_type} - {time}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon {disappearing_messages_type} - {time}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} දිනවලින් අතුරුදහන් වේ - {time}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmiznutie po {disappearing_messages_type} - {time}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgine po {disappearing_messages_type} - {time}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket Pas {disappearing_messages_type} - {time}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестаје после {disappearing_messages_type} - {time}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaju nakon {disappearing_messages_type} - {time}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinna efter {disappearing_messages_type} - {time}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoweka Baada ya {disappearing_messages_type} - {time}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} - {time} காலத்தில் மறைந்துவிடும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} తరువాత తప్పించడం - {time}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หายไปหลังจาก {disappearing_messages_type} - {time}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunduktan sonra kaybolur {disappearing_messages_type} - {time}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникнення після {disappearing_messages_type} - {time}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} کے بعد غائب - {time}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} dan keyin - {time} so'ng yo'qoladimi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa sau khi {disappearing_messages_type} - {time}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyamalala Emva {disappearing_messages_type} - {time}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在{disappearing_messages_type}后{time}自动焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{disappearing_messages_type} 後銷毀 - {time}" + } + } + } + }, + "disappearingMessagesDisappearAfterRead" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwyn Na Lees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاختفاء بعد القراءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxunduqdan sonra yox olur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھنے کے بعد غائب ہوجائے گا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікае пасля чытання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезват след прочитане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়ার পর অদৃশ্য হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desapareix després de llegir" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmizí po přečtení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymestyn Ar Ôl Darllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvind efter læsning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nach dem Lesen verschwinden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφάνιση Μετά από Ανάγνωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Read" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malaperos Post Legado" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras leerlo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras leerlo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaduvad pärast lugemist" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurri ondoren desagertu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپدید‌شدن پس از خواندن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoa, kun luettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglalaho Pagkatapos Mabasa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disparaît après lecture" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer despois de ler" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bacewa Bayan Karantawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעלם לאחר קריאה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढ़ने के बाद गायब हो जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon čitanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olvasás után eltűnik" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանալ կարդալուց հետո" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghilang Setelah Dibaca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scompaiono dopo la lettura" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "既読後に消えます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმდება წაკითხვის შემდეგ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាត់ទៅវិញបន្ទាប់ពីអាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದಿದ ನಂತರ ಹೊಗೇ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽은 후 사라짐" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمان دوای خوێندنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njegera nga embooko" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສະບາຍພັງຫລັງອ່ານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išnyks po perskaitymo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pazudīs pēc izlasīšanas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе исчезне по читање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншсаны дараа алга болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilang Selepas Diterima" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ပြီးနောက် ပျောက်သွားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinner etter lest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढेपछि मेटिनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwijnen na lezen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinn etter lesing" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kungozimiririka Pambuyo pa Kuwerenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੜ੍ਹਨ ਬਾਅਦ ਗੁਬਾਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znika po przeczytaniu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته له لوستلو څخه له منځه ځي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após ler" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após leitura" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dispare după citire" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить после прочтения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon čitanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවා දැමූ පසු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmiznutie po prečítaní" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgine po branju" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket Pas Leximit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестаје после читања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaju nakon čitanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinna efter läsning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoweka Baada ya Kusomwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசித்த பின் காணாமல் போ" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదివిన తర్వాత అదృశ్యమవుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หายไปหลังจากอ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunduktan Sonra Kaybolur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникнення після прочитання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھنے کے بعد غائب ہو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'qib bo'lganidan keyin yo'qoladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa sau khi đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyamalala Emva Kokufunda" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "阅读后焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "閱後銷毀" + } + } + } + }, + "disappearingMessagesDisappearAfterReadDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskappe verwyder na hulle gelees is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل تحذف بعد قرائتها." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlar oxunduqdan sonra silinir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages delete after they have been read." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні выдаляюцца пасля іх прачытання." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщенията се изтриват след като са били прочетени." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ম্যাসেজ পড়া হলে মুছে যাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els missatges s'esborraran després de ser llegits." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy se po přečtení smažou." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae neges yn cael ei dileu ar ôl iddyn nhw fod wedi'u darllen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeder slettes efter de er blevet læst." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten löschen, nachdem sie gelesen wurden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα μηνύματα διαγράφονται αφού έχουν αναγνωσθεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages delete after they have been read." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝoj foriĝos post legite." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes se borran después de haber sido leídos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes se borran después de haber sido leídos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumid kustutatakse pärast nende lugemist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak irakurri ondoren ezabatzen dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف پیام‌ها بعد از خواندن‌شان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestit poistuvat, kun ne on luettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabubura ang mga mensahe pagkalipas mabasa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les messages sont supprimés après avoir été lus." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes borradas despois de ser lidas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana gogewa saƙonni bayan an karanta su." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נמחקות לאחר שנקראו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश पढ़ने के बाद हट जाते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su pročitane." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenetek törlődnek, miután el lettek olvasva." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունները ջնջվում են ընթերցվելուց հետո։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan dihapus setelah dibaca." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I messaggi vengono eliminati dopo che sono stati letti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージは読み込んだ後に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებები წაიშლება მათი წაკითხვის შემდეგ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារអ្នកផ្ញើម្តងទៀត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಓದಿದ ನಂತರ ಅಳಿಸಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지는 읽은 후 삭제됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەکان بسڕدرێنەوە دوای خوێندنەوەیان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bwebuzibwa nga bisirikidde oluvannyuma kuyatiina" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės ištrinamos po perskaitymo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojumi tiek izdzēsti pēc to izlasīšanas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораките се бришат откако ќе бидат прочитани." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүд уншсаныхаа дараа устгагдана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej akan dipadam selepas dibaca." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်များ ဖတ်ပြီးပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldinger slettes etter at de er lest." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू पढिए पछि मेटिन्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten worden gewist nadat ze zijn gelezen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingar blir slettet etter at dei er lesne." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umauthenga umbwerele pambuyo powawerenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ ਪੜ੍ਹਨ ਤੋਂ ਬਾਅਦ ਹਟਾਏ ਜਾਂਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomości są usuwane po ich przeczytaniu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه حذف کیږي وروسته له دې چې لوستل شوي وي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens são excluídas depois que elas são lidas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensagens serão apagadas após serem lidas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şterge mesajele după ce au fost citite." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения удаляются после прочтения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su pročitane." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවූ පසු පණිවිඩ මැකෙයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy sa po prečítaní vymažú." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila se izbrišejo, ko so prebrana." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhet fshihen pas leximit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поруке се бришу након што су прочитане." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su pročitane." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelanden raderas efter att de har blivit lästa." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe hujifuta baada ya kusomwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்திகள் ஆவுடையார் பின் அழிக்கப்படுகின்றன." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు చదవబడిన తరువాత తొలగించబడతాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความจะถูกลบหลังจากอ่านแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İletiler okunduktan sonra silinir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видаляються, після прочитання." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات پڑھنے کے بعد حذف ہو جاتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlar o'qilganidan keyin oʻchiriladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn sẽ tự huỷ sau khi đã đọc." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo iyacinywa emva kokuba ifundiwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息将在阅读后焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息讀後銷毀。" + } + } + } + }, + "disappearingMessagesDisappearAfterReadState" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwyn Na Lees - {time}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاختفاء بعد القراءة - {time}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxunduqdan {time} sonra yox olsun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھنے کے بعد غائب ہوجائے گا - {time}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікае пасля чытання - {time}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезват след прочит - {time}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়ার পর অদৃশ্য হবে - {time}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desapareix després de llegir - {time}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmizí po přečtení - {time}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymestyn Ar Ôl Darllen - {time}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvind efter læsning - {time}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nach dem Lesen verschwinden - {time}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφάνιση Μετά από Ανάγνωση - {time}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Read - {time}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malaperos Post Legado - {time}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras leerlo - {time}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras leerlo - {time}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaduvad pärast lugemist - {time}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurri ondoren desagertu - {time}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپدید شدن پس از خواندن - {time}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoa kun luettu - {time}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglalaho Pagkatapos Mabasa - {time}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disparaît après lecture - {time}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bacewa Bayan Karantawa - {time}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעלם לאחר קריאה - {time}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढ़ने के बाद गायब हो जाएगा - {time}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon čitanja - {time}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltűnik olvasás után - {time}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանալ կարդալուց հետո - {time}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghilang Setelah Dibaca - {time}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scompaiono dopo la lettura - {time}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "既読後に消えます - {time}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Read - {time}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាត់ត្រលប់វិញបន្ទាប់ពីអាន - {time}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದಿದ ನಂತರ ಹೊಗೇ - {time}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽은 후 사라짐 - {time}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمان دوای خوێندنەوە - {time}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendeera Alyoke asome - {time}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dingsta po perskaitymo - {time}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе исчезне по читање - {time}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншсаны дараа алга болно - {time}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilang Selepas Diterima - {time}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ပြီးနောက် ပျောက်သွားမည် - {time}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinner etter lest - {time}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढेपछि मेटिनुहोस् - {time}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwijnen na Lezen - {time}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinn etter lesing - {time}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kungozimiririka Pambuyo pa Kuwerenga - {time}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੜ੍ਹਨ ਬਾਅਦ ਗੁਬਾਰ - {time}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń po przeczytaniu – {time}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته له لوستلو څخه له منځه ځي - {time}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após ler - {time}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer Após Leitura - {time}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dispare după citire - {time}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалять после прочтения - {time}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon čitanja - {time}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවා දැමීමෙන් පසු අතුරුදහන් වීම් වැඩක් - {time}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmiznutie po prečítaní - {time}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgine po branju - {time}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket Pas Leximit - {time}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестаје после читања - {time}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestajuće poruke - {time} nakon čitanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinna efter läsning - {time}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoweka Baada ya Kusomwa - {time}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசித்த பின் காணாமல் போ - {time}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదివిన తర్వాత అదృశ్యమవుతుంది - {time}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หายไปหลังจากอ่าน - {time}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunduktan Sonra Kaybolur - {time}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникне після прочитання через: {time}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھنے کے بعد غائب ہو - {time}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'qib bo'lganidan keyin yo'qoladi - {time}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa sau khi đọc - {time}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyamalala Emva Kokufunda - {time}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "阅读后焚毁 - {time}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "閱後銷毀 - {time}" + } + } + } + }, + "disappearingMessagesDisappearAfterSend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwyn Na Stuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاختفاء بعد الإرسال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərdikdən sonra yox olur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے کے بعد غائب ہوجائے گا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікае пасля адпраўкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезват след изпращане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠানোর পর অদৃশ্য হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desapareix després de l'enviament" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmizí po odeslání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymestyn Ar Ôl Anfon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvind efter afsendelse" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nach dem Senden verschwinden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφάνιση Μετά από Αποστολή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Send" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malaperos Post Sendado" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras enviarlo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras enviarlo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaduvad pärast saatmist" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidali ondoren desagertu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپدیدشدن پس از ارسال" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoa lähetyksen jälkeen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglalaho Pagkatapos ma-send" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disparaît après l'envoi" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer despois de enviar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bacewa Bayan Aika" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעלם לאחר שליחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजने के बाद गायब हो जाएगा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon slanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés után eltűnik" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանալ ուղարկելուց հետո" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghilang Setelah Dikirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scompaiono dopo l'invio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信後に消えます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმდება გაგზავნის შემდეგ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាត់ទៅវិញបន្ទាប់ពីផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಿದ ನಂತರ ಹೊಗೇ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보낸 후 사라짐" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمان دوای ناردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njegera nga okwogere" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສະບາຍພັງຫລັງສົ່ງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išnyks po išsiuntimo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pazudīs pēc nosūtīšanas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе исчезне по праќање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээсний дараа алга болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilang Selepas Dihantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့ပြီးနောက် ပျောက်သွားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinner etter sendt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाएपछि मेटिनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwijnen na verzenden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinn etter sending" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kungozimiririka Pambuyo pa Kutumiza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਣ ਬਾਅਦ ਗੁਬਾਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zniknie po wysłaniu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته له لیږلو څخه له منځه ځي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após o envio" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer mensagem após o seu envio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dispare după trimitere" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить после отправки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon slanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යැවීමෙන් පසු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmiznutie po odoslaní" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgine po pošiljanju" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket Pas Dërgimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестаје после слања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaju nakon slanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinna efter sändning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoweka Baada ya Kutumwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பிய பின் காணாமல் போ" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగం తరువాత అదృశ్యమవుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หายไปหลังจากส่ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderildikten Sonra Kaybolur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникнення після відправлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے کے بعد غائب ہو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuborilganidan keyin yo'qoladi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa sau khi gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyamalala Emva Kokuthumela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送后焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "發送後銷毀" + } + } + } + }, + "disappearingMessagesDisappearAfterSendDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskappe verwyder na hulle gestuur is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل تحذف بعد إرسالها." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlar göndərildikdən sonra silinir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages delete after they have been sent." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні выдаляюцца пасля іх адпраўкі." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщенията се изтриват след като са били изпратени." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ম্যাসেজ পাঠানোর পরই মুছে যাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els missatges s'esborraran després de ser enviats." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy se po odeslání smažou." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae neges yn cael ei dileu ar ôl iddyn nhw fod wedi'u anfon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeder slettes efter de er blevet sendt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten löschen, nachdem sie gesendet worden sind." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα μηνύματα διαγράφονται αφού έχουν αποσταλεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages delete after they have been sent." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝoj foriĝos post sendite." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes se borran después de haber sido enviados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes se borran después de haber sido enviados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumid kustutatakse pärast nende saatmist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak bidali ondoren ezabatzen dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف پیام‌ها بعد از ارسال‌شان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestit poistuvat, kun ne on lähetetty." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mabubura ang mga mensahe pagkapadala na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les messages sont supprimés après avoir été envoyés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes borradas despois de ser enviadas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana gogewa saƙonni bayan an aika su." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות נמחקות לאחר שנשלחו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश भेजे जाने के बाद हट जाते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su poslane." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenetek törlődnek, miután el lettek küldve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունները ջնջվում են ուղարկվելուց հետո։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan dihapus setelah dikirim." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I messaggi vengono eliminati dopo che sono stati inviati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージは送信後に削除されます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებები წაიშლება მათი გაგზავნის შემდეგ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារនឹងលុបឡើងវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಿದ ನಂತರ ಅಳಿಸಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지는 전송된 후 삭제됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەکان بسڕدرێنەوە دوای ناردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka bweri seriimo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės ištrinamos po išsiuntimo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojumi tiek izdzēsti pēc to nosūtīšanas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораките се бришат откако ќе бидат испратени." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүд илгээгдсэнийхээ дараа устгагдана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej akan dipadam selepas dihantar." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်များ ပွင့်နေပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldinger slettes etter at de er sendt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू पठाए पछि मेटिन्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten worden gewist nadat ze zijn verzonden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingar blir slettet etter at dei er sendt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umauthenga umbwerele pambuyo pa kutumiza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ ਭੇਜੇ ਜਾਣ ਤੋਂ ਬਾਅਦ ਹਟਾਏ ਜਾਂਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomości są usuwane po ich wysłaniu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه حذف کیږي وروسته له دې چې لیږل شوي وي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensagens são excluídas após serem enviadas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensagens serão apagadas após o seu envio." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şterge mesajele după ce au fost trimise." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения удаляются после отправки." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su poslane." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යැවු පසු පණිවිඩ මැකෙයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy sa po odoslaní vymažú." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila se izbrišejo, ko so poslana." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhet fshihen pas dërgimit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поруке се бришу након што су послате." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke se brišu nakon što su poslate." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelanden raderas efter att de har skickats." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe hujifuta baada ya kutumwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வ௫யின்ஸேர்ந்தகைல் அவர்கள் கண்டாச் செய்தியவற்ற்யுங்கிற்ற் மருத்துவ்களாயிறுறது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు పంపిన తరువాత తొలగించబడతాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความจะถูกลบหลังจากส่งแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İletiler gönderildikten sonra silinir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення видаляються, після відправлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات بھیجنے کے بعد حذف ہو جاتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlar jo'natilganidan keyin oʻchiriladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn sẽ tự huỷ sau khi đã gửi." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo iyacinywa emva kokuba ithunyelwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息将在发送后焚毁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息在發送後將被銷毀。" + } + } + } + }, + "disappearingMessagesDisappearAfterSendState" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwyn Na Stuur - {time}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاختفاء بعد الإرسال - {time}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərdikdən {time} sonra yox olsun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے کے بعد غائب ہوجائے گا - {time}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знікае пасля адпраўкі - {time}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчезват след изпращане - {time}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠানোর পর অদৃশ্য হবে - {time}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desapareix després de l'enviament - {time}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmizí po odeslání - {time}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymestyn Ar Ôl Anfon - {time}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvind efter afsendelse - {time}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nach dem Senden verschwinden - {time}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαφάνιση Μετά από Αποστολή - {time}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Send - {time}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malaperos Post Sendado - {time}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras enviarlo - {time}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparece tras enviarlo - {time}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaduvad pärast saatmist - {time}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidali ondoren desagertu - {time}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپدید شدن پس از فرستادن - {time}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katoa kun lähetetty - {time}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglalaho Pagkatapos ma-send - {time}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disparaît après l'envoi - {time}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bacewa Bayan Aika - {time}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעלם לאחר שליחה - {time}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजने के बाद गायब हो जाएगा - {time}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon slanja - {time}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltűnik küldés után - {time}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհետանալ ուղարկելուց հետո - {time}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghilang Setelah Dikirim - {time}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scompaiono dopo l'invio - {time}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信後に消えます - {time}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disappear After Send - {time}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាត់ត្រលប់វិញបន្ទាប់ពីផ្ញើ - {time}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಿದ ನಂತರ ಹೊಗೇ - {time}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보낸 후 사라짐 - {time}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەمان دوای ناردن - {time}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendeera lyoke atonde - {time}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dingsta po išsiuntimo - {time}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе исчезне по праќање - {time}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээсний дараа алга болно - {time}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilang Selepas Dihantar - {time}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့ပြီးနောက် ပျောက်သွားမည် - {time}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinner etter send - {time}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाएपछि मेटिनुहोस् - {time}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verdwijnen na Verzenden - {time}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forsvinn etter sending - {time}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kungozimiririka Pambuyo pa Kutumiza - {time}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਣ ਬਾਅਦ ਗੁਬਾਰ - {time}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń po wysłaniu – {time}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته له لیږلو څخه له منځه ځي - {time}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer após enviar - {time}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desaparecer Após Envio - {time}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dispare după trimitere - {time}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалять после отправки - {time}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestaje nakon slanja - {time}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යැවීමෙන් පසු අතුරුදහන් වීම් වැඩක් - {time}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmiznutie po odoslaní - {time}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgine po pošiljanju - {time}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhduket Pas Dërgimit - {time}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нестаје после слања - {time}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nestajuće poruke - {time} nakon slanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försvinna efter sändning - {time}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoweka Baada ya Kutumwa - {time}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பிய பின் காணாமல் போ - {time}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగం తరువాత అదృశ్యమవుతుంది - {time}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หายไปหลังจากส่ง - {time}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderildikten Sonra Kaybolur - {time}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зникне після відправлення через: {time}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے کے بعد غائب ہو - {time}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuborilganidan keyin yo'qoladi - {time}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa sau khi gửi - {time}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyamalala Emva Kokuthumela - {time}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送后焚毁 - {time}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "發送後銷毀 - {time}" + } + } + } + }, + "disappearingMessagesFollowSetting" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volg Instelling" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اتبع الإعداد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayarları izlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسکنت آئیزات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следаваць наладам" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следвай настройките" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Follow Setting" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir configuració" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavení sledování" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dilyniadu Gosodiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg indstilling" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einstellung folgen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ακολούθηση Ρύθμισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Follow Setting" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekvi Agordon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir la configuración" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir Configuración" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järgi seadistust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jarraitu Ezarpena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دنبال کردن تنظیمات" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seuraa asetusta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sundin ang Setting" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suivre le réglage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir a configuración" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi Saitin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עקוב אחרי ההגדרה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुसरण सेटिंग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slijedite postavku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beállítás követése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հետևել կարգավորումներին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikuti Pengaturan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia impostazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定をフォロー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაემორჩილეთ კონფიგურაცის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តាមដានការកំណត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹುಡುಕಾಟದ ನಿರ್ವಾಹಕ ಸ್ಥಾಪನೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "설정 따라가기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شیاوی پیرۆبەند" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goberera Setingi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekti nustatymą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekot iestatījumiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следи подесување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тохиргоог дагах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikut Tetapan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Follow Setting" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg Innstilling" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिलीज नोट्समा जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Instelling volgen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg innstilling" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsatira kutero" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੈਟਿੰਗ ਦੀ ਪਾਲਣਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dopasuj do ustawień drugiej osoby" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم تعقیب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acompanhar configuração" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir Definições" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Urmează setarea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следовать настройкам" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prati postavke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සැකසීම් අනුගමනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodržať nastavenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sledi nastavitvi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndiq cilësimet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пратите подешавања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prati podešavanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Följ inställning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Mpangilio" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அமைப்பைப் பின்பற்றுங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అమలులో వెంట రావు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตามการตั้งค่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayarı Takip Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налаштування \"Зникнення повідомлень\"" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیٹنگ کو فالو کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sozlamalarga ergashing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Theo cài đặt" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Landela uSethingi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "进行相同设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "跟隨設置" + } + } + } + }, + "disappearingMessagesFollowSettingOff" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskappe wat jy stuur sal nie meer verdwyn nie. Is jy seker jy wil af stel verdwynende boodskappe?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لن تختفي الرسائل التي ترسلها بعد الآن. هل أنت متأكد أنك تريد إيقاف إيقاف الرسائل المختفية؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərdiyiniz mesajlar artıq yox olmayacaq. Yox olan mesajları söndürmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні, якія вы адпраўляеце, больш не знікнуць. Вы ўпэўнены, што хочаце адключыць знікаючыя паведамленні?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщенията, които изпращате, няма да изчезнат. Сигурни ли сте, че искате да изключите изчезващи съобщения?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পাঠানো ম্যাসেজ আর মুছে যাবে না। আপনি কি নিশ্চিত যে আপনি বন্ধ করতে চান মুছে যাওয়া ম্যাসেজগুলি?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els missatges que envies ja no desapareixeran. Estàs segur que vols desactivar els missatges efímers?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslané zprávy již nebudou mizet. Určitě chcete mizení zpráv vypnout?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni fydd negeseuon rydych chi'n eu hanfon yn diflannu mwyach. Ydych chi'n siŵr eich bod am ddiffodd neges diflannu?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeder du sender vil ikke længere forsvinde. Er du sikker på, at du vil slå fra forsvindende beskeder?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten, die du sendest, werden nicht mehr verschwinden. Bist du dir sicher, dass du verschwindende Nachrichten deaktivieren möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Τα μηνύματα που στέλνετε δεν θα εξαφανίζονται πλέον. Είστε βέβαιοι ότι θέλετε να απενεργοποιήσετε τα εξαφανιζόμενα μηνύματα;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝoj, kiujn vi sendas, ne plu malaperos. Ĉu vi certas, ke vi volas malŝalti malaperantajn mesaĝojn?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes que envíes ya no desaparecerán. ¿Estás seguro de que quieres desactivar los mensajes que desaparecen?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los mensajes que envíes ya no desaparecerán. ¿Estás seguro de que quieres desactivar desactivar los mensajes que desaparecen?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumid, mida saadad, ei kao enam ära. Kas oled kindel, et soovid kadunud sõnumid välja lülitada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidaltzen dituzun mezuak ez dira gehiago ezabatuko. Ziur zaude mezu desagerkorrak itzali nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام هایی که ارسال می کنید دیگر ناپدید نمی شوند. آیا مطمئن هستید که می خواهید پیام های ناپدید شده را خاموش کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähettämäsi viestit eivät enää katoa. Haluatko varmasti poistaa katoavat viestit?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi na mawawala ang mga mensaheng ipapadala mo. Sigurado ka bang gusto mong i-off ang mga nawawalang mensahe?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les messages que vous envoyez ne disparaîtront plus. Voulez-vous vraiment désactiver les messages éphémères?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensaxes que envíes xa non desaparecerán. Estás seguro de que desexas desactivar as mensaxes desaparecidas?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonnin da kake aika wa ba za su ƙara bacewa ba. Shin kuna da tabbacin kuna son kashe bacewa saƙonni?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות שתשלח לא ייעלמו עוד. האם אתה בטוח שברצונך לכבות הודעות שנעלמות?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके द्वारा भेजे गए संदेश अब गायब नहीं होंगे। क्या आप वाकई बंद गायब संदेश बंद करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke koje pošaljete više neće nestati. Jeste li sigurni da želite isključiti nestajuće poruke?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az elküldött üzenetek többé nem tűnnek el. Biztosan szeretnéd kikapcsolni az eltűnő üzeneteket?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք այլևս հաղորդագրությունները ջնջվող չեն լինի: Վստահ եք, որ ցանկանում եք անջատել անհետացող հաղորդագրությունները։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan yang Anda kirim tidak akan hilang lagi. Anda yakin ingin mematikan pesan menghilang?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I messaggi che invii non scompariranno più. Vuoi davvero disattivare i messaggi effimeri?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信したメッセージはもう消滅しません。消滅メッセージをオフにしてもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ მიერ გაგზავნილი შეტყობინებები აღარ გაქრება. დარწმუნებული ხართ, რომ გსურთ გამორთოთ გაუჩინარებული შეტყობინებები?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារដែលអ្នកផ្ញើរចុះ ចោលបាត់។ តើអ្នកប្រាកដប្រានថាចង់បិទ off សារតែមួយនេះមែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಕಳುಹಿಸುವ ಸಂದೇಶಗಳು ಇನ್ನು ಮುಂದೆ ಅಳಿಸುವುದಿಲ್ಲ. ನೀವು ಆಫ್ ಮಾಡಬೇಕೆಂದು ಖಚಿತವಾಗಿದೆಯೆ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보내는 메시지가 더 이상 사라지지 않습니다. 소멸 메시지를 끄시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەکانی تۆ دیگر نادیار نابی. دڵنیایە لە بژاردەی نامە نادیار دڵنیابکەی ئۆف؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe unaotuma hautatoweka tena. Je, una uhakika unataka kuzima jumbe zinazotoweka?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų siunčiamos žinutės nebeišnyks. Ar tikrai norite išjungti išnykstančias žinutes?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu nosūtītie ziņojumi vairs nepazudīs. Vai esat pārliecināts, ka vēlaties izslēgt pazūdošos ziņojumus?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораките што ги испраќате повеќе нема да исчезнат. Дали сте сигурни дека сакате да ги исклучите пораките што исчезнуваат?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны илгээсэн зурвасууд цаашид алга болохгүй. Та алга болсон мессежийг унтраах гэдэгт итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej yang anda hantar tidak lagi akan hilang. Adakah anda pasti mahu mematikan mesej yang hilang?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်ပေးပို့သော မက်ဆေ့ဂျ်များသည် ပျောက်ကွယ်သွားတော့မည် မဟုတ်ပါ။ ပျောက်နေသောစာတိုများကို ပိတ်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingene du sender vil ikke lenger forsvinne. Er du sikker på at du vil slå av forsvinnende meldinger?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले पठाएको सन्देशहरू अब हराउने छैनन्। के तपाईं पक्का हराउन बन्द गर्नुहोस् हराइएको सन्देशहरू बन्द गर्न चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten die u verstuurt verdwijnen niet meer. Weet u zeker dat u de verdwijnende berichten wilt uitschakelen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingar du sender vil ikkje lenger forsvinne. Er du sikker på at du vil slå av forsvinnande meldingar?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mauthenga omwe mumatumiza sadzathanso. Kodi mukutsimikiza kuti mukufuna kuzimitsa mauthenga omwe akusoweka?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਦੁਆਰਾ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਹੁਣ ਨਹੀਂ ਹਟਾਉਣਗੇ। ਕੀ ਤੁਸੀਂ ਨਿਸ਼ਚਤ ਹੋ ਕਿ ਤੁਸੀਂ ਬੰਦ ਗੁੰਢ-ਵਿਕਲਪ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysyłane wiadomości nie będą już znikać. Czy na pewno chcesz wyłączyć znikające wiadomości?\"" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه چې تاسو یې لیږئ نور به حذف نه شي. ایا تاسو ډاډمن یاست چې غواړئ غیرفعال حذفونکي پیغامونه بند کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensagens que você enviar não irão mais desaparecer. Tem certeza de que deseja desativar mensagens temporárias?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "As mensagens que enviar já não vão desaparecer. Tem a certeza que deseja desativar o desaparecimento de mensagens?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajele trimise nu vor mai dispărea. Ești sigur/ă că vrei să dezactivezi funcția de mesaje temporare?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения, которые вы отправляете, больше не будут исчезать. Вы уверены, что хотите отключить функцию исчезающих сообщений?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke koje šaljete više neće nestajati. Jeste li sigurni da želite isključiti nestajuće poruke?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ යවන පණිවිඩය නොපෙනී යනු නොඅනුගමනය වේ. බත්තරාව දිස්ප සක්රිය නොකරන්න නම් ඔබට විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy, ktoré odošlete, už nezmiznú. Naozaj chcete miznúce správy vypnúť?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila, ki jih pošljete, ne bodo več izginila. Ali ste prepričani, da želite izklopiti izginjajoča sporočila?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhet që dërgoni nuk do të zhduken më. Jeni i sigurt që dëshironi të fikni mesazhet që zhduken?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Послане поруке више неће нестајати. Да ли сте сигурни да желите да искључите нестајуће поруке?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke koje pošaljete više neće nestati. Da li ste sigurni da želite da isključite nestajuće poruke?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelanden du skickar kommer inte längre att försvinna. Är du säker på att du vill inaktivera meddelanden som försvinner?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe unazotuma hazitafutika tena. Uko tayari kuzima jumbe zinazofutika?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் அனுப்பும் செய்திகள் இனி மறைந்துவிடாது. மறைந்து வரும் செய்திகளை முடக்க நிச்சயமாக விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు పంపే సందేశాలు ఇకపైన కనుమరుగవవు. కనుమరుగవుతున్న సందేశాలను ఆఫ్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความที่คุณส่งจะไม่หายไปอีกต่อไป คุณแน่ใจหรือไม่ว่าต้องการปิดข้อความที่หายไป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderdiğiniz iletiler artık kaybolmayacak. Kaybolan iletileri kapalı hale getirmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відправлені вами повідомлення більше не зникатимуть. Ви впевнені, що хочете вимкнути зникомі повідомлення?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے بھیجے گئے پیغامات اب مزید غائب نہیں ہوں گے۔ کیا آپ واقعی بند غائب ہونے والے پیغامات بند کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuborgan xabarlaringiz endi yo‘qolmaydi. Yo'qoladigan xabarlarni o‘chirib qo‘yishni bas qilishga aminmisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn bạn gửi sẽ không tự huỷ nữa. Bạn có chắc muốn tắt tin nhắn tự huỷ không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo oyithumelayo ayizukutsha. Ungaqinisekisile ukuba ufuna ukucima imiyalezo yokubhangwa?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您发送的消息将不再焚毁。您确定要关闭阅后即焚吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您發送的訊息將不再自動銷毀。確定要關閉 此功能嗎?" + } + } + } + }, + "disappearingMessagesFollowSettingOn" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel jou boodskappe om te verdwyn {time} nadat hulle {disappearing_messages_type} was?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين رسائلك لتختفي {time} بعد أن تكون {disappearing_messages_type} ؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlarınızı {disappearing_messages_type} olduqdan {time} sonra yox olması üçün ayarlayırsınız?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "از غیب بوتان گپ شمایے شفاوت بیاریانے {time} بعد از {disappearing_messages_type}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Наладзіць, каб вашы паведамленні знікалі {time}: пасля таго, як яны былі {disappearing_messages_type}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да зададете ли вашите съобщения да изчезват {time} след като са били {disappearing_messages_type}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বার্তাগুলি {time} পরে অদৃশ্য হয়ে যাবে {disappearing_messages_type} করার পর?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu configurar els vostres missatges per a desaparèixer {time}? després d'haver estat {disappearing_messages_type}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit zprávy tak, aby zmizely {time} po tom, co byly {disappearing_messages_type}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosodwch eich negeseuon i ddiflannu {time} ar ôl iddynt fod yn {disappearing_messages_type}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du sætte dine beskeder til at forsvinde {time} efter de er blevet {disappearing_messages_type}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du festlegen, dass deine Nachrichten nach {time} verschwinden, nachdem sie {disappearing_messages_type} wurden?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορίστε τα μηνύματά σας να εξαφανίζονται {time}‌ αφότου έχουν {disappearing_messages_type}‌;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set your messages to disappear {time} after they have been {disappearing_messages_type}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi viajn mesaĝojn por malaperi {time} post kiam ili estis {disappearing_messages_type}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Establecer que tus mensajes desaparezcan {time} después de que hayan sido {disappearing_messages_type}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Establecer que tus mensajes desaparezcan {time} después de haber sido {disappearing_messages_type}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite määrata oma sõnumid kaduma {time} pärast nende {disappearing_messages_type} määratud?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak {time} denbora igaro ondoren {disappearing_messages_type} dezan ezarri?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام‌های خود را طوری تنظیم کنید که {time} پس از {disappearing_messages_type} ناپدید شوند؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta viestisi katoamaan kun on kulunut {time}, kun {disappearing_messages_type}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang iyong mga mensahe upang maglaho {time} pagkatapos nilang ma-{disappearing_messages_type}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurer vos messages pour qu'ils disparaissent {time} après avoir été {disappearing_messages_type} ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Queres que as túas mensaxes desaparezan {time} despois de que foran {disappearing_messages_type}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita saƙonninku su ɓace {time} bayan sun kasance {disappearing_messages_type}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם להגדיר שההודעות שלך ייעלמו {time} לאחר שהן {disappearing_messages_type}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप अपने संदेशों को {time} के बाद गायब होने के लिए सेट करना चाहते हैं जब वे {disappearing_messages_type} हो?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postaviti da vaše poruke nestaju {time} nakon što su {disappearing_messages_type}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be szeretnéd állítani, hogy az üzeneteid {time} után eltűnjenek, miután el lettek {disappearing_messages_type}?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հաղորդագրությունները {time} հետո կվերանան {disappearing_messages_type}-ից հետո:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasang pesan Anda untuk menghilang {time} setelah {disappearing_messages_type}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi che i tuoi messaggi scompaiano in {time}? dopo che sono stati {disappearing_messages_type}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたのメッセージを{time}後に{disappearing_messages_type}消えるように設定しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოინიშნეთ თქვენი შეტყობინებები, რომ {time} შემდეგ {disappearing_messages_type} შემდეგ გაიქროს?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់កំណត់សាររបស់អ្នកឲ្យលុប {time} បន្ទាប់ពីពួគេចាប់ផ្ដើមលុបទាំងអស់{disappearing_messages_type}?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಸಂದೇಶಗಳನ್ನು {time} ನಂತರವೆ {disappearing_messages_type} ಅಳಿಸಬೇಕೆಂದು ನಿರ್ಧರಿಸಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지를 {disappearing_messages_type}{time} 후에 사라지도록 설정하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامەکانت دان بۆ ناپەیدابوونەوە {time} دوای ئەوەی {disappearing_messages_type} ؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka obubaka bwo okubyesanga {time} nga bwayambe {disappearing_messages_type}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norite, kad jūsų žinutės dingsta {time} po jų {disappearing_messages_type}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlies uzstādīt, lai tavas ziņas izzūd {time} pēc tam, kad tās ir tikušas {disappearing_messages_type}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави ги пораките да исчезнат {time} откако ќе бидат {disappearing_messages_type}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүдийг {disappearing_messages_type} үед {time} дараа арилдаг болгох уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan mesej anda untuk hilang {time} selepas ia telah {disappearing_messages_type}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်စာများကို {time}ကျော်လွန်သွားသည် ပြုလုပ်ခြင်း ပြီးဆုံးပါသည် {disappearing_messages_type}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett meldingene dine til å forsvinne {time} etter de har blitt {disappearing_messages_type}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको सन्देशहरू {time} पछि {disappearing_messages_type} तपाई वार्षिक कमजोर गर्न चाहानुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel je berichten in om te verdwijnen {time} nadat ze {disappearing_messages_type} zijn?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set your messages to disappear {time} after they have been {disappearing_messages_type}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set your messages to disappear {time} after they have been {disappearing_messages_type}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਆਪਣੇ ਸੁਨੇਹੇ ਹੋਣ 'ਤੇ {time} ਨੌਂ {disappearing_messages_type} ਬਾਅਦ ਗੁਆਨ ਹੋਣ ਲਈ ਸੈੱਟ ਕਰੋਣਾ ਹੈ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy ustawić wiadomości tak, aby znikały po {time}? Po tym, jak zostały {disappearing_messages_type}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ چې خپل پیغامونه {time} وروسته چې سره لیږل شوی {disappearing_messages_type} نښې ورک شي؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir suas mensagens para desaparecer {time} depois que forem {disappearing_messages_type}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurar para que as suas mensagens desapareçam {time} após terem sido {disappearing_messages_type}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setați mesajele să dispară {time} după ce au fost {disappearing_messages_type}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настроить исчезновение ваших сообщений через {time} после того, как их статус изменился на: {disappearing_messages_type}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi da tvoje poruke nestanu {time} nakon što su {disappearing_messages_type} ?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ පණිවිඩ {time} කාලය තුළ {disappearing_messages_type} වූ පසු අතුරුදහන් වන ලෙස සැකසන්න?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavte správy tak, aby zmizli {time} po tom, čo boli {disappearing_messages_type}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavite svoja sporočila, da se izbrišejo {time} po tem, ko so bila {disappearing_messages_type}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A doni që mesazhet tuaja të zhduken {time} pasi të jenë {disappearing_messages_type}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави поруке да нестану {time} узорка након што су {disappearing_messages_type}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavite da vaše poruke nestanu {time} nakon što su {disappearing_messages_type}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange att dina meddelanden ska försvinna {time} efter att de har {disappearing_messages_type}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka ujumbe wako upotee {time} baada ya kuwa {disappearing_messages_type}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் செய்திகளை {time} வெளிப்படுத்திய பின்னர் {disappearing_messages_type} என அமைப்பதா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ సందేశాలను {time} తర్వాత {disappearing_messages_type}గా మాయం చేయించండి?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งค่าข้อความของคุณให้หายไป {time} หลังจากที่ถูก {disappearing_messages_type} ไปใช่ไหม?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlarınızın {time} sonra {disappearing_messages_type} olmasını ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Встановити, що повідомлення зникатимуть через {time} після того, як вони були {disappearing_messages_type}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے پیغامات سیٹ کریں کہ انہیں {disappearing_messages_type} کے بعد {time} میں غائب ہو جانا چاہئے؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlaringizni {time} dan keyin {disappearing_messages_type} qilib yo'q qilishni belgilang?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết lập tin nhắn của bạn biến mất {time} sau khi chúng đã được {disappearing_messages_type}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cwangcisa ukuba imiyalezo yakho iphele {time} emva kokuba ibe {disappearing_messages_type}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "确定设置消息在被{disappearing_messages_type}{time}焚毁?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "要將訊息設定為 {disappearing_messages_type}後的 {time} 自動銷毀?" + } + } + } + }, + "disappearingMessagesLegacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gebruik 'n verouderde kliënt. Verdwynende boodskappe mag nie werk soos verwag nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} يستخدم عميل قديم. قد لا تعمل الرسائل المختفية على النحو المتوقع." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} köhnəlmiş bir client istifadə edir. Yox olan mesajlar gözlənildiyi kimi işləməyə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ںٴے {name} پراڈ.client استعمالے. پیامکیے اختتام غیرمنتظری کئیں مس رہا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} выкарыстоўвае састарэлы кліент. Знікаючыя паведамленні могуць не працаваць належным чынам." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} използва остарял клиент. Изчезващите съобщения може да не работят според очакванията." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} একটি পুরনো সংস্করণ ব্যবহার করছে। অদৃশ্য বার্তা মেটে মহান কাজ নাও করতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} està utilitzant un client desactualitzat. Els missatges desapareguts poden no funcionar com s'esperava." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} používá zastaralého klienta. Mizející zprávy nemusí fungovat podle očekávání." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {name} yn defnyddio cleient hen ffasiwn. Efallai na fydd negeseuon diflanedig yn gweithio fel y disgwylir." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bruger en forældet klient. Forsvindende beskeder fungerer muligvis ikke som forventet." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} verwendet einen veralteten Client. Verschwindende Nachrichten funktionieren möglicherweise nicht wie erwartet." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} χρησιμοποιεί πελάτη παλαιότερης έκδοσης. Τα εξαφανιζόμενα μηνύματα ενδέχεται να μην λειτουργήσουν όπως αναμένεται." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is using an outdated client. Disappearing messages may not work as expected." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} uzas malnovan klienton. Malaperontaj mesaĝoj eble ne funkcios kiel atendite." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} está usando un cliente desactualizado. Los mensajes que desaparecen pueden no funcionar correctamente." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} está usando un cliente desactualizado. Los mensajes que desaparecen pueden no funcionar correctamente." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kasutab aegunud kliendi versiooni. Kaduvad sõnumid ei pruugi töötada ootuspäraselt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bertsio zaharkitua erabiltzen ari da. Mezu desagerkorrak ez dira espero bezala funtzionatuko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} از کلاینت قدیمی استفاده می‌کند. ممکن است پیام‌های ناپدیدشونده به درستی کار نکنند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} käyttää vanhentunutta sovellusta. Katoavat viestit eivät välttämättä toimi odotetusti." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gumagamit ng lumang kliyente si {name}. Ang mga nawawalang mensahe ay maaaring hindi gumana nang inaasahan." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} utilise une version obsolète de l'application. Les messages éphémères peuvent ne pas fonctionner comme prévu." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} está a usar un cliente desactualizado. As mensaxes que se desvanecen poden non funcionar como se espera." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yana amfani da abokin ciniki na baya. Saƙonnin da suka ɓace na iya yin aiki ba kamar yadda ake sa ran ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} משתמש/ת בלקוח מיושן. הודעות נעלמות עשויות שלא לפעול כצפוי." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} पुराने क्लाइंट का उपयोग कर रहे हैं। गायब होने वाले संदेश उम्मीद के मुताबिक काम नहीं कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} koristi zastarjeli klijent. Nestajuće poruke možda neće raditi kako je očekivano." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} egy elavult klienst használ. Az eltűnő üzenetek valószínűleg nem fognak működni a várt módon." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ը օգտագործում է հնացած հաճախորդ: Անհետացող հաղորդագրությունները կարող են չաշխատել ինչպես ակնկալվում է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menggunakan klien yang usang. Pesan menghilang mungkin tidak berfungsi sebagaimana mestinya." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sta usando un client obsoleto. I messaggi effimeri potrebbero non funzionare come previsto." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}は古いクライアントを使用しています。消えるメッセージが期待通りに動作しない場合があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} იყენებს მოძველებულ კლიენტს. აღმომქველი შეტყვობინებები შეიძლება არ იმუშავებს მოლოდინად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} កំពុងប្រើការនិយមថ្មីត្រូវបានធ្វើបច្ចុប្បន្នភាព។ សារបាត់ពេលអាចនឹងមិនដំណើរការដូច​ការ​រំពឹងទុក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಹಳೆಯ ಕ್ಲೈಂಟ್ ಬಳಸುತ್ತಿದ್ದಾರೆ. ಮಾಯವಾಗುವ ಸಂದೇಶಗಳು ನಿರೀಕ್ಷಿತವಾಗಿದೆ ಕೆಲಸ ಮಾಡರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}가 구식 클라이언트를 사용하고 있습니다. 사라지는 메시지가 예상대로 작동하지 않을 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بەکارهێنانی ڕوونەکەری نوێنەکەرەوە، پەیامەکانە نەمان پەیوەندی نەکرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} akoze ekilamu ekikontana. Obubaka oba butuukirira bunakolagana bulungi nga bwekitegerekebwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ໃຊ້ລູກຄ້າເກົ່າ. ຂໍ້ຄວາມທີ່ຫາຍໄປອາດບໍ່ໄດ້ເຮັດຕາມຄາດຄະເນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} naudoja pasenusį klientą. Išnykstančios žinutės gali neveikti kaip numatyta." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} izmanto novecojušu klientu. Gaistošie ziņojumi var nedarboties kā paredzēts." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} користи застарен клиент. Пораките што исчезнуваат можеби нема да функционираат како што се очекуваше." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} хуучин үйлчлүүлэгчийг ашиглаж байна. Disappearing message зөв ажиллахгүй байж магадгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menggunakan klien ketinggalan zaman. Mesej hilang mungkin tidak berfungsi seperti yang diharapkan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် အသုံးပြုနေသော client အဟောင်းဖြစ်သည်။ ပျောက်နေသော မီးမောက်မက်ဆေ့ချ်များ မေ့ပိုင်းမှာ အမှန်က အလုပ်မလုပ်နိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bruker en utdatert klient. Forsvinnende beskjeder fungerer kanskje ikke som forventet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} पुरानो क्लाइन्ट प्रयोग गर्दै हुनुहुन्छ। आफै मेटिने सन्देशहरू अपेक्षा अनुसार काम नगर्न सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gebruikt een verouderde client. Zelf-wissende berichten werken mogelijk niet zoals verwacht." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bruker en utdatert klient. Forsvinnande meldingar fungerer kanskje ikkje som forventa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} akugwiritsa ntchito kasitomala wakale. Mauthenga otayika sangagwire ntchito momwe amakondera." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਜੁੜਿਆ ਹੋਇਆ ਕਲਾਇੰਟ ਵਰਤ ਰਿਹਾ ਹੈ। ਗ਼ਾਇਬ ਹੋਣ ਵਾਲੇ ਸੁਨੇਹੇ ਉਮੀਦ ਮੁਤਾਬਕ ਕੰਮ ਨਹੀਂ ਕਰ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} używa nieaktualnego klienta. Znikające wiadomości mogą nie działać zgodnie z oczekiwaniami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} یوه زړه پېرونې نسخه کاره ولی. احتمالي پیغامونه ښایي چې کار ونه کړي لکه څنګه چې تمه کیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} está usando um cliente desatualizado. As mensagens temporárias podem não funcionar como esperado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} está usando um cliente desatualizado. As mensagens que desaparecem podem não funcionar como esperado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} folosește un client învechit. Funcția de mesaje temporare s-ar putea să nu funcționeze conform așteptărilor." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} использует устаревшую версию клиента. Исчезающие сообщения могут работать не так, как ожидалось." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} koristi zastarjelu verziju. Nestajuće poruke možda neće raditi kako je očekivano." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} පරණ ගිණුමක් භාවිතා කරයි. අතුරුදහන් වන සබැඳිනාමය නිසි ලෙස ක්‍රියා නොකරාවි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} používa zastaraného klienta. Miznúce správy nemusia fungovať podľa očakávania." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oseba {name} uporablja zastarelo različico. Izginjajoča sporočila morda ne bodo delovala pravilno." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} është duke përdorur një klient të vjetër. Mesazhet zhdukëse mund të mos funksionojnë siç pritet." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} користи застарелог клијента. Нестајуће поруке можда неће радити како је очекивано." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} koristi zastarelu klijent. Nestajuće poruke možda neće raditi kako se očekuje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} använder en föråldrad klient. Försvinnande meddelanden kanske inte fungerar som förväntat." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} anatumia mteja wa zamani. Ujumbe unaotoweka unaweza usifanye kazi kama inavyotarajiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} பழைய வடிவிலான கிளையண்டைப் பயன்படுத்துகிறார். மறையும் செய்திகள் எதிர்பார்த்தது போல் வேலை செய்யாமல் போகலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} పాత క్లయింట్‌ను ఉపయోగిస్తున్నారు. కనుమరుగైపోతున్న సందేశాలు ఆశించిన విధంగా పని చేయకపోవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} กำลังใช้ไคลเอนต์ที่ล้าสมัย ข้อความที่หายไปอาจไม่ทำงานตามที่คาดไว้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eski bir istemci kullanıyor. Kaybolan mesajlar beklendiği gibi çalışmayabilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} використовує застарілу версію додатку. Зникаючі повідомлення можуть працювати некоректно." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ایک پرانے کلائنٹ کا استعمال کر رہا ہے۔ غائب ہونے والے پیغامات توقع کے مطابق کام نہیں کر سکتے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eskirgan mijozi ishlatmoqda. Yo'qoladigan xabarlar kutilganidek ishlamasligi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đang sử dụng ứng dụng cũ. Tin nhắn tự huỷ có thể không hoạt động đúng như mong đợi." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} isebenzisa isoftwe endala. Imiyalezo ephulukayo ayinakusebenza kakuhle." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}正在使用的客户端版本过低。阅后即焚消息可能无法正常工作。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 正在使用過時的客戶端。消失訊息可能無法如預期般運作。" + } + } + } + }, + "disappearingMessagesOnlyAdmins" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slegs admins kan hierdie instelling verander." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط المسؤولين يمكنهم تغيير هذا الإعداد." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayarı yalnız qrup adminləri dəyişdirə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چہ کنگاں صرف گروپ آرہبႏိုင္ٹین تبدیلیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Толькі адміністратары групы могуць змяніць гэтую настойку." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само администраторите на групата могат да променят тази настройка." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধুমাত্র গ্রুপ অ্যাডমিনরা এই সেটিংসটি পরিবর্তন করতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Només els administradors del grup poden canviar aquesta configuració." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavení mohou měnit jen správci skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ond gweinyddwyr grŵp yn gallu newid y gosodiad hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun gruppeadministratorer kan ændre denne indstilling." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur Gruppen-Admins können diese Einstellung ändern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μόνο οι διαχειριστές της ομάδας μπορούν να αλλάξουν αυτήν τη ρύθμιση." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only group admins can change this setting." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur administrantoj de la grupo povas ŝanĝi tiun agordon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sólo los administradores del grupo pueden cambiar esta configuración." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo los administradores de grupo pueden cambiar esta configuración." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainult grupi administraatorid saavad seda seadet muuta." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeko administratzaileek bakarrik alda dezakete ezarpen hau." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنها ادمین‌های گروه می توانند این تنظیمات را تغییر دهند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vain ryhmän ylläpitäjät voivat muuttaa tätä asetusta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanging admin ng grupo ang maaaring magbago ng setting na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seuls les administrateurs de groupe peuvent modifier ce paramètre." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Só os administradores do grupo poden cambiar esta configuración." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaɗai malaman Rukuni na iya canza wannan saitin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "רק מנהלי הקבוצה יכולים לשנות הגדרה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल समूह व्यवस्थापक इस सेटिंग को बदल सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo administratori grupe mogu promijeniti ovu postavku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezt a beállítást csak adminisztrátorok változtathatják meg." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միայն խմբի ադմինները կարող են փոխել այս կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanya admin grup yang bisa mengubah setelan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo gli amministratori del gruppo possono cambiare questa impostazione." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ ჯგუფების ადმინისტრატორებს შეუძლიათ ამ პარამეტრის შეცვლა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានតែអ្នកគ្រប់គ្រងក្រុមអាចផ្លាស់ប្ដូរការកំណត់នេះបាន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸೆಟ್ಟಿಂಗ್ ಅನ್ನು ಬದಲಾಯಿಸಲು ಕೇವಲ ಗುಂಪಿನ ಆಡಳಿತಗಾರರು ಮಾತ್ರ ಸಾಧ್ಯ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 관리자만 이 설정을 변경할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تەنها بەرێوەبەران ئەم دەستکاریکەرە دەتوانن بگۆڕن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bwamalirizibwa nga abakulu bokka basobola kino" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only group admins can change this setting." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikai grupas administratori var mainīt šo iestatījumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само администраторите на групата можат да ја менуваат оваа поставка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн бүлгийн админ үүнийг өөрчилж чадна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanya admin kumpulan boleh menukar tetapan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒီ ပြင်ဆင်မှုကိုတော့ အဖွဲ့အလိုဂျင်းများမှသာ ပြင်နိုက်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bare gruppeadministratorer kan endre denne innstillingen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल समूहका प्रशासकहरू यो सेटिङ परिवर्तन गर्न सक्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen groepsbeheerders kunnen deze instelling wijzigen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berre gruppestadmisnistratorar kan endre denne innstillinga." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogwira ntchito ya gulu okha ndi omwe angasinthe makonzedwewa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਸੈਟਿੰਗ ਨੂੰ ਕੇਵਲ ਸਮੂਹ ਪ੍ਰਸ਼ਾਸਕ ਹੀ ਬਦਲ ਸਕਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tylko administratorzy grup mogą zmienić to ustawienie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې د ډلې مدیران کولی شي دا تنظیم بدل کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas administradores do grupo podem alterar esta configuração." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas admins do grupo podem alterar esta definição." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doar administratorii grupului pot schimba această setare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Только администраторы группы могут изменять эту настройку." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo administratori grupe mogu menjati ovu postavku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සැකසීමේ වෙනස කළ හැක්කේ කණ්ඩායම් පරිපාලකයින්ට පමණි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto nastavenie môže zmeniť iba správca skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo skrbniki skupine lahko spremenijo to nastavitev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vetëm administratorët e grupit mund të ndryshojnë këtë cilësim." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само администратори групе могу мењати ово подешавање." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo administratori grupe mogu promeniti ovo podešavanje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endast gruppadministratörer kan ändra denna inställning." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni wasimamizi wa kikundi tu wanaoweza kubadilisha mipangilio hii." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த அமைப்பை குழு நிர்வாகிகள் மட்டுமே மாற்ற முடியும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సెట్టింగ్ ను కేవలం అధికారులే మార్చగలరు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่านี้เปลี่ยนแปลงได้เฉพาะผู้ดูแลกลุ่มเท่านั้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ayarı yalnızca grup yöneticileri değiştirebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лише адміністратори групи можуть змінювати цей параметр." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف گروپ ایڈمنسٹریٹر یہ سیٹنگ تبدیل کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat guruh administratorlari ushbu sozlamani o'zgartirishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only group admins can change this setting." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abalawuli beqela kuphela abazakwazi ukutshintsha esi setting." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅群组管理员可以更改此设置。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "只有群組管理員可以更改此設定。" + } + } + } + }, + "disappearingMessagesSent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم الإرسال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا گیا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даслана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпратено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠানো হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesláno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfonwyd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Στάλθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sent" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saadetud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidalia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-send" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An aiko" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נשלח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेज दिया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldött" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terkirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信済み" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაგზავნილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보냄" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نارد" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirimuddwako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išsiųsta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испратено" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dihantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့ထားပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाइएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kachashka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਿਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysłano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لېږل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimis" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправлено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යවා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odoslané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërguar më" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Послато" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslata" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skickat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imetumwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపిన" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo'natildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sithumele" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已傳送" + } + } + } + }, + "disappearingMessagesSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het boodskappe gestel om te verdwyn {time} nadat hulle {disappearing_messages_type} is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قام بتعيين الرسائل لتختفي بعد {time} من {disappearing_messages_type}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {disappearing_messages_type} olduqdan {time} sonra mesajları yox olması ayarladı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Messages kashan kune ke {disappearing_messages_type} kare a {time} kawatān pash bī haleetān." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} усталяваў знікненне паведамленняў {time} пасля таго як яны былі {disappearing_messages_type}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} е настроил съобщенията да изчезват {time} след като са били {disappearing_messages_type}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} মেসেজকে {time} সময় পরে অদৃশ্য হওয়ার জন্য সেট করেছেন যখন মেসেজগুলো {disappearing_messages_type} হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha establert els missatges perquè desapareguin {time} després de ser {disappearing_messages_type}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nastavil(a) zprávy tak, aby zmizely {time} poté, co byly {disappearing_messages_type}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y wedi gosod negeseuon i ddiflannu {time} ar ôl iddynt fod wedi {disappearing_messages_type}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har indstillet meddelelser til at forsvinde {time} efter de er blevet {disappearing_messages_type}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat eingestellt, dass Nachrichten {time} nachdem sie {disappearing_messages_type} wurden, verschwinden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} όρισε τα μηνύματα να εξαφανίζονται {time} αφότου έχουν {disappearing_messages_type}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has set messages to disappear {time} after they have been {disappearing_messages_type}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} agordis mesaĝojn por malaperi post {time} kiam ili estis {disappearing_messages_type}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha establecido que los mensajes desaparezcan {time} tras haber sido {disappearing_messages_type}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha establecido que los mensajes desaparezcan {time} tras haber sido {disappearing_messages_type}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} määras kaduvad sõnumid kaduvaks {time} pärast nende {disappearing_messages_type}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has set messages to disappear {time} after they have been {disappearing_messages_type}." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تنظیم کرده تا پیام‌ها {time} پس از آنکه {disappearing_messages_type} شدند، ناپدید شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on asettanut viestit katoamaan {time}, kun ne on {disappearing_messages_type}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay na-set na maglaho ang mga mensahe pagkatapos ng {time} matapos itong {disappearing_messages_type}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a défini les messages à disparaître {time} après qu'ils aient été {disappearing_messages_type}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estableceu as mensaxes para desaparecer {time} despois de seren {disappearing_messages_type}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya sa sakonni su ɓace {time} bayan sun {disappearing_messages_type}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הגדיר/ה שהודעות ייעלמו {time} לאחר שהן {disappearing_messages_type}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने संदेशों को {time} के बाद {disappearing_messages_type} गायब करने के लिए सेट किया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je postavio/la da poruke nestanu {time} nakon što su {disappearing_messages_type}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} beállította, hogy az üzenetek eltűnjenek {time} után, miután el lettek {disappearing_messages_type}." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը ֆիքսել է անհետացող հաղորդագրությունները {time} {disappearing_messages_type} հետո անհետանալու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah memasang pesan untuk menghilang {time} setelah {disappearing_messages_type}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha impostato il timer dei messaggi effimeri a {time} mentre prima erano {disappearing_messages_type}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} が {time} になった後、{disappearing_messages_type}メッセージが消えるように設定しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს შეტყობინებები {time} შემდეგ ქრება {disappearing_messages_type} ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ បានកំណត់សារឱ្យលុប {time} ក្រោយពួកគេបាន {disappearing_messages_type}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು {disappearing_messages_type} ನಂತರ {time} ಕ್ಕೆ ಸಂದೇಶಗಳು ಮಾಯವಾಗುವಂತೆ ಹೊಂದಿಸಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 메시지가 {disappearing_messages_type} 이후 {time} 후에 사라지는 설정을 했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دانەیە پەیامەکان بدرۆنەوە بەردەوام بێت {time} پاش ئەوەی {disappearing_messages_type}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} akutte message nga zisereba {time} oluvannyuma lwa {disappearing_messages_type}." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has set messages to disappear {time} after they have been {disappearing_messages_type}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nustatė, kad žinutės dings po {time} po to, kai jos bus {disappearing_messages_type}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir iestatījis ziņas, lai tās pazustu pēc {time}, kad tās ir {disappearing_messages_type}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} постави пораките да исчезнат {time} откако ќе бидат {disappearing_messages_type}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} нь мессежүүдийг {time} {disappearing_messages_type} дараа арилгахыг тохируулсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah menetapkan mesej untuk hilang {time} selepas mereka telah {disappearing_messages_type}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် မက်ဆေ့ခ်ျ်များကို {disappearing_messages_type} ပြီးနောက် {time} ကြာမှပျောက်သွားမည် ဟု သတ်မှတ်ထားသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har satt meldinger til å forsvinne {time} etter de har blitt {disappearing_messages_type}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले सन्देशहरू {time}पछि मेटिने गरी सेट गर्नुभएको छ {disappearing_messages_type} भए पछि।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft berichten ingesteld om te verdwijnen {time} nadat ze zijn {disappearing_messages_type}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har satt beskjeder til å forsvinne {time} etter at de har vært {disappearing_messages_type}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wakonza kuti mauthenga azichoka {time} atachitika {disappearing_messages_type}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਸੁਨੇਹੇ ਰੱਖਣ ਲਈ ਸੁਨੇਹਾ ਸਮਾਂਸੂਚੀ {time}ਬਾਅਦ ਨਾ ਗੰਦੇ ਹੋਣ ਲਈ {disappearing_messages_type}ਰੱਖੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ustawił(a) znikające wiadomości na {time} po tym, jak były {disappearing_messages_type}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پیغامونه د {time} د ورکیدو لپاره ترتیب کړي دي وروسته له دې چې دوی {disappearing_messages_type} شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} definiu mensagens para desaparecer {time} depois de terem sido {disappearing_messages_type}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} definiu as mensagens para desaparecerem após {time} de terem sido {disappearing_messages_type}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a setat mesajele să dispară {time} după ce au fost {disappearing_messages_type}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} установил(а) сообщения на удаление {time} после того, как они изменили статус на \"{disappearing_messages_type}\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je postavio da poruke nestanu {time} nakon što su bile {disappearing_messages_type}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} පණිවිඩ {disappearing_messages_type} වූ පසු {time} කාලය ත්‍යෙවන පණිවිඩව අතුරුදහන් කිරීමට සකසා ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} nastavil/a správy tak, aby zmizli {time} po ich {disappearing_messages_type}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je nastavil_a sporočila, da izginejo {time} po tem, ko so bila {disappearing_messages_type}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ka caktuar që mesazhet të zhduken {time} pasi të jenë {disappearing_messages_type}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је подесио да поруке нестају {time} након што су биле {disappearing_messages_type}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je postavio/la da poruke nestanu {time} nakon što su bile {disappearing_messages_type}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har satt meddelanden att försvinna {time} efter de har varit {disappearing_messages_type}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ameseti ujumbe kupotea {time} baada ya kuwa {disappearing_messages_type}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {time} ஆகியன {disappearing_messages_type} மாறுதலுக்குப் பிறகு உரையாடலை மறைவாக்கி உள்ளார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సందేశాలను మాయం అయ్యేందుకు {time} గా సెట్ చేశారు తరువాత అవి {disappearing_messages_type} చేయబడ్డాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ตั้งค่าข้อความให้หายไปใน {time} หลังจากที่ได้รับการ {disappearing_messages_type}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, mesajları kaybolacak şekilde {disappearing_messages_type} ayarladıktan {time} sonra kaybolacak şekilde ayarladı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} встановив, що повідомлення зникатимуть через {time} після того, як вони були {disappearing_messages_type}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے پیغامات کو {time} بعد غائب کرنے کا تعین کیا ہے جب وہ {disappearing_messages_type} ہو چکے ہوں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yo'qolgan xabarlar {time} da {disappearing_messages_type} qilib belgilanishini o'rnatdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã đặt tin nhắn tự huỷ sau {time} khi chúng đã được {disappearing_messages_type}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} usete iimyalezo ukuba ziphelelwe lixesha emva kwe {time} emva kokuba zenzekile {disappearing_messages_type}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}已设置消息在被{disappearing_messages_type}后{time}自动焚毁。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已將訊息設定為於 {disappearing_messages_type} 後的 {time} 自動銷毀。" + } + } + } + }, + "disappearingMessagesSetYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het boodskappe ingestel om te verdwyn {time} nadat hulle {disappearing_messages_type} is." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت قمت بتعيين الرسائل لتختفي بعد {time} من {disappearing_messages_type}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {disappearing_messages_type} olduqdan {time} sonra mesajları yox olması ayarladınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār kashān messages ke disappear {disappearing_messages_type} kare a {time} bughalteetān." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы усталявалі знікненне паведамленняў {time} пасля таго, як яны былі {disappearing_messages_type}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие настроихте съобщенията да изчезват {time} след като са били {disappearing_messages_type}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি মেসেজকে {time} সময় পরে অদৃশ্য হওয়ার জন্য সেট করেছেন যখন মেসেজগুলো {disappearing_messages_type} হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu has configurat els missatges perquè desapareguin {time} després d'haver estat {disappearing_messages_type}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavili jste mizení zpráv {time} po odeslání {disappearing_messages_type}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych wedi gosod yr amserydd neges sy'n diflannu i {time} ar ôl iddynt fod wedi {disappearing_messages_type}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du satte beskeder til at forsvinde {time} efter de er blevet {disappearing_messages_type}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast eingestellt, dass Nachrichten {time} nachdem sie {disappearing_messages_type} wurden, verschwinden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς ορίσατε τα μηνύματα να εξαφανίζονται {time} αφότου έχουν {disappearing_messages_type}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You set messages to disappear {time} after they have been {disappearing_messages_type}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi agordis mesaĝojn por malaperi post {time} kiam ili estis {disappearing_messages_type}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " has fijado la desaparición de mensajes en {time} tras haber sido {disappearing_messages_type}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has establecido que los mensajes desaparezcan {time} tras haber sido {disappearing_messages_type}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sa määrasid kaduvad sõnumid kaduvaks {time} pärast nende {disappearing_messages_type}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk mezuak desagerrarazi dituzu {time} igaro ondoren {disappearing_messages_type} izan direnean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تنظیم کرده‌اید تا پیام‌ها {time} پس از آنکه {disappearing_messages_type} شدند، ناپدید شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä asetit viestit katoamaan, kun on kulunut {time}, kun {disappearing_messages_type}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay na-set ang mga mensahe na maglaho pagkatapos ng {time} matapos itong {disappearing_messages_type}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez défini les messages à disparaître {time} après qu'ils aient été {disappearing_messages_type}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti configuraches as mensaxes para desaparecer {time} despois de seren {disappearing_messages_type}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku sa sakonni su ɓace {time} bayan sun {disappearing_messages_type}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה הגדרת שהודעות ייעלמו {time} לאחר שהן {disappearing_messages_type}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप ने {disappearing_messages_type} किए गए संदेशों को {time} के बाद गायब करने के लिए सेट किया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavili ste da poruke nestanu {time} nakon što su {disappearing_messages_type}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te beállítottad, hogy az üzenetek eltűnjenek {time} után, miután el lettek {disappearing_messages_type}." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ֆիքսել եք հաղորդագրությունները {time} {disappearing_messages_type} հետո անհետանալու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mengatur pesan untuk menghilang {time} setelah {disappearing_messages_type}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai impostato il timer dei messaggi effimeri a {time} mentre prima erano {disappearing_messages_type}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "You は {time} になった後、{disappearing_messages_type}メッセージが消えるように設定しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ქრება შეტყობინებები {time} შემდეგ აქვთ {disappearing_messages_type}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានកំណត់សារឱ្យបាត់ {time} ក្រោយពួកគេបាន {disappearing_messages_type}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {disappearing_messages_type} ನಂತರ {time} ಕ್ಕೆ ಸಂದೇಶಗಳು ಮಾಯವಾಗುವಂತೆ ಹೊಂದಿಸಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 메시지가 {disappearing_messages_type} 이후 {time} 후에 사라지는 설정을 했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دانەیە پەیامەکان بدرۆنەوە بەردەوام بێت {time} پاش ئەوەی {disappearing_messages_type}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wasimba messages okusangula oluvannyuma lwa {time} nga zituuse ku {disappearing_messages_type}." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານໄດ້ກຳນົດຂໍ້ຄວາມໃຫ້ຫມົດໄປ{time}ຫລັງທີ່ເຂົ້າໃຊ້ແລ້ວ {disappearing_messages_type}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs nustatėte žinutes dingsiančias po {time} po to, kai jos buvo {disappearing_messages_type}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu iestatīji, lai ziņas pazūd pēc {time}, kad tās ir {disappearing_messages_type}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие ги поставивте пораките да исчезнат {time} откако ќе бидат {disappearing_messages_type}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та мессежүүдийг {time} {disappearing_messages_type} дараа арилахыг тохируулсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda menetapkan mesej untuk hilang {time} selepas mereka telah {disappearing_messages_type}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် သည် မက်ဆေ့ချ်များကို {disappearing_messages_type} ပြီးနောက် {time} ကြာမှ ပျောက်သွားမည်ဟု တပ်ဆင်ထားသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du satte meldinger til å forsvinne {time} etter de har blitt {disappearing_messages_type}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले सन्देशहरू {time} पछि मेटिने गरी सेट गर्नुभयो {disappearing_messages_type} भएपछि।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft berichten ingesteld om te verdwijnen {time} nadat ze zijn {disappearing_messages_type}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du satte beskjeder til å forsvinne {time} etter at de har vært {disappearing_messages_type}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mukonza kuti mauthenga akhale athe {time} atachitika {disappearing_messages_type}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਸੁਨੇਹਿਆਂ ਦੇ ਗੁਆਬਣ ਵਾਲੇ ਪੈਰਾਮੀਟਰਸ {time} ਦੇ ਬਾਅਦ ਰੱਖੇ ਹਨ {disappearing_messages_type}।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawiono znikanie wiadomości na {time} po tym, jak były {disappearing_messages_type}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو پیغامونه د {time} د ورکیدو لپاره ترتیب کړئ وروسته له دې چې دوی {disappearing_messages_type} شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você definiu para as mensagens desaparecerem {time} depois de terem sido {disappearing_messages_type}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você definiu as mensagens para desaparecerem após {time} de terem sido {disappearing_messages_type}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu ai setat mesajele să dispară {time} după ce au fost {disappearing_messages_type}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы установили исчезающие сообщения на удаление {time} после того, как они были {disappearing_messages_type}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si postavio da poruke nestanu {time} nakon što su bile {disappearing_messages_type}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ{disappearing_messages_type} වූ පසු {time} කාලය තුළ පණිවිඩ අතුරුදහන් වන බව සකසා ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste nastavili správy tak, aby zmizli {time} po tom, čo boli {disappearing_messages_type}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste nastavili sporočila, da izginejo {time} po tem, ko so bila {disappearing_messages_type}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju caktoni që mesazhet të zhduken {time} pasi të jenë {disappearing_messages_type}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте подесили да поруке нестају {time} након што су биле {disappearing_messages_type}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste postavili da poruke nestanu {time} nakon što su bile {disappearing_messages_type}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du satt meddelanden att försvinna {time} efter de har varit {disappearing_messages_type}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umeseti ujumbe kupotea {time} baada ya kuwa {disappearing_messages_type}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {time} பின்னர் {disappearing_messages_type} செய்திகளை காணாமல் ஆக்கிவிட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు సందేశాలను మాయం అయ్యేందుకు {time} గా సెట్ చేశారు తరువాత అవి {disappearing_messages_type} చేయబడ్డాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ตั้งค่าข้อความให้หายไปใน {time} หลังจากที่ได้รับการ {disappearing_messages_type}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen mesajları {disappearing_messages_type} ayarladıktan {time} sonra kaybolacak şekilde ayarladın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви встановили, що повідомлення зникатимуть через {time} після того, як вони були {disappearing_messages_type}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے پیغامات کو {time} بعد غائب کرنے کا تعین کیا ہے جب وہ {disappearing_messages_type} ہو چکے ہوں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yo'qolgan xabarlarni {time} dan so'ng {disappearing_messages_type} qilib belgilashni o'rnatdingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã đặt tin nhắn tự huỷ sau {time} khi chúng đã được {disappearing_messages_type}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna ndacwangcisa ukuba iimyalezo ziphelelwe {time} emva kokuba zime {disappearing_messages_type}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将消息设置为在 {disappearing_messages_type} 后 {time} 自动焚毁。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 設定訊息於 {disappearing_messages_type} 後的 {time} 自動銷毀。" + } + } + } + }, + "disappearingMessagesTimer" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المؤقت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taymer" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹائمریوں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таймер" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таймер" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "টাইমার" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temporitzador" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Časovač" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amserydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeitraum" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χρονόμετρο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tempigilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cronómetro" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cronómetro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taimer" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erlojua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تایمر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajastin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minuteur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temporizador" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokaci" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טיימר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tajmer" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Időzítő" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ժամաչափ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "タイマー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ტაიმერი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಟೈಮರ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "타이머" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاژێر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laikmatis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taimeris" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тајмер" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таймер" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemasa" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အချိန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाइमर" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidtakere" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nthawi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਟਾਈਮਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minutnik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تایمر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temporizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temporizator" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таймер" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tajmer" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ක්‍රොනොමීටරය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Časovač" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Časovnik" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kohëmatës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тајмер" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tajmer" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kipima muda" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காலக்கெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "టైమర్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งเวลา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sayaç" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таймер" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹائمر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taymer" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hẹn giờ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-Timer" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "定时器" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "計時器" + } + } + } + }, + "disappearingMessagesTurnedOff" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het verdwynende boodskappe afgedraai. Boodskappe wat ingestuur word sal nie weer verdwyn nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قام بإيقاف الرسائل المختفية. لن تختفي الرسائل التي يرسلها بعد الآن." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yox olan mesajları söndürdü. Göndərdiyi mesajlar artıq yox olmayacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Disappearing Messages off bit. Ābišn wandanā messages dr ig bī haleetān." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} адключыў знікальныя паведамленні. Паведамленні, якія яны адправяць, больш не знікнуць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} е изключил изчезващите съобщения. Съобщенията, които изпраща, вече няма да изчезват." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} অদৃশ্য মেসেজ বন্ধ করেছেন। তারা যে মেসেজ পাঠাবেন তা আর অদৃশ্য হবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivat els missatges efímers. Els missatges que enviïn ja no desapareixeran." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vypnul(a) mizející zprávy. Zprávy, které pošle, již nebudou mizet." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y wedi troi neges diflannu i ffwrdd. Ni fydd negeseuon maent yn anfon yn diflannu mwyach." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har slået forsvindende beskeder fra. Beskeder, de sender, vil ikke længere forsvinde." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat verschwindende Nachrichten deaktiviert. Nachrichten verschwinden nicht mehr." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} απενεργοποίησε τα εξαφανιζόμενα μηνύματα. Τα μηνύματα που θα στείλει δε θα εξαφανίζονται πλέον." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has turned disappearing messages off. Messages they send will no longer disappear." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} malŝaltis memviŝontajn mesaĝojn. Mesaĝoj kiujn ili sendos, ne plu malaperos." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivado los mensajes que desaparecen. Los mensajes que envíe ya no desaparecerán." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivado la desaparición de mensajes. Los mensajes que envíe ya no desaparecerán." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} lülitas kaduvad sõnumid välja. Nende saadetud sõnumid ei kao enam." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mezu desagerkorrak desaktibatu ditu. Berak bidalitako mezuak ez dira gehiago desagertuko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پیام‌های ناپدیدشونده را خاموش کرده است. پیام‌هایی که ارسال می‌کند دیگر ناپدید نمی‌شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on poistanut katoavat viestit käytöstä. Viestit eivät enää katoa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay pinatay ang mga disappearing messages. Ang mga mensaheng kanilang ipapadala ay hindi na maglalaho." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a désactivé les messages éphémères. Les messages qu'ils envoient ne disparaîtront plus." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desactivou as mensaxes de desaparición. As mensaxes que envíen xa non desaparecerán." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya kashe saƙonnin ɓacewa. Saƙonnin da suka aiko ba za su ɓace ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ביטל/ה הודעות נעלמות. הודעות שהיא תשלח לא ייעלמו יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने गायब होने वाले संदेशों को बंद कर दिया है। जो संदेश वे भेजेंगे, वे अब और नहीं गायब होंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio/la nestajuće poruke. Njihove poruke više neće nestajati." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kikapcsolta az eltűnő üzeneteket. Az általuk küldött üzenetek többé nem fognak eltűnni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը անջատել է անհետացող հաղորդագրությունները: Նրա կողմից ուղարկված հաղորդագրությունները այլևս չեն անհետանում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menonaktifkan pesan menghilang. Pesan yang mereka kirim tidak akan lagi menghilang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha disattivato i messaggi effimeri. I messaggi inviati non scompariranno più." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} が消えるメッセージをオフにしました。送信されたメッセージは消えなくなります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს გამორთო ქრება შეტყობინებები. შეტყობინებები აღარ გაქრებათ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍បានបិទ Disappearing Messages ។ សរ ទាំងាស់ដែពលួគកេផ្ញើនឹមងិនបាត់ហស់ទត ទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಮಾಯವಾಗುವ ಸಂದೇಶಗಳನ್ನು ಅಳಿಸಿದ್ದಾರೆ. ಅವರು ಕಳುಹಿಸಿದ ಸಂದೇಶಗಳು ಇನ್ನು ಮುಂದೆ ಮಾಯವಾಗುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 사라지는 메시지 기능을 끄셨습니다. 이제 보낸 메시지는 사라지지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پەیامەکانی دەبەرەنەوەی. پەیامەکانیان دواتر ناباشرێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} azikiriza okusangula kwa message okuggyiddwaawo. Message zonna zida kusangulwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has turned disappearing messages off. Messages they send will no longer disappear." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} išjungė žinučių dingimą. Žinutės, kurias jis siunčia, daugiau nedings." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir izslēdzis pazūdošās ziņas. Ziņas, ko viņi sūtīs, vairs nepazudīs." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ги исклучи исчезнувачките пораки. Пораките што ги испраќаат повеќе нема да исчезнуваат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} мессежүүдийн арилгах тохиргоог унтраасан. Тэдний илгээсэн мессежүүд дахин арилахгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah mematikan disappearing messages. Mesej yang mereka hantar tidak akan hilang lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် ပျောက်သွားမည့် မက်ချိ့်များကို ပိတ်ထားသည်။ သူတို့ပေးပို့သော မက်ဆေ့ခ်ျ်များကို အဘယ်ဝယ်မှ ပျောက်မည်မဟုတ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har skrudd av tidsbegrensede meldinger. Meldinger de sender vil ikke lenger forsvinne." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले आफै मेटिने सन्देशहरू बन्द गर्नुभएको छ। उहाँले पठाएका सन्देशहरू अब मेटिने छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft verdwijnende berichten uitgeschakeld. Berichten die zij verzenden zullen niet langer verdwijnen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har skrudd av tidsbegrensede beskjeder. Meldingar dei sender vil ikkje lenger forsvinne." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wachotsa mauthenga achoka. Mauthenga omwe amatumiza sadzachoka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਸੁਨੇਹੇ ਰੱਖਣ ਬੰਦ ਕਰ ਦਿੱਤੇ ਹਨ। ਇਨ੍ਹਾਂ ਦੇ ਭੇਜੇ ਸੁਨੇਹੇ ਹੁਣ ਡਿੱਗਣਗੇ ਨਹੀਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wyłączył(a) znikające wiadomości. Wysłane wiadomości nie będą już znikały." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ورک شوي پیغامونه بند کړي دي. هغه پیغامونه چې دوی یې لیږي نور به ورک نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desativou as mensagens temporárias. As mensagens que eles enviarem não desaparecerão mais." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desativou as mensagens que desaparecem. As mensagens que ele(a) enviar já não irão desaparecer." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a dezactivat funcția de mesaje temporare. Mesajele pe care le trimite nu vor mai dispărea." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} отключил(а) исчезающие сообщения. Сообщения, которые отправляет этот пользователь, больше не исчезнут." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio nestajuće poruke. Poruke koje pošalju više neće nestajati." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} අතුරුදහන් වන පණිවිඩ අක්‍රීය කර ඇත. ඔවුන් යවන පණිවිඩව තවදුරටත් අතුරුදහන් නොවේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vypol/a miznúce správy. Správy, ktoré posielajú, už nezmiznú." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je izključil_a izginjajoča sporočila. Sporočila, ki jih pošljejo, ne bodo več izginila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ka fikur mesazhet që zhduken. Mesazhet që ata dërgojnë nuk do të zhduken më." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је искључио нестајуће поруке. Поруке које пошаљу више неће нестати." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio/la nestajuće poruke. Poruke koje šalje više neće nestajati." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har stängt av försvinnande meddelanden. Meddelanden de sänder kommer inte längre att försvinna." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amezima ujumbe unaopotea. Ujumbe atumao hautapotea tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மறைவான தகவல் அனுப்பலை நிறுத்திவிட்டார். அவர் அனுப்பும் தகவல்கள் இனி காணாமல் போகாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} కనిపించని సందేశాలను ఆపివేశారు. వారు పంపిన సందేశాలు ఆధికంగా కనిపించవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้ปิดข้อความที่ลบตัวเองแล้ว ข้อความที่เขาส่งจะไม่หายไปอีกต่อไป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, kaybolan mesajları kapattı. Bu kullanıcının gönderdiği mesajlar artık kaybolmayacak." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} вимкнув зникаючі повідомлення. Повідомлення, які він/вона надсилає, більше не зникатимуть." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے غائب ہونے والے پیغامات کو بند کر دیا ہے۔ جو پیغامات وہ بھیجیں گے وہ اب غائب نہیں ہوں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yo'qolgan xabarlarni o'chirib qo'ygan. Ular yuborgan xabarlar endi yo'qolmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã tắt tin nhắn tự huỷ. Tin nhắn họ gửi sẽ không còn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ucime iimyalezo eziphelelwe lixesha. Imiyalezo ayisasekho na." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}已关闭阅后即焚功能。对方发送的消息将不再自动焚毁。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已關閉訊息銷毀功能。 他们发送的讯息将不再自動銷毀。" + } + } + } + }, + "disappearingMessagesTurnedOffGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het verdwynende boodskappe afgeskakel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قام/ت بإيقاف تشغيل الرسائل المختفية إيقاف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, yox olan mesajları söndürdü." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} disappearing messages timer off pe di ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} адключыў знікненне паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} изключи изчезващите съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} অদৃশ্য মেসেজ বন্ধ করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivat els missatges que desapareixen." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vypnul(a) mizející zprávy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wedi troi negeseuon diflannu i ffwrdd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har slået forsvinder beskeder fra." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat verschwindende Nachrichten deaktiviert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} απενεργοποίησε τα εξαφανιζόμενα μηνύματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has turned disappearing messages off." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} malŝaltis memviŝontatajn mesaĝojn.for." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivado los mensajes que desaparecen off." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha desactivado los mensajes desparecientes \"Activado\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} keeras kaduvad sõnumid välja." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}k mezu desagerkorrak desaktibatu ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قابلیت پیام های ناپدید شونده را خاموش کرده است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on poistanut katoavat viestit pois käytöstä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naka-off ni {name} ang mga nawawalang mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a désactivé les messages qui disparaissent." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya kashe saƙonnin bacewa off." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ביטל את ההודעות הנעלמות ב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने गायब संदेश बंद किए हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio poruke koje nestaju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kikapcsolta az eltűnő üzeneteket." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} անջատել է անհետացող հաղորդագրությունները անջատված:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah mematikan pesan menghilang off." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha disattivato i messaggi effimeri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}は、消えるメッセージをオフにしました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has turned disappearing messages off." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} បានបិទ សារបាត់ទៅវិញ បិទ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಮಾಯವಾಗುವ ಸಂದೇಶಗಳನ್ನು ಆಫ್ ಮಾಡಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 메시지 자동 삭제를 비활성화했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پەیام دەسڕێنەوەی ناچالاک کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} akyusizza Obubaka obukendeera off." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} išjungė išnykstančias žinutes." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} го исклучи исчезнување на пораките off." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} устгагч мессежүүдийг унтраалаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah menutup mesej hilang mati." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် ပျောက်မည့် မက်ဆေ့ချ်များကို ပိတ်လိုက်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har skrudd selvutslettende meldinger av." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले मेटिने सन्देशहरू बन्द गरेको छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft verdwijnende berichten uitgeschakeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har slått av forsvinnande meldinger av." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} watseka mauthenga otayika off." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਗੁਮ ਹੋ ਰਹੇ ਸੁਨੇਹੇ ਬੰਦ ਕਰ ਦਿੱਤੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wyłącza znikające wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د ورکیدو پیغامونه بند کړل." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desativou as mensagens que desaparecem off." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} transformou as mensagens em desaparecimento off." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a dezactivat funcția de mesaje temporare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} отключил(а) исчезающие сообщения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio nestajuće poruke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} අතුරුදහන් වන පණිවිඩ අක්‍රිය කර ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vypol miznúce správy vypnuté." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je izklopil_a izginjajoča sporočila off." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ka çaktivizuar mesazhet që zhduken." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је искључио поруке које нестају." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio/la nestajuće poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har stängt av försvinnande meddelanden av." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amezima ujumbe unaopotea off." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மறைந்த தகவலை ஆஃப் செய்து விட்டார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} కనుమరుగవుతున్న సందేశాలను ఆఫ్ చేశారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ปิดข้อความที่หายไป แล้ว." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaybolan mesajları kapattı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} зникні повідомлення вимкнув." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے غائب ہونے والے پیغامات بند کر دئیے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yo'qoladigan xabarlarni o‘chirib qo‘ydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã tắt các tin nhắn biến mất." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ukhubaze imiyalezo ephumayo engekho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}已将阅后即焚关闭。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 關閉 了訊息自動銷毀。" + } + } + } + }, + "disappearingMessagesTurnedOffYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het verdwynende boodskappe gedeaktiveer. Boodskappe wat jy stuur, sal nie meer verdwyn nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت أوقفت الرسائل المختفية. لم تعد الرسائل التي ترسلها تختفي." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yox olan mesajları söndürdünüz. Göndərdiyiniz mesajlar daha yox olmayacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār off kashān disappearing messages. Šumār wandan messages dr ig bī haleetān." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы адключылі знікальныя паведамленні. Паведамленні, якія вы адпраўляеце, больш не знікнуць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие изключихте изчезващи съобщения. Съобщенията, които изпращате, вече няма да изчезват." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি অফ অদৃশ্য মেসেজ বন্ধ করেছেন। মেসেজ আপনি পাঠাবেন তা আর অদৃশ্য হবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu desactivat els missatges que desapareixen. Els missatges que envieu ja no desapareixeran." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vypnuli jste mizející zprávy. Zprávy, které pošlete, již nebudou mizet" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych wedi troi i ffwrdd negeseuon sy'n diflannu. Ni fydd y negeseuon a anfonwch yn diflannu mwyach." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har slået fra forsvindende beskeder. Beskeder, du sender, forsvinder ikke længere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sie haben verschwindende Nachrichten deaktiviert. Nachrichten, die Sie senden, verschwinden nicht mehr." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς απενεργοποιήσατε τα εξαφανιζόμενα μηνύματα. Τα μηνύματα που θα στείλετε δε θα εξαφανίζονται πλέον." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You turned off disappearing messages. Messages you send will no longer disappear." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi malŝaltis memviŝontajn mesaĝojn. Mesaĝoj kiujn vi sendos, ne plu malaperos." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " desactivaste los mensajes que desaparecen. Los mensajes que envíes ya no desaparecerán." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has desactivado los mensajes que desaparecen. Los mensajes que envíes ya no desaparecerán." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina lülitasid välja kaduvad sõnumid. Nüüd saadetavad sõnumid ei kao enam." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk itzaltu dituzu desagertzen diren mezuak. Bidaltzen dituzun mezuak ez dira gehiago desagertuko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما پیام‌های ناپدیدشونده را خاموش کردید. پیام‌هایی که ارسال می‌کنید دیگر ناپدید نمی‌شوند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä poistit katoavat viestit. Lähettämäsi viestit eivät enää katoa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay pinatay ang mga naglalahong mensahe. Ang mga mensaheng ipapadala mo ay hindi na maglalaho." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez désactivé les messages éphémères. Les messages que vous envoyez ne disparaîtront plus." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti desactivaches as mensaxes de desaparición. As mensaxes que envíes non desaparecerán." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai ya kashe saƙonnin da suka ɓace. Saƙonnin da kuka aika ba za su ƙara ɓacewa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ביטלת הודעות נעלמות. הודעות שתשלח לא ייעלמו יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप ने गायब संदेशों को बंद कर दिया है। जो संदेश आप भेजते हैं, वे अब और नहीं गायब होंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste isključili poruke koje nestaju. Poruke koje šaljete više neće nestajati." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te kikapcsoltad az eltűnő üzeneteket. Az általad küldött üzenetek többé nem fognak eltűnni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք անջատել եք անջատել անհետացող հաղորդագրությունները: Ձեր ուղարկած հաղորդագրություններն այլևս չեն անհետանա:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda menonaktifkan pesan yang hilang. Pesan yang Anda kirim tidak akan hilang lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai disattivato i messaggi effimeri. I messaggi che invierai non scompariranno più." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "You消えるメッセージをオフにしました。送信されたメッセージは消えなくなります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ გამორთეთ ქრება შეტყობინებები. შეტყობინებები აღარ გაქრებათ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានបិទ ការលុបសារដោយស្វ័យប្រវត្តិ។ សារដែលអ្នកផ្ញើនឹងមិនបាត់អស់ទៀតទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಆಫ್ ಮಾಡಿದ ಸಂದೇಶಗಳು. ನೀವು ಕಳುಹಿಸಿದ ಸಂದೇಶಗಳು ಇನ್ನು ಮುಂದೆ ಮಾಯವಾಗುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 사라지는 메시지 기능을 끄셨습니다. 이제 보낸 메시지는 사라지지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te peyamên wendabûyî xebitî. Mesajên ku hûn dişînin dê êdî winda nebin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe waggyawo okusangula kwa messages. Messages zo zonna ezituusibwa zijeera." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs išjungėte dingstančias žinutes. Žinutės, kurias siunčiate, daugiau nedings." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu izslēdzi pazūdošās ziņas. Ziņas, ko sūtīsi, vairs nepazudīs." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие ги исклучивте исчезнувачките пораки . Пораките што ќе ги испратите нема да исчезнат повеќе." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та мессежүүдийг унтраасан . Таны илгээсэн мессежүүд дахин арилахгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mematikan disappearing messages. Mesej yang anda hantar tidak akan hilang lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် သည် ပိတ်ထားသော ပျောက်သွားမည့်မက်ဆေ့ချ်များကို ပိတ်လိုက်သည်။ သင်ပေးပို့သော မက်ဆေ့ချ်များမည်သည်မှပျောက်သွားမည်မဟုတ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du slo av forsvinnende meldinger. Meldinger du sender vil ikke lenger forsvinne." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले off आफै मेटिने सन्देशहरू बन्द गर्नुभयो। तपाईंले पठाएको सन्देश अब मेटिने छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft verdwijnende berichten uitgezet. Berichten die u verzendt zullen niet langer verdwijnen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du skrudde av tidsbegrensede beskjedar. Meldinger du sender vil ikkje lenger forsvinne." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mwatembenuza kutali mauthenga omwe amapezeka. Mauthenga omwe mwatumiza sadzachoka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂਬੰਦਕਰ ਦਿੱਤੀ ਨਾ ਗੈਰ ਰਹਿਣ ਵਾਲੀਆਂ ਸੁਨੇਹੇ। ਤੁਸੀਂ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਹੁਣ ਡਿੱਗਣ ਵਾਲੇ ਨਹੀਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty wyłączyłeś(-aś) znikające wiadomości. Wysłane wiadomości nie będą już znikały." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو ورک شوي پیغامونه بند کړل. هغه پیغامونه چې تاسو یې لیږئ نور به ورک نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você desativou as mensagens temporárias. Mensagens que você enviar não desaparecerão mais." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desativou as mensagens que desaparecem. As mensagens que enviar já não irão desaparecer." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai dezactivat funcția de mesaje temporare. Mesajele pe care le trimiți nu vor mai dispărea." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы отключили исчезающие сообщения. Отправленные вами сообщения больше не будут исчезать." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si isključio nestajuće poruke. Poruke koje pošalješ više neće nestajati." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ අතුරුදහන් වන පණිවිඩ අක්‍රීය කර ඇත.ඔබ යවන පණිවිඩව තවදුරටත් අතුරුදහන් නොවේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste vypnul/i miznúce správy. Správy, ktoré posielate, už nezmiznú." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste izklopili izginjajoča sporočila. Sporočila, ki jih pošljete, ne bodo več izginila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "J fikët mesazhet për zhdukje. Mesazhet që dërgoni nuk do të zhduken më." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте искључили нестајуће поруке. Поруке које пошаљете више неће нестати." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste isključili nestajuće poruke. Poruke koje šaljete više neće nestajati." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du stängde av försvinnande meddelanden. Meddelanden du sänder kommer inte längre att försvinna." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umezima ujumbe unaopotea. Ujumbe utakao tumwa hautapotea tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மறைவான தகவலை அணைத்துவிட்டீர்கள். அனுப்பும் தகவல்கள் இனி காணாமல் போகாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఆఫ్ కనిపించని సందేశాలను ఆపేశారు. మీరు పంపిన సందేశాలు ఆధికంగా కనిపించవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณปิดปิดข้อความที่หายไป ข้อความที่คุณส่งจะไม่หายไปอีกต่อไป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen kaybolan mesajları kapattın. Gönderdiğin mesajlar artık kaybolmayacak." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви вимкнули вимкнення зникнення повідомлень. Надіслані вами повідомлення більше не зникатимуть." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے غائب ہونے والے پیغامات کو بند کر دیا۔ آپ کے بھیجے گئے پیغامات اب غائب نہیں ہوں گے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz o'chirishni o'chirdingiz. Yuborgan xabarlaringiz endi yo'qolmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã tắt tin nhắn tự huỷ. Tin nhắn bạn gửi sẽ không còn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna ndibekhubekile off iimyalezo ezinyamalala. Imiyalezo endiyithumeleli ngayo ayisayi kunyamalala." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已将阅后即焚关闭。你发送的消息将不再自动焚毁。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉了訊息自動銷毀功能。你發送的訊息將不再自動銷毀。" + } + } + } + }, + "disappearingMessagesTurnedOffYouGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het verdwynende boodskappe afgeskakel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قمت بإيقاف تشغيل الرسائل المختفية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yox olan mesajları söndürdünüz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما disappearing messages timer off pe di ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы выключылі паведамленні, якія знікаюць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие изключихте изчезващите съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি অদৃশ্য মেসেজ বন্ধ করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu desactivat els missatges que desapareixen." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy jste vypnuli mizející zprávy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi wedi troi oddi negeseuon diflannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har slået forsvinder beskeder fra." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast verschwindende Nachrichten deaktiviert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς απενεργοποιήσατε τα εξαφανιζόμενα μηνύματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You turned off disappearing messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi malŝaltis memviŝontatajn mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " desactivaste los mensajes que desaparecen." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has desactivado los mensajes que desaparecen." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie keerasite kaduvad sõnumid välja." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk mezu desagertzen direnak desgaitu dituzu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما پیام‌های حذف‌شونده را خاموش کردید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä poistit katoavat viestit käytöstä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay tinanggal ang naglahong mga mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez désactivé·e les messages éphémères." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti desactivaches as mensaxes de desaparición." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku kun kashe saƙonnin bacewa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את כיבית הודעות שנעלמות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप ने गायब होने वाले संदेश बंद कर दिए हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste isključili poruke koje nestaju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te kikapcsoltad az eltűnő üzeneteket." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք անջատել եք անջատել անհետացող հաղորդագրությունները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda menonaktifkan pesan yang hilang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai disattivato i messaggi effimeri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた は消えているメッセージを オフにしました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ turned off disappearing messages." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក បានបិទ សារបាត់ត្រលប់វិញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮಾಯವಾಗುವ ಸಂದೇಶಗಳನ್ನು ಆಫ್ ಮಾಡಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 자동 삭제 메시지를 비활성화 했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ پەیام دەسڕێنەوەی ناچالاک کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe akuletera off Obubaka obukendeera." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs išjungėte išnykstančias žinutes." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие исклучивте исчезнувачки пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та цуцаллаа алдагдах мессежийг." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mematikan mesej hilang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် သည် ပျောက်မည့် မက်ဆေ့ချ်များကို ပိတ်လိုက်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du slo av forsvinnende meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं ले अफ गर्नुभयो अन्तर्हित सन्देशहरू।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft zelf-wissende berichten uitgeschakeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du skrudde av forsvinnande meldingar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mwatseketsa uthenga wosowa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਗੁਮ ਹੋ ਰਹੇ ਸੁਨੇਹੇ ਬੰਦ ਕਰ ਦਿੱਤੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyłączono znikające wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو بند يې کړل ورکيدو پیغامونه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você desativou o desaparecimento de mensagens." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você desativou as mensagens desaparecidas." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai dezactivat mesajele care dispar." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы выключили исчезающие сообщения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste isključili nestajuće poruke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ බැහැර වීමෙහි පණිවිඩ මකා දැමුවේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste vypli miznúce správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste izklopili izginjajoča sporočila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju keni çaktivizuar mesazhet që zhduken." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте искључили искључили поруке које нестају." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste isključili nestajuće poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du stängde av försvinnande meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umezima ujumbe unaopotea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மறைந்த தகவலை ஆஃப் செய்துவிட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు కనుమరుగవుతున్న సందేశాలను ఆఫ్ చేశారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ปิด ข้อความที่หายไป แล้ว." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen kaybolan mesajları kapattın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви вимкнули вимкнення зникнення повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے پیغامات غائب ہونا بند کر دیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yo'qoladigan xabarlarni oʻchirdingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã tắt tin nhắn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wena uvule ukhubaze izithunywa ezitshabalalayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已将阅后即焚关闭。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 已關閉訊息自動銷毀。" + } + } + } + }, + "disappearingMessagesTypeRead" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "lees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "القراءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "oxundu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خواند" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "прачытана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "прочетено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়া" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "llegit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "přečteno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "darllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "læst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "gelesen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "ανάγνωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "read" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "legita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "leído" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "leído" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "loe" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "irakurrita" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خوانده شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "luettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "nabasa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "lu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "lida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "karanta" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקרא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढ़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "pročitano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "olvasva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "կարդացած է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "baca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "letto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "読むか" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაკითხული" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "خوێندن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "kisomebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "perskaityta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "izlasīts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "прочитано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "уншсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "baca" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ထားသော" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "lest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढिएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "gelezen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "lese" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "werenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "padhia" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "przeczytano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوستل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "lido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "lida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "citit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "прочитано" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "pročitaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "prečítané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "prebral(-a)" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "lexo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "прочитај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "pročitano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "läst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "soma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదవండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อ่านแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "okundu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "прочитано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "o'qilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "đã đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "ifundiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "阅读" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已讀" + } + } + } + }, + "disappearingMessagesTypeSent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أُرسلت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "göndərildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا گیا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "даслана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "изпратено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠানো হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "odesláno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "anfonwyd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "sendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "στάλθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "sent" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "sendita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "saadetud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "bidalia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "lähetetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "na-send" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "envoyé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "an aiko" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נשלח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजा गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "poslano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "küldve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "ուղարկված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "terkirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "inviato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაგზავნილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಿದ್ದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보냄" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نارد" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiriddwamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išsiųsta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "nosūtīts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "испратено" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "илгээгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "dihantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့ထားပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "sendt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाइएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "verzonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "sendt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "kachashka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਿਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "wysłano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لېږل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "enviado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "trimis" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "отправлено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "poslano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යවා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "odoslané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "poslano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "dërguar më" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "послато" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "poslata" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "skickat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "imetumwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపిన" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "gönderildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "надіслано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "jo'natildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "đã gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "sithumele" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已傳送" + } + } + } + }, + "disappearingMessagesUpdated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} het verdwynende boodskap instellings opgedateer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} قام بتحديث إعدادات الرسائل المختفية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} yox olan mesaj ayarlarını güncəllədi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} پیامات از سر نوئی کردی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} абнавіў(ла) налады знікаючых паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} актуализира настройките на изчезващите съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} অদৃশ্য বার্তার সেটিংস আপডেট করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ha actualitzat la configuració de missatges efímers." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} aktualizoval nastavení mizejících zpráv." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} diweddarwyd gosodiadau negeseuon diflanedig." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} opdaterede indstillingerne for forsvindende beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} hat die Einstellungen für verschwindende Nachrichten aktualisiert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ενημέρωσε τις ρυθμίσεις των εξαφανιζόμενων μηνυμάτων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} updated disappearing message settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} malŝaltis malaperantajn mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} actualizó los ajustes de mensajes que desaparecen." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} actualizó la configuración de los mensajes que desaparecen." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} uuendas kaduvate sõnumite seadeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}(e)k mezu desagerkorren ezarpenak eguneratu ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} تنظیمات پیام‌های ناپدیدشونده را به‌روز کرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} päivitti katoavien viestien asetukset." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ay na-update ang mga settings ng mga nawawalang mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} a mis à jour les paramètres des messages éphémères." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} actualizou a configuración das mensaxes que se desvanecen." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ya sabunta saitunan saƙonnin da suka ɓace." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} עדכן/ה את הגדרות ההודעות הנעלמות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ने गायब होने वाले संदेश सेटिंग्स को अपडेट किया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} je ažurirao postavke za nestajuće poruke." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} frissítette az eltűnő üzenetek beállításait." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}-ը թարմացրել է անհետացող հաղորդագրությունների կարգավորումները։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} memperbarui pengaturan pesan menghilang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ha aggiornato le impostazioni dei messaggi effimeri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}が消えるメッセージの設定を更新しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} განაახლეს აღმომქველი შეტყობინებების დროის პარამეტრები." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} បានធ្វើការកំណត់សារបាត់ទៅវិញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ಮಾಯವಾಗುವ ಸಂದೇಶಗಳ ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}이(가) 사라지는 메시지 설정을 업데이트했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} پەیوەندەکانی نامەی ناپەیدا نوێکردەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} akwasa Disappearing Messages settings." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ອັບເດດການຕັ້ງຄ່າຂໍ້ຄວາມທີ່ຫາຍໄປ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} atnaujino išnykstančių žinučių nustatymus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} atjaunināja gaistošo ziņojumu iestatījumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ги ажурираше поставките за пораки што исчезнуваат." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} Disappearing message тохиргоонуудыг шинэчилсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} telah mengemaskini tetapan mesej menghilang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} သည် ပျောက်မဲ၏ မက်ဆေ့ခ်ျများကို ပြင်ဆင်ချိန်ထားလှစခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} oppdaterte innstillingene for forsvinnende meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ले आफै मेटिने सन्देश सेटिङहरू अपडेट गर्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} heeft de instellingen voor zelf-wissende berichten bijgewerkt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} oppdaterte innstillingane for forsvinnande meldingar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} asintha makhazikitsidwe a anthu otayikawo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ਨੇ ਗ਼ਾਇਬ ਦੇ ਸੁਨੇਹੇ ਸੈਟਿੰਗਾਂ ਨੂੰ ਅਪਡੇਟ ਕੀਤਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} zaktualizował(a) ustawienia znikających wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} هغې ناپسې پیغامونه تازه کړل." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} atualizou as configurações das mensagens temporárias." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} atualizou as definições de mensagens que desaparecem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} a actualizat setările pentru mesajele temporare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} обновил(а) настройки исчезающих сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} je ažurirao postavke nestajućih poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} අතුරුදහන් වන පණිවිඩ සැකසුම් යාවත්කාලීන කළා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} aktualizoval nastavenia miznúcich správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} je posodobil_a nastavitve izginjajočih sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} përditësoi rregullimet e mesazheve zhdukëse." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} је ажурирао подешавања нестајућих порука." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} ažurirao podešavanja poruka koje nestaju." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} uppdaterade försvinnande meddelandeinställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} amesasisha mipangilio ya ujumbe unaotoweka." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} மறையும் தகவல் அமைப்புகளை புதுப்பித்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} కనుమరుగైపోతున్న సందేశాల అమరికలను నవీకరించారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} อัปเดตการตั้งค่าข้อความที่ลบตัวเอง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}, kaybolan mesaj ayarlarını güncelledi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} оновив налаштування зникаючих повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} نے غائب ہونے والے پیغامات کی ترتیبات کو اپ ڈیٹ کیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} yo'qoladigan xabar sozlamalarini yangiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} đã cập nhật cài đặt tin nhắn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} uhlaziye useto lwezithunywa ezinyamalalayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name}更改了阅后即焚消息设置。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{admin_name} 更新了消失訊息的設定。" + } + } + } + }, + "disappearingMessagesUpdatedYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het verbygaande boodskapinstellings opgedateer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت قمت بتحديث إعدادات الرسائل المختفية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yox olan mesaj ayarlarını güncəllədiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār kashān disappearing message setting." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы абнавілі параметры знікальных паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие актуализирахте настройките за изчезващите съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি অদৃশ্য মেসেজ সেটিংস আপডেট করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu has actualitzat la configuració dels missatges que desapareixen." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizovali jste nastavení mizejících zpráv." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych wedi diweddaru'r gosodiadau neges diflannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du opdaterede indstillinger for forsvindende beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast die Einstellungen für verschwindende Nachrichten aktualisiert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς ενημερώσατε τις ρυθμίσεις εξαφανιζόμενων μηνυμάτων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You updated disappearing message settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ĝisdatigis memviŝontajn mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " actualizaste la configuración de los mensajes que desaparecen." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has actualizado la configuración de desaparición de mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina uuendasid kaduvate sõnumite seadeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk ezarpenak eguneratu dituzu mezu desagertzeekin." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تنظیمات پیام‌های ناپدید شونده را به‌روزرسانی کردید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä päivitit katoavien viestien asetukset." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay na-update ang mga setting ng naglalahong mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez mis à jour les paramètres des messages éphémères." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti actualizaches os axustes de desaparición de mensaxes." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku sun sabunta saitunan saƙonnin ɓacewa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה עדכנת את הגדרות ההודעות הנעלמות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप ने गायब संदेश सेटिंग्स को अपडेट किया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažurirali ste postavke nestajućih poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te frissítetted az eltűnő üzenetek beállításait." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք թարմացրիք անհետացող հաղորդագրությունների կարգավորումները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda memperbarui pengaturan pesan menghilang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai aggiornato le impostazioni dei messaggi effimeri." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "You は消えるメッセージの設定を更新しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ განაახლეთ ქრება შეტყობინებების პარამეტრები." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានធ្វើបច្ចុប្បន្នភាពការកំណត់ Disappearing Messages។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮಾಯವಾಗುವ ಸಂದೇಶದ ಸೆಟ್ಟಿಂಗ್‌ಗಳು ನವೀಕರಿಸಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 사라지는 메시지 설정을 업데이트했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ درووستکردنی پەیامی بەڕێوەچوو دەستکاریکرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wakyusa ebitange okutuusa messages okusangula." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານທຼັບປະມານການດູແລຫາຍໄປຂອງຂໍ້ຄວາມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs atnaujinote dingstančių žinučių nustatymus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu atjaunināji pazūdošo ziņu iestatījumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие ги ажуриравте поставките за исчезнувачките пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та мессежүүдийг арилгах тохиргоог шинэчилсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mengemaskini tetapan disappearing message." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် သည် ပျောက်သွားမည့်မက်ဆေ့ချ်ဆက်တင်များကို အပ်ဒိတ်လုပ်ပြီးပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du oppdaterte innstillinger for forsvinnende meldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले आफै मेटिने सन्देशहरू सेटिंग अद्यावधिक गर्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft instellingen voor verdwijnende berichten bijgewerkt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du oppdaterte innstillingene for tidsbegrensede beskjeder." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mwasintha zosunga uthenga zoyambitsanso mauthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂਨਾ ਗੈਰ ਸੁਨੇਹੇ ਸੁਨੇਹੇ ਸੈਟਿੰਗ ਦਾ ਨਵੀਨੀਕਰਨ ਕੀਤਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaktualizowano ustawienia znikających wiadomości. Wysłane wiadomości nie będą już znikały." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو د ورک شوي پیغام ترتیبات تازه کړل." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você atualizou as configurações de mensagens temporárias." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você atualizou as definições de mensagens que desaparecem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : " Ai actualizat setările pentru mesaje temporare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы изменили настройки исчезающих сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si ažurirao postavke nestajućih poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ අතුරුදහන් වන පණිවිඩ සැකසුම් යාවත්කාලීන කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste aktualizovali nastavenia miznúcich správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste posodobili nastavitve za izginjajoča sporočila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju përditësuat cilësimet e mesazheve për zhdukje." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте ажурирали подешавања нестајућих порука." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste ažurirali postavke nestajućih poruka." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du uppdaterade inställningarna försvinnande meddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umesasisha mipangilio ya ujumbe unaopotea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மறைவான தகவல் அமைப்புகளை புதுப்பித்தீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు కనుమరుగవుతున్న సందేశాల అమరికలను నవీకరించారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ อัพเดตการตั้งค่าข้อความที่ลบตัวเอง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen kaybolan mesaj ayarlarını güncelledin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви були запрошені приєднатися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے غائب ہونے والے پیغامات کی ترتیبات کو اپ ڈیٹ کیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yo'qolgan xabar sozlamalarini yangiladingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã cập nhật cài đặt tin nhắn tự huỷ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna uhlaziywe iisetingi zemiyalezo enyamalalayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改了阅后即焚消息设置。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 更新了訊息總動銷毀功能設定。" + } + } + } + }, + "dismiss" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwerp" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تجاهل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rədd et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسوخ کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адхіліць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отхвърли" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বাতিল করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ometre" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odmítnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwrthod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afvis" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwerfen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παράλειψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dismiss" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descartar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descartar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loobu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baztertu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hylkää" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwag ituloy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fermer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omitir" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yi watsi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खारिज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbaci" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elvetés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փակել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batalkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiudi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "キャンセル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუქმება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ច្រានចោល" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತ್ಯಜಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "취소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiki kiko" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປະຘັດປະເລືອກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panaikinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noraidīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одбиј" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပယ်ဖျက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avvis" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खारेज गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avvis" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੱਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odrzuć" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له پامه غورځول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ignorar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ignorar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respinge" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрыть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbaci" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opusti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одбаци" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odbaci" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avfärda" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவிர்க்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "విస్మరించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reddet" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відхилити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوڑ دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rad etish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ qua" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahla" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "放弃" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉" + } + } + } + }, + "displayNameDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit kan jou regte naam wees, 'n alias, of enigiets anders wat jy wil hê — en jy kan dit enige tyd verander." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يمكن أن يكون اسمك الحقيقي، أو لقب، أو أي شيء آخر تحبه — ويمكنك تغييره في أي وقت." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, əsl adınız, ləqəbiniz və ya istədiyiniz hər hansısa bir şey ola bilər — və istədiyiniz zaman dəyişə bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کا اصلی نام، ایک جعلی نام، یا کچھ بھی کوئی اور ہو سکتا ہے — اور آپ اسے کسی بھی وقت تبدیل کر سکتے ہیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта можа быць ваша сапраўднае імя, псеўданім або што заўгодна іншае — вы можаце змяніць яго ў любы час." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Може да бъде истинското ви име, псевдоним или нещо друго, което харесвате - и може да го промените по всяко време." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি আপনার আসল নাম হতে পারে, একটি উপনাম বা অন্য কিছু যা আপনি পছন্দ করেন — এবং আপনি যেকোন সময় এটি পরিবর্তন করতে পারেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pot ser el teu nom real, un àlies o el que vulguis, i el pots canviar en qualsevol moment." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Může to být vaše skutečné jméno, přezdívka nebo cokoli jiného — a můžete ho kdykoli změnit." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gall fod dy enw go iawn, alias, neu unrhyw enw arall wyt ti’n ei hoffi — ac fe elli di ei newid unrhyw bryd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det kan være dit rigtige navn, et alias eller noget andet, du kan lide — og du kan ændre det når som helst." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dies kann dein richtiger Name, ein Alias oder irgendetwas anderes sein — und du kannst ihn jederzeit ändern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μπορεί να είναι το πραγματικό σας όνομα, ένα ψευδώνυμο ή οτιδήποτε άλλο σας αρέσει - και μπορείτε να το αλλάξετε οποιαδήποτε στιγμή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "It can be your real name, an alias, or anything else you like — and you can change it at any time." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĝi povas esti via vera nomo, kaŝnomo, aŭ io ajn alia, kion vi ŝatas — kaj vi povas ŝanĝi ĝin iam ajn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puede ser su nombre real, un alias o cualquier otra cosa - y puede cambiarlo cuando quiera." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puede ser su nombre real, un alias o cualquier otra cosa — y puede cambiarlo cuando quiera." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See võib olla sinu pärisnimi, varjunimi või ükskõik mis muu sulle meeldib — ja saad seda igal ajal muuta." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure benetako izena, ezizen bat edo nahi duzun beste edozein izen izan daiteke - eta edozein momentutan aldatu dezakezu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "می‌تواند نام واقعی شما، یک نام مستعار یا هر چیز دیگری باشد که دوست دارید — و شما می‌توانید آن را در هر زمان تغییر دهید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimi voi olla oikea nimesi, salanimi tai mikä tahansa muu — ja voit vaihtaa sen milloin tahansa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puwede itong iyong totoong pangalan, alias, o ibang gusto mo — at puwede mo itong baguhin anumang oras." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cela peut être votre vrai nom, un alias ou autre — et vous pouvez le changer à tout moment." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ser o teu nome real, un alias ou calquera outro nome que che guste — e podes cambialo en calquera momento." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zai iya zama sunanka na ainihi, suna na ɓoye, ko wani abu dabam da kake so - kuma zaka iya canza shi a kowane lokaci." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "זה יכול להיות שמך האמיתי, כינוי, או כל דבר אחר שתרצה — ותמיד תוכל לשנות אותו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह आपका असली नाम, उपनाम, या कुछ और हो सकता है - और आप इसे कभी भी बदल सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Može biti vaše pravo ime, nadimak ili bilo što drugo — a možete ga promijeniti u bilo kojem trenutku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez lehet a valódi neved, egy álnév, vagy bármi más, amit szeretnél — és bármikor megváltoztathatod." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դա կարող է լինել ձեր իրական անունը, ծածկանունը կամ որևէ այլ բան, և դուք կարող եք այն փոխել ցանկացած պահի:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hal ini bisa berupa nama asli Anda, alias, atau apa pun yang Anda suka — dan Anda dapat mengubahnya kapan saja." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Può essere il tuo vero nome, un alias, o qualsiasi cosa ti piaccia — e puoi cambiarlo quando vuoi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "それは本当の名前、エイリアス、または好きなものにすることができます — そしていつでもそれを変更できます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს შეიძლება იყოს თქვენი ნამდვილი სახელი, ფსევდონიმი ან სხვა სასურველი სახელი — და შეგიძლიათ ნებისმიერ დროს შეცვალოთ იგი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "វាអាចជាឈ្មោះដែលជាការពិតរបស់អ្នក ឬឈ្មោះត្រួសត្រាយ ឬអ្វីដែលអ្នកចូលចិត្ត - និងអ្នកអាចផ្លាស់ប្តូរជានិច្ចកាល។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇದು ನಿಮ್ಮ ನಿಜವಾದ ಹೆಸರು, ಒಂದು ಅಲಿಯಾಸ್ ಅಥವಾ ನೀವು ಬೇಕಾದ ಬೇರೆ ಯಾವುದಾ ಆಗಿರಬಹುದು. ಮತ್ತು ನೀವು ಅದನ್ನು ಯಾವಾಗ ಬೇಕಾದರೂ ಬದಲಾಯಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실제 이름, 별명 또는 원하는 다른 이름을 입력하세요. 언제든지 변경할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وه شاملە تۆ ناوایەتی شەخصیت، پایەی یابێت، یابیش بێ، و توانییتی ھەژندگیرتار کورتەبیت هەرکەی." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kiyinza kubeera erinnya lyo ddala, oba ky'okolaba kino fayiro y'omuntu goge okkoba. Era osobola okukikyusa ekiseera kyonna." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai gali būti jūsų tikras vardas, slapyvardis ar kas nors kito — ir visada galite jį pakeisti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tas var būt jūsu īstais vārds, pseidonīms vai jebkas cits, kas jums patīk — un jūs to varat mainīt jebkurā laikā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тоа може да биде вашето вистинско име, псевдоним или било што друго што сакате - а можете да го промените во било кое време." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үнэн нэрээ, хочоо эсвэл хүссэн бусад нэрээ оруулж болно — мөн энэ нэрээ дуртай зүйлээрээ солих боломжтой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ia boleh jadi nama sebenar anda, alias, atau apa sahaja yang anda suka — dan anda boleh menukarnya pada bila-bila masa." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စစ်မှန်သော နာမည်၊ နာမည်မဖော်သင်ချင်သောအမည် သို့မဟုတ် သင်နှစ်သက်သည့် အခြားအရာများကို ဖြစ်နိုင်သည် — သင်သည် မည်သည့်အချိန်မှာမဆို ဤအမည်ကို ပြောင်းနိုင်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det kan være ditt virkelige navn, et alias eller noe annet du liker — og du kan endre det når som helst." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो तपाईंको वास्तविक नाम, उपनाम, वा तपाईंलाई जस्तोसुकै पनि हुन सक्छ — र तपाईं यसलाई कुनै पनि समय परिवर्तन गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het kan uw echte naam zijn, een alias, of iets anders wat u leuk vindt — en u kunt het op elk moment wijzigen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det kan vera ditt ekte namn, eit alias, eller noko anna du likar — og du kan endre det når som helst." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itha kukhala dzina lenileni, dzina lina, kapena chilichonse chomwe mungakonde - ndipo mungathe kuchisintha nthawi iliyonse." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਤੁਹਾਡਾ ਅਸਲੀ ਨਾਮ, ਇੱਕ ਉਪਨਾਮ ਜਾਂ ਕੋਈ ਹੋਰ ਵੀ ਹੋ ਸਕਦਾ ਹੈ - ਅਤੇ ਤੁਸੀਂ ਇਸਨੂੰ ਕਿਸੇ ਵੀ ਸਮੇਂ ਬਦਲ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Może to być Twoje prawdziwe imię, pseudonim lub cokolwiek innego – nazwę możesz zmienić w dowolnym momencie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا کیدای شي ستاسو اصلي نوم وي، یو مستعار نوم، یا بل هر څه چې تاسو یې غواړئ - او تاسو کولی شئ په هر وخت کې یې بدل کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ser seu nome real, um apelido ou qualquer outra coisa que você goste — e você pode mudá-lo a qualquer momento." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ser o seu nome, uma alcunha, ou qualquer coisa que goste — e pode ser alterado a qualquer momento." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poate fi numele tău real, un alias sau orice altceva dorești — și îl poți schimba oricând." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это может быть ваше настоящее имя, псевдоним или что-нибудь другое, и вы сможете изменить его в любой момент." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "To može biti vaše pravo ime, nadimak ili bilo što drugo što vam se sviđa - i možete ga promijeniti u bilo kojem trenutku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ සැමියාගේ නම, තවත් නමක් හෝ ඔබ කැමති වෙනත් කුමක් හෝ - සහ ඔබට යම් කාලයක් සඳහා එය වෙනස් කළ හැකිය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Môže to byť vaše skutočné meno, prezývka alebo čokoľvek iné - a môžete ho kedykoľvek zmeniť." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To je lahko vaše pravo ime, vzdevek ali karkoli drugega vam je všeč — in to lahko kadar koli spremenite." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mund të jetë emri juaj i vërtetë, pseudonim, ose çdo gjë tjetër që ju pëlqen - dhe mund ta ndryshoni në çdo kohë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можете користити своје право име, псеудоним или било шта друго што вам се свиђа — и можете га променити у било ком тренутку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "To može biti vaše pravo ime, pseudonim ili bilo šta drugo što želite — i možete ga promeniti u bilo kom trenutku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det kan vara ditt riktiga namn, ett alias eller vad du än föredrar — och du kan ändra det när som helst." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inaweza kuwa jina lako halisi, jina bandia, au kitu kingine ukipendacho - na unaweza kubadilisha wakati wowote." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அது உங்களுடைய உண்மையான பெயர், புனைப்பெயர் அல்லது நீங்கள் விரும்புகின்ற ஏதும் இருக்கக்கூடும் — மற்றும் எந்த நேரமும் அதை மாற்றியமைக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అది మీ వాస్తవ పేరు, ఒక ముద్ర పేరు లేదా మీకు ఇష్టమైన మరేదైనా కావచ్చు — మరియు మీరు దానిని ఎప్పుడైనా మార్చుకోచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "มันอาจจะเป็นชื่อจริง นามแฝง หรืออะไรก็ได้ที่คุณชอบ — และคุณสามารถเปลี่ยนได้ทุกเมื่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gerçek adınız, takma adınız veya istediğiniz herhangi bir şey olabilir - ve istediğiniz zaman değiştirebilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це може бути ваше справжнє ім'я, псевдонім або щось інше, що вам подобається — і ви зможете це змінити в будь-який час." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کا اصل نام، عرف یا کچھ بھی ہو سکتا ہے — اور آپ اسے کسی بھی وقت تبدیل کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizning haqiqiy ismingiz, taxallus yoki boshqasi bo'lishi mumkin — va siz uni istalgan vaqtda o'zgartirishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều này có thể là tên thật của bạn, một biệt danh, hoặc bất kỳ cái gì bạn thích — và bạn có thể thay đổi nó bất cứ lúc nào." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingaba lingaba ligama lakho lokwenyani, igama elithi eli okanye elinye into oyithandayo — ungaliyitshintsha ngawo nawuphi na umzuzu." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "它可以是您的真名、化名或任何您喜欢的内容——并且您可以随时进行更改。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "它可以是您的真名、別名或任何您喜歡的名字—並且可以隨時更改。" + } + } + } + }, + "displayNameEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou vertoonnaam in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ادخل اسم العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran adınızı daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا ڈسپلے نام درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце імя для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете име за показване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার প্রদর্শন নাম লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escriu el nom a mostrar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte vaše zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch eich enw arddangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast dit visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gib deinen Anzeigenamen ein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε το όνομα εμφάνισής σας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter your display name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu montrotan nomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingresa un nombre para mostrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingresa un nombre para mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestage kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu zure ikusizko izena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام نمایشی خود را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglagay ng display name mo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez votre nom d'affichage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o seu nome para mostrat" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan nuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן שם משתמש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिस्प्ले नाम डालें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a felhasználónevedet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք ցուցադրվող անունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama tampilan Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci il nome da visualizzare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示名を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ თქვენი ეკრანული სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូលឈ្មោះបង្ហាញរបស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪ್ರದರ್ಶನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시될 이름을 입력하세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی دروستکەری خاوەندی خۆ بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza erinnya ly'okulabikako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນຊື່ທີ່ສະແດງຂອງທ່ານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite pasirinktą rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadi savu atainojamo vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете име за прикажување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өөрийн харагдах нэрийг оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama paparan anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display အမည်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn navnet som skal vises" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको प्रदर्शन नाम प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer je weergavenaam in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn visningsnamnet ditt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani dzina lanu lowonetsera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਡਿਸਪਲੇ ਨਾਂ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź swoją nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو نمایش نوم ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite seu nome de exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza um nome de utilizador" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți numele de afișare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi svoje prikazano ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ සංදර්ශක නාමය ඇතුලත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendosni emrin e paraqitjes tuaj" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите ваше име за приказ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite vaše ime za prikaz" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ditt visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka jina la kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் காட்சி பெயரை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ప్రదర్శన పేరును ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนชื่อที่ใช้แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünecek adınızı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть ім'я для показу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا ڈسپلے نام درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey nomini kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập tên hiển thị của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa igama lakho lokuboniswa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入您想显示的名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入顯示名稱" + } + } + } + }, + "displayNameErrorDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer 'n vertoon naam in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إدخال اسم العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən bir ekran adı daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی ایک نمایش نام ڈالیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце імя для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете показвано име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি প্রদর্শন নাম লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please pick a display name" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zadejte zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch enw arddangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg venligst et visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib einen Anzeigenamen ein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισαγάγετε ένα όνομα εμφάνισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter a display name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu enigi vidigan nomon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingresa un nombre para mostrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elige un nombre para mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun valige kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu erakutsi izena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً یک نام نمایشی وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ng display name" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez choisir un nom d'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce un nome de pantalla" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan nuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא בחר את שם המשתמש שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया एक डिस्प्ले नाम चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy felhasználónevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք մուտքագրել ցուցադրվող անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama yang ditampilkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli il nome da visualizzare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示名を選択してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შესული სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមជ្រើសរើសឈ្មោះបង្ហាញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಒಂದು ಪ್ರದರ್ಶನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시될 이름을 입력해주세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ ناوەکی فرمێ لە پەیامیەکان کە ناپەیامی بکەن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba linnya lyo ery’okwenyiga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite pasirinktą rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, ievadi atainojamo vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете прикажано име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн нэрээ оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan nama paparan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြသမည့်အမည် ရိုက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn et visningsnavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया एक प्रदर्शन नाम प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer een weergavenaam in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn navnet som skal vises" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani dzina losonyeza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਇੱਕ ਡਿਸਪਲੇ ਨਾਮ ਡਾਲੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ ښکاره نوم دننه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um nome de exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, insira um nome de exibição" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți numele care va fi afișat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, выберите отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite prikazano ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර සංදර්ශක නාමයක් ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoľte prosím zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi shkruani një emër të paraqitjes." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите име за приказ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite vaš nadimak." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen ange ett visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka jina la kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காட்சி பெயரை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి ప్రదర్శన పేరు ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดกรอกชื่อที่ใช้แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen bir görünen ad girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, виберіть ім'я, що показуватиметься" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم ایک ڈسپلے نام درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, displey nomini kiriting" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng chọn một tên hiển thị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa igama lokubonisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入显示名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入一個顯示名稱" + } + } + } + }, + "displayNameErrorDescriptionShorter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer 'n korter vertoon naam in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إدخال اسم عرض أقصر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən daha qısa bir ekran adı daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی ایک مختصر نمایش نام ڈالیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце карацейшае імя для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете по-кратко показвано име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দয়া করে একটি ছোট প্রদর্শন নাম লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trieu un nom a mostra més curt, per favor." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zadejte kratší zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch enw arddangos byrrach" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg venligst et kortere visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib einen kürzeren Anzeigenamen ein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ επιλέξτε ένα μικρότερο όνομα εμφάνισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter a shorter display name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu elekti plej mallongan vidigan nomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elige un nombre para mostrar más corto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elige un nombre para mostrar más corto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun valige lühem kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu izen laburrago bat" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا نام نمایشی کوتاه‌تری انتخاب کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä lyhyempi näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakipili ng mas maikling display name" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez choisir un nom d'utilisateur plus court" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce un nome de pantalla máis curto, por favor" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan nuni wanda ya fi guntu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא בחר שם משתמש קצר יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया एक छोटा डिसप्ले नाम चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite kraće ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy rövidebb felhasználónevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ընտրել կարճ անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama yang lebih pendek" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci un nome più breve" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "短い表示名を選択してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შესული სახელი მოკლე იყოს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមជ្រើសរើសឈ្មោះបង្ហាញដែលខ្លីជាងមុន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಒಂದು ಕಿರು ಪ್ರದರ್ಶನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "짧게 표시될 이름을 선택하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ ناوەکی فرمێ بکە و دەبینە پەیامیەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba linnya ery’okwenyiga etono" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite trumpesnį rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, izvēlies īsāku atainojamo vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете пократко прикажано име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн нэрээ богиносгоно уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan nama paparan lebih pendek" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျေးဇူးပြု၍ ပိုတိုသော ပြသမည့်အမည်ကို ရွေးချယ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst velg et kortere visningsnavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया छोटो प्रदर्शन नाम प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies een kortere weergavenaam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst velg et kortere visningsnamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani dzina losonyeza lomwe lili lalifupi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਇੱਕ ਛੋਟਾ ਡਿਸਪਲੇ ਨਾਮ ਡਾਲੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź krótszą nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ لنډ شوی ظاهر نوم دننه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um nome de exibição mais curto" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um nome mais curto" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să alegeți un nume mai scurt" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, выберите более короткое отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite kraće prikazano ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර කෙටි සංදර්ශක නමක් ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoľte prosím kratšie zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite krajše prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjedh një emër më të shkurtër të paraqitjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Молимо вас да изаберете краће приказно име" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite kraći nadimak." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen välj ett kortare visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali chagua jina fupi kidogo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அதிக நேரம் இடைநிலையில் உள்ள உங்கள் புதிய பாடிகளின் இணைய இனைப்பு." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి చిన్న ప్రదర్శన పేరు ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขอเลือกชื่อสั้นกว่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen daha kısa bir görünen ad girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, оберіть коротше ім'я, що показуватиметься" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم ایک چھوٹا ڈسپلے نام درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, qisqaroq displey nomini kiriting" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng chọn tên hiển thị ngắn hơn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa igama elifutshane lokubonisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入较短的显示名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請選擇一個較短的名稱" + } + } + } + }, + "displayNameErrorNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ons kon nie jou vertoonnaam laai nie. Voer asseblief 'n nuwe vertoonnaam in om voort te gaan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم نتمكن من تحميل اسم العرض الخاص بك. الرجاء إدخال اسم عرض جديد للاستمرار." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran adınızı yükləyə bilmədik. Davam etmək üçün lütfən yeni bir ekran adı daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما په نامي نمے بار نیکت ناه‌بی۔ مہربانی بیہ اینیگ نامہ نوی نمام بیت لکھت۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы не змаглі загрузіць ваша імя адлюстравання. Калі ласка, увядзіце новае імя адлюстравання, каб працягнуць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можахме да заредим вашето име за показване. Моля, въведете ново име за показване, за да продължите." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to load your display name. Please enter a new display name to continue." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hem pogut carregar el vostre nom de pantalla. Introduïu un nou nom de pantalla per continuar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se načíst vaše zobrazované jméno. Zadejte nové zobrazované jméno pro pokračování." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd llwytho eich enw arddangos. Rhowch enw arddangos newydd i barhau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikke indlæse dit visningsnavn. Indtast venligst et nyt visningsnavn for at fortsætte." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wir konnten deinen Anzeigenamen nicht laden. Bitte gib einen neuen Anzeigenamen ein, um fortzufahren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορέσαμε να φορτώσουμε το εμφανιζόμενο όνομά σας. Παρακαλώ εισαγάγετε ένα νέο εμφανιζόμενο όνομα για να συνεχίσετε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to load your display name. Please enter a new display name to continue." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ne povis ŝarĝi vian ekrananom de nomo. Bonvolu enigi novan ekranan nomon por daŭrigi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos cargar tu nombre para mostrar. Por favor, introduce un nuevo nombre para continuar." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos cargar tu nombre de usuario. Por favor, ingresa un nuevo nombre de usuario para continuar." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Me ei suutnud teie kuvatavat nime laadida. Jätkamiseks sisestage uus kuvatav nimi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin izan dugu zure erakutsi izena kargatu. Mesedez, sartu izen berri bat jarraitzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نتوانستیم نام نمایشی شما را بارگیری کنیم. لطفاً یک نام نمایشی جدید وارد کنید تا ادامه دهید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emme voineet ladata näyttönimeäsi. Syötä uusi näyttönimi jatkaaksesi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi namin ma-load ang iyong display name. Mangyaring magpasok ng bagong display name para magpatuloy." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous n'avons pas pu charger votre nom d'affichage. Veuillez entrer un nouveau nom d'affichage pour continuer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non puidemos cargar o teu nome de pantalla. Por favor, introduce un novo nome de pantalla para continuar." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba mu iya ɗora sunan nuni ba. Da fatan za a shigar da sabon sunan nuni don ci gaba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא הצלחנו לטעון את שם התצוגה שלך. אנא הזן/י שם תצוגה חדש כדי להמשיך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हम आपका प्रदर्शन नाम लोड करने में असमर्थ थे। कृपया जारी रखने के लिए एक नया प्रदर्शन नाम दर्ज करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo uspjeli učitati vaše prikazano ime. Unesite novo prikazano ime za nastavak." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült betölteni a felhasználónevedet. Adj meg egy új nevet a folytatáshoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մենք չկարողացանք բեռնել ձեր ցուցադրման անունը։ Խնդրում ենք մուտքագրել նոր ցուցադրման անուն՝ շարունակելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat memuat nama tampilan Anda. Harap masukkan nama tampilan baru untuk melanjutkan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non siamo riusciti a caricare il tuo nome. Inserisci un nuovo nome da visualizzare per continuare." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示名を読み込めませんでした。続行するには新しい表示名を入力してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი ჩვენების სახელის ჩატვირთვა ვერ მოხერხდა. გთხოვთ შეიყვანოთ ახალი ჩვენების სახელი გასაგრძელებლად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យើងមិនអាចផ្ទុកឈ្មោះបង្ហាញរបស់អ្នកបានទេ។ សូមបញ្ចូលឈ្មោះបង្ហាញថ្មីដើម្បីបន្ត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾವು ನಿಮ್ಮ ಪಟ ಕಾಣು ಹೆಸರನ್ನು ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ಮುಂದುವರಿಸುವುದಿಗಾಗಿ ದಯವಿಟ್ಟು ಹೊಸ ಪಟ ಕಾಣು ಹೆಸರನ್ನು ನಮೂದಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시 이름을 불러올 수 없습니다. 계속하려면 새 표시 이름을 입력해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانین ناوی نیشانیەکت هەڵبگرین. تکایە ناوی نیشانیەکی نوێ بنوسە بۆ بەردەوام بوونی." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetusaniddwenga kubijukiriza ebyayigana. Mwanguyiza muyingize eribapya lyakalondebwa okusigala naye." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko įkelti jūsų rodymo vardo. Įveskite naują rodymo vardą, kad tęstumėte." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēs nevarējām ielādēt jūsu parādāmo vārdu. Lai turpinātu, lūdzu, ievadiet jaunu parādāmo vārdu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можевме да ја вчитаме вашата прикажана име. Ве молиме внесете ново име за приказ за да продолжите." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны дэлгэцийн нэрийг ачаалах чадсангүй. Үргэлжлүүлэхийн тулд шинэ дэлгэцийн нэрийг оруулна уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat memuatkan nama paparan anda. Sila masukkan nama paparan baru untuk meneruskan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to load your display name. Please enter a new display name to continue." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi klarte ikke å laste visningsnavnet ditt. Vennligst skriv inn et nytt visningsnavn for å fortsette." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको प्रदर्शन नाम लोड गर्न असमर्थ। कृपया निरन्तरता दिन नयाँ प्रदर्शन नाम प्रविष्ट गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "We konden uw weergavenaam niet laden. Voer een nieuwe weergavenaam in om door te gaan." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikkje laste visningsnamnet ditt. Skriv inn eit nytt visningsnamn for å fortsette." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sitinathe kukweza nthawi yanu. Chonde lowetsani app dzina latsopano kuti mupitilize." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਸੀਂ ਤੁਹਾਡੇ ਡਿਸਪਲੇ ਨਾਂ ਲੋਡ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਰਹੇ। ਕਿਰਪਾ ਕਰਕੇ ਅੱਗੇ ਵਧਣ ਲਈ ਨਵਾਂ ਡਿਸਪਲੇ ਨਾਮ ਦਰਜ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się wczytać Twojej nazwy wyświetlanej. Aby kontynuować, wprowadź nową nazwę wyświetlaną." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ ستاسو د نمایشي نوم په بارولو کې پاتې راغلو. مهرباني وکړئ یو نوی نمایشي نوم داخل کړئ ترڅو پرمخ ولاړ شئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível carregar seu nome de exibição. Por favor, insira um novo nome de exibição para continuar." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível carregar o seu nome. Por favor, insira um novo nome para continuar." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu am putut încărca numele de afișare. Vă rugăm să introduceți un nou nume de afișare pentru a continua." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось загрузить ваше имя пользователя. Пожалуйста, введите новое имя пользователя для продолжения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli učitati vaše prikazano ime. Molimo unesite novo prikazano ime da biste nastavili." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපට ඔබේ ප්‍රදර්ශන නාමය පූරණය කළ නොහැකි විය. කරුණාකර නව ප්‍රදර්ශන නාමයක් ඇතුලත් කරගෙන ඉදිරියට යන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa načítať vaše zobrazované meno. Zadajte nové zobrazované meno, aby ste mohli pokračovať." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli naložiti vašega prikazanega imena. Za nadaljevanje vnesite novo prikazano ime." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mundëm të ngarkonim emrin tuaj të shfaqjes. Ju lutemi shkruani një emër të ri të shfaqjes për të vazhduar." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће учитати ваше име за приказ. Унесите ново име за приказ да бисте наставили." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli da učitamo vaše prikazno ime. Unesite novo prikazno ime da biste nastavili." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunde inte ladda ditt visningsnamn. Vänligen ange ett nytt visningsnamn för att fortsätta." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hatuwezi kupakia jina lako la kuonyesha. Tafadhali weka jina jipya la kuonyesha ili uendelee." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் காட்சி பெயரை ஏற்ற முடியவில்லை. தொடர புதிய காட்சி பெயரை உள்ளிடவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మేము మీ ప్రదర్శన పేరు లోడ్ చేయలేకపోయాము. కొనసాగడానికి దయచేసి కొత్త ప్రదర్శన పేరును నమోదు చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เราไม่สามารถโหลดชื่อแสดงของคุณ กรุณาใส่ชื่อแสดงใหม่เพื่อดำเนินการต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görüntüleme adınızı yükleyemedik. Devam etmek için lütfen yeni bir görüntüleme adı girin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося завантажити ваш псевдонім. Будь ласка, введіть новий псевдонім, щоб продовжити." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم آپ کا ڈسپلے نام لوڈ کرنے میں ناکام رہے۔ براہ کرم جاری رکھنے کے لیے نیا ڈسپلے نام درج کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biz sizning ko'rsatilish ismingizni yuklay olmadik. Davom ettirish uchun yangi ismingizni kiriting." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chúng tôi không thể tải tên hiển thị của bạn. Vui lòng nhập tên hiển thị mới để tiếp tục." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asikwazanga ukulayisha igama lakho lomboniso. Nceda ufake igama lomboniso elitsha ukuze uqhubeke." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我们无法加载您的显示名称。请输入新的显示名称以继续。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法加載您的顯示名稱。請輸入新顯示名稱以繼續。" + } + } + } + }, + "displayNameNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies 'n nuwe vertoon naam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر اسم عرض جديد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir ekran adı götür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نیا نمایش نام منتخب کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберыце імя для адлюстравання зноў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете ново показвано име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন প্রদর্শনের নাম নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esccull un nou nom a mostrar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte nové zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch enw arddangos newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg et nyt visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wähle einen neuen Anzeigenamen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλέξτε ένα νέο όνομα εμφάνισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pick a new display name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elektu novan vidigan nomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige un nuevo nombre para mostrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige un nuevo nombre para mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valige omale uus kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi izen berria hautatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک نام نمایشی جدید انتخاب کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse uusi näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumili ng bagong display name" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choisissez un nouveau nom d'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elixe un novo nome de pantalla" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi sabon sunan nuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר שם משתמש חדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक नया डिसप्ले नाम चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite novo ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válassz új felhasználónevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրեք նոր ցուցադրվող անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama tampilan baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli un nuovo nome da visualizzare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しい表示名を選択してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აირჩიეთ ახალი ჩვენების სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសឈ្មោះបង្ហាញថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಪ್ರದರ್ಶನ ಹೆಸರನ್ನು ಆಯ್ಕೆ ಮಾಡಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새로 표시될 이름을 선택하세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ پەیام هستیت بینەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa linnya lyo ery’omulembe" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite naują rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlies jaunu atainojamo vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери ново прикажано име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинээр дэлгэцийн нэр сонгоорой" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama paparan baru" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြသမည့်အမည်အသစ်တစ်ခုကို ရွေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg et nytt visningsnavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नयाँ प्रदर्शन नाम छान्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies een nieuwe weergavenaam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel eit nytt visningsnamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sankhani dzina losonyeza latsopano" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵਾਂ ਡਿਸਪਲੇ ਨਾਮ ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz nową nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوې نمایش نوم غوره کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um novo nome de exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um novo nome" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alegeți un nou nume afișat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите новое отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberite novo prikazano ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව සංදර්ශක නමක් තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvoľte prosím nové zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberi novo prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjedh një emër të ri të paraqitjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изаберите ново приказно име" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite novo prikazano ime" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj ett nytt visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua jina jipya la kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு புதிய காட்சி பெயரைத் தேர்ந்தெடுக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త ప్రదర్శన పేరు ఎంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกชื่อที่ใช้แสดงใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni görünecek ad seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оберіть новий псевдонім" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نیا ڈسپلے نام منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi displey nomini tanlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn một tên hiển thị mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha igama elitsha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择新的显示名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入一個新名稱" + } + } + } + }, + "displayNamePick" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies jou vertoon naam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر اسم العرض الخاص بك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran adınızı götürün" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامءِ نمایشئں منتخب کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберыце імя для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете вашето показвано име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার প্রদর্শনের নাম নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tria el nom que es mostrarà" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch eich enw arddangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg dit visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wähle deinen Anzeigenamen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλέξτε το όνομα εμφάνισής σας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pick your display name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elektu vian vidigan nomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige tu nombre para mostrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige tu nombre para mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valige omale kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi zure izen berria hautatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامِ نمایش خود را انتخاب کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piliin ang display name mo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choisissez votre nom d'utilisateur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elixe o teu nome de pantalla" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi sunan nuninka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר את שם המשתמש שלך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना प्रदर्शन नाम चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite svoje ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válassz egy felhasználónevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրեք ցուցադրվող անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama tampilan anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli il nome da visualizzare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示名を選択してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აირჩიეთ თქვენი ჩვენების სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសឈ្មោះបង្ហាញរបស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪ್ರದರ್ಶನ ಹೆಸರನ್ನು ಆಯ್ಕೆ ಮಾಡಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시될 이름을 선택하세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ بینەوە ناردنی پەیامەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa linnya lyo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite savo rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlies savu atainojamo vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери го твоето прикажано име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн нэрээ сонгоорой" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama paparan anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ ပြသမည့်အမည်ကို ရွေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg ditt visningsnavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफ्नो प्रदर्शन नाम छनौट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies je weergavenaam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel ditt visningsnamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sankhani dzina losonyeza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਡਿਸਪਲੇ ਨਾਮ ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپله نمایش نوم غوره کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha seu nome de display" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha seu nome" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alegeți numele afișat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберите ваше отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberite vaše prikazano ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ සංදර්ශක නම තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte si zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberite prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjedh emrin e paraqitjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одаберите ваше име за приказ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite prikazano ime" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj ditt visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua jina lako la kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் காட்சி பெயரைத் தேர்ந்தெடுக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ప్రదర్శన పేరు ఎంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกชื่อที่ใช้แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünecek adınızı seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оберіть ім'я, що показуватиметься" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا ڈسپلے نام منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey nomini tanlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn tên hiển thị của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chola igama lakho lokubonisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择您的显示名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入您的名稱" + } + } + } + }, + "displayNameSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel Vertoonnaam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين اسم العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran adını ayarla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیٹ ڈسپلے نام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце імя для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на показвано име" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রদর্শনের নাম সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definiu el nom a mostrar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavte zobrazované jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Enw Arddangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil visningsnavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzeigename festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Ονόματος Εμφάνισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Montratan Nomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Nombre Visible" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer nombre para mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra kuvanimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi izena ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم نام نمایشی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta näyttönimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang Display Name" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir un nom d'affichage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Nome para Mostrar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Sunan Gabas" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר שם תצוגה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिस्प्ले नाम सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi ime za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megjelenítendő név beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել ցուցադրվող անունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Nama Tampilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta nome visualizzato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示名を設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხელის შეწყვილება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់បង្ហាញឈ្មោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರದರ್ಶನದ ಹೆಸರು ಸೆಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시 이름 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانانی ناوی پیشانده‌رەو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Erinnya Erirabika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti rodomą vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Atainojamo Vārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Прикажано Име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн нэрээ тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Nama Paparan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြသမည့် အမည် သတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett visningsnavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रदर्शन नाम सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weergavenaam instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Name" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Name" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਸਪਲੇ ਨਾਂ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw nazwę wyświetlaną" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیسپلې نوم تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Nome de Exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurar nome a apresentar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează numele afișat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задать отображаемое имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi prikazno ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රදර්ශන නාමය සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť zobrazované meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi prikazno ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Emër" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави приказно име" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavite ime koje će se prikazati" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange visningsnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Jina la Kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காட்டு காட்சிப்பெயரை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రదర్శన పేరు సెట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งชื่อที่แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünür Ad Belirle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Застосувати ім'я, що показуватиметься" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈسپلے نام سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey nomini belgilang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập Hiển thị Tên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setha igama elibonisiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置显示名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定顯示名稱" + } + } + } + }, + "document" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "وثيقة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sənəd" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دستاویز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дакумент" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Документ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নথি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Document" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dogfen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έγγραφο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Document" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumento" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumentua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumentti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumento" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Document" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takarda" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מסמך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "दस्तावेज़" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumentum" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փաստաթուղթ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumen" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ドキュメント" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დოკუმენტი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡಾಕಿುಮೆಂಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "문서" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەڵگەنامە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumenti" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເອກະສານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumentas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokuments" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Документ" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Баримт бичиг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokumen" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စာရွက်စာတမ်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कागजात" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Document" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zolemba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦਸਤਾਵੇਜ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سند" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Documento" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Document" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Документ" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ලේඛනය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Документ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokument" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hati" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆவணம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పత్రం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เอกสาร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Belge" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Документ" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دستاویز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hujjat" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tài liệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ixwebhu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文档" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件" + } + } + } + }, + "done" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klaar" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hazırdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکمل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гатова" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Готово" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সম্পন্ন হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fet" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hotovo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi gorffen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Færdig" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fertig" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ολοκληρώθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Done" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Farite" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hecho" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hecho" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valmis" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eginda" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انجام شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valmis" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapos na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terminé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feito" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An gama" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בוצע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूरा हुआ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gotovo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kész" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերջ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selesai" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fatto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "完了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შესრულებულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រួចរាល់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆగಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "완료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەنجامدرا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakpee" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັຽງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atlikta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pabeigts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Готово" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дууссан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selesai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြီးပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ferdig" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klaar" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ferdig" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chatha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੜ ਚੱਕੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gotowe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پای ته ورسېدل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pronto" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Concluído" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terminat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Готово" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Završeno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කළා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hotovo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Končano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kryer" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завршено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Završeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imefanyika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முடிந்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పూర్తయింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เสร็จ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamamlandı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Готово" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکمل ہوا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tayyor" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xong" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gqibezela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "完成" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "完成" + } + } + } + }, + "download" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنزيل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤن لوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спампаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтегляне" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাউনলোড" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarregar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stáhnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho i lawr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herunterladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λήψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elŝuti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lae alla" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deskargatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارگیری" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-download" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Télécharger" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zazzage" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הורד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाउनलोड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letöltés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ներբեռնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unduh" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scarica" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ダウンロード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გადმოტვირთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាញយក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೌನ್ಲೋಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다운로드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داگرتن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essabura Zzonyo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ດາວໂຫລດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsisiųsti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejupielādēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Симни" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Татаж авах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat turun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေါင်းလုတ်ဆွဲပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाउनलोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last ned" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsitsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਊਨਲੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pobierz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښکته کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferir" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarcă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скачать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "බාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stiahnuť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prenesi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarkoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преузми" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzmi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hämta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவிறக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డౌన్లోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดาวน์โหลด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантажити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤن لوڈ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tải xuống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "下载" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "下載" + } + } + } + }, + "downloading" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aflaai..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ التنزيل..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endirilir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "... ڈاؤن لوڈ ہو رہا ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтегляне..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাউনলোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descarregant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stahování..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho i lawr..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloader..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird heruntergeladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λήψη..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elŝutante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allalaadimine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deskargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگیری..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagdo-download..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléchargement…" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana zazzage..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מוריד..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाउनलोड हो रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letöltés..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ներբեռնվում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengunduh..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download in corso..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ダウンロード中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងទាញយក..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೌನ್ಲೋಡ್ ಆಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다운로드 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داگرتن..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kateko ku" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກຳລັງດາວໂຫລດ..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsisiunčiama..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejupielādē..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се симнува..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Татаж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat turun..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေါင်းလုဒ်ဆွဲနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster ned..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाउनलोड हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan het downloaden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lastar ned…" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akutsitsa..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਊਨਲੋਡ ਹੋ ਰਿਹਾ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pobieranie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښکته کوي..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferindo..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se descarcă..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скачивание..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "බාගත ද..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sťahuje sa..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prenos..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po shkarkohet..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преузимање..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hämtar..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakua..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவிறக்குகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డౌన్లోడింగ్..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดาวน์โหลด..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndiriliyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤن لوڈ ہو رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải về..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukukhuphela..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "下载中…" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "下載中…" + } + } + } + }, + "draft" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konsep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسودة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qaralama" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسودہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чарнавік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чернова" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "খসড়া" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborrany" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koncept" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drafft" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kladde" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entwurf" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόχειρο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draft" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malneto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrador" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrador" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mustand" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zirriborroa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش‌نویس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luonnos" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draft" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brouillon" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrador" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwati" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טיוטה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रारूप" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piszkozat" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սևագիր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draf" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bozza" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "下書き" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წერილობითი ვარიანტი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព្រាង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕರಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "초안" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڕۆژە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutatonoddeo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຮ່າງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Juodraštis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melnraksts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нацрт" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ноорог" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draf" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မူကြမ်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utkast" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मस्यौदा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Concept" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utkast" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zolemba Zosinthidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮਸੌਦਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wersja robocza" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسوده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rascunho" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rascunho" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ciornă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Черновик" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skica" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කෙටුම්පත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koncept" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osnutek" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нацрт" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nacrt" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utkast" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rasimu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வரைவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చిత్తు పత్రం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ร่าง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taslak" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чернетка" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈرافٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draft" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nháp" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isishwankathelo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "草稿" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "草稿" + } + } + } + }, + "edit" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعديل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Düzəliş et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترمیم کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рэдагаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редактирай" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সম্পাদন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upravit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Golygu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redigér" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bearbeiten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επεξεργασία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redakti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muuda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویرایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muokkaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-edit" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modifier" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gyara" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עריכה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संपादित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uredi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szerkesztés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբագրում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubah" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modifica" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "編集" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "რედაქტირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កែប្រែ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತಿದ್ದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "편집" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەستکاریکەرەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kola!" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ແກ້ໄຂ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taisa" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediģēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уреди" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Засварлах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တည်းဖြတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पादन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bewerken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sintha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੋਧੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edytuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редактировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uredi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංස්කරණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upraviť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Urejanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përpunoni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уреди" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izmeni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redigera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hariri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "திருத்தம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మార్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แก้ไข" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Düzenle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редагування" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترمیم کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tahrirlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sửa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "编辑" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "編輯" + } + } + } + }, + "emojiAndSymbols" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Simbole" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إيموجي & رموز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji və Simvollar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایموجی اور علامتیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эмодзі & Сімвалы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Емоджи и Символи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইমোজি ও প্রতীক" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoticones & Símbols" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & symboly" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emojïau & Symbolau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbolet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji und Symbole" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji and Symbols" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Simboloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Símbolos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emojis y símbolos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emotikonid ja sümbolid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emojiak & Sinboloak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایموجی‌ها و نمادها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Mga Simbolo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symboles" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & símbolos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Alamu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אימוג׳י וסמלים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इमोजी और प्रतीक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & simboli" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Szimbólumok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զմայլիկներ և Խորհրդանիշներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Simbol" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji e simboli" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "絵文字と記号" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ემი & სიმბოლოები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಏಮೋಜಿ ಮತ್ತು ಸಂಕೇತಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이모지와 기호" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebyufuna" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ອີໂມຈິ & ສັນຍາລັກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & simboliai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emocijikoni un simboli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Симболи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эможи & символууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Simbol" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbolen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & symbol" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Zizindikiro" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਮੋਜੀ & ਪ੍ਰਤੀਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji i symbole" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایموجي او سمبولونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Símbolos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji e Símbolos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoticoane și simboluri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эмодзи и Символы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & simboli" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & symboly" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & simboli" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Simbole" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Емоџи и симболи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emotikoni & Simboli" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & symboler" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Symbols" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎమోజి & సింబల్స్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อิโมจิ & สัญลักษณ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji ve Semboller" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Емодзі & символи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایموجی اور علامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Ramzlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biểu tượng cảm xúc & Ký hiệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoji & Izimboli" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "表情&符号" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "表情和符號" + } + } + } + }, + "emojiCategoryActivities" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiwiteite" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نشاطات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fəaliyyətlər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارینک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Актыўнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активности" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাক্টিভিটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activitats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivity" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gweithgareddau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviteter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivitäten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δραστηριότητες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activities" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivaĵoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actividades" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actividades" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegevused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jarduerak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعالیت‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviteetit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Aktibidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activités" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actividades" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayyuka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פעילויות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्रियाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivnosti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivitások" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զբաղմունքներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attività" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アクティビティ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საქმიანობები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សកម្មភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಚಟುವಟಿಕೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "활동" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالاکییەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebikolwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກິລາເດີນທາງ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veiklos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivitātes" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активности" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үйл ажиллагаанууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လှုပ်ရှားမှုများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviteter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्रियाकलापहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activiteiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviteter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zochitika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਤੀਵਿਧੀਆਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktywności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعالیتونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atividades" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atividades" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activități" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активности" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivnosti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ක්‍රියාකාරකම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivitete" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активности" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivnosti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiviteter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shughuli" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செயற்பாடுகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రవృత్తులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กิจกรรม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etkinlikler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дії" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activities" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faoliyatlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoạt động" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imisebenzi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "活动" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "活動" + } + } + } + }, + "emojiCategoryAnimals" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diere & Natuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حيوانات & و طبيعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heyvanlar və Təbiət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حیوانات و خزاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Жывёлы & Прырода" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Животни и природа" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রাণী ও প্রকৃতি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animals & Natura" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvířata a příroda" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anifeiliaid & Natur" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dyr & Natur" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiere & Natur" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ζώα & Φύση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animals and Nature" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestoj & Naturo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animales & naturaleza" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animales y Naturaleza" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loomad ja loodus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animaliak eta Natura" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حیوانات و طبیعت" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eläimet ja luonto" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga hayop & Kalikasan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animaux et Nature" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animais e Natureza" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dabbobi & Yanayi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בעלי חיים וטבע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पशु और प्रकृति" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Životinje i priroda" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Állatok és Természet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կենդանիներ & Բնություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hewan & Alam" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animali e natura" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "動物&自然" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ცხოველები და ბუნება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សត្វ & ធម្មជាតិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೃಗಗಳು ಮತ್ತು ಪ್ರಕೃತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동물 & 자연" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئاژەلەکان و سەمان و ژینگە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebisolo & Ebitonde" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສັດແລະທຳມະຊາດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gyvūnai ir gamta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzīvnieki un daba" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Животни & Природа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Амьтад & Байгал" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwan & Alam" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တိရစ္ဆာန်များနှင့် သဘာဝ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dyr og natur" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जनावर र प्रकृति" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dieren & Natuur" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dyr og natur" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinyama & Chilengedwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਾਨਵਰ ਅਤੇ ਕੁਦਰਤ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zwierzęta i natura" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حیوانات او طبیعت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animais & Natureza" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animais e natureza" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Animale și natură" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Животные & Природа" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Životinje i Priroda" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සතුන් & සොබාදහම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvieratá a príroda" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Živali in narava" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kafshë & Natyrë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Животиње и природа" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Životinje & Priroda" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Djur & Natur" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wanyama & Maumbile" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விலங்குகள் & இயற்கை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "జీవ జాలం & ప్రకృతి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สัตว์ & ธรรมชาติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hayvanlar & Doğa" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тварини & Природа" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جانوران اور قدرت" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hayvonlar & Tabiat" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Động vật & Thiên nhiên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izilwanyana & Indalo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "动物与自然" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "動物與自然" + } + } + } + }, + "emojiCategoryFlags" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vlaggies" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أعلام" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayraqlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیرقاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцягі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Флагове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flags" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banderes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vlajky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baneri" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flag" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flaggen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σημαίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flags" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flagoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banderas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banderas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lipud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Banderak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرچم‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liput" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga watawat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drapeaux" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandeiras" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutoci" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דגלים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ध्वज" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastave" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zászlók" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դրոշներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendera" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandiere" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "フラグ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დროშები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទង់ជាតិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಧ್ವಜಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "깃발" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئالمانەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebendera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vėliavos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Karogi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знамиња" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далбаанууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendera" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flags" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flagg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यन्त्रको सूचना सेटिङ्गमा जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vlaggen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flagg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitundu ya zilembo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਝੰਡੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flagi" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیرغونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandeiras" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandeiras" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Steaguri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Флаги" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastave" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කොඩි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vlajky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastave" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falmuri" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заставе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zastave" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Flaggor" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendera" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கொடி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పతాకాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ธง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayraklar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прапорці" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جھنڈے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayroqlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cờ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iiflegi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "旗帜" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "旗幟" + } + } + } + }, + "emojiCategoryFood" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kos & Drink" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مأكولات & و مشروبات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qida və İçki" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ګزا و شربت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ежа & Напоі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Храна и напитки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Food & Drink" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menjar & Beguda" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jídlo a pití" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bwyd a Diod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mad & Drikke" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essen und Trinken" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φαγητό & Ποτό" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Food and Drink" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manĝaĵo kaj Trinkaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comida y Bebida" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comida & bebidas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Söök ja jook" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Janaria eta Edaria" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "غذا و نوشیدنی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruoka ja juoma" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pagkain & Inumin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nourriture & Boissons" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comida & Bebida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abinci & Abin Sha" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אוכל ושתייה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Food & Drink" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hrana i piće" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Étel és ital" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սնունդ և խմիչք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makanan & Minuman" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cibi e bevande" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "食べ物・飲み物" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საჭმელი და სასმელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អាហារ & ភេសជ្ជៈ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಹಾರ ಮತ್ತು ಪಾನೀಯಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음식 & 음료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "خوراک و خواردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebirya & Ebigimusa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maistas ir gėrimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ēdiens & Dzērieni" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Храна и пијалаци" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хоол & Уух зүйлс" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makanan & Minuman" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အစားအစာနှင့်အရက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mat og drikke" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्यामेरा पहुँच अनुमति दिनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eten & Drinken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mat og drikke" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyambo & Zakumwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੋਜਨ & ਪੀਣ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jedzenie i napoje" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خواړه او څښاک" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comida e Bebida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comida e Bebidas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mâncare şi băutură" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Еда & Напитки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hrana & Piće" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආහාර & පාන" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potraviny a nápoje" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hrana in pijača" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushqim & Pije" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Храна и пиће" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hrana & Piće" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mat & Dryck" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chakula & Kinywaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உணவு மற்றும் பானம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహారం & పానీయం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อาหาร & เครื่องดื่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yiyecek & İçecek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Їжа та напої" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کھانا اور مشروبات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taom va ichimliklar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thức ăn & Đồ uống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukutya & Isiselo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "食物&饮料" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "食物和飲料" + } + } + } + }, + "emojiCategoryObjects" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أجسام" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obyektlər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چیز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аб'екты" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предмети" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objects" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objectes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Předměty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pethau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντικείμενα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objects" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objectoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objetos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objetos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objektid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objektuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اشیا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esineet" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga object" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objets" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obxectos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayan Layi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אובייקטים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वस्तुएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predmeti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tárgyak" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օբյեկտներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objek" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oggetti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オブジェクト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ობიექტები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "វត្ថុ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಸ್ತುಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오브젝트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئامێرەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bintu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objects" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priekšmeti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Објекти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обьектууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objek" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objects" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वस्तुहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objecten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinthu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਈਟਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obiekty" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "شیان" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objetos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objetos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obiecte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Объекты" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වස්තු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekte" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Објекти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predmeti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vitu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு பொருள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వస్తువులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สิ่งต่างๆ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesneler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Об'єкти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اشیاء" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obyektlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đồ vật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izilwanyana" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "物品" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "物件" + } + } + } + }, + "emojiCategoryRecentlyUsed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onlangs Gebruik" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مستخدمة حديثًا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təzəlikcə istifadə edilən" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالھی کوشی کں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нядаўна выкарыстоўвалася" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Наскоро използвани" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সম্প্রতি ব্যবহার করা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usat recentment" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naposledy použité" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defnyddiwyd yn Ddiweddar" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "For nylig brugt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuletzt verwendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόσφατα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recently Used" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĵus Uzitaj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usado recientemente" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usado recientemente" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiljuti kasutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berriki Erabilitakoak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اخیراً استفاده شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viimeksi käytetyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakagamit Lang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fréquemment utilisés" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recentemente usadas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwanan nan Aka Yi Amfani da" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שימוש אחרון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हाल ही में प्रयुक्त" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedavno korišteno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemrég használt" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերջերս օգտագործված" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baru Digunakan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usati di Recente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "最近使用したもの" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბოლო გამოყენებული" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានប្រើថ្មីៗនេះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತ್ತೀಚೆಗೆ ಬಳಸಿದ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최근 사용" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوێ بکار بردووەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebiweereddwa Amaanyi Olusaale" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neseniai naudota" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesen izmantotie" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неодамна користени" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сүүлд ашигласан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baru Digunakan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မကြာသေးမီက အသုံးပြုခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nylig brukte" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हालै प्रयोग गरियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recent gebruikt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nylig brukte" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zogwiritsa Ntchito Tsopano" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤਾਜ਼ਾ ਵਰਤਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ostatnio używane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروستي کارېدونکي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usado Recentemente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recentemente Utilizado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizate recent" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недавние" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedavno korišćeno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෑතදී භාවිතා කළ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naposledy použité" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedavno uporabljeni" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kohët e fundit përdorur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недавно коришћено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedavno korišćeni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyligen använd" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zilizotumiwa Hivi karibuni" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமீபத்தில் பயன்படுத்தப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇటీవల ఉపయోగించినవి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช้ล่าสุด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son Kullanılan" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нещодавно використані" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حال ہی میں استعمال کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaqinda ishlatilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã sử dụng gần đây" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iziqinisekiso Ezisandul'Ukusetyenziswa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "近期使用" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "最近使用" + } + } + } + }, + "emojiCategorySmileys" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & Mense" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابتسامات & وأشخاص" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İfadələr və İnsanlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسکراتی پیپل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усмешкі & Людзі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усмивки и хора" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্মাইলিজ & মানুষ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoticones & Gent" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smajlíci a lidé" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & personer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & Personen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χαμόγελα & Άνθρωποι" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys and People" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildo & Homoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caras y personas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caras y personas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emotikonid ja inimesed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکلک‌ها و مردم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hymiöt ja ihmiset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga smiley & Mga tao" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Émoticônes et personnes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sorrisos & Persoas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרצופים ואנשים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्माइली और लोग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smajlići i ljudi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangulatjelek és emberek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զմայլիկներ & Մարդուկներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smiley & Orang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sorrisi e persone" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スマイル & 人" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სმაილები & ხალხი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ញញឹម & មនុស្ស" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಮೈಲಿಗಳು & ಜನರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "스마일리 & 사람들" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ژینەگوڕ مەڕێن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkonge n'Abantu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veideliai ir žmonės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smaidiņi & Cilvēki" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смайлија & Луѓе" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инээмсэглэлүүд & Хүмүүс" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senyuman & Orang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပျော်ရွှင်သိုက်နှင့် လူများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smilemerker og folk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्माइलीहरू र व्यक्तिहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & Mensen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smilemerker og folk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮਾਈਲੀ ਅਤੇ ਲੋਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uśmieszki i ludzie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smilies او خلک" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emojis & Pessoas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys e Pessoas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emoticoane și persoane" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смайлики & Люди" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osmijesi i Ljudi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කුඩාලනය & ජනතාව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smajlíky a ľudia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smeškoti & Ljudje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buzëqeshje & Njerëz" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смајлији и Људи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smajlići i ljudi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & personer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & Watu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கருவிகள் & மக்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్మైలీస్ & పీపుల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suratlar & İnsanlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смайлики та люди" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسمایلز اور لوگ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smayliklar & Odamlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biểu tượng cảm xúc & Con người" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smileys & People" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "表情&人物" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "笑臉與人物" + } + } + } + }, + "emojiCategorySymbols" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simbolen" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رموز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simvollar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رموز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сімвалы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Символи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "চিহ্ন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbols" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboly" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbolau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboler" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbole" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σύμβολα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbols" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbolos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbolos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sümbolid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinboloak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمادها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbolit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga simbolo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboles" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbolos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbols" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סמלים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रतीक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szimbólumok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խորհրդանիշներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simbol" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "記号" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სიმბოლოები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "និមិត្តសញ្ញា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರತಿಮೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기호" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیمبوڵەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebinnukuta" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboliai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Симболи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тэмдэг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simbol" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်္ကေတများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "चिह्नहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbolen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbols" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਕੇਤਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbole" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نښې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbolos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Símbolos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboluri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Символы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංකේත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboly" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simbolet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Симболи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simboli" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symboler" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alama" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சின்னங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంథsymbols symbolsని" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สัญลักษณ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Semboller" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Символи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "علامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Belgilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biểu trưng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Symbols" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "符号" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "符號" + } + } + } + }, + "emojiCategoryTravel" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reis & Plekke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "السفر & و أماكن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səyahət və Məkanlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سفر اور مقامات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Падарожжы & Месцы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пътувания и Места" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভ্রমণ ও স্থান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viatjar & Llocs" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cestování a místa" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teithio a Mannau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejse & Steder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reisen & Orte" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ταξίδια & Τοποθεσίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Travel and Places" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vojaĝoj & Lokoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viajar & Lugares" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viajes y Lugares" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reisid ja kohad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidaia eta Tokikotasunak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسافرت و اماکن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matkailu ja paikat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paglalakbay & Mga lugar" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voyages & Lieux" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viaxes e Lugares" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafiya & Wurare" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נסיעות ומקומות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Travel & Places" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putovanja i mjesta" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utazás és helyek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ճամփորդություն և վայրեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perjalanan & Tempat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viaggi e luoghi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "旅行&場所" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოგზაურობა და ადგილები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការធ្វើដំណើរ & ទីកន្លែង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರಯಾಣ ಮತ್ತು ಸ್ಥಳಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "여행 & 장소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گەشت و شوینەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuvuga n'ebifo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kelionės ir vietos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceļošana un vietas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Патување и места" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аялал & Байршил" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perjalanan & Tempat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခရီးသွား &နေရာများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reise og steder" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यात्रा र स्थानहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reizen en locaties" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reise og steder" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulendo & Malo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਫ਼ਰ ਅਤੇ ਥਾਵਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podróże i miejsca" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سفر او ځایونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viagens e lugares" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viagens e Locais" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Călătorii și locații" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Путешествия и места" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putovanja i Mjesta" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "චාරිකා & ස්ථාන" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cestovanie a miesta" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potovanja in kraji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udhëtimi & Vendet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Путовања & Места" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putovanja & Mesta" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resor & Platser" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Safari & Sehemu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயணங்கள் மற்றும் இடங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "యాత్ర మరియు ప్రదేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การเดินทางและสถานที่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seyahat & Yerler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подорож & Місця" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سفر اور مقامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Travel & Places" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du lịch & Địa điểm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuhamba kunye neendawo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "旅游&地点" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "旅行與地點" + } + } + } + }, + "emojiReactsClearAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle {emoji} verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح كافة {emoji}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün {emoji} ifadələrini silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً تمام {emoji} کو صاف کرنا چاہتے ہیں؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце ачысціць усе {emoji}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички {emoji}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি সমস্ত {emoji} মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar tots els {emoji}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete vymazat všechny {emoji}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl {emoji}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle {emoji}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du alle {emoji} löschen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε όλα τα {emoji};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {emoji}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn {emoji}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar todos los {emoji}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres borrar todos los {emoji}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kõik {emoji} tühjendada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {emoji} guztiak ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید کل {emoji} را پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki {emoji}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng {emoji}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer tous les {emoji} ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar todos os {emoji}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk {emoji}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם את/ה בטוח/ה שברצונך למחוק את כל {emoji}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई सभी {emoji} को मिटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati sve {emoji}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy az összes {emoji}-t törölni akarod?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր {emoji}-ը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda yakin ingin menghapus semua {emoji}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutte le {emoji}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべての項目の{emoji}を削除してもよろしいですか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ყველა {emoji} წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសញ្ញា {emoji} ដោយសារអារម្មណ៍ទាំងអស់?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ {emoji}ಗಳನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all {emoji}?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لە پاککردنەوەی هەموو {emoji}?؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mu kutya okusabira okwoka kwa {emoji}?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຕ້ອງທຳທີໃຫ້ໃຫ້ໄອອິໂມຈີທັງໝົດ {emoji}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visus {emoji}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visas {emoji}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите {emoji}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүх {emoji} -г устгахыг хүсэж байгаадаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua {emoji}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {emoji} အားလုံးကို ရှင်းချင်တာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil fjerne alle {emoji}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई सबै {emoji} हटाउन चाहनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet jeu zeker dat u alle {emoji} wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle {emoji}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa onse {emoji}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਸਾਰੇ {emoji} ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz wyczyścić wszystkie {emoji}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې ټول {emoji} پاکول غواړې؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que deseja limpar todos os {emoji}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de quer limpar todos os {emoji}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate {emoji}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите очистить все {emoji}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve {emoji}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට සියලු {emoji} හිස් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať všetky {emoji}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vse {emoji}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha {emoji}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све {emoji}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve {emoji}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du verkligen rensa alla {emoji}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta emoji zote {emoji}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக அனைத்து {emoji} மெசேஜ்களை அழிக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అన్ని {emoji} ని ఖాళీ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ {emoji} ทั้งหมด?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm {emoji}'leri silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете стерти всі {emoji}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی تمام {emoji} صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha {emoji} ni tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả {emoji}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima onke {emoji}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除所有{emoji}吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有 {emoji} 嗎?" + } + } + } + }, + "emojiReactsCoolDown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raak rustiger! Jy het te veel emoji reageer stuur. Probeer weer gou" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أبطأ! لقد أرسلت الكثير من ردود الفعل الرموز التعبيرية. حاول مرة أخرى قريبا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir az yavaş! Həddən artıq emoji reaksiyası göndərdiniz. Bir azdan yenə sınayın" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملـــــا گئــــــــی! بیشــــتر ایموجی روانگی کـــــــردے ہاتنت پھیرے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павольней! Вы адправілі занадта шмат рэакцый на эмодзі. Паўтарыце спробу пазней" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Забавете! Изпратили сте твърде много реакции с емоджи. Опитайте скоро отново" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ধীর গতি! আপনি অনেকগুলি ইমজি প্রেক্ষাপট পাঠিয়েছেন। কিছু সময় পরে চেষ্টা করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vés a poc a poc! Has enviat massa reaccions d'emoji. Torna-ho a provar aviat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpomalte! Poslali jste příliš mnoho emoji reakcí. Zkuste to za chvilku." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arafwch! Rydych chi wedi anfon gormod o ymatebion eiconau. Ceisiwch eto yn fuan." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sænk farten! Du har sendt for mange emoji-reaktioner. Prøv igen snart" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langsam! Du hast zu viele Emoji-Reaktionen versendet. Versuche es später erneut" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ηρεμήστε! Έχετε στείλει πάρα πολλές αντιδράσεις emoji. Δοκιμάστε ξανά σύντομα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow down! You've sent too many emoji reacts. Try again soon" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malrapidigu! Vi sendis tro multajn emoji reagojn. Provu denove baldaŭ" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Despacio! Has enviado demasiadas reacciones de emoji. Prueba de nuevo pronto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Relájate! Has enviado demasiadas reacciones. Inténtalo de nuevo más tarde." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Võtke hoogu maha! Olete saatnud liiga palju emotikonide reaktsioone. Proovi varsti uuesti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poliki ibili! Emoji erreakzio gehiegi bidali dituzu. Saiatu berriro laster" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آهسته! شما بیش از اندازه ایموجی واکنش ارسال کرده اید. بزودی دوباره تلاش کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hidasta! Olet lähettänyt liian monta emojireaktiota. Yritä hetken kuluttua uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maghinay-hinay! Nakapagpadala ka na ng maraming reaksyon ng emoji. Subukang muli mamaya" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralentissez ! Vous avez envoyé trop d'émoticônes. Réessayez bientôt" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aminora! Enviaches demasiadas reaccións de emoji. Tenta de novo axiña." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rage gudu! Kun aika da yawa emoji reacts. Gwada sake gwadawa da wuri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האט! שלחת יותר מידי רגשות אימוג'י. נסה שוב בקרוב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "धीरे करो! आपने बहुत सारे इमोजी प्रतिक्रियाएं भेजी हैं। कृपया कुछ देर बाद पुनः प्रयास करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uspravite se! Poslali ste previše emotikona. Pokušajte ponovno uskoro" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lassíts! Túl sok hangulatjellel reagáltál. Próbáld újra később!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դանդաղեցրե՛ք։ Դուք չափազանց շատ էմոջիների արձագանքներ եք ուղարկել։ Շուտով նորից փորձեք:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pelan - pelan! Anda telah mengirim terlalu banyak reaksi emoji. Coba lagi nanti" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rallenta! Hai inviato troppe emoji. Riprova più tardi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スローダウンしました。絵文字リアクターが多すぎます。しばらくしてからもう一度試してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეგანელდეთ! თქვენ გაგზავნეთ ბევრი ემოჯი რეაქცია. ცადეთ ისევ მალე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កុំលឿនពេក! អ្នកបានផ្ញើរូប Emoji ច្រើនពេក។ សូមព្យាយាមម្តងទៀតក្នុងពេលឆាប់ៗនេះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಹೆಚ್ಚು ಇಮೋಜಿ ಪ್ರತಿಕ್ರಿಯೆಗಳನ್ನು ಕಳುಹಿಸಿದ್ದೀರಿ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "속도를 줄이세요! 너무 많은 이모지 반응을 보냈습니다. 잠시 후 다시 시도해 주세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامەکان زیاتر! بەرز بنێ." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tondewende! Owootedde emoji nyingi nnyo. Gezaako nate mangu ddala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sulėtinkite! Išsiuntėte per daug emoji reakcijų. Pabandykite vėliau." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palēnini! Tu esi nosūtījis pārāk daudz emoji reakciju. Mēģini vēlāk" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Успори! Испрати премногу емоџи реакции. Обиди се повторно наскоро" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удаан бай! Та хэтэрхий олон emoji хариултыг илгээсэн байна. Удахгүй дахин оролдоорой" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perlahan! Anda telah menghantar terlalu banyak reaksi emoji. Cuba lagi nanti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နှေးနှေး! သင့်မှာ အီမိုဂျီများကို ပို့ပြီးပြီ၊ အမေရန်လေး လုပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta det med ro! Du har sendt for mange emojireaksjoner. Prøv igjen snart" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मोनो बिस्तारै! तपाईंले धेरै इमोजी प्रतिक्रिया पठाउनुभयो। छिट्टै फेरि प्रयास गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je hebt te veel emoji gestuurd. Probeer het binnenkort opnieuw" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakte! Du har sendt for mange emoji-reaksjonar. Prøv igjen snart" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow down! You've sent too many emoji reacts. Try again soon" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੌਲੀ ਚੱਲੋ! ਤੁਸੀਂ ਬਹੁਤ ਸਾਰੇ emoji ਜਵਾਬ ਭੇਜੇ ਹਨ। ਜਲਦੀ ਕਾਭ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomału! Wysłano zbyt wiele reakcji emoji. Spróbuj ponownie wkrótce" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ورو شئ! تاسو ډیری emoji ځوابونه لیږلي دي. ژر بېرته هڅه وکړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vá devagar! Você enviou reações de emoji demais. Tente novamente em breve" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Calma! Enviou muitas reações de emojis. Tente novamente daqui a pouco" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mai încet! Ai trimis prea multe reacții. Încearcă din nou în curând" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помедленнее! Вы отправили слишком много эмодзи-реакций. Попробуйте еще раз в ближайшее время" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "uspori! Poslali ste previše emodžija. Pokušajte ponovo uskoro" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපගේ අවැසි තරම් emoji කොට්ටය ඉන්ධන කරමු. ඉක්මන් කරන දෙයක් නැවැතු! නැවත උත්සාහ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spomaľte! Poslali ste príliš veľa emoji reakcií. Skúste to čoskoro znova" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upočasnite! Poslali ste preveč odzivov z emojiji. Poskusite znova kasneje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngadalësoni! Keni dërguar shumë reagime emoji. Provoni përsëri së shpejti" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Успори! Послао/ла си превише емотикона. Покушај поново ускоро" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usporite! Poslali ste previše reakcija sa emotikonima. Pokušajte ponovo uskoro" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lugna ner dig! Du har sänt för många emojis. Försök igen om en stund" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Punguza mwendo! Umetuma mzio mwingi wa emoji. Jaribu tena hivi karibuni" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிறிது சாவகாசமாக! நீங்கள் அதிக எமோஜி உணர்வு அனுப்பி விட்டீர்கள். மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నెమ్మదించు! మీరు చాలా ఈమోజి ప్రతిస్పందనలను పంపారు. త్వరలో మళ్ళీ ప్రయత్నించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เย็นลง! คุณได้ส่งปฏิกิริยาอิโมจิมากเกินไป ลองอีกครั้งในภายหลัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yavaşla biraz! Çok fazla emoji tepkisi gönderdin. Birazdan tekrar deneyin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повільніше! Ви надіслали занадто багато реакцій емодзі. Спробуйте пізніше" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آہستہ کریں! آپ نے بہت سارے ایموجی ریایکٹ بھیجے ہیں۔ دوبارہ جلد کوشش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "To'xtang! Siz juda ko'p emoji reaksiyalarni yubordingiz. Keyinroq urinib ko'ring" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chậm lại! Bạn đã gửi quá nhiều emoji react. Thử lại sau" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow down! You've sent too many emoji reacts. Try again soon" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请减速!您已经发送了太多的表情回应。请稍后再试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請慢些!您發了太多 Emoji 回應, 請稍等再試。" + } + } + } + }, + "emojiReactsCountOthers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "En %lld ander het {emoji} op hierdie boodskap gereageer." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "En %lld ander het {emoji} op hierdie boodskap gereageer." + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Və daha %lld nəfər bu mesaja {emoji} reaksiyası verdi." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Və daha %lld nəfər bu mesaja {emoji} reaksiyası verdi." + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "وَ %lld دگرے {emoji} این اِپتم اِ جِت اِں پیغامءَ." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "وَ %lld دگر گون {emoji} اِپتم اِ جِت اِں پیغامءَ." + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "І яшчэ %lld адрэагавалі {emoji} на гэта паведамленне." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "І %lld іншых карыстальнікаў адрэагавалі {emoji} на гэта паведамленне." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "І яшчэ %lld адрэагаваў {emoji} на гэта паведамленне." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "І %lld іншых карыстальнікаў адрэагавалі {emoji} на гэта паведамленне." + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld друг реагира {emoji} на това съобщение." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld други реагираха {emoji} на това съобщение." + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "And %lld other has reacted {emoji} to this message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "And %lld others have reacted {emoji} to this message." + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld un altre ha reaccionat {emoji} a aquest missatge." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld uns altres han reaccionat {emoji} a aquest missatge." + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld další reagovali s {emoji} na tuto zprávu." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld dalších reagovalo s {emoji} na tuto zprávu." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld další reagoval {emoji} na tuto zprávu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld dalších reagovalo s {emoji} na tuto zprávu." + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb gyda {emoji} i'r neges hon." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb gyda {emoji} i'r neges hon." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb gyda {emoji} i'r neges hon." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb gyda {emoji} i'r neges hon." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb gyda {emoji} i'r neges hon." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ac mae %lld arall wedi ymateb {emoji} i'r neges hon." + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld anden har reageret {emoji} på denne besked." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld andre har reageret {emoji} på denne besked." + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Und %lld andere haben mit {emoji} auf diese Nachricht reagiert." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Und %lld andere haben mit {emoji} auf diese Nachricht reagiert." + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Και άλλος %lld αντέδρασε με {emoji} σε αυτό το μήνυμα." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Και %lld άλλοι αντέδρασαν με {emoji} σε αυτό το μήνυμα." + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "And %lld other has reacted {emoji} to this message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "And %lld others have reacted {emoji} to this message." + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaj %lld alia reagis {emoji} al ĉi tiu mesaĝo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaj %lld aliaj reagis {emoji} al ĉi tiu mesaĝo." + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y %lld más han reaccionado {emoji} a este mensaje." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y %lld otros han reaccionado {emoji} a este mensaje." + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y %lld otros han reaccionado {emoji} a este mensaje." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y %lld otros han reaccionado {emoji} a este mensaje." + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja %lld inimene on reageerinud {emoji} sellele sõnumile." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja %lld inimest on reageerinud {emoji} sellele sõnumile." + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eta %lld beste batek {emoji} erreakzioa bidali dio mezu honi." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eta %lld beste batzuk {emoji} erreakzioa bidali diote mezu honi." + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "و %lld نفر دیگر با {emoji} به این پیام واکنش نشان داده‌اند." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "و %lld نفر دیگر با {emoji} به این پیام واکنش نشان داده‌اند." + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja %lld muu on reagoinut viestiin: {emoji}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja %lld muuta on reagoinut viestiin: {emoji}." + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "At %lld (na) iba pa ang nag-react ng {emoji} sa mensaheng ito." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "At %lld (na) iba pa ang nag-react ng {emoji} sa mensaheng ito." + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et %lld autre a réagi {emoji} à ce message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et %lld autres ont réagi {emoji} à ce message." + } + } + } + } + }, + "gl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outra persoa reaccionou {emoji} a esta mensaxe." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outras persoas reaccionaron {emoji} a esta mensaxe." + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuma %lld wani ya yiwa wannan saƙo {emoji} alama." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuma %lld wasu sun yi wa wannan saƙo {emoji} alama." + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "ועוד %lld אחרים הגיבו עם {emoji} להודעה זו." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ועוד %lld אחד הגיב עם {emoji} להודעה זו." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ועוד %lld אחרים הגיבו עם {emoji} להודעה זו." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "ועוד %lld אחרים הגיבו עם {emoji} להודעה זו." + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "और %lld अन्य ने इस संदेश पर {emoji} प्रतिक्रिया दी है।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "और %lld अन्य ने इस संदेश पर {emoji} प्रतिक्रिया दी है।" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld osobe su reagirale {emoji} na ovu poruku." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld osoba je reagirala {emoji} na ovu poruku." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld osoba je reagiralo {emoji} na ovu poruku." + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "És további %lld személy reagált {emoji} az üzenetre." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "És további %lld személy reagált {emoji} az üzenetre." + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Եվ %lld մեկն արձագանքել է {emoji} այս հաղորդագրությանը:" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Եվ %lld արձագանքել են {emoji} այս հաղորդագրությանը:" + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dan %lld lainnya telah bereaksi {emoji} ke pesan ini." + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld altro ha reagito con {emoji} a questo messaggio." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "E altri %lld hanno reagito con {emoji} a questo messaggio." + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "და %lld სხვა რეაგირებდა {emoji} ამ შეტყობინებაზე." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "და %lld ადამიანმა რეაგირებდა {emoji} ამ შეტყობინებაზე." + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "និង %lld នាក់ផ្សេងទៀតបានធ្វើប្រតិកម្ម {emoji} ទៅកាន់សារនេះ" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಮತ್ತೊಬ್ಬರುಾಮರ್ಧನೆ {emoji} ಈ ಸಂದೇಶಕ್ಕೆ ಕೋಡು." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಮತ್ತೊಬ್ಬರುಾಮರ್ಧನೆ {emoji} ಈ ಸಂದೇಶಕ್ಕೆ ಕೋಡು." + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "그리고 %lld명이 이 메시지에 {emoji}로 반응했습니다." + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "و %lld کەسەیتر وێنە {emoji} داوا کرا بۆ ئەم پەیامە." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "و %lld کەسەیتر وێنە {emoji} داوا کرا بۆ ئەم پەیامە." + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Era %lld omulala afunye {emoji} ku bubaka buno." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Era %lld abalala balina {emoji} ku bubaka buno." + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir %lld kiti sureagavo {emoji} į šią žinutę." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir %lld kiti sureagavo {emoji} į šią žinutę." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir %lld kitas sureagavo {emoji} į šią žinutę." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir %lld kiti sureagavo {emoji} į šią žinutę." + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un vēl %lld cits ir reaģējis {emoji} uz šo ziņu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un vēl %lld citi ir reaģējuši {emoji} uz šo ziņu." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un vēl %lld citi ir reaģējuši {emoji} uz šo ziņu." + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld друг реагираше {emoji} на оваа порака." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld други реагираа {emoji} на оваа порака." + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мөн %lld хүн {emoji} энэ мессежид хариу үйлдэл хийсэн байна." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мөн %lld хүмүүс {emoji} энэ мессежид хариу үйлдэл хийсэн байна." + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dan %lld orang lain telah bertindak balas dengan {emoji} pada mesej ini." + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "နောက် %lld ဦးက ဒီမက်ဆေ့ချ်ကို {emoji} ဖြင့် တုံ့ပြန်ကြသည်။" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld annen har reagert {emoji} til denne meldingen." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld andre har reagert {emoji} til denne meldingen." + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "र %lld अन्य व्यक्तिले {emoji} यस सन्देशमा प्रतिक्रिया दिए।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "र %lld अन्य व्यक्तिहरूले {emoji} यस सन्देशमा प्रतिक्रिया दिए।" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "En %lld ander heeft gereageerd {emoji} op dit bericht." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "En %lld anderen hebben gereageerd {emoji} op dit bericht." + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld annan har reagert {emoji} til denne meldinga." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Og %lld andre har reagert {emoji} til denne meldinga." + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndipo %lld wamunthu wina wayankha {emoji} pa uthenga uwu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndipo %lld alionse ayankha {emoji} pa uthenga uwu." + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਤੇ %lld ਹੋਰ ਨੇ ਇਹ ਸੁਨੇਹਾ {emoji} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਦਿੱਤੀ ਹੈ।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਤੇ %lld ਹੋਰਾਂ ਨੇ ਇਹ ਸੁਨੇਹਾ {emoji} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਦਿੱਤੀ ਹੈ।" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld inne osoby zareagowały {emoji} na tę wiadomość." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld innych osób zareagowało {emoji} na tę wiadomość." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld innych zareagowało {emoji} na tą wiadomość." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld innych osób zareagowało {emoji} na tę wiadomość." + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "او %lld نورو {emoji} دې پیغام ته غبرګون وښود." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "او %lld نورو {emoji} دې پیغام ته غبرګون وښوده." + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outro reagiu {emoji} a esta mensagem." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outros reagiram {emoji} a esta mensagem." + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outro reagiu {emoji} a esta mensagem." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "E %lld outros reagiram {emoji} a esta mensagem." + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Și încă %lld au reacționat {emoji} la acest mesaj." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şi încă %lld a reacţionat {emoji} la acest mesaj." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Și încă %lld au reacționat {emoji} la acest mesaj." + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld других поставили {emoji} этому сообщению." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld других поставили {emoji} этому сообщению." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "И ещё %lld пользователь поставил(а) {emoji} этому сообщению." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld других поставили {emoji} этому сообщению." + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld druga su reagovala {emoji} na ovu poruku." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld drugih je reagovalo {emoji} na ovu poruku." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld drugi je reagovao {emoji} na ovu poruku." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I %lld drugih je reagovalo {emoji} na ovu poruku." + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ප්‍රතිචාර දැක්වූ %lld දෙනෙකුද මෙම පණිවිඩයට ප්‍රතිචාර දක්වා ඇත." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ප්‍රතිචාර දැක්වූ %lld දෙනෙක්ද මෙම පණිවිඩයට ප්‍රතිචාර දක්වා ඇත." + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld ďalší reagovali {emoji} na túto správu." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld ďalší reagovali {emoji} na túto správu." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld ďalší reagoval {emoji} na túto správu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "A %lld ďalší reagovali {emoji} na túto správu." + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "In %lld drugi so reagirali {emoji} na to sporočilo." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "In %lld drug je reagiral {emoji} na to sporočilo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "In %lld drugih je reagiralo {emoji} na to sporočilo." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "In %lld druga sta reagirala {emoji} na to sporočilo." + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dhe %lld të tjerë kanë reaguar {emoji} në këtë mesazh." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dhe %lld të tjerë kanë reaguar {emoji} në këtë mesazh." + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld други су реаговали {emoji} на ову поруку." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld други је реаговао {emoji} на ову поруку." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "И %lld других је реаговало {emoji} на ову поруку." + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "I još %lld osobe su reagovale {emoji} na ovu poruku." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "I još %lld osoba je reagovala {emoji} na ovu poruku." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "I još %lld osoba je reagovalo {emoji} na ovu poruku." + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Och %lld annan har reagerat {emoji} på detta meddelande." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Och %lld övriga har reagerat {emoji} på detta meddelande." + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na %lld mwingine ameonyesha hisia ya {emoji} kwenye ujumbe huu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na %lld wengine wameonyesha hisia ya {emoji} kwenye ujumbe huu." + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld மற்றவர்கள் {emoji} இப்போது இச்செய்திக்கு பதிலளித்துள்ளனர்." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld மற்றவர்கள் {emoji} இப்போது இச்செய்திக்கு பதிலளித்துள்ளனர்." + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సందేశానికి {emoji} స్పందించిన %lld ఇతరుడు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సందేశానికి {emoji} స్పందించిన %lld ఇతరులు" + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "และมี %lld คนอื่นๆ ที่ได้แสดงอีโมจิ {emoji} ให้กับข้อความนี้" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ve %lld diğeri bu mesaja {emoji} tepki verdi." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ve %lld diğerleri bu mesaja {emoji} tepki gösterdi." + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та ще %lld інших відреагували {emoji} на це повідомлення." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та ще %lld інших відреагували {emoji} на це повідомлення." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та ще %lld інший відреагував {emoji} на це повідомлення." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та ще %lld інших відреагували {emoji} на це повідомлення." + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "اور %lld دیگر نے اس پیغام پر {emoji} کا ردعمل ظاہر کیا۔" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "اور %lld دیگران نے اس پیغام پر {emoji} کا ردعمل ظاہر کیا۔" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Va %lld xabarga ushbu reaksiyani berdi: {emoji}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Va %lld xabarga ushbu reaksiyani berdi: {emoji}." + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Và %lld người khác đã phản ứng {emoji} với tin nhắn này." + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwaye omnye u %lld uphosele lo myalezo {emoji}." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwaye abaninzi u %lld baphosele lo myalezo {emoji}." + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "以及另外%lld人对此消息回应了{emoji}。" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 也對此訊息回應了 {emoji}." + } + } + } + } + } + } + }, + "emojiReactsHoverNameDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تفاعل بـ {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, {emoji_name} ilə reaksiya verdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} لذیذ کئیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} адрэагаваў(ла) {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} реагира с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagoval(a) {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat mit {emoji_name} reagiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} αντέδρασε με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagis kun {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reaccionó con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Reaccionó con {emoji_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reageeris {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(e)k {emoji_name}(e)kin erreakzionatu du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} با {emoji_name} واکنش نشان داد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagoi emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nag-react si {name} ng {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} הגיב עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je reagirao s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ezzel reagált {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ը արձագանքեց {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}が{emoji_name}でリアクションしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} បានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} ಮೂಲಕ ಪ್ರತಿಕ್ರಿಯಿಸಿದರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}이(가) {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دەستکاری کردبە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yasanze ku {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagavo su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reaģēja ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} реагираше со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} нь {emoji_name}-ээр хариу үйлдэл үзүүлсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ले {emoji_name} मा प्रतिक्रिया दिए" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reageerde met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} adachita ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੇ {emoji_name} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}: zareagowano za pomocą: {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagiu com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagiu com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} поставил(а) {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je reagirao sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagoval s {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je reagiral_a z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagoi me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је реаговао са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je reagovao sa {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} alijibu na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} உடன் பதிலளித்தார்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ต่อต่อด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} ile tepki verdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} відреагував з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے {emoji_name} پر ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {emoji_name} bilan reaksiyaga kirdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} usebenzise {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}回应了{emoji_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 回應了 {emoji_name}" + } + } + } + }, + "emojiReactsHoverNameTwoDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و{other_name} تفاعلا بـ {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və {other_name} {emoji_name} ilə reaksiya verdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} {emoji_name} لذیذ کئیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} адрэагавалі з {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} реагираха с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} reagovali {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} hat mit {emoji_name} reagiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} αντέδρασαν με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} reagis kun {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} reaccionaron con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Y {other_name} reaccionaron con {emoji_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} reageerisid {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name}k {emoji_name}(e)kin erreakzionatu dute" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} با {emoji_name} واکنش دادند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} reagoivat emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si {name} at {other_name} nag-react ng {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} sun amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ו-{other_name} הגיבו עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} ने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su reagirali s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} ezzel reagáltak {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ը և {other_name}-ը արձագանքեցին {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} hanno reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}と{other_name}が{emoji_name}でリアクションしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {other_name} უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {other_name} បានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} {emoji_name} ಮೂಲಕ ಪ್ರತಿಕ್ರಿಯಿಸಿದ್ದಾರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 및 {other_name}이(가) {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} دەستکاری کردبە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} baasanze ku {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} reagavo su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {other_name} reaģēja ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} реагираа со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} -ээр {emoji_name} реакц хийсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} သည် {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र {other_name} ले {emoji_name} मा प्रतिक्रिया दिए" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} reageerden met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} adaona ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {other_name} ਨੇ {emoji_name} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਦਿੱਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} oraz {other_name} zareagowali za pomocą: {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} reagiram com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} reagiram com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} поставили {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} reagirali su sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} reagovali s {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta reagirala z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} reaguan me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су реаговали са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su reagovali sa {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} walijibu na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} {emoji_name} உடன் பதிலளித்தனர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ต่อต่อด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} {emoji_name} ile tepki verdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} відреагували з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} نے {emoji_name} پر ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} {emoji_name} bilan reaksiyaga kirdilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} và {other_name} đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} basebenzise {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和{other_name}回应了{emoji_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 和 {other_name} 回應了 {emoji_name}" + } + } + } + }, + "emojiReactsHoverTwoNameMultipleDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} آخرين تفاعلوا بـ {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və digər {count} nəfər {emoji_name} ilə reaksiya verdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دٖگر وت {emoji_name} ات جواب دیگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых адрэагавалі з {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други реагираха с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} অন্যান্য {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších reagovalo {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} eraill wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere reagierten mit {emoji_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλοι αντέδρασαν με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj reagis per {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} otras personas reaccionaron con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Y otros {count} reaccionaron con {emoji_name} " + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} veel reageerisid {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} bestek {emoji_name}-rekin erreakzionatu dute" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} سایرین با {emoji_name} واکنش نشان دادند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta reagoivat emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si {name} at {count} iba pa nag-react gamit ang {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu sun amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ו{count} אחרים הגיבו עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य ने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih reagirali su s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik reagált ezzel {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ը և {count} այլ անձինք արձագանքել են {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} hanno reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}と{count}その他が{emoji_name}で反応しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {count} ან სხვები უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {count} នាក់ផ្សេងទៀត បានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರು {emoji_name} ಮೂಲಕ ಪ್ರತಿಕ್ರಿಯಿಸಿದ್ದಾರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}과 {count}명이(가) {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} تایبەتمەندان دەستکاری کردبە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} balala baasanze ku {emoji_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others reacted with {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti sureagavo su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {count} citi reaģēja ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други реагираа со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад -ээр {emoji_name} реакц хийсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} yang lain bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} မှ {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र अर्को {count} ले {emoji_name} मा प्रतिक्रिया दिए" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen reageerden met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena adachita ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰ ਨੇ {emoji_name} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਦਿੱਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników zareagowali za pomocą: {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros reagiram com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros reagiram com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других поставили {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih reagirali su sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} අනෙක් අය {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší reagovali pomocou {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugih so reagirali z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë reaguan me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других реаговали су са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su reagovali sa {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine walireact na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} மற்றவர்கள் {emoji_name} உடன் பதிலளித்தனர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {count} คนอื่นๆ แสดงอารมณ์ด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer {emoji_name} ile tepki verdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {count} інші відреагували з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر نے {emoji_name} پر رد عمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalar {emoji_name} bilan reaksiyaga kirdilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} và {count} người khác đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye baphendule nge {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}人回应了{emoji_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 和 {count} 人 回應了 {emoji_name}" + } + } + } + }, + "emojiReactsHoverYouNameDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفاعلت مع {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji_name} ilə reaksiya verdiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وت {emoji_name} ات جواب دیگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы адрэагавалі з {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ти реагира с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vós heu reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovali jste {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych chi wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast mit {emoji_name} reagiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς αντέδρασατε με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi reagis per {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reaccionaste con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reaccionaste con {emoji_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reageerisid {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk {emoji_name}-rekin erreakzionatu duzu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما با {emoji_name} واکنش نشان دادید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä reagoit emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nag-react ka ng {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai ka amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה הגבת עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste reagirali s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te ezzel reagáltál: {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք արձագանքել եք {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたは{emoji_name}でリアクションしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {emoji_name} ಗೆ ಪ್ರತಿಕ್ರಿಯಿಸಿದ್ರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자님이 {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەستکاری کریت بە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wasanze ku {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs sureagavote su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs reaģējāt ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие реагиравте со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {emoji_name} -ээр хариу үйлдэл үзүүлсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အား {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले {emoji_name} प्रतीकसँग प्रतिक्रिया दिनुभयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U reageerde met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu adayankha ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {emoji_name} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zareagowano za pomocą {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você reagiu com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagiu com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы поставили {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovali ste sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovali ste s {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste reagirali z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju reaguat me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте реаговали са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovali ste sa {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umejibu na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {emoji_name} உடன் பதிலளித்தீர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณได้แสดงความรู้สึกด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {emoji_name} ile tepki verdiniz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви відреагували з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے {emoji_name} پر ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji_name} bilan reaksiyaga kirdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uphendule nge {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您回应了{emoji_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您回應了 {emoji_name}" + } + } + } + }, + "emojiReactsHoverYouNameMultipleDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفاعلت أنت و{count} آخرين مع {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz və digər {count} nəfər, {emoji_name} ilə reaksiya verdiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اور {count} دٖگر وت {emoji_name} ات جواب دیگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {count} іншых адрэагавалі з {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ти и {count} други реагирахте с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} অন্যান্য {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vós, {count} altres heu reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších reagovalo {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere reagierten mit {emoji_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {count} άλλοι αντέδρασαν με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj reagis per {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tú y {count} otras personas reaccionaron con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tú y otros {count} reaccionasteis con {emoji_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {count} veel reageerisid {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {count} beste {emoji_name}-rekin erreakzionatu duzue" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {count} سایرین با {emoji_name} واکنش نشان دادید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta reagoivat emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa nag-react gamit ang {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres avez réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai da {count} wasu sun amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה ו{count} אחרים הגבתם עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपने और {count} अन्य ने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste reagirali s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy ezzel reagáltatok: {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} այլ անձինք արձագանքել են {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e altri {count} avete reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたと他{count}人が{emoji_name}でリアクションしました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვა უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} នាក់ផ្សេងទៀត បានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರು {emoji_name} ಗೆ ಪ್ರತಿಕ್ರಿಯಿಸಿದ್ರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자님과 {count}명이(가) {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} های دەستکاری کردبە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne{count} balala baasanze ku {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {count} kiti sureagavo su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs un {count} citi reaģējāt ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други реагиравте со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та and {count} бусад хүн {emoji_name} -тэй хариу үзүүлсэн байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} yang lain bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်နှင့် {count} မှ {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले र {count} अन्यले {emoji_name} प्रतिक्रिया जनाउनु भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {count} anderen reageerden met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena adachita ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰ ਨੇ {emoji_name} ਨਾਲ ਪ੍ਰਤੀਕ੍ਰਿਆ ਦਿੱਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników zareagowaliście za pomocą: {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros reagiram com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros reagiram com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} ați reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других поставили {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih reagirali ste sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} අනෙක් අය {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší reagovali pomocou {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugih so reagirali z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë reaguat me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} других реаговали сте са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} других сте реаговали са {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mlijibu na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} மற்றவர்கள் {emoji_name} உடன் பதிலளித்தனர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณและ {count} อื่นๆ ได้แสดงความรู้สึกด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {count} diğer {emoji_name} ile tepki gösterdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {count} інші відреагували з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر نے {emoji_name} پر ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqalar {emoji_name} bilan reaksiyaga kirdilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn và {count} người khác đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wena, {count} abanye baphendule nge {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您和其他{count}人回应了{emoji_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您和 {count} 人 回應了 {emoji_name}" + } + } + } + }, + "emojiReactsHoverYouNameTwoDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {name} het gereageer met {emoji_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفاعلت أنت و{name} مع {emoji_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz və {name}, {emoji_name} ilə reaksiya verdiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سہ، {name} ہبی {emoji_name} ات جواب دیگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {name} адрэагавалі з {emoji_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ти и {name} реагирахте с {emoji_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {name} {emoji_name} দিয়ে প্রতিক্রিয়া করেছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vós i {name} han reaccionat amb {emoji_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} reagovali {emoji_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {name} wedi ymateb gyda {emoji_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} reagerede med {emoji_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {name} haben mit {emoji_name} reagiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {name} αντέδρασαν με {emoji_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {name} reacted with {emoji_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {name} reagis per {emoji_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tú y {name} reaccionaron con {emoji_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y tú reaccionasteis con {emoji_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {name} reageerisite {emoji_name}'ga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {name} (e)k {emoji_name}rekin erreakzionatu duzue" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {name} با {emoji_name} واکنش نشان دادید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {name} reagoivat emojilla {emoji_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {name} ay nag-react ng {emoji_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {name} avez réagi avec {emoji_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai da {name} sun amsa da {emoji_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה ו-{name} הגבתם עם {emoji_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपने और {name} ने {emoji_name} के साथ प्रतिक्रिया व्यक्त की" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} ste reagirali s {emoji_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {name} ezzel reagáltatok: {emoji_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {name}-ը արձագանքել եք {emoji_name}-ով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} memberi reaksi {emoji_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {name} avete reagito con {emoji_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたと{name}が{emoji_name}で反応しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {name} უპასუხეს {emoji_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {name} បានប្រតិកម្មដោយ {emoji_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {name} {emoji_name} ಮೂಲಕ ಪ್ರತಿಕ್ರಿಯಿಸಿದರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 및 {name}님이 {emoji_name}으로 반응했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {name} دەستکاری کردبە {emoji_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe and {name} reagyed {emoji_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {name} sureagavo su {emoji_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs un {name} reaģējāt ar {emoji_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {name} реагиравте со {emoji_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {name} нар {emoji_name} -ээр хариу үйлдэл үзүүлсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} bertindak balas dengan {emoji_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်နှင့် {name} သည် {emoji_name} ဖြင့်တုံ့ပြန်ခဲ့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} reagerte med {emoji_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईँ र {name} ले {emoji_name} सँग प्रतिक्रिया दिनुभयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {name} reageerden met {emoji_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} reagerte med {emoji_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {name} adayankha ndi {emoji_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {name} ਨੇ {emoji_name} ਨਾਲ ਪ੍ਰਤਿਕਿਰਿਆ ਦਿੱਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i użytkownik {name} zareagowaliście za pomocą: {emoji_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {name} د {emoji_name} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} reagiram com {emoji_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} reagiram com {emoji_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {name} ați reacționat cu {emoji_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {name} поставили {emoji_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {name} ste reagovali sa {emoji_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ හා {name} {emoji_name} සමඟ ප්‍රතිචාර දැක්වීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} reagovali s {emoji_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {name} sta reagirala z {emoji_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {name} reaguat me {emoji_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {name} сте реаговали са {emoji_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} ste reagovali sa {emoji_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {name} reagerade med {emoji_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {name} mliitikia na {emoji_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {name} {emoji_name} உடன் பதிலளித்தனர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {name} {emoji_name} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณและ {name} ได้แสดงความรู้สึกด้วย {emoji_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {name} {emoji_name} ile tepki verdiniz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {name} відреагували з {emoji_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {name} نے {emoji_name} پر ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {name} {emoji_name} bilan reaksiyaga kirdilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn và {name} đã phản ứng với {emoji_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wena, {name} baphendule nge {emoji_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您使用{emoji_name}回应了{name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您和 {name} 回應了 {emoji_name}" + } + } + } + }, + "emojiReactsNotification" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het op jou boodskap gereageer {emoji}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفاعل مع رسالتك {emoji}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajınıza {emoji} reaksiyasını verdi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تواں پیغام ءَ کےپتیں {emoji}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адрэагаваў на ваша паведамленне {emoji}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Реагира на вашето съобщение {emoji}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার মেসেজে {emoji} প্রতিক্রিয়া জানানো হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Va reaccionar al teu missatge {emoji}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagoval(a) na vaši zprávu {emoji}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi ymateb i'ch neges {emoji}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagerede på din besked {emoji}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hat auf deine Nachricht mit {emoji} reagiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντέδρασαν με το μήνυμα {emoji}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reacted to your message {emoji}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagis al via mesaĝo {emoji}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha reaccionado a tu mensaje {emoji}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reaccionó a tu mensaje {emoji}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reageeris sinu sõnumile {emoji}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure mezura {emoji} erreakzionatu du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} واکنش به پیام شما" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagoi viestiisi {emoji}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nag-react sa iyong mensahe {emoji}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "A réagi à votre message {emoji}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reaccionou á túa mensaxe {emoji}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya yi martani ga saƙonka {emoji}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגיב להודעתך {emoji}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके संदेश पर प्रतिक्रिया दी {emoji}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagirao je na tvoju poruku {emoji}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagált az üzenetedre {emoji}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արձագանքել է ձեր հաղորդագրությանը {emoji}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bereaksi pada pesan Anda {emoji}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha reagito al tuo messaggio {emoji}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたのメッセージにリアクションしました {emoji}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი შეტყობინება მოვიდა {emoji} რეაქცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានធ្វើប្រតិកម្មចំពោះសាររបស់អ្នក {emoji}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಸಂದೇಶಕ್ಕೆ ಪ್ರತಿಕ್ರಿಯಿಸಲಾಗಿದೆ {emoji}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신의 메시지에 {emoji} 반응함" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وەڵامە لە پەیامەکەت {emoji}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abaakoleddeko ekifo kyo {emoji}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sureagavo į jūsų žinutę {emoji}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} reaģēja uz tavu ziņu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Реагирал на вашата порака {emoji}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны зурваст эможи хариу үзүүлсэн {emoji}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reaksi kepada mesej anda {emoji}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်မက်ဆေ့ချ်ကို {emoji} ဖြင့် တုံ့ပြန်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagerte på meldingen din {emoji}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको सन्देशमा {emoji} प्रतिकृया जनाइएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reageerde op je bericht {emoji}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagerte på meldinga di {emoji}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachita React ku uthenga wanu {emoji}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਸੁਨੇਹੇ 'ਤੇ ਪ੍ਰਤੀਕਰਮ ਕੀਤਾ {emoji}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zareagowano na Twoją wiadomość {emoji}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو پیغام ته {emoji} سره غبرګون وښود" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagiu à sua mensagem {emoji}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagiu à sua mensagem {emoji}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "A reacționat la mesajul tău {emoji}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отреагировали на ваше сообщение {emoji}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovao/la na tvoju poruku {emoji}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ පණිවිඩයට {emoji} ප්‍රතිචාර දක්වා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagoval/a na vašu správu {emoji}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagiral(-a) na vaše sporočilo {emoji}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagoi ndaj mesazhit tënd {emoji}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Реаговао је на твоју поруку {emoji}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagovao na vašu poruku {emoji}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reagerade på ditt meddelande {emoji}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amezidi ujumbe wako {emoji}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் செய்திக்கு {emoji} கொண்டு பதிலளித்தார்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ సందేశానికి {emoji} తో స్పందించారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงความเห็นผ่านอิโมจิที่ข้อความของคุณ {emoji}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajınıza {emoji} ile tepki verdi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відреагували на ваше повідомлення {emoji}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پیغام پر {emoji} کا ردعمل دیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizning xabaringizga {emoji} yordamida reaksiyalar bildirildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã phản hồi với tin nhắn của bạn {emoji}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uphendule umyalezo wakho {emoji}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "对您的消息作出反应{emoji}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已對您的訊息做出反應 {emoji}。" + } + } + } + }, + "enable" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel In" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفعيل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fəallaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уключыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সক্রিয় করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Habiliteu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galluogi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivér" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ενεργοποίηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enable" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝalti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luba" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ota käyttöön" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-enable" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba da izini" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אפשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सक्षम करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engedélyezés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attiva" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "有効にする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გააქტიურება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಕ್ರಿಯಗೊಳಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "활성화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالاک کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambula" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເປີດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įjungti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iespējot" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идэвхжүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖွင့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सक्षम गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inschakelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru på" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yambitsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚਾਲੂ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Włącz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعالول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබල කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapnúť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogoči" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivizoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Укључи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omoguci" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wezesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செயல்படுத்தவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రారంభించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิดใช้งาน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etkinleştir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увімкнути" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yoqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "启用" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "啟用" + } + } + } + }, + "errorConnection" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan jou internet konneksie na en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء التحقق من اتصالك بالإنترنت وحاول مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən internet bağlantınızı yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی اپنے انٹرنیٹ کنکشن چیک کنیں و دوبارہ کوشش کنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, праверце злучэнне з інтэрнэтам і паспрабуйце яшчэ раз." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, проверете интернет връзката си и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার ইন্টারনেট সংযোগ যাচাই করুন এবং আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comprova si estas en línia i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkontrolujte prosím připojení k internetu a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiriwch eich cysylltiad rhyngrwyd a cheisio eto." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst tjek din internetforbindelse og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte überprüfe deine Internetverbindung und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο και προσπαθήστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check your internet connection and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu kontroli vian interretan konekton kaj reprovu." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, compruebe su conexión a internet e inténtelo de nuevo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comprueba su conexión a internet e inténtelo de nuevo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun kontrollige oma internetiühendust ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, egiaztatu zure internet konexioa eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً اتصال اینترنت خود را بررسی و مجدداً سعی کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarkista Internet-yhteytesi ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakitingnan ang iyong koneksyon sa internet at subukang muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez vérifier votre connexion internet et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comproba a túa conexión a Internet e téntao de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba haɗin internet dinka kuma sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בדוק את חיבור האינטרנט שלך ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया अपनी इंटरनेट कनेक्शन और फिरसे प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite svoju internetsku vezu i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ellenőrizd az internetkapcsolatot, majd próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ստուգել ձեր ինտերնետ կապը և փորձել նորից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silakan periksa koneksi internet Anda dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controlla la tua connessione e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "インターネット接続を確認して、もう一度やり直してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეამოწმოთ თქვენი ინტერნეტის კავშირი და სცადეთ კიდევ ერთხელ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមពិនិត្យការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인터넷 연결을 확인하시고 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ بەبەرەمە ئینتەرنێت و دووبارە بکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakasa ekutula kuno ne kkomewo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patikrinkite savo interneto ryšį ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, pārbaudi savu interneta pieslēgumu un mēģini vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме проверете ја вашата интернет конекција и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Интернэт холболтоо шалгаж дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila semak sambungan internet anda dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အင်တာနက် ချိတ်ဆက်မှုကို စစ်ဆေးပြီး ထပ်မံကြိုးစားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sjekk internettforbindelsen din og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controleer je internetverbinding en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst sjekk internettforbindelsen din og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde onani kulumikizana kwanu pa intaneti ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਆਪਣਾ ਇੰਟਰਨੈਟ ਸੰਪਰਕ ਜਾਂਚੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprawdź swoje połączenie z internetem i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ خپل انټرنيټ کنکشن وګورئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor verifique sua conexão com a internet e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique a sua conexão à Internet e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să verificați conexiunea la internet și să încercați din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, проверьте подключение к интернету и повторите попытку." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite internet vezu i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර ඔබේ අන්තර්ජාල සම්බන්ධතාව පරීක්ෂා කර නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skontrolujte svoje internetové pripojenie a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, preveri svojo internetno povezavo in poskusi znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi kontrolloni lidhjen tuaj të internetit dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проверите интернет конекцију и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo proverite internet konekciju i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrollera din internetanslutning och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali kagua muunganiko wako wa intaneti na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் இணைய இணைப்பைப் சரிபார்த்து மறுபடியும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి మీ ఇంటర్నెట్ కనెక్షన్‌ను తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดตรวจสอบการเชื่อมต่ออินเทอร์เน็ตและลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, перевірте підключення до Інтернету та спробуйте ще раз." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم اپنے انٹرنیٹ کنکشن کو چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internet ulanishingizni tekshiring va qaytadan urinib ko‘ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng kiểm tra kết nối internet của bạn và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ujonge uqhagamshelo lwe-intanethi kwaye uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请检查您的网络连接并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請檢查您的網路連線,然後再試一次。" + } + } + } + }, + "errorCopyAndQuit" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer Fout en Verlaat" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخ الخطأ والخروج" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xətanı kopyala və çıx" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نقل غلطی اور نکل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіяваць памылку і выйсці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирай грешката и излез" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কপি ত্রুটি এবং প্রস্থান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia l'error i surt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkopírovat chybu a ukončit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïo Gwall a Chau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier fejl og afslut" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler kopieren und beenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγραφή σφάλματος και έξοδος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Error and Quit" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopii la eraron kaj eliri" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar error y salir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar error y salir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri viga ja sulge" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errorea kopiatu eta irten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی ارور و خروج" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi virhe ja lopeta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin ang Error at Umalis" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copier l'erreur et quitter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar erro e saír" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi kuskure da fita" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק שגיאה וצא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "त्रुटि कॉपी करें और छोड़ दें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj grešku i izađi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba másolása és kilépés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենել սխալը և դուրս գալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin Galat dan Berhenti" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia l'errore ed esci" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "エラーの文章をコピーして終了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომის დაკოპირება და გათიშვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចម្លងបញ្ហា និងចាកចេញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದೋಷವನ್ನು ನಕಲಿಸಿ ಮತ್ತು ತ್ಯಜಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복사 오류 및 종료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لەبەرگرتنەوەی هەڵە و دەرچوون" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa Ssobi oluleke" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບເອີເທິ່ນຫຍັງາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopijuoti klaidą ir išeiti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopēt kļūdu un iziet" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај грешка и излези" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Алдаа болон програмыг хаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin Ralat dan Berhenti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error ကို ကူးယူပြီး ထွက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier feil og avslutt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "त्रुटि प्रतिलिपि गर्नुहोस् र बाहिर निस्कनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foutmelding kopiëren en afsluiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier feilmelding og avslutt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani cholakwika ndikuyimitsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤੀ ਦੀ ਨਕਲ ਕਰੋ ਅਤੇ ਬੰਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopiuj błąd i zakończ" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپی URL" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar Erro e Sair" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar erro e sair" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiază eroare și închide aplicația" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопировать ошибку и выйти" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj grešku i izađi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දෝෂය පිටපත් කර ඉවත්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovať chybu a ukončiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj napako in zapusti aplikacijo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjo gabimin dhe dil" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај грешку и изађи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskopiraj grešku i zatvori" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera felmeddelande och avsluta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili Hitilafu na Kuacha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோளாறை காபி செய்து வெலியேரவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరచుకునేది మరియు నిరాకేష్ణం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Error and Quit" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata Kopyala ve Çık" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скопіювати помилку та вийти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خرابی کاپی کرکے باہر نکلیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xatoni nusxalang va chiqing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép lỗi và thoát" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa Iphutha kwaye Phuma" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制错误并退出" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "複製錯誤並離開。" + } + } + } + }, + "errorDatabase" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasis Fout" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ في قاعدة البيانات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databaza xətası" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا بیس غلطی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка базы дадзеных" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка в базата данни" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাটাবেস ত্রুটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de la base de dades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba databáze" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall Cronfa Ddata" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasefejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbankfehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα Βάσης Δεδομένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Error" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datumbaza eraro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo en la base de datos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de base de datos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmebaasi viga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data-base errorea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطای پایگاه داده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietokantavirhe" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sa Database" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur de base de données" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro de base de datos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskuren Database" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאת מסד נתונים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटाबेस त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška baze podataka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatbázishiba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալների բազայի սխալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan Database" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore del database" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データベースエラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემთა ბაზის შეცდომა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ហាទិន្នន័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೇಟಾಬೇಸ್ ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 오류" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەی بنکەی زانیاریەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi ya Database" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂໍ້ມູນຂອງຖານຂໍ້ມູນຜິດພາດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duomenų bazės klaida" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datu bāzes kļūda" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка во базата на податоци" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өгөгдлийн сангийн алдаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat Pangkalan Data" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာဘေ့စ် အမှား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasefeil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटाबेस त्रुटि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasefout" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasefeil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cholakwika cha Database" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾਬੇਸ ਗਲਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd bazy danych" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیبګ لاګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na base de dados" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na base de dados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare de bază de date" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка базы данных" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška baze podataka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්තසමුදායේ දෝෂයකි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba databázy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka v bazi podatkov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim Baze të Dhënash" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка у бази података" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška baze podataka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databasfel" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitilafu ya Database" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தரவுதல கோலாரு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటాబేస్ ఎర్రర్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Error" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı Hatası" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка бази даних" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا بیس خرابی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar bazasi xatosi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi cơ sở dữ liệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphutha leDatha yeBanki" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "数据库错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "資料庫錯誤" + } + } + } + }, + "errorUnknown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "‘n Onbekende fout het voorgekom." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدث خطأ غير معروف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinməyən bir xəta baş verdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نامعلوم خطا پیش آئی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адбылася невядомая памылка." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възникна неизвестна грешка." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি অজানা ত্রুটি ঘটেছে." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha produït un error desconegut." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo k neznámé chybě." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digwyddodd gwall anhysbys." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der opstod en ukendt fejl." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein unbekannter Fehler ist aufgetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρουσιάστηκε άγνωστο σφάλμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An unknown error occurred." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonata eraro okazis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un fallo desconocido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un fallo desconocido." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekkis tundmatu viga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore ezezagun bat gertatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک خطای ناشناخته رخ داد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapahtui tuntematon virhe." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May naganap na di-kilalang error." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une erreur inconnue est survenue." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Produciuse un erro descoñecido." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wani kuskure mara sani ya auku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אירעה שגיאה לא ידועה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक अज्ञात त्रुटि हुई।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do nepoznate greške." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen hiba történt." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ սխալ է տեղի ունեցել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terjadi kegagalan yang tidak diketahui." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si è verificato un errore sconosciuto." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知のエラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი შეცდომა მოხდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានកំហុសមិនស្គាល់មួយបានកើតឡើង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ ದೋಷವೊಂದು ಸಂಭವಿಸಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 오류가 발생했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەیەکی نەناسراو ڕوویدا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waliwo ensobi entategerekese." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ມີຄວາມຜິດພາດທີ່ບໍ່ແມ່ນທີີ່ຮູ້ຈັກເກີດຂຶ້ນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įvyko nežinoma klaida." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radusies nezināma kļūda." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се појави непозната грешка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танихгүй алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat tidak dikenali berlaku." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မမျှော်လင့်ဘူး အမှားတစ်ခု ဖြစ်နေပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ukjent feil oppstod." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एउटा अज्ञात त्रुटि देखा पर्‍यो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een onbekende fout opgetreden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ukjent feil oppstod." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuto losadziwika lidachitika." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਅਣਪਛਾਤਾ ਖ਼ੁਲਾਸਾ ਹੋਇਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wystąpił nieznany błąd." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوه نامعلومه تېروتنه وشوه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro desconhecido." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro desconhecido." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "O eroare neașteptată a avut loc." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Произошла неизвестная ошибка." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do nepoznate greške." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා දෝෂයක් සිදු විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyskytla sa neznáma chyba." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prišlo je do neznane napake." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një gabim i panjohur." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дошло је до непознате грешке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do nepoznate greške." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett okänt fel har uppstått." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa lisilojulikana limetokea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு அறியப்படாத பிழை நேர்ந்தது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గుర్తని లోపం సంభవించింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดไม่ทราบสาเหตุ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen bir hata oluştu." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невідома помилка" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک نامعلوم خرابی پیش آئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma'lum xato yuz berdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một lỗi không xác định đã xảy ra." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwenzeke impazamo engaziwayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发生了未知错误。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "發生不明錯誤。" + } + } + } + }, + "failures" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foute" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاقات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xətalar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گپت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যর্থতা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyby" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methiannau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrerede fejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failures" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestumised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsegiteak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خرابی‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Nabigo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échecs" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erros" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gazawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כישלונות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "विफलतायें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspjesi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hibák" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձախողումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errori" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "失敗" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აკლევები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಿಫಲತೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebiremererwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesėkmės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kļūmes" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспеси" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Амжилтгүй оролдлогууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kegagalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျၡုံးမှုများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेटिङ्ग पछ्याउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mislukkingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pantakuna" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫੇਲ੍ਹ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awarie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناکامۍ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falhas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falhas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erori" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сбои" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspjesi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අසාර්ථකවීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyby" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napake" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështime" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešnosti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kushindwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவல் பிழைகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వైఫల్యాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hatalar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відмови" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناکامیاں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xatolar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iingxaki" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "失敗" + } + } + } + }, + "file" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxer" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soubor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ffeil" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αρχείο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosiero" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fail" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedosto" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fichier" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayil" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קובץ" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fájl" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berkas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayiro" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fails" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Датотека" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fail" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको QR कोड स्क्यान गरेर साथीहरूले तपाईंलाई सन्देश पठाउन सक्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestand" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plik" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișier" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනුව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Súbor" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteka" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartelë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фајл" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fajl" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fil" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "jalada" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దస్థవెధి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائل" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayl" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tập tin" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifayile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案" + } + } + } + }, + "files" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lêers" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملفات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayllar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بُرگاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাইলস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxers" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soubory" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ffeiliau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateien" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αρχεία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosieroj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitxategiak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایل‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiedostot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga File" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fichiers" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiros" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayiloli" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבצים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ाइलें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fájlok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ֆայլեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berkas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ファイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფაილები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡತಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일들" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایلەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eza Fayiro" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faili" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Датотеки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fail" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိုင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestanden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਇਲਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pliki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فایلونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficheiros" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fișiere" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файлы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගොනු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Súbory" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datoteke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartela" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фајлови" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fajlovi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Majalada" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫైళ్లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosyalar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файли" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فائلیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fayllar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tập tin" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iifayile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檔案" + } + } + } + }, + "followSystemSettings" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volg stelselinstellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "طابق إعدادات النظام" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem ayarlarını izlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آگاھی سسیتم پرات وٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выкарыстоўвайце налады сістэмны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следвай системните настройки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Follow system settings" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir configuracions del sistema" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Použít nastavení systému" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dilyn gosodiadau'r system" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg systemindstillinger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systemeinstellungen folgen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιστοίχιση ρυθμίσεων συστήματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Follow system settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekvi sistemajn agordojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir configuración del sistema" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coincidir ajustes del sistema" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järgi süsteemi sätteid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jarraitu sistema ezarpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مطابق با تنظیمات سیستم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seuraa järjestelmän asetusta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sundin ang mga setting ng system" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faire correspondre aux paramètres systèmes" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguir a configuración do sistema" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi saitunan tsarin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עקוב אחרי הגדרות המערכת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिस्टम सेटिंग्स का पालन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slijedite sistemske postavke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rendszerbeállítások követése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հետևել համակարգի կարգավորումներին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesuaikan dengan pengaturan sistem" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizza le impostazioni di sistema" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "システム設定に合わせる" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაემორჩილეთ სისტემის კონფიგურაციას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្គូផ្គងការកំណត់ប្រព័ន្ធ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಂಕಣೋತ್ಸವವು ಪಾಲಿಸಲಾಗುವುದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "시스템 설정 따르기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شیاوی سیستەمەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goberera ssitula z'empuliziganya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekti sistemos nustatymus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekot sistēmas iestatījumiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следи системски подесувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системийн тохиргоонуудыг дагах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikut tetapan sistem" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ရုပ်ဆီstem ဆက်တင်များကိုလိုက်နာပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg systeminnstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सहयोग पृष्ठमा जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeeminstellingen volgen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Følg systeminnstillinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsatira makonda a dongosolo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਸਟਮ ਸੈਟਿੰਗਾਂ ਦੀ ਪਾਲਣਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dopasuj do ustawień systemu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سیسټم تنظیمات تعقیب کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acompanhar as configurações do sistema" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alinhar com definições do sistema" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Urmează setările sistemului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Использовать настройки системы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prati sistemske postavke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සැකසුමට ගළපන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rovnaké ako nastavenia systému" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sledi sistemskim nastavitvam" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndiq cilësimet e sistemit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пратити системска подешавања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prati sistemska podešavanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Följ systeminställningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fuata mipangilio ya mfumo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணினி அமைப்புகளை பின்பற்றுக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సిస్టమ్ సెట్టింగ్‌లను అనుసరించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตามการตั้งค่าระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem ayarlarını takip et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Використовувати системні налаштування" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سسٹم کی ترتیبات کو فالو کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tizim sozlamalariga ergashing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Theo cài đặt hệ thống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Landela usetiwe lwenkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "匹配系统设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "遵循系統設定" + } + } + } + }, + "from" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Van:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مِن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimdən:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "واکا:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ад:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "От:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রেরক:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oddi wrth:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fra:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Von:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Από:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "From:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "El:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saatja:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nork:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähettäjä:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mula kay:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "De :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daga:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מאת:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "तरफ से:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feladó:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկող:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dari:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "差出人:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გან:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពី៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆ:ನಿಂದ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보낸 사람:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuva:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuo:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "No:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Од:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээгч:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daripada:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မှ-" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fra:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह त्रुटि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Van:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frå:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuchokera:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੋਂ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "De:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "De la:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "От:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalje:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වෙතින්:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nga:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Од:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Od:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Från:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutoka:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்புனர்:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎవరినుండి:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "จาก:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimden:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Від:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سے:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dan:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Từ:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuva:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送自:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "來自:" + } + } + } + }, + "fullScreenToggle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skakel Volskerm aan/af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحويل الشاشة كاملة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tam ekranı aç/bağla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکمل سکرین ٹوگل کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пераключыцца ў поўнаэкранны рэжым" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Превключване на пълен екран" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফুল স্ক্রীন টগল করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activa o desactiva la pantalla completa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přepnout celou obrazovku" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toglo Sgrin Llawn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis fuldskærm" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vollbildanzeige" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εναλλαγή Πλήρους Οθόνης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Full Screen" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baskuligi plenekranan reĝimon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar pantalla completa" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar pantalla completa" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lülita täisekraanirežiimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pantaila Osoa Aldatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاگل فول اسکرین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaihda kokoruututila" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-toogle ang Buong Screen" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activer/désactiver le plein écran" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alternar Pantalla Completa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauya Cikakken Allo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עורר מסך מלא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूर्णस्क्रीन में जाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi cijeli zaslon" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teljes képernyő be-/kikapcsolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել ամբողջ էկրանը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle layar penuh" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modalità schermo intero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "フルスクリーンを切り替える" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სრულ ეკრანზე გადართვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Full Screen" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪೂರ್ಣ ಪರದೆ ತೊಗಲ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle Full Screen" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فول سکرین گۆڕین" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guliko Full Screen" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perjungti visą ekraną" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pārslēgt pilnekrāna režīmu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Префрли на цел екран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүтэн дэлгэц солих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Togol Skrin Penuh" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြည့်မှန်ကို ခလုတ် ဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru av/på Fullskjerm" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूर्ण स्क्रीन टगल गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volledigschermmodus" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru av/på Fullskjerm" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinthanani Screen yonse" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੂਰੀ ਸਕਰੀਨ ਟੌਗਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pełny ekran" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول سکرین ټوګل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tela inteira" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar ecrã completo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comutare la ecran complet" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Полноэкранный режим" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prebaci na cijeli ekran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්පූර්ණ තිරය ටොගල් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Celá obrazovka" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preklopi na Celoten zaslon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalo në/Dil nga Sa Krejt Ekrani" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пребаците цео екран" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi/isključi prikaz preko cеlog еkrana" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slå av/på fullskärm" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geuza Skrini Kamili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முழுத்திரையாக மாறும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫుల్ స్క్రీన్ ని మారుస్తుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สลับไปเต็มหน้าจอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tam Ekranı Aç/Kapat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увійти до повноекранного режиму" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فُل اسکرین کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "To'liq ekranga chiqarish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bật/Tắt toàn màn hình" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guqula Isikrini Esipheleleyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "全屏" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "切換全螢幕" + } + } + } + }, + "gif" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صورة GIF" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گیف" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գիֆ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗಿಫ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहका सदस्यहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF-i" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ГИФ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గిఫ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ГІФ" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "GIF" + } + } + } + }, + "giphyWarning" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗಿಫ್ಫಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గిఫీ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giphy" + } + } + } + }, + "giphyWarningDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sal aan Giphy koppel om soekresultate te verskaf. Jy sal nie volledige metadata beskerming hê as jy GIFs stuur nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} سيتصل بمنصة Giphy لتقديم نتائج البحث. لن يكون لديك حماية كاملة للبيانات الوصفية عند إرسال الصور المتحركة (GIFs)." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} axtarış nəticələrini təqdim etmək üçün Giphy-ə bağlanacaq. GIF göndərərkən tam metadata qorumasına sahib olmayacaqsınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ګیپہ ژن چی نازردہ ژن انجام گی ییگر کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} падключыцца да Giphy для прадастаўлення вынікаў пошуку. Вы не будзеце мець поўнай абароны метададзеных пры адпраўцы GIF-файлаў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ще се свърже с Giphy, за да предоставя резултати от търсенето. Вие няма да имате пълна защита на метаданни, когато изпращате GIF файлове." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy এ সংযোগ করবে অনুসন্ধানের ফলাফল সরবরাহ করার জন্য। আপনাকে গিফ পাঠানোর সময় পুরো মেটাডেটা প্রোটেকশন পাবেন না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} es connectarà a Giphy per proporcionar resultats de cerca. No tindreu protecció completa de metadades quan envieu GIFs." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se připojí k Giphy, aby poskytla výsledky vyhledávání. Při odesílání GIFů nebudete mít plnou ochranu metadat." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd {app_name} yn cysylltu â Giphy i ddarparu canlyniadau chwilio. Ni fyddwch yn cael diogelu metadata llawn wrth anfon GIFs." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil oprette forbindelse til Giphy for at levere søgeresultater. Du vil ikke have fuld beskyttelse af metadata, når du sender GIF'er." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} wird sich mit Giphy verbinden, um Suchergebnisse zu liefern. Beim Senden von GIFs wirst du nicht den vollständigen Metadatenschutz haben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} θα συνδεθεί με το Giphy για να παρέχει αποτελέσματα αναζήτησης. Δε θα έχετε πλήρη προστασία μεταδεδομένων όταν στέλνετε GIFs." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} konektos al Giphy por provizi serĉrezultojn. Vi ne havos plenan metadan protekton kiam sendante GIF-ojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se conectará a Giphy para proporcionar los resultados de búsqueda. No tendrás protección completa de metadatos al enviar GIFs." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se conectará a Giphy para proporcionar resultados de búsqueda. No tendrás protección completa de metadatos al enviar GIFs." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} loob ühenduse Giphyga, et pakkuda otsingutulemusi. GIF-ide saatmisel ei ole teil täielikku metaandmete kaitset." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy rastrea emateko konektatuko da. Ez duzu metadatuen babesa osoa izango GIFak bidaltzean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای ارائه نتایج جستجو به Giphy متصل می‌شود. هنگام ارسال GIFها، شما محافظت کامل از متاداده نخواهید داشت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yhdistää Giphyyn tarjotakseen hakutulokset. GIF-lähetysten yhteydessä et saa täydellistä metatietosuojaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay kokonekta sa Giphy para magbigay ng mga resulta ng paghahanap. Hindi ka magkakaroon ng buong proteksyon sa metadata kapag nagpapadala ng mga GIF." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se connectera à Giphy pour fournir des résultats de recherche. Vous n'aurez pas de protection complète des métadonnées lors de l'envoi de GIFs." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} conectarase a Giphy para proporcionar resultados de busca. Non terás protección completa de metadata ao enviar GIFs." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zai haɗa da Giphy don samar da sakamakon bincike. Ba za ku sami cikakken kariyar metadatan ba lokacin aika GIFs." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} יתחבר אל Giphy כדי לספק תוצאות חיפוש. לא תהיה לך הגנה מלאה על נתוני מטא בעת שליחת GIFs." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} खोज परिणाम प्रदान करने के लिए Giphy से कनेक्ट होगा। GIFs भेजते समय आपको पूर्ण मेटाडेटा सुरक्षा नहीं होगी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će se povezati s Giphy kako bi pružio rezultate pretraživanja. Nećete imati potpunu zaštitu metapodataka pri slanju GIF-ova." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a Giphy-hez csatlakozik a keresési eredmények mutatásához. A GIF-ek küldésekor nem lesz teljes metaadat védelmed." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը կմիակցվի Giphy-ին՝ արդյունքներ որոնելու համար: GIF-ներ ուղարկելիս դուք չեն ունենա ամբողջական մեթադատա պաշտպանություն։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} akan terhubung ke Giphy untuk memberikan hasil pencarian. Anda tidak akan mendapatkan perlindungan metadata penuh saat mengirim GIF." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} si connetterà a Giphy per fornire i risultati della ricerca. Non avrai la protezione completa dei metadati quando invii le GIF." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はGiphyに接続して検索結果を提供します。GIFを送信するときに完全なメタデータ保護はありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ჩაერთვება Giphy-თან ძიების შედეგების მისაცემად. გიფების გაგზავნით თქვენ არ მიიღებთ სრულ მეტამონაცემთა დაცვას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} នឹងភ្ជាប់ទៅ Giphy ដើម្បីផ្ដល់លទ្ធផលស្វែងរក។ អ្នកនឹងមានការការពារ Metadata ពេញលេញទេ នៅពេលផ្ញើ GIFs។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy ಗೆ ಸಂಪರ್ಕಿಸಿ ಶೋಧ ಫಲಿತಾಂಶಗಳನ್ನು ಒದಗಿಸುತ್ತದೆ. GIFಗಳನ್ನು ಕಳುಹಿಸುವಾಗ ನಿಮ್ಮ ಮೆಟಾಡೇಟಾ ಸಂರಕ್ಷಣೆ ಪೂರ್ಣವಾಗುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}는 검색 결과를 제공하기 위해 Giphy에 연결됩니다. GIF를 보낼 때 전체 메타데이터 보호가 제공되지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} لە بەرهەمەکانە گێژی بۆ دەرەخستنەوەی ئەنەکان. تۆ ناتوانی کار بکەیت بە پەیوەستە هەمووان کانی پەیوەستەکان کە دیاری ببن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gikungaana ku Giphy okutukiriza amagezi g'okunoonyereza. Tojja kufuna bujjulizi bwonna bwe byonjo by'amagezi bw'oba otuma GIFs." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຊື່ທີ່ຊົງກັບ Giphy ເພື່ອໃຫ້ຜະລິດຕອບປະສົດຜ້ອນ. ເຈົ້າຈະບໍ່ມີການປ້ອງກັນ metadata ທີ່ສົມບູນເມື່ອສົ່ງ GIFs." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} prisijungs prie Giphy, kad pateiktų paieškos rezultatus. Siunčiant GIF, neturėsite pilnos metaduomenų apsaugos." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} savienosies ar Giphy, lai nodrošinātu meklēšanas rezultātus. Sūtot GIF, jums nebūs pilnīga metadatu aizsardzība." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ќе се поврзе со Giphy за да обезбеди резултати од пребарувањето. Нема да имате целосна заштита на метаподатоци кога испраќате GIF-ови." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy-тэй холбогдож хайлтын үр дүнг гаргаж өгөх болно. GIF илгээх үед та бүрэн Metadata protection-тай байхгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} akan bersambung ke Giphy untuk memberikan hasil carian. Anda tidak akan mempunyai perlindungan metadata penuh apabila menghantar GIF." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် Giphy တွက် ရလဒ်များလာစီထည့်ခိုင်းမှာဖြစ်သည်။ သင် Giphy ပို့ဆောင်သည်အခါ Metadata Protecton လုံးဝ မရရှိပါတော့ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil koble til Giphy for å levere søkeresultater. Du vil ikke ha full metadatabeskyttelse når du sender GIF-er." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} GIF पठाउँदा पूर्ण मेटाडेटा सुरक्षा हुनेछैन भनेर जानकारी दिन GIFy लाई जडान गर्नेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zal verbinding maken met Giphy om zoekresultaten te geven. U zult geen volledige bescherming van metadata hebben bij het verzenden van GIFs." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil koble til Giphy for å gi søkeresultater. Du vil ikke ha full metadatabeskyttelse når du sender GIF-er." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kulumikizana ndi Giphy kuti ipereke zotsatira za kusaka. Simudzakhala ndi chitetezo chonse cha metadata mukatumiza ma GIF." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਗ਼ਿਫ਼ ਭੇਜਣ ਵੇਲੇ ਤੁਹਾਨੂੰ ਪੂਰੀ ਮੈਟਾਡੇਟਾ ਸੁਰੱਖਿਆ ਨਹੀਂ ਮਿਲੇਗੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby dostarczać wyniki wyszukiwania, aplikacja {app_name} połączy się z platformą Giphy. Podczas wysyłania GIF-ów nie będziesz mieć pełnej ochrony metadanych." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} به په ګیفي سره اړیکه وکړي ترڅو د لټون پایلې وړاندې کړي. تاسو به ه له بشپړ متاډ ه پرمختنه نه وکړئ کله چې GIFs لیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se conectará ao Giphy para fornecer resultados de pesquisa. Você não terá proteção completa de metadados ao enviar GIFs." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} irá conectar-se ao Giphy para fornecer resultados de busca. Você não terá proteção total de metadados ao enviar GIFs." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se va conecta la Giphy pentru a obține rezultate la căutare. Nu veți avea acces la protecția completă a metadatelor când trimiteți GIF-uri." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} необходимо подключиться к сервису Giphy для получения результатов поиска. При отправке GIF-файлов у вас не будет полной защиты метаданных." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će se povezati s Giphy kako bi omogućio rezultate pretrage. Nećete imati potpunu metadata zaštitu prilikom slanja GIF-ova." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy සමඟ සම්බන්ධ වීමෙන් පරික්ෂණ ප්‍රතිඵල ලබා දේ. ඔබ GIF යවීම්විරුද්ධව පූර්ණ metadata ආරක්‍ෂණය නොලබනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sa pripojí k Giphy aby poskytol výsledky vyhľadávania. Pri odosielaní GIFov nebudete mať úplnú ochranu metadát." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se bo povezal z Giphy, da zagotovi rezultate iskanja. Pri pošiljanju GIF-ov ne boste imeli popolne zaščite metapodatkov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} do të lidhet me Giphy për të siguruar rezultatet e kërkimit. Ju nuk do të keni mbrojtje të plotë të metadata-ve kur dërgoni GIF-e." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ће се повезати са Giphy да би обезбедили резултате претраге. Нећете имати потпуну заштиту метаподатака када шаљете GIF-ове." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će se povezati sa Giphy da obezbedi rezultate pretrage. Nećete imati potpunu zaštitu metapodataka prilikom slanja GIF-ova." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ansluter till Giphy för att tillhandahålla sökresultat. Du kommer inte att ha fullt metadataskydd när du skickar GIF:ar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} itaunganishwa na Giphy kutoa matokeo ya utafutaji. Hutakuwa na ulinzi kamili wa metadata unapopoa GIFs." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} தேடல் முடிவுகளை வழங்க Giphy க்கு இணைக்கும். நீங்கள் GIFகளை அனுப்பும்போது முழுமையான metadata protection ஐ பெற மாட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} సెర్చ్ ఫలితాలను అందించడానికి గిప్హీకి కనెక్ట్ అవుతుంది. మీరు గిఫ్‌లు పంపినపుడు మీకు పూర్తి మెటాడేటా రక్షణ ఉండదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} จะเชื่อมต่อกับ Giphy เพื่อให้ผลลัพธ์การค้นหา คุณจะไม่ได้รับการป้องกันเมทาดาท้าเต็มรูปแบบเมื่อส่ง GIF" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, arama sonuçları sağlamak için Giphy'ye bağlanacaktır. GIF gönderirken tüm meta veri korumasına sahip olmayacaksınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} під'єднається до Giphy для надання результатів пошуку. У вас не буде повного захисту метаданих при відправленні GIF-файлів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} نتائج تلاش کرنے کے لیے Giphy سے منسلک ہوگا۔ GIFs بھیجنے پر آپ کو مکمل میٹا ڈیٹا تحفظ نہیں ہوگی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Giphy bilan aloqa qiladi va qidiruv natijalarini taqdim etadi. GIFlarni yuborishda to'liq metadata himoyasi bo'lmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sẽ kết nối với Giphy để cung cấp kết quả tìm kiếm. Bạn sẽ không được bảo vệ siêu dữ liệu đầy đủ khi gửi GIF." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iya kuqhagamshela kwi-Giphy ukuhambisa iziphumo zozinzo. Awuyi kufumana ukhuseleko lwe-metadata ngokupheleleyo xa uthumela i-GIFs." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}将会访问Giphy以提供搜索结果。当您发送GIF动图时,您的元数据将无法受到完整保护。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 將連接到 Giphy 以提供搜尋結果。發送 GIF 時,您的元數據將無法獲得完整的保護。" + } + } + } + }, + "groupAddMemberMaximum" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepe het 'n maksimum van 100 lede" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تضم المجموعات بحد أقصى 100 عضو" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qruplarda ən çox 100 üzv ola bilər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپاںءَ زیادہ سے زیادہ ۱۰۰ اراکنان ائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максімальная колькасць удзельнікаў у групе - 100" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимумът за групата е 100 членове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপে সর্বাধিক ১০০ জন সদস্য থাকতে পারে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els grups tenen un màxim de 100 membres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny mají maximálně 100 členů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ond 100 aelodau fydd modd eu hychwanegu i grwpiau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper kan maksimalt have 100 medlemmer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppen haben maximal 100 Mitglieder" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι ομάδες έχουν ένα μέγιστο όριο 100 μελών" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groups have a maximum of 100 members" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupoj havas maksimumon de 100 membroj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "El grupo tiene un máximo de 100 miembros" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los grupos tienen un máximo de 100 miembros" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupis võib maksimaalselt olla 100 liiget" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeek gehienez 100 kide izan ditzakete" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه‌ها حداکثر 100 عضو دارند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmään voi lisätä maksimissaan 100 jäsentä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang mga grupo ay may maximum na 100 miyembro" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les groupes peuvent avoir jusqu'à 100 membres" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os grupos teñen un máximo de 100 membros" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rukuni suna da mambobi na 100 mafi yawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבוצות יכולות להכיל עד 100 חברים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहों में अधिकतम 100 सदस्य होते हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe imaju maksimalno 100 članova" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A csoportokban maximum 100 tag lehet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբին կարող են ունենալ առավելագույնս 100 անդամներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup maksimal berisi 100 anggota" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I gruppi possono avere un massimo di 100 membri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループの最大メンバー数は100人です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფებში არ შეიძლება იყოს 100-ზე მეტი ტიპი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្រុមមានសមាជិកអតិបរិមា 100 នាក់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪುಗಳು ಗರಿಷ್ಟ 100 ಸದಸ್ಯರಿರುವುದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹은 최대 100명까지 멤버를 추가할 수 있습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زیادکردنی گروپەکان تەنها بەرزترین ١٠٠ ئەندامیان بێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebibinja byetuusa ba kkaawa ba 100" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės gali turėti ne daugiau kaip 100 narių" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupās maksimāli var būt 100 dalībnieki" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групите имаат максимално 100 членови" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгүүдийн гишүүд 100-аас ихгүй байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpulan maksimum 100 ahli" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုများတွင် အဖွဲ့ဝင် ၁၀၀ အထိရှိနိင်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper kan ha maksimalt 100 medlemmer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहहरूको अधिकतम १०० सदस्यहरू हुन सक्छन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepen hebben maximaal 100 leden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper kan ha maks 100 medlemmar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magulu ali ndi anthu ochepera 100" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਵਿੱਚ ਵੱਧ ਤੋਂ ਵੱਧ 100 ਮੈਂਬਰ ਹੋ ਸਕਦੇ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupy mogą mieć maksymalnie 100 członków" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډلې تر ۱۰۰ غړو پورې لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupos têm um máximo de 100 membros" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os grupos têm no máximo 100 membros" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupurile pot avea maximum 100 de membri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимальное количество участников группы - 100" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe imaju maksimalno 100 članova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහයේ උපරිම 100 සාමාජිකයින් ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny môžu mať maximálne 100 členov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupine lahko imajo največ 100 članov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe kanë një maksimum prej 100 anëtarësh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групе имају максимално 100 чланова" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe mogu imati najviše 100 članova" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper har ett maximum av 100 medlemmar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makundi yana wanachama wengi zaidi ya 100" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுக்களில் அதிகபட்சம் 100 உறுப்பினர்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాలు గరిష్టంగా 100 సభ్యులు ఉండవచ్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลุ่มมีสมาชิกสูงสุด 100 คน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruplar en fazla 100 üyeye sahiptir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимальна кількість учасників групи: 100" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ میں زیادہ سے زیادہ 100 اراکین ہو سکتے ہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhlar maksimum 100 aʼzolari bilan cheklangan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các nhóm có tối đa 100 thành viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaqela anamalungu angamaxesha aphezulu ayi-100" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组成员最多100人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組最多可容納100個成員" + } + } + } + }, + "groupCreate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skep Groep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء مجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup yarat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ بناؤ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварыць групу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създай група" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ তৈরি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creeu un grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvořit skupinu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creu Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opret gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe erstellen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργία Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krei Grupon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear Grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loo grupp" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldea sortu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایجاد گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luo ryhmä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lumikha ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Créer un groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙiri Rukuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צור קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह बनाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvori grupu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport létrehozása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ստեղծել խումբ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea Gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループを作成" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის შექმნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្កើតក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪನ್ನು ರಚಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 만들기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ دروست بکە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilira Ekibiina" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເກີນໄວນຳເກາບພາຍ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sukurti grupę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveidot grupu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај Група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлэг үүсгэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ဖန်တီးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett gruppe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह बनाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep aanmaken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett gruppe" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangani Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਬਣਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utwórz grupę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل پټنوم جوړ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creează grup" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создать группу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj grupu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහයක් සාදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvoriť skupinu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvari skupino" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krijo grup" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај групу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj grupu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unda Kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவை உருவாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం సృష్టించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create Group" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Oluştur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створити групу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ بنائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh yaratish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenza iqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "建立群組" + } + } + } + }, + "groupCreateErrorNoMembers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies ten minste een ander groep lid." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إختيار عضو اخر على الأقل." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən ən azı bir qrup üzvü seçin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی کم از کم ایک اور گروپ ممبر منتخب کنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка абярыце прынамсі аднаго ўдзельніка групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, изберете поне още един член на групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দয়া করে অন্তত একজন অতিরিক্ত সদস্য নির্বাচন করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Com a mínim, trieu 1 membre per al grup, per favor." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím vyberte alespoň jednoho dalšího člena skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch o leiaf un aelod grŵp arall." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst vælg mindst én anden gruppemedlem." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte wähle mindestens ein anderes Gruppenmitglied." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ επιλέξτε τουλάχιστον 1 μέλος ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please pick at least one other group member." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu elekti almenaŭ unu grupanon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elige al menos un otro miembro del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elige al menos un miembro del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun vali vähemalt 1 grupiliige." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, hautatu beste talde kideren bat gutxienez." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً حداقل یک عضو گروه دیگر انتخاب کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse vähintään 1 ryhmän jäsen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakipili ng hindi bababa sa 1 miyembro ng grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez sélectionner au moins un autre membre du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, selecciona polo menos un outro membro para o grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi aƙalla memba guda ɗaya na ƙungiya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא בחר לפחות חבר קבוצה אחד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया कम से कम एक ग्रुप सदस्य चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo odaberite barem jednog člana grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válassz legalább 1 csoporttagot." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ընտրել խմբի առնվազն 1 անդամ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih setidaknya satu anggota grup lainnya." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli almeno un altro membro del gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "他のグループメンバーも選択してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ აირჩიოთ მინიმუმ ერთი სხვა ჯგუფის წევრი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមជ្រើសរើសសមាជិកដែលបានចូលរួមយ៉ាងតិចបំផុតមួយ." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಕನಿಷ್ಠ ಒಂದು ಇತರೆ ಗುಂಪಿನ ಸದಸ್ಯರನ್ನು ಆಯ್ಕೆಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "적어도 한 명의 추가 그룹 멤버를 선택해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تکایە بەلایەنی کەسێکی تر لە گروپەوە هەڵبژێرە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa omu ku buli alala." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite bent vieną kitą grupės narį." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, izvēlies vismaz vienu citu grupas dalībnieku." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме изберете барем еден друг член на група." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дор хаяж нэг өөр бүлгийн гишүүн сонгоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila pilih sekurang-kurangnya satu ahli kumpulan lain." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ဝင် ၁ ဉီး အနည်းဆုံး ရွေးထည့်ပေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst velg minst ett annet gruppemedlem." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया कम्तिमा एउटा अर्को समूह सदस्य चयन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies ten minste één ander groepslid." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst vel minst eitt anna gruppemedlem." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde sonkhanitsani limodzi la mamembala agulu ina." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਘੱਟੋ ਘੱਟ ਇੱਕ ਹੋਰ ਗਰੁੱਪ ਮੈਂਬਰ ਚੁਣੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz co najmniej jednego innego członka grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ لږ تر لږه یو بل د ډلې غړی غوره کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha pelo menos 2 membros do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor escolha pelo menos 1 membro para o grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să alegeți cel puțin un alt membru al grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, выберите как минимум одного участника группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo izaberite barem jednog drugog člana grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර අවම වශයෙන් එක් එක් කණ්ඩායම් සාමාජිකයෙකු තෝරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zvoľte aspoň 1 člena skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, izberite vsaj enega dodatnega člana skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi zgjedhni të paktën një anëtar tjetër grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Молимо Вас да одаберете барем једног члана за групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo izaberite najmanje jednog člana grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj minst en annan gruppmedlem." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali chagua angalau mwanakikundi mmoja." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முக்கியமாக ஒன்றைத் தேர்வுசெய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి కనీసం ఒక ఇతర సమూహ సభ్యుని ఎంచుకోండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดเลือกสมาชิกกลุ่มอย่างน้อยหนึ่งคน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen en az 1 grup üyesi seçin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, виберіть принаймні 1 учасника групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم کم از کم ایک دوسرا گروپ ممبر منتخب کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamida bir guruh a’zosini tanlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng chọn ít nhất một thành viên khác." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ukhethe ubuncinane ilungu elinye leqela elinge" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请至少选择一名群组成员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請選擇至少一名群組成員。" + } + } + } + }, + "groupDelete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrap Groep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف مجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupu sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کو حذف کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць групу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтрий групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ মুছে ফেলুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborra el grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Smazat skupinu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dileu Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slet gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi grupon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar Grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kustuta grupp" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldea Ezabatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista ryhmä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin ang Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer le groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Group" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחק קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ग्रुप डिलीट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši grupu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել խումբը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループを削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុប​ក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪನ್ನು ಅಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 삭제하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سڕینەوەی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuggye Ku Group" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລຶບກຸ່ມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ištrinti grupę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzēst grupu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избриши група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စု ဖျက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slette gruppe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह मेटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder groep" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slett gruppe" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੂਹ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń grupę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډله ړنګول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge grup" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить группу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši grupu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහය මකන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vymazať skupinu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbriši skupino" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обриши групу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrišite grupu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radera grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Kundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాన్ని తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grubu Sil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити групу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhni o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xoá nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sangula Iqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "刪除群組" + } + } + } + }, + "groupDeleteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {group_name} verwyder? Dit sal alle lede verwyder en alle groepinhoud skrap." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متيقِّن من أنك تريد مسح {group_name}؟ سيؤدي ذلك إلى إزالة جميع الأعضاء وحذف كافة محتويات المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupunu silmək istədiyinizə əminsiniz? Bu, bütün üzvləri çıxardacaq və bütün qrup məzmununu siləcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ یقیناً {group_name} کو حذف کرنا چاہتے ہیں؟ اس سے تمام ممبران ہٹا دیے جائیں گے اور تمام گروپ مواد کو حذف کر دیا جائے گا۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць {group_name}? Гэта выдаліць усіх удзельнікаў і выдаліць увесь змесціва групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изтриете {group_name}? Това ще премахне всички членове и изтрие цялото съдържание на групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {group_name} মুছে ফেলতে চান? এটি সমস্ত সদস্যকে সরিয়ে দেবে এবং সমস্ত গ্রুপ কন্টেন্ট মুছে দেবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar {group_name}? Això eliminarà tots els membres i suprimirà tot el contingut del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat {group_name}? Tímto odstraníte všechny členy a smažete veškerý obsah skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu {group_name}? Bydd hyn yn dileu'r holl aelodau ac yn dileu'r holl gynnwys grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette {group_name}? Dette vil fjerne alle medlemmer og slette alt gruppeoplekalt indhold." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {group_name} löschen möchtest? Dadurch werden alle Mitglieder entfernt und alle Gruppendaten gelöscht." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε την ομάδα {group_name}; Αυτό θα αφαιρέσει όλα τα μέλη και θα διαγράψει όλο το περιεχόμενο της ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete {group_name}? This will remove all members and delete all group content." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi {group_name}? Ĉi tiu ago forigos ĉiujn membrojn kaj forigos ĉiujn enhavojn de la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar {group_name}? Esto eliminará a todos los miembros y todo el contenido del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar {group_name}? Esto eliminará a todos los miembros del grupo y eliminará todo el contenido del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite kustutada {group_name}? See eemaldab kõik liikmed ja kustutab kogu grupi sisu." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {group_name} taldea ezabatu nahi duzula? Honek kide guztiak kendu eta taldeko eduki guztiak ezabatuko ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید می‌خواهید {group_name} را حذف کنید؟ این کار تمام اعضا و محتوای گروه را حذف خواهد کرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa {group_name}? Tämä poistaa kaikki jäsenet ja poistaa kaiken ryhmäsisällön." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin ang {group_name}? Mababura nito ang lahat ng miyembro at group content." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain·e de vouloir supprimer {group_name}? Cela supprimera tous les membres et tous les contenus du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar {group_name}? Isto eliminará a todas as persoas integrantes e todos os contidos do grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share {group_name}?? Wannan zai cire dukan mambobi kuma ya goge duk abubuwan da aka ƙunsa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את {group_name}? פעולה זו תסיר את כל החברים ותמחק את כל תוכן הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {group_name} को हटाना चाहते हैं? इससे सभी सदस्य हटा दिए जाएंगे और समूह की सारी सामग्री हट जाएगी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite obrisati {group_name}? Ovo će ukloniti sve članove i izbrisati sve sadržaje grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd a(z) {group_name} csoportot? Ezzel minden tag törölve lesz, és a csoport teljes tartalma törölve lesz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել {group_name}-ը: Սա կջնջի խմբի բոլոր անդամներին և խմբի ամբողջ բովանդակությունը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus {group_name}? Ini akan menghapus semua anggota dan menghapus semua konten grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare {group_name}? Questo rimuoverà tutti i membri ed eliminerà tutti i contenuti del gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}を削除してもよろしいですか?これにより、すべてのメンバーが削除され、すべてのグループコンテンツが削除されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {group_name}-ის წაშლა? ეს წაშლის ყველა წევრს და წაშლის ყველა ჯგუფის შინაარსს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់លុប {group_name}? នេះនឹងលុបសមាជិកទាំងអស់ហើយនឹងលុបមាតិកាក្រុមទាំងមូល។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {group_name}(' ಅನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ಇದು ಎಲ್ಲಾ ಸದಸ್ಯರನ್ನು ತೆಗೆದುಹಾಕುತ್ತದೆ ಮತ್ತು ಎಲ್ಲಾ ಗುಂಪಿನ ವಿಷಯವನ್ನು ಅಳಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete {group_name}? This will remove all members and delete all group content." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت لەوەی ببە تەواوی {group_name}? ئەمە هەموو ئەندامەکان لادەبات و هەموو ناوەراسەکانی ئەو گروپە بسڕنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula {group_name}? Eby'okulaba byonna bijja kusulibwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຈົ້າຢ່າງມັ້ນໃຈແທ້ຢານລລີ້າງ {group_name}ສົງຂໍ້ມູນຫາທັນສະຕິ່ນທນທັນທີ່?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti {group_name}? Tai pašalins visus narius ir ištrins visą grupės turinį." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst {group_name}? Tas noņems visus dalībniekus un dzēsīs visu grupas saturu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете {group_name}? Ова ќе ги отстрани сите членови и ќе ја избрише целата содржина на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name}-г устгахыг хүсэж байгаадаа итгэлтэй байна уу? Энэ нь бүх гишүүдийг устгаж, бүлгийн бүх контентыг устгана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu memadamkan {group_name}? Ini akan membuang semua ahli dan memadamkan semua kandungan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {group_name}ကို ဖျက်ချင်သေချာပါသလား? ၎င်းသည် အဖွဲ့ဝင်များအားလုံးကို ဖယ်ရှားပြီး အဖွဲ့၏အကြောင်းအရာအားလုံးကို ဖျက်သိမ်းပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette {group_name}? Dette vil fjerne alle medlemmer og slette alt gruppearbeid." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई {group_name} मेटाउन चाहनुहुन्छ? यसले सबै सदस्यहरू हटाउँछ र सबै समूह सामग्री मेटाउँछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet je zeker dat je {group_name} wilt verwijderen? Dit zal alle leden verwijderen en alle groepsinhoud wissen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette {group_name}? Dette vil fjerne alle medlemmane og slette alt av gruppeinnhald." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kufufuta {group_name}? Izi zithandizira kuchotsa mamembala onse ndikuchotsa zonse zomwe zili m'gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {group_name} ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਇਹ ਸਾਰੇ ਮੈਂਬਰਾਂ ਨੂੰ ਹਟਾ ਦੇਵੇਗਾ ਅਤੇ ਸਾਰੇ ਸਮੂਹ ਸਮਗਰੀ ਨੂੰ ਮਿਟਾ ਦੇਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć grupę {group_name}? Spowoduje to usunięcie wszystkich członków i całej zawartości grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ته ډاډه يې چې {group_name} حذفول غواړې؟ دا به ټول غړي لرې کړي او ټول ډلې منځپانګه به حذف کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar {group_name}? Isso removerá todos os membros e excluirá todo o conteúdo do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza que pretende eliminar {group_name}? Isso removerá todos os membros e apagará todo o conteúdo do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi grupul {group_name}? Această acțiune va elimina toți membrii și va șterge tot conținutul grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить группу {group_name}? Это удалит всех участников и всё содержимое группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati {group_name}? Time ćeš ukloniti sve članove i izbrisati sav sadržaj grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} මැකීමට අවශ්‍ය බව විශ්වාසද? මෙම කණ්ඩායමේ සියලු සාමාජිකයින් ඉවත් කර, සමූහ තොරතුරු සියල්ල මකනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vymazať {group_name}? Tým sa odstránia všetci členovia a všetok obsah skupiny bude vymazaný." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati {group_name}? To bo odstranilo vse člane in izbrisalo vsebine skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini {group_name}? Kjo do të heqë të gjithë anëtarët dhe do të fshijë të gjithë përmbajtjen e grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете {group_name}? Ово ће уклонити све чланове и обрисати сав садржај групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da obrišete {group_name}? Time će biti uklonjeni svi članovi i izbrisana sav sadržaj grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera {group_name}? Detta kommer att ta bort alla medlemmar och radera allt gruppinnehåll." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta {group_name} kikundi hiki? Hii itapondoa wanakikundi na kushusha maudhui yote." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிச்சயமாக {group_name} ஐ நீக்க விரும்புகிறீர்களா? இது அனைத்து உறுப்பினர்களையும் அகற்றும் மற்றும் அனைத்து குழு உள்ளடக்கங்களை நீக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {group_name}ని తొలగించాలనుకుంటున్నారా? ఇది అన్ని సభ్యులను తొలగించి, అన్ని సమూహ విషయాన్ని తొలగిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบ {group_name}? การกระทำนี้จะลบสมาชิกทั้งหมดและลบเนื้อหากลุ่มทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} adlı grubu silmek istediğinizden emin misiniz? Bu, tüm üyeleri kaldıracak ve tüm grup içeriğini silecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити {group_name}? Це видалить усіх учасників і всю інформацію групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {group_name} کو حذف کرنا چاہتے ہیں؟ یہ تمام اعضاء کو ہٹا دے گا اور تمام گروپ مواد کو حذف کر دے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {group_name} ni o'chirmoqchimisiz? Bu barcha a'zo va guruh kontentlarini o'chiradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa {group_name}? Điều này sẽ loại bỏ tất cả các thành viên và xóa tất cả nội dung nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima {group_name}? Oku kuyakuchithela onke amalungu kunye nokucima yonke into yeqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除{group_name}吗?该操作将移除所有成员并删除所有群组内容。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除 {group_name} 嗎?這將移除所有成員並刪除所有群組內容。" + } + } + } + }, + "groupDescriptionEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer 'n groep beskrywing in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل وصف للمجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup açıqlamasını daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کا وضاحتی بیان درج کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце апісанне групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведи описание на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ বিবরণ লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix una descripció del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte popis skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch ddisgrifiad y grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast en gruppedescription" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenbeschreibung eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε μια περιγραφή ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter a group description" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu gruppriskribon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce la descripción del grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrese una descripción del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestage grupi kirjeldus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idatzi taldearen deskribapena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "توضیحات گروه را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä ryhmän kuvaus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglagay ng paglalarawan ng grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez une description de groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introducir unha descrición do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da bayanin ƙungiya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן תיאור קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ग्रुप विवरण दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite opis grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy csoportleírást" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք խմբի նկարագրությունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan deskripsi grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci una descrizione per il gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ説明を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ ჯგუფის აღწერა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូលការពិពណ៌នាក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ವಿವರಣೆ ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 설명 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەشایی گروپەکە بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza ebikwata ku kibinja" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນລາຍລະອຽດກຸ່ມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite grupės aprašymą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet grupas aprakstu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете опис на група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн тайлбар оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan deskripsi kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့အကြောင်းအရာ ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn en gruppebeskrivelse" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहको वर्णन प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer een groepsbeschrijving in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn ei gruppebeskriving" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani mafotokozedwe amugulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਗਰੁੱਪ ਦਾ ਵੇਰਵਾ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź opis grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګروپ تشریح ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite a descrição do grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserir descrição do grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți o descriere a grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите описание группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi opis grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ විස්තරයක් ඇතුළු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte popis skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite opis skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkruani një përshkrim grupi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите опис групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite opis grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange en gruppbeskrivning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka maelezo ya kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு விளக்கத்தை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ వివరణను ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนคำอธิบายกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup açıklaması girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть опис групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی وضاحت درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh tavsifini kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập mô tả nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngena inkcazo yeqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入群组描述" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入群組描述" + } + } + } + }, + "groupDisplayPictureUpdated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep vertoon prent opgedateer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تحديث صورة العرض للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupun ekran şəkli güncəlləndi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ ءِ ظاهرەیر عکس آپڈیٹ بوت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Фота групы абноўлена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Снимката на групата е обновена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ ডিসপ্লে পিকচার আপডেট হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La imatge de perfil del grup ha estat actualitzada." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrázek skupiny aktualizován." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llun arddangos grŵp wedi'i ddiweddaru." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppedisplaybillede opdateret." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenprofilbild aktualisiert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η εικόνα προβολής της ομάδας ενημερώθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group display picture updated." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa bildo ĝisdatigis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foto de grupo actualizada." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La imagen del grupo se actualizó." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi kuvapilt uuendatud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen erakus-irudia eguneratu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویر گروه به‌روزرسانی شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän näyttökuva on vaihdettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-update ang group display picture." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'image de groupe a été mise à jour." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O avatar do grupo foi actualizado." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An sabunta hoton nuni na rukuni." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תמונת הקבוצה עודכנה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह डिस्प्ले चित्र अपडेट किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika prikaza grupe je ažurirana." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A csoport képe frissítve lett." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի ցուցադրվող նկարն թարմացվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gambar tampilan grup diperbarui." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Immagine del gruppo aggiornata." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ表示画像を更新しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის სურათი განახლდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រូបតំណាងក្រុមត្រូវបានធ្វើបច្ចុប្បន្នភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ಪ್ರದರ್ಶನ ಚಿತ್ರವನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 디스플레이 사진이 업데이트되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وێنەی گروپ نوێکرایەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekifaananyi ekyeraga ekibinja ky'ajunanibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės paveikslas atnaujintas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas attēls atjaunots." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сликовниот приказ на групата е ажуриран." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн дэлгэцийн зураг шинэчлэгдсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gambar paparan kumpulan diperbarui." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုပိုင်ဆိုင်မှု ပုံပြောင်းသွင်းမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeprofilbildet oppdatert." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह प्रदर्शित तस्वीर अद्यावधिक गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsafbeelding bijgewerkt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeprofilbiletet er oppdatert" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzi cha chiwonetsero chagulu chapangidwanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਡਿਸਪਲੇ ਪਿਕਚਰ ਅਪਡੇਟ ਹੋਇਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaktualizowano zdjęcie profilowe grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې د ښودلو انځور تازه شو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagem do grupo atualizada." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foto de exibição do grupo atualizada." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imaginea afișată de grup a fost actualizată." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изображение группы обновлено." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika grupe je ažurirana." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කණ්ඩායම් පෙන්වීමේ රූපය යාවත්කාලීන කළා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrázok skupiny bol aktualizovaný." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika skupine je bila posodobljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotografia e grupit u përditësua." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слика групе је ажурирана." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika grupe je ažurirana." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppvisningsbild uppdaterad." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Picha ya onyesho la kikundi imesasishwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவின் காட்சி படம் புதுப்பிக்கப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ ప్రదర్శన చిత్రం నవీకరించబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปกลุ่มถูกอัปเดตแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup görüntü resmi güncellendi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зображення групи для показу оновлено." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ ڈسپلے تصویر اپ ڈیٹ ہوگئ۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppa ko‘rsatgan rasm yangilandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã cập nhật ảnh nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umfanekiso wokubonisa weqela uhlaziyiwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组头像已更新。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組顯示圖片已更新。" + } + } + } + }, + "groupEdit" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysig Groep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعديل المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupa düzəliş et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ ایڈٹ کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рэдагаваць групу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редактирай групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ সম্পাদনা করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edita el grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upravit skupinu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Golygu Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediger gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe bearbeiten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επεξεργασία Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redakti Grupon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redigeeri gruppi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldea Editatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویرایش گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muokkaa ryhmää" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-edit ang Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modifier le groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gyara Group" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ערוך קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह संपादित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uredi grupu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport szerkesztése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբագրել խումբը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubah Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modifica gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループを編集" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის რედაქტირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កែក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮೂಹ ತಿದ್ದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 편집" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەستکاری گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakuzimbirwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ແກ້ໄຂກຸ່ມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taisyti grupę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediģēt grupu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уреди група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийг засварлах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit Group" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ကို တည်းဖြတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediger gruppe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह सम्पादन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep bewerken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rediger gruppe" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sintha Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੂਹ ਸੋਧੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edytuj grupę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډله سمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editar Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editează grupul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редактировать группу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uredi grupu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහය සංස්කරණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upraviť skupinu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uredi skupino" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përpunoni grupin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уреди групу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izmeni grupu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redigera grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hariri Kundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு திருத்தம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాన్ని మార్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แก้ไขกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grubu Düzenle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Редагувати групу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ ترمیم کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhni tahrirlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sửa nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlela Iqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "编辑群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "編輯群組" + } + } + } + }, + "groupError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep Fout" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ في المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup xətası" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ دشواری" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка в групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ ত্রুটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppefejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenfehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group Error" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa Eraro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error de Grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi viga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talde Errorea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطای گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmävirhe" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error sa Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur de groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurakurai a rukuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאת קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport hiba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի սխալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループエラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის შეცდომა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំហុសក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 오류" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵەی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error ya Kibinja" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės klaida" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas kļūda" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка на групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн алдаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုမှား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppefeil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह त्रुटि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsfout" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppefeil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusokonekera kwa Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਐਰਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې خطا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro no Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro no Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare grup" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කණ්ඩායම් දෝෂය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim i grupit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška u grupi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppfel" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitilafu ya Kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு பிழை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం లోపం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาดของกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Hatası" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی خرابی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh xatosi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi Nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impazamo yeQela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組錯誤" + } + } + } + }, + "groupErrorCreate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie groep skep nie. Kontroleer asseblief jou internetverbinding en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إنشاء المجموعة. يرجى التحقق من اتصالك بالإنترنت والمحاولة مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup yaratma uğursuz oldu. Lütfən internet bağlantınızı yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ تشکیل دینے میں ناکامی۔ براہ کرم اپنے انٹرنیٹ کنکشن کی جانچ کریں اور دوبارہ کوشش کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася стварыць групу. Калі ласка, праверце злучэнне з інтэрнэтам і паспрабуйце яшчэ раз." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно създаване на групата. Моля, проверете интернет връзката си и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ তৈরিতে ব্যর্থ হয়েছে। আপনার ইন্টারনেট সংযোগ চেক করুন এবং আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en crear el grup. Si us plau, comproveu la connexió a Internet i torneu-ho a intentar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se vytvořit skupinu. Zkontrolujte připojení k Internetu a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu creu grŵp. Gwiriwch eich cysylltiad rhyngrwyd a cheisio eto." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke oprette gruppe. Kontroller din internetforbindelse og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Erstellen der Gruppe. Bitte überprüfe deine Internetverbindung und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία δημιουργίας ομάδας. Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο και προσπαθήστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to create group. Please check your internet connection and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis krei grupon. Bonvolu kontroli vian interretan konekton kaj provi denove." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo crear el grupo. Por favor, compruebe su conexión a internet e inténtelo de nuevo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al crear grupo. Por favor, comprueba tu conexión a internet y vuelve a intentarlo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi loomine ebaõnnestus. Palun kontrolli oma internetiühendust ja proovi uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldea sortzea huts egin da. Mesedez, egiaztatu zure internet konexioa eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایجاد گروه ناموفق بود. لطفاً اتصال اینترنت خود را بررسی و مجدداً سعی کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän luominen epäonnistui. Tarkista Internet-yhteytesi ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong mag-create ng grupo. Pakicheck ang koneksyon sa internet mo at subukan muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la création du groupe. Veuillez vérifier votre connexion internet et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido crear o grupo. Por favor verifica a túa conexión a internet e téntea de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa ƙirƙirar ƙungiya. Da fatan za a duba haɗin intanet ɗinku kuma ku sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל ביצירת הקבוצה. אנא בדוק את חיבור האינטרנט ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह बनाने में विफल. अपने इंटरनेट कनेक्शन की जाँच करें और पुन: प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiranje grupe nije uspjelo. Provjerite internetsku vezu i pokušajte ponovo." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült létrehozni a csoportot. Ellenőrizd az internetkapcsolatot, majd próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ստեղծել խումբը: Խնդրում եմ, ստուգեք ձեր ինտերնետ կապը և փորձեք կրկին։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal membuat grup. Silakan periksa koneksi internet Anda dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creazione del gruppo fallita. Controlla la tua connessione e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループの作成に失敗しました。インターネット接続を確認して、もう一度やり直してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში ჯგუფის შექმნა. გთხოვთ შეამოწმეთ თქვენი ინტერნეტწყლობა და სცადოთ ხელახლა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការបង្កើតក្រុម។ សូមពិនិត្យការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក និងសម្លឹងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ರಚಿಸಲಾಗಲಿಲ್ಲ. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಂಟರ್ನೆಟ್ ಸಂಪರ್ಕವನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 생성에 실패했습니다. 인터넷 연결을 확인하고 다시 시도하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی ڕادەستکردنی گروپەکە. تکایە په‌یوەندیت لە ئۆنلاین بکه‌ و دووبارە هەوڵ بدە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okujukiza ekibinja. Ekkakase nti ekintu kya Internet kyanyakitemulidde era Web terugereze." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດສ້າງກຸ່ມໄດ້. ກະລຸນາກວດກາເຊື່ອມຕໍ່ອິນເນັດຂອງທ່ານແລ້ວລອງໄໝ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko sukurti grupės. Patikrinkite savo interneto ryšį ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās izveidot grupu. Lūdzu, pārbaudiet interneta savienojumu un mēģiniet vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно создавање група. Проверете ја вашата интернет конекција и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлэг үүсгэхэд алдаа гарлаа. Интернет холболтоо шалгаад дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mencipta kumpulan. Sila semak sambungan internet anda dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့တစ်ခုဖြည့်စုရန် အမှားဖြစ်နေသည်။ သင့် internet ချိတ်ဆက်မှုပမာဏကို စစ်ဆေးပြီး ထပ်မံကြိုးစားပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke opprette gruppe. Kontroller internettforbindelsen og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह सिर्जना गर्न असफल भयो। कृपया आफ्नो इन्टरनेट कनेक्शन जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep aanmaken mislukt. Controleer je internetverbinding en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje skapa gruppe. Sjekk koplinga di til Internett og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kupanga gulu. Chonde onani kugwirizana kwanu kwa intaneti ndikuyesani kachiwiri." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਬਣਾਉਣ ਵਿੱਚ ਅਸਫਲ। ਕਿਰਪਾ ਕਰਕੇ ਆਪਣਾ ਇੰਟਰਨੈੱਟ ਕਨੈਕਸ਼ਨ ਚੈੱਕ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się utworzyć grupy. Sprawdź swoje połączenie z internetem i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګروپ جوړولو کې ناکام. مهرباني وکړئ خپل انټرنیټ اتصال وګورئ او بېرته هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao criar grupo. Verifique sua conexão com a Internet e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao criar grupo. Por favor, verifique a sua ligação à internet e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crearea grupului a eșuat. Vă rugăm să verificați conexiunea la internet și să încercați din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось создать группу. Пожалуйста, проверьте подключение к интернету и повторите попытку." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo kreiranje grupe. Provjerite internetsku vezu i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කණ්ඩායම නිර්මාණය කිරීමට අසමත් විය. කරුණාකර ඔබගේ අන්තර්ජාල සම්බන්ධතාව පරීක්ෂා කර නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa vytvoriť skupinu. Skontrolujte svoje internetové pripojenie a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo ustvariti skupine. Preverite svojo internetno povezavo in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi krijimi i grupit. Ju lutemi kontrolloni lidhjen tuaj të internetit dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирање групе није успело. Проверите вашу интернет везу и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo kreiranje grupe. Proverite vašu internet konekciju i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att skapa grupp. Kontrollera din internetanslutning och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuunda kikundi tafadhali hakikisha muunganisho wako wa intaneti na jaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு உருவாக்குவதில் தோல்வி. உங்கள் இணைய இணைப்பை சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం సృష్టించడంలో విఫలమైంది. దయచేసి మీ ఇంటర్నెట్ కనెక్షన్‌ని తనిఖీ చేయండి మరియు మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสร้างกลุ่มล้มเหลว กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณและลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup oluşturulamadı. Lütfen internet bağlantınızı kontrol edip tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося створити групу. Будь ласка, перевірте підключення до Інтернету та спробуйте ще раз." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ بنانے میں ناکام۔ براہ کرم اپنا انٹرنیٹ کنکشن چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhni yaratadigan muammo chiqdi. Internet ulanishingizni tekshiring va qaytadan harakat qiling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo nhóm thất bại. Vui lòng kiểm tra kết nối internet và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuphume impazamo ekudaleni iqela. Nceda ujonge uqhagamshelo lwakho lwe-intanethi kwaye uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建群组失败。请检查您的网络并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未能建立群組。請檢查您的網絡連接並再試一次。" + } + } + } + }, + "groupErrorJoin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie by {group_name} aansluit nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل الانضمام إلى {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupuna qoşulma uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} میں شامل ہونے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася далучыцца да {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно присъединяване към {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} তে যোগ করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat intentar unir-se a {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo připojení ke skupině {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu ymuno â {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke tilslutte {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Beitritt zu {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία συμμετοχής στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to join {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis aliĝi al {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo unir a {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo unir a {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus liituda grupiga {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {group_name}n Sartzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوستن به {group_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liittyminen ryhmään {group_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong sumali sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de rejoindre {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido unirse a {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa shiga {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להצטרף ל-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} में शामिल होने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruživanje grupi {group_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült csatlakozni a {group_name} csoporthoz" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց միանալ {group_name} խմբին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal bergabung dengan {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile unirsi a {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} への参加に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {group_name} ჯგუფში გაწერთილება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការចូលរួម {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ಗೆ ಸೇರಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에 가입하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شکستی هێنان بۆ {group_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwetaaza mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດເຂົ້າຮ່ວມ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko prisijungti prie {group_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās pievienoties {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно приклучување во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} руу нэгдэхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menyertai {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ {group_name} ကိုသွား၍မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke bli med i {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} मा सामेल हुन असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deelnemen aan {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje bli med i {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuvomereza {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się dołączyć do grupy {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {group_name} سره ګډون کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao entrar no {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao juntar-se a {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut alătura grupului {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось присоединиться к {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo pridruživanje {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} වෙත එක්වීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa pripojiť do {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni se uspelo pridružiti skupini {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi bashkimi me {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Придруживање {group_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo pridruživanje grupi {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att gå med i {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kujiunga na {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} சேர்வதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} లో చేరడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเข้าร่วม {group_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} katılınamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося приєднатися до {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} میں شامل ہونے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ga qo'shilish vaqtida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể tham gia nhóm {group_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukujoyina {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入{group_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法加入 {group_name}" + } + } + } + }, + "groupInformationSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel groep inligting" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين معلومات المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup məlumatlarını ayarla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات گروہ مقرر کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абнаўленне інфармацыі аб групе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на информация за групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপের তথ্য সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir informació del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit informace o skupině" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Gwybodaeth y Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil gruppeinformation" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeninformationen festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Πληροφοριών Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Information" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Grupinformaĵojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Información del Grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir información del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra grupi teave" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen informazioa ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم اطلاعات گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muokkaa ryhmän tietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang Impormasyon ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir les informations du groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Información de Grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Bayanin Rukuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר פרטי קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह जानकारी सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi informacije grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoportadatok beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել խմբի տեղեկությունները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Informasi Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta informazioni del gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Information" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის ინფორმაციის მითითება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់ព័ត៌មានក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ಮಾಹಿತಿಯನ್ನು ಸೆಟ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 정보 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانانی زانیاری ھەوار و گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Ebyafaayo by'Ekibiina" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti grupės informaciją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Grupas Informāciju" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Информации за Групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн мэдээллийг тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Maklumat Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့အချက်အလက် သတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett gruppeinformasjon" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह जानकारी सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsinformatie instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Information" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Information" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੂਹ ਜਾਣਕਾਰੀ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw informacje o grupie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګروپ معلومات تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Informações do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Informações do Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează informațiile grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Установить информацию группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi informacije grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ තොරතුරු සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť informácie o skupine" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi podatke o skupini" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Informacionin e Grupit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави информације о групи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi informacije o grupi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange gruppinformation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Taarifa za Kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு தகவலை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గ్రూప్ సమాచారం సెట్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งค่ากลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Bilgilerini Belirle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вказати інформацію про групу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی معلومات سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh ma'lumotlarini belgilang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập Thông tin Nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Information" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置群组信息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定群組資訊" + } + } + } + }, + "groupInviteDelete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie groepuitnodiging skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف دعوة المجموعة هذه؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu qrup dəvətini silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی گروپ دعوتنامہ ھذب بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце выдаліць гэтае запрашэнне ў групу?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш тази покана за група?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই গ্রুপ আমন্ত্রণটি মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquesta invitació al grup?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tuto pozvánku do skupiny?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r gwahoddiad grŵp hwn?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil slette denne gruppeinvitation?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du diese Gruppeneinladung wirklich löschen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτή την πρόσκληση στην ομάδα;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete this group invite?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi tiun grupan inviton?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas eliminar esta invitación de grupo?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar esta invitación de grupo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite selle grupikutse kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude talde gomita hau ezabatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این دعوت گروه را حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa ryhmäkutsun?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang imbitasyon ng grupong ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer cette invitation de groupe ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer borrar este convite ao grupo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge wannan gayyatar rukuni?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אתה בטוח שברצונך למחוק את ההזמנה לקבוצה הזו?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इस समूह आमंत्रण को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ovaj grupni poziv?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezt a csoportmeghívót?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել այս խմբային հրավերը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus undangan grup ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confermi di voler eliminare questo invito al gruppo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのグループ招待を削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ ჯგუფური მიწვევის წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបការអញ្ជើញក្រុមនេះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಗುಂಪು ಆಮಂತ್ರಣವನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 그룹 초대를 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم بانگهێشتی گروپە بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu okuggulawo ekibiina kino?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບກໍານົດການຊວນຂອງກຸ່ມນີ້?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šį grupės kvietimą?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti, ka vēlaties dzēst šo grupas uzaicinājumu?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја избришете оваа покана за група?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэ бүлгийн урилгыг устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan jemputan kumpulan ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤအုပ်စုဖိတ်ကြားမှုကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette denne gruppeinvitasjonen?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यो समूह निमन्त्रणा मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u deze groepsuitnodiging wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette denne gruppeinvitasjonen?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta kuyitana kwa gulu ili?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਗਰੁੱਪ ਸੱਦੇ ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć to zaproszenie do grupy?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې دا د ډلې بلنه حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir este convite de grupo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar esse convite de grupo?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi această invitație de grup?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить это приглашение в группу?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ovaj poziv u grupu?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම සමූහ ආමන්ත්‍රණයේ මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať túto skupinovú pozvánku?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati to skupinsko povabilo?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të fshini këtë ftesë grupi?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете овај позив за групу?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ovaj poziv za grupu?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera denna gruppinbjudan?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta hii mwaliko wa kundi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த குழு அழைப்பை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ గ్రూప్ ఆహ్వానాన్ని తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบคำเชิญเข้ากลุ่มนี้?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu grup davetini silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете видалити запрошення у цю групу?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اس گروپ دعوت نامے کو حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu gruhdagi taklifni o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá lời mời nhóm này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa esi simemo seqela?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除此群组邀请吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除此群組邀請嗎?" + } + } + } + }, + "groupInviteFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi het misluk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إرسال الدعوة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvət uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت ناکام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася запрасіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата неуспешна" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণ ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La invitació ha fallat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvání selhalo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methodd gwahoddiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation fejlede" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladung fehlgeschlagen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η πρόσκληση απέτυχε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitado malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación fallida" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación fallida" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsumine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidapenak huts egin du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نا موفق" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang imbitasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation échouée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao enviar o convite" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kashe gayyata" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמנה נכשלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आमंत्रण विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv nije uspio" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívás sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրումը ձախողվեց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undangan gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito fallito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "招待に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვევა წარუმატებელი აღმოჩნდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញបរាជ័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಮಂತ್ರಣ ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "초대 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانێ سەرناکەد" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita kuliko" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakvietimas nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaicinājums neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата не успеа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урилга амжилтгүй болсон" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemputan gagal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားမှု မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitasjon mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमन्त्रण असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitasjonen mislyktes" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina Yasodwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੱਦਾ ਅਸਫਲ ਹੋਣ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszenie się nie powiodło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنه ناکامه شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "O convite falhou" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitația a eșuat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приглашение не удалось" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv nije uspio" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනය අසාර්ථක විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvánka zlyhala" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabilo ni uspelo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftesa dështoi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позив није успео" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv nije uspeo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inbjudan misslyckades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kualika kumeharibika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญไม่สำเร็จ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet başarısız" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрошення не спрацювало" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت ناکام ہوگئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taklif muvaffaqiyatsiz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umemi akaphumelelanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請失敗" + } + } + } + }, + "groupInviteFailedMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {count} ander na {group_name} nooi nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل دعوة {name} و {count} آخرين إلى {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və digər {count} nəfəri {group_name} qrupuna dəvət etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر افراد کو {group_name} میں مدعو کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося запрасіць {name}, {count} і іншых у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканване на {name} и {count} други в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} অন্যান্যকে {group_name} তে আমন্ত্রণ জানাতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al convidar {name} i {count} altres a {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se pozvat {name} a {count} další do {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gwahodd {name} a {count} arall i {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} og {count} andre til {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Einladung von {name} und {count} anderen zu {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία πρόσκλησης {name} και {count} άλλων στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to invite {name} and {count} others to {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis inviti {name} kaj {count} aliajn al {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo invitar a {name} y {count} otros a {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo invitar a {name} y a {count} otros a {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus kutsuda {name} ja {count} teisi kasutajaid gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {name} eta {count} beste batzuk {group_name} Gonbidatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت از {name} و {count} نفر دیگر به {group_name} انجام نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjien {name} ja {count} muun kutsuminen ryhmään {group_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong imbitahan si {name} at {count} (na) iba pa sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec d'inviter {name} et {count} autres à {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido invitar a {name} e {count} máis a {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa gayyatar {name} da {count} wasu zuwa {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להזמין את {name} ו-{count} אחרים ל-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को {group_name} में आमंत्रित करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivanje {name} i {count} drugih u {group_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült meghívni {name}-t és {count} másik személyt a {group_name} csoportba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հրավիրել {name} և ևս {count}-ին {group_name} խմբին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengundang {name} dan {count} lainnya ke {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile invitare {name} e altri {count} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} と他 {count} 人を {group_name} に招待できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} და {count} სხვა პირი ჯგუფში {group_name} მიიწვია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការអញ្ជើញ {name} និង {count} នាក់ផ្សេងទៀតចូល {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು {group_name} ಗೆ ಆಹ್ವಾನಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님 및 {count}명의 다른 사람들을 {group_name}에 초대하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} هاڕاوەکانت و هاووپەیوانەت بۆ {group_name} بانگخستند شکستی هێنا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okuweereza {name} ne {count} abalala mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດຊວນ {name} ແລະ {count} ອື່ນໆເຂົ້າຫາ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pakviesti {name} ir {count} kitų į {group_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās uzaicināt {name} un {count} citus uz {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканување на {name} и {count} други лица во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад хүмүүсийг {group_name} руу урьж авахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menjemput {name} dan {count} lain ke {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ {group_name} သို့ {name} နှင့် {count} ဦးကိုဖိတ်ချက်ပေးမည်သည် မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} og {count} andre til {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र {count} अरूलाई {group_name} मा आमन्त्रित गर्न असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het uitnodigen van {name} en {count} anderen naar {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje invitera {name} og {count} andre til {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuyitana {name} ndi {count} ena kupita ku {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰਾਂ ਨੂੰ {group_name} ਤੇ ਸੱਦਾ ਦੇਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaprosić użytkownika {name} i {count} innych użytkowników do grupy {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} او نورو {count} بلنه ناکامه شوه چې {group_name} ته ګډون وکړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} e {count} outros para {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} e {count} outros para {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut invita {name} și {count} alții la {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось пригласить {name} и {count} других в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo pozivanje {name} i {count} drugih u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} තවත් අය {group_name} වෙත ආරාධනා කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa pozvať používateľa {name} a {count} ďalších do {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo povabiti {name} in {count} drugih v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi ftesa e {name} dhe {count} të tjerëve në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позивање {name} и {count} других у {group_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo pozivanje {name} i {count} drugih u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att bjuda in {name} och {count} andra till {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kualika {name} na wengine {count} kwa {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} க்கு {name} மற்றும் {count} பிறரை அழைக்க தவறிவிட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులను {group_name} ఆహ్వానించడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเชิญ {name} และอีก {count} คนเข้าร่วม {group_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğerleri {group_name} davet edilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося запросити {name} та ще {count} інших до {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور مزید {count} اراکین کو {group_name} میں مدعو کرنے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} a'zoni {group_name} ga taklif qilishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời {name} và {count} người khác vào nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukumema {name} kunye {count} nabanye {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请{name}和其他{count}位成员加入{group_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法邀請 {name} 和 {count} 位其他成員加入 {group_name}" + } + } + } + }, + "groupInviteFailedTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} en {other_name} na {group_name} nooi nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل دعوة {name} و {other_name} إلى {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və {other_name} istifadəçilərini {group_name} qrupuna dəvət etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو {group_name} میں مدعو کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося запрасіць {name} і {other_name} у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканване на {name} и {other_name} в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} কে {group_name} তে আমন্ত্রণ জানাতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al convidar {name} i {other_name} a {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se pozvat {name} a {other_name} do {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gwahodd {name} a {other_name} i {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} og {other_name} til {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Einladung von {name} und {other_name} zu {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία πρόσκλησης {name} και {other_name} στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to invite {name} and {other_name} to {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis inviti {name} kaj {other_name} al {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo invitar a {name} y {other_name} a {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo invitar a {name} y {other_name} a {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus kutsuda {name} ja {other_name} gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {name} eta {other_name} {group_name} Gonbidatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت از {name} و {other_name} به {group_name} انجام نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjien {name} ja {other_name} kutsuminen ryhmään {group_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong imbitahan si {name} at si {other_name} sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec d'inviter {name} et {other_name} à {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido invitar a {name} e {other_name} a {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa gayyatar {name} da {other_name} zuwa {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להזמין את {name} ו-{other_name} ל-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} को {group_name} में आमंत्रित करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivanje {name} i {other_name} u {group_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült meghívni {name}-t és {other_name}-t a {group_name} csoportba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հրավիրել {name} և {other_name}-ին {group_name} խմբին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengundang {name} dan {other_name} ke {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile invitare {name} e {other_name} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} と {other_name} を {group_name} に招待できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} და {other_name} ჯგუფში {group_name} მიიწვია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការអញ្ជើញ {name} និង {other_name} ទៅ {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} ಅನ್ನು {group_name} ಗೆ ಆಹ್ವಾನಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {other_name}님을 {group_name}에 초대하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} بۆ {group_name} بانگخستند شکستی هێنا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okuweereza {name} ne {other_name} mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດຊອນ {name} ແລະ {other_name} ເຂົ້າຫາ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pakviesti {name} ir {other_name} į {group_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās uzaicināt {name} un {other_name} uz {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканување на {name} и {other_name} во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} хүмүүсийг {group_name} руу урьж авахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menjemput {name} dan {other_name} ke {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ {group_name} သို့ {name} နှင့် {other_name} ကိုဖိတ်ချက်ပေးမည်သည် မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} og {other_name} til {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} र {other_name} लाई {group_name} मा आमन्त्रित गर्न असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het uitnodigen van {name} en {other_name} naar {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje invitera {name} og {other_name} til {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuyitana {name} ndi {other_name} kupita ku {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {other_name} ਨੂੰ {group_name} ਤੇ ਸੱਦਾ ਦੇਣ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaprosić użytkowników {name} i {other_name} do grupy {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} او {other_name} بلنه ناکامه شوه چې {group_name} ته ګډون وکړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} e {other_name} para {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} e {other_name} para {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut invita {name} și {other_name} la {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось пригласить {name} и {other_name} в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo pozivanje {name} i {other_name} u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} {group_name} වෙත ආරාධනා කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa pozvať používateľa {name} a {other_name} do {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo povabiti {name} and {other_name} v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi ftesa e {name} dhe {other_name} në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позивање {name} и {other_name} у {group_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo pozivanje {name} i {other_name} u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att bjuda in {name} och {other_name} till {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kualika {name} na {other_name} kwa {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} க்கு {name} மற்றும் {other_name} அழைக்க தவறிவிட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} {group_name}కు ఆహ్వానించడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเชิญ {name} และ {other_name} เข้าร่วม {group_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} {group_name} davet edilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося запросити {name} та {other_name} до {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو {group_name} میں مدعو کرنے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name}ni {group_name} ga taklif qilishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời {name} và {other_name} vào nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukumema {name} kunye {other_name} ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请{name}和{other_name}加入{group_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法邀請 {name} 和 {other_name} 加入 {group_name}" + } + } + } + }, + "groupInviteFailedUser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {name} na {group_name} nooi nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل دعوة {name} إلى {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini {group_name} qrupuna dəvət etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو {group_name} میں مدعو کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося запрасіць {name} у {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканване на {name} в {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} কে {group_name} তে আমন্ত্রণ জানাতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al convidar {name} a {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se pozvat {name} do {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gwahodd {name} i {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} til {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Einladung von {name} zu {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία πρόσκλησης {name} στο {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to invite {name} to {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis inviti {name} al {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo invitar a {name} a {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló la invitación de {name} a {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus kutsuda {name} gruppi {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {name} {group_name} Gonbidatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت از {name} به {group_name} انجام نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjän {name} kutsuminen ryhmään {group_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong imbitahan si {name} sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec d'inviter {name} à {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido invitar a {name} a {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa gayyatar {name} zuwa {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להזמין את {name} ל-{group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को {group_name} में आमंत्रित करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivanje {name} u {group_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült meghívni {name}-t a {group_name} csoportba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հրավիրել {name}-ին {group_name} խմբին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengundang {name} ke {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile invitare {name} su {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} を {group_name} に招待できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {name} ჯგუფში {group_name} მიიწვია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការអញ្ជើញ {name} ទៅ {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅನ್ನು {group_name} ಗೆ ಆಹ್ವಾನಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님을 {group_name}에 초대하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بۆ {group_name} بانگخستند شکستی هێنا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okuweereza {name} mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດຊົນ {name} ເຂົ້າຫາ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pakviesti {name} į {group_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās uzaicināt {name} uz {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поканување на {name} во {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} хүнийг {group_name} руу урьж авахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menjemput {name} ke {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ {group_name} သို့ {name} ကိုဖိတ်ချက်ပေးမည်သည် မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke invitere {name} til {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} लाई {group_name} मा आमन्त्रित गर्न असफल भयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het uitnodigen van {name} naar {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje invitera {name} til {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuyitana {name} kupita ku {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ {group_name} ਤੇ ਸੱਦਾ ਦੇਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaprosić użytkownika {name} do grupy {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} بلنه ناکامه شوه چې {group_name} ته ګډون وکړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} para {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao convidar {name} para {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut invita {name} la {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось пригласить {name} в {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo pozivanje {name} u {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {group_name} වෙත ආරාධනා කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zlyhalo pozvanie používateľa {name} do {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo povabiti {name} v {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi ftesa e {name} në {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позивање {name} у {group_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo pozivanje {name} u {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att bjuda in {name} till {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kualika {name} kwa {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} க்கு {name} அழைக்க தவறிவிட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ను {group_name}కు ఆహ్వానించడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถเชิญ {name} เข้าร่วม {group_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {group_name} davet edilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося запросити {name} до {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو {group_name} میں مدعو کرنے میں ناکام رہا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ni {group_name} ga taklif qilishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời {name} vào nhóm {group_name} thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukumema {name} ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请{name}加入{group_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法邀請 {name} 加入 {group_name}" + } + } + } + }, + "groupInviteSending" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging word gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvət göndərilir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج رہا ہے دعوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адпраўка запрашэння" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане на покана" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণ পাঠানো হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviant invitació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesílání pozvánky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon gwahoddiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender invitation" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladung wird gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται αποστολή πρόσκλησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending invite" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendante invito" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando invitación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando invitación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsekirja saatmine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidapena bidaltzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال دعوت نامه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsua lähetetään" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sini-send ang imbitasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoi de l'invitation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando convite" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana aika da gayyata" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שולח הזמנה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमंत्रण भेजा जा रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje pozivnice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívás küldése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկվում է հրավերը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengirim undangan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invio invito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "招待状を送信中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვევის გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការផ្ញើការអញ្ជើញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಹ್ವಾನ ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "초대 전송 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانگکردن دەکرێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusindika envitto" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiamas kvietimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sūta ielūgumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испраќање на покана" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урилга илгээж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghantar jemputan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားချက် ပို့နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender innbydelse" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमन्त्रणा पठाउँदै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging versturen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender invitasjon" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending invite" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਿਮਿੰਤਰਣ ਭੇਜ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysyłanie zaproszenia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنه لیږل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando convite" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando convite" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimitere invitație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправка приглашения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje pozivnice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනාව යවමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odosiela sa pozvánka" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošiljanje povabila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgimi i ftesës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слање позивнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje pozivnice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skickar inbjudan" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inatuma mwaliko" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பை அனுப்புகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానాన్ని పంపుతోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งคำเชิญ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet gönderiliyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилання запрошення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامہ بھیجا جا رہا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taklif yuborilmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang gửi lời mời" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuthumela isimemo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请发送中" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送邀請" + } + } + } + }, + "groupInviteSent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi gestuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم إرسال الدعوة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvət göndərildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت بھیجی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрашэнне адпраўлена" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата изпратена" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণ পাঠানো হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitació enviada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvánka odeslána" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfonwyd gwahoddiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation afsendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladung gesendet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η πρόσκληση στάλθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite sent" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito sendita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación enviada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación enviada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutse saadetud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidapena bidalita" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامه ارسال شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu on lähetetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naipadala ang imbitasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation envoyée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite enviado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gayyatar an aika" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמנה נשלחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आमंत्रण भेजा गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv poslan" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívás elküldve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրումը ուղարկված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undangan terkirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito inviato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "招待を送信しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვევა გაგზავნილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការអញ្ជើញបានផ្ញើទៅហើយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಮಂತ್ರಣೆ ಕಳುಹಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "초대 전송됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانێ ناردکراوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita kukisibwako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakvietimas išsiųstas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaicinājums nosūtīts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата е испратена" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урилга илгээгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemputan dihantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားမှု ပို့ထားပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitasjon sendt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमन्त्रणा पठाइयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging verzonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitasjon sendt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina Yatumidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੱਦਾ ਭੇਜਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszenie zostało wysłane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنه واستول شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite enviado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite enviado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitația a fost trimisă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приглашение отправлено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv poslat" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනය යවා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvánka bola odoslaná" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabilo poslano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftesa dërguar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позив је послат" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv je poslat" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inbjudan skickad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kualika kumewekwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு அனுப்பப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానం పంపబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet gönderildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрошення надіслано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت بھیج دی گئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taklif yuborildi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã gửi lời mời" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umemi uthunyelwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请已发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請已發送" + } + } + } + }, + "groupInviteSuccessful" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepuitnodiging suksesvol" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الدعوة إلى المجموعة ناجحة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup dəvəti uğurludur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ دعوت کامیاب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрашэнне ў групу паспяхова" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата в групата е успешна" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ আমন্ত্রণ সফল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitació al grup amb èxit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvánka do skupiny byla úspěšná" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahoddiad grŵp llwyddiannus" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeinvite vellykket" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeneinladung erfolgreich" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η πρόσκληση στην ομάδα ήταν επιτυχής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group invite successful" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito de grupo sukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitación al grupo exitosa" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo invitado con éxito" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi kutse oli edukas" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talde gonbidapena arrakastatsua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت به گروه موفقیت‌آمیز بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän kutsu onnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matagumpay ang imbitasyon sa grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitation de groupe réussie" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite ao grupo enviado con éxito" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gayyatar rukuni ta yi nasara" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמנת הקבוצה הצליחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह आमंत्रण सफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv u grupu uspješan" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A meghívás sikeres volt." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի հրավերը հաջողությամբ ուղարկված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undangan grup berhasil" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invito al gruppo riuscito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループの招待が成功しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის მოწვევა წარმატებული იყო" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការអញ្ជើញក្រុមដោយជោគជ័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ಆಹ್ವಾನ ಯಶಸ್ವಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 초대 성공" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوتنامەی گروپ سەرکەوتوو بوو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuyita mu kibinja kkyalibukira" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės kvietimas sėkmingas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas ielūgums ir veiksmīgs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканата за група е успешна" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн урилга амжилттай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemputan kumpulan berjaya" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုဖိတ်ကြားမှုအောင်မြင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeinvitasjonen vellykket" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह निमन्त्रणा सफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsuitnodiging succesvol" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppeinnbydelse var vellukka" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuitana kwa gulu kwakwaniritsidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਨਿਮੰਤ੍ਰਣ ਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszenie do grupy zakończone sukcesem" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې بلنه بریالۍ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite para grupo bem-sucedido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convite para grupo enviado com sucesso" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitație grup reușită" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приглашение в группу успешно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozivnica za grupu je uspješno poslata" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහය ආරාධනා සාර්ථකයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvanie do skupiny úspešné" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabilo v skupino je bilo uspešno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftesa për grupin ishte e suksesshme" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позивање групе је успешно" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poziv u grupu je bio uspešan" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupinbjudan lyckades" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwaliko wa kikundi umefanikiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு அழைப்பு வெற்றி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ ఆహ్వానం విజయవంతం అయ్యింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญเข้าร่วมกลุ่มสำเร็จ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup daveti başarılı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрошення до групи успішне" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی دعوت کامیاب رہی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muvaffaqiyatli guruh tizimiga taklif qilingan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời tham gia nhóm thành công" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isimemo seqela siphumelele" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组邀请成功" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組邀請成功" + } + } + } + }, + "groupInviteVersion" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruikers moet die nuutste weergawe hê om uitnodigings te ontvang" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يجب أن يمتلك المستخدمون الإصدار الأحدث لتلقي الدعوات" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارفین کو دعوتیں وصول کرنے کیلئے نیا ورژن ہونا ضروری ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Карыстальнікі павінны мець апошнюю версію для атрымання запрашэнняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребителите трябва да имат последната версия, за да получават покани" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইউজারদের আপডেট অথবা উচ্চতর ভার্সন থাকতে হবে ইনভাইটেশন গ্রহণ করার জন্য" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els usuaris han de tenir la versió més recent per rebre invitacions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uživatelé musí používat nejnovější verzi, aby mohli přijímat pozvánky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhaid i'r defnyddwyr fod â'r rhyddhad diweddaraf i dderbyn gwahoddiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brugerne skal have den nyeste version for at modtage invitationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Empfänger müssen die neueste App-Version haben, um Gruppeneinladungen zu erhalten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι χρήστες πρέπει να έχουν την τελευταία έκδοση για να λάβουν προσκλήσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Users must have the latest release to receive invitations" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzantoj devas havi la plej novan version por ricevi invitojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los usuarios deben tener la última versión para recibir invitaciones." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los usuarios deben tener la última versión para recibir invitaciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasutajatel peab olema uusim versioon kutsete saamiseks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzaileek azken bertsioa izan behar dute gonbidapenak jasotzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربران باید آخرین نسخه را داشته باشند تا دعوت‌نامه دریافت کنند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttäjillä on oltava uusin versio vastaanottaakseen kutsuja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dapat ay may pinakabagong release ang mga user upang makatanggap ng mga paanyaya" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les utilisateurs doivent avoir la dernière version pour recevoir des invitations" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masu amfani dole su kasance da sigar na karshe don su sami gayyata" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "משתמשים חייבים להיות בגרסה האחרונה כדי לקבל הזמנות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमंत्रण प्राप्त करने के लिए उपयोगकर्ताओं के पास नवीनतम रिलीज़ होनी चाहिए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnici moraju imati najnoviju verziju za primanje pozivnica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A felhasználóknak a legújabb verzióval kell rendelkezniük, hogy meghívásokat kaphassanak" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտատերերը պետք է ունենան վերջին տարբերակը՝ հրավերներ ստանալու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna harus memiliki rilis terbaru untuk menerima undangan" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーは最新のリリースを持っている必要があります" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებელმა უნდა ჰქონდეს უახლესი ვერსია მიწვევების მისაღებად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកប្រើត្រូវមានកំណែចុងក្រោយដើម្បីទទួលបានការអញ្ជើញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರು ಆವೃತ್ತಿಯ ಆವೃತ್ತಿಯ ಅಥವಾ ಹೆಚ್ಚಿನ ಆವೃತ್ತಿಯನ್ನು ಹೊಂದಿರಬೇಕು ಆಹ್ವಾನಗಳನ್ನು ಸ್ವೀಕರಿಸಲು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자는 초대를 받으려면 최신 버전을 보유하고 있어야 합니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەکارهێنەران پێویستە نوێترین وەشانی بەکار بیهنە بۆ وەرگرتنی بانگەشەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abakozesa balina okubeera n'ekitundu ekipya okufuna obulambuzi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norint gauti kvietimus, vartotojai privalo turėti naujausią versiją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietotājiem jābūt jaunākajai izlaiduma versijai, lai saņemtu ielūgumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисниците мора да имаат најнова верзија за да добијат покани" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчид урилга хүлээн авахын тулд хамгийн сүүлийн хувилбар байх хэрэгтэй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengguna mesti mempunyai keluaran terkini untuk menerima jemputan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားပေးရန်အတွက် အသုံးပြုသူများသည် နောက်ဆုံးထွက်ရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brukere må ha den nyeste versjonen for å motta invitasjoner" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ताहरूले निमन्त्रणाहरू प्राप्त गर्नका लागि सबैभन्दा हालको रिलीज हुनु आवश्यक छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruikers moeten de nieuwste versie hebben om uitnodigingen te ontvangen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brukarar må ha den nyaste versjonen for å ta imot invitasjonar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogwiritsa asanalembe mtundu watsopano kuti alandire maitanidwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਿਮੰਤਰਣ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਉਪਭੋਗਤਾਵਾਂ ਕੋਲ ਸਭ ਤੋਂ ਨਵਾਂ ਰਿਲੀਜ਼ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby otrzymywać zaproszenia, użytkownicy muszą mieć najnowszą wersję" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارنان باید وروستۍ نسخه ولري ترڅو بلنې ترلاسه کړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuários devem ter a versão mais recente para receber convites" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os utilizadores devem ter a versão mais recente para receber convites" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizatorii trebuie să aibă versiunea cea mai recentă pentru a primi invitații" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пользователи должны иметь последнюю версию приложения для получения приглашений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnici moraju imati najnovije izdanje kako bi primili pozivnice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනාවන් ලැබීමට භාවිතාකරුවන්ට නවතම අනුවාදය තිබිය යුතුයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Používatelia musia mať najnovšiu verziu na prijatie pozvánok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uporabniki morajo imeti najnovejšo različico za prejemanje povabil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdoruesit duhet të kenë versionin më të ri për të marrë ftesa" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Корисници морају имати најновије издање да би примали позивнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korisnici moraju imati najnoviju verziju da bi primili pozivnice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Användare måste ha den senaste versionen för att ta emot inbjudningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Watumiaji lazima wawe na toleo jipya zaidi kupokea mialiko" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனர்கள் பரிந்துரை பெறவேண்டுமெனில் சமீபத்திய பதிப்பைக் கட்டாயம் மேற்கொள்ள வேண்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానాలు అందుకోవడానికి వినియోగదారులు తాజా వెర్షన్ కలిగి ఉండాలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้ใช้ต้องมีเวอร์ชันล่าสุดเพื่อรับคำเชิญ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıların davetleri alabilmesi için en son sürüme sahip olmaları gerekiyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користувачі мають мати останню версію, щоб отримувати запрошення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامے وصول کرنے کے لیے صارفین کو تازہ ترین ریلیز رکھنی ہوگی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "A'zolarga taklifnomalar olish uchun oxirgi versiyasini yangilangan bo'lishi kerak" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Người dùng phải có phiên bản mới nhất để nhận được lời mời" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abasebenzisi kufuneka babe ngohlelo lwamva ukufumana izimemo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "用户必须使用最新版本才能接受邀请" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "用戶必須擁有最新版本才能接收邀請" + } + } + } + }, + "groupInviteYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy is genooi om by die groep aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت تمت دعوتك للانضمام إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz qrupa qoşulmağa dəvət edildiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār group šumār zant." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вас запрасілі далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие бяхте поканени да се присъедините към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu has estat convidat a unir-te al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byli jste pozváni k připojení do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahoddwyd chi i ymuno â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blev inviteret til at deltage i gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du wurdest eingeladen, der Gruppe beizutreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς προσκληθήκατε να συμμετάσχετε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You were invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estis invitita aniĝi al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " fuiste invitado a unirte al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has sido invitado a unirte al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind kutsuti grupiga liituma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk taldera batzeko gonbidapena jaso zenuen." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما برای پیوستن به گروه دعوت شدید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinut kutsuttiin liittymään ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay inimbitahan na sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez été invité·e à rejoindre le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti foste invitado a unirte ao grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku an gayyace ku shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה הוזמנת להצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप को समूह में शामिल होने के लिए आमंत्रित किया गया था।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvani ste da se pridružite grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te meghívást kaptál a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք հրավիրվել եք միանալու խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda diundang untuk bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei stata invitato a unirti al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "You はグループに招待されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ მიიწვიეს ჯგუფში შესასვლელად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 그룹 참여 초대를 받았습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ بوو و دانەنیشتنی گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wakunyumibwa okwegatta mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານໄດ້ຖືກຊັ້ນເຊີນເຂົ້າຖານຊາດ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs buvote pakviesti prisijungti prie grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu biji uzaicināts pievienoties grupai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие бевте поканети да се придружите на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүлэгт нэгдэх урилга авсан байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dijemput untuk menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် ကို အဖွဲ့သို့ ပူးပေါင်းဖို့ ဖိတ်ကြားခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ble invitert til å bli med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई समूहमा सामेल हुन निमन्त्रणा गरिएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent uitgenodigd om lid te worden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vart invitert til å bli med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mwaitanidwa kulowa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszono Cię do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو ته په ګروپ کې د شاملیدو بلنه ورکړل شوې وه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você foi convidado a entrar no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foi convidado a juntar-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu ai fost invitat/ă să te alături grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы были приглашены присоединиться к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si pozvan da se pridružiš grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සමූහයට සම්බන්ධ වන්නට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste boli pozvaní, aby ste sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste povabljeni, da se pridružite skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju u ftuat të bashkoheni me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте позвани да се придружите групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste pozvani da se pridružite grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blev inbjuden att gå med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umealikwa kujiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் குழுவில் சேர அழைக்கப்பட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ถูกเชิญเข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen gruba katılmaya davet edildin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви були підвищені до адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو گروپ میں شامل ہونے کی دعوت دی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz guruhga qo'shilishga taklif qilingan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã được mời tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna ndimele ukujoyina iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "被邀请加入群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 被邀請加入群組。" + } + } + } + }, + "groupInviteYouAndMoreNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander is genooi om by die groep aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{count} آخرين انضموا للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz digər {count} nəfər qrupa qoşulmaq üçün dəvət edildiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اور {count} دٖگر گروپء زنګ شومار." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і яшчэ {count} іншых былі запрошаны далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бяхте поканени да се присъедините към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} জন অন্যরা গ্রুপে যোগ দেওয়ার আমন্ত্রণ পেয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {count} altres heu estat convidats a unir-vos al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších bylo pozváno do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre blev inviteret til at deltage i gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere sind der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσύ και {count} ακόμη συμμετείχατε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others were invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj estis invititaj aniĝi al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {count} teist kutsuti grupiga liituma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu eta {count} beste taldera batzeko gonbidatu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از شما و {count} سایرین دعوت شده است تا به گروه بپیوندید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa ay inimbitahan na sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres ont été invités à rejoindre le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {count} wasu an gayyace ku shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{count} אחרים‏ הוזמנתם להצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {count} अन्य समूह में शामिल हुए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugi pozvani ste da se pridružite grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy meghívást kaptatok a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} այլ անձինք հրավիրվել են միանալու խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya telah diundang untuk bergabung ke grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {count} altri vi siete uniti al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{count}名 がグループに加わりました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვები მიწვეულები არიან ჯგუფში შესასვლელად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} គេផ្សេងទៀតត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರು ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{count}명이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} کەس دیکە بانگکران بۆ بەشداریکردن لە گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {count} abalala mwakuyitibwa okwegatta mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir dar {count} buvote pakviesti prisijungti prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бевте поканети да се придружите на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {count} бусад бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {count} ဦး ကို အဖွဲ့သို့ ပူးပေါင်းဖို့ ဖိတ်ကြားခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre ble invitert til gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{count} अन्यलाई समूहमा सामेल हुन आमन्त्रित गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jij en {count} anderen zijn lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre vart invitert til å bli med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena mwaitanidwa kulowa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰਾਂ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników zostaliście zaproszeni do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور ډله کې ګډون کولو ته بلل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram convidados a juntar-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} ați fost invitați să vă alăturați grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других человек приглашены вступить в группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih ste pozvani da se pridružite grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} වෙනත් අය කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší ste boli pozvaní, aby ste sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugi ste bili povabljeni, da se pridružite skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë u ftuat të bashkoheni me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} осталих су позвани да се придруже групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste pozvani da se pridružite grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mmealikwa kujiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} பிறர் குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {count} อื่นๆ ถูกเชิญเข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {count} diğer gruba katıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та ще {count} інших приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqalar guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{count} người khác đã được mời tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {count} abanye banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "和其他{count}人被邀请加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{count} 位其他成員 加入了群組。" + } + } + } + }, + "groupInviteYouAndOtherNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {other_name} is genooi om by die groep aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{other_name} انضموا للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz{other_name} qrupa qoşulmaq üçün dəvət edildiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اور {other_name} گروپء زنګ شومار." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {other_name} былі запрошаныя далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} бяхте поканени да се присъедините към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {other_name} গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {other_name} heu estat convidats a unir-vos al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} jste byli pozváni do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {other_name} ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} blev inviteret til at deltage i gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {other_name} sind der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσύ και {other_name} συμμετείχατε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {other_name} were invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {other_name} estis invititaj aniĝi al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {other_name} kutsuti grupiga liituma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu eta {other_name} taldera batzeko gonbidatu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از شما و {other_name} دعوت شده است تا به گروه بپیوندید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {other_name} liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {other_name} ay inimbitahan na sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {other_name} ont été invités à rejoindre le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {other_name} an gayyace ku shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{other_name}‏ הוזמנתם להצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {other_name} समूह में शामिल हुए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} pozvani ste da se pridružite grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {other_name} meghívást kaptatok a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {other_name} հրավիրվել եք միանալու խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} telah diundang untuk bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {other_name} fate ora parte del gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{other_name} がグループに加わりました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {other_name} მიწვეულები არიან ჯგუფში შესასვლელად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {other_name} ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {other_name} ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{other_name}님이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {other_name} بانگکران بۆ بەشداریکردن لە گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {other_name} mwakuyitibwa okwegatta mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {other_name} buvote pakviesti prisijungti prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} бевте поканети да се придружите на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {other_name} бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {other_name} ကို အဖွဲ့သို့ ပူးပေါင်းဖို့ ဖိတ်ကြားခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} ble invitert til gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{other_name}लाई समूहमा सामेल हुन आमन्त्रित गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jij en {other_name} zijn lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} vart invitert til å bli med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {other_name} mwaitanidwa kulowa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {other_name} ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty oraz użytkownik {other_name} zostaliście zaproszeni do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {other_name} ډله کې ګډون کولو ته بلل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} foram convidados a juntar-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {other_name} ați fost invitați să vă alăturați grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {other_name} приглашены вступить в группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {other_name} ste pozvani da se pridružite grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {other_name} කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} ste boli pozvaní, aby ste sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {other_name} sta bila povabljena, da se pridružita skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {other_name} u ftuat të bashkoheni me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {other_name} су позвани да се придруже групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} ste pozvani da se pridružite grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {other_name} gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {other_name} mmealikwa kujiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {other_name} குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {other_name} సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {other_name} ถูกเชิญเข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {other_name} gruba katıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {other_name} приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {other_name} نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {other_name} guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{other_name} đã được mời tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {other_name} banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name}被邀请加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name} 加入了群組。" + } + } + } + }, + "groupLeave" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat Groep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مغادرة المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupu tərk et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ چھوڑ دیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пакінуць групу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напускане на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ পরিত্যাগ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marxar del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustit skupinu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael y grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlad gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe verlassen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποχώρηση από την ομάδα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlasi Grupon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahku grupist" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldetik Irten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترک کردن گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistu ryhmästä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umalis sa grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quitter le groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fice Kunga" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לעזוב קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ग्रुप को छोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti grupu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés a csoportból" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լքել խումբը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keluar grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbandona gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループを抜ける" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის დატოვება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាកចេញពីក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪನ್ನು ತೊರೆಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 나가기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بڕانە گرووپە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vva mu Kkaapu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeiti iš grupės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atstāt grupu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напушти група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгээс гарах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinggalkan Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုမှ ထွက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat gruppe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुह छोड्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep verlaten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat gruppe" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanipo Tantanakuy" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਛੱਡੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opuść grupę" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډله پرېږده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair do grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Părăsește Grupul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покинуть группу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti grupu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහය හැරයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustiť skupinu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapusti skupino" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Braktise Grupin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусти групу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti grupu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lämna grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toka kwenye kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவிலிருந்து வெளியேறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాన్ని వదులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruptan Ayrıl" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вийти з групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ چھوڑیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhdan ajralish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rời nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiya iQela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "離開群組" + } + } + } + }, + "groupLeaveDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {group_name} verlaat?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد مغادرة {group_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupunu tərk etmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی {group_name} اخلیقی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выйсці з {group_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурни ли сте, че желате да напуснете {group_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি {group_name} গ্রুপ ছাড়তে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu abandonar {group_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete opustit {group_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am adael {group_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil forlade {group_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {group_name} verlassen möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να αποχωρήσετε από την ομάδα {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to leave {group_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forlasi {group_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas abandonar {group_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres salir de {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite grupist või kogukonnast {group_name} lahkuda?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {group_name} utzi nahi duzula?" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistua yhteisöstä {group_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong umalis sa {group_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir quitter {group_name} ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer abandonar {group_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka barin {group_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לעזוב את {group_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {group_name} छोड़ना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite napustiti {group_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy ki akarsz lépni a(z) {group_name} csoportból?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք լքել {group_name} խումբը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin meninggalkan {group_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler abbandonare {group_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{group_name}を退出しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ {group_name}-დან გასვლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់ចាកចេញពី {group_name}?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {group_name} ತೊರೆಯಲು ಖಚಿತವಾಗಿದೆಯ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에서 나가시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت لە {group_name} بڕی؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuva mu {group_name}?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການອອກຈາກ {group_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išeiti iš {group_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai tiešām vēlaties pamest {group_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја напуштите {group_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name}-ээс гарахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu meninggalkan {group_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ {group_name} မှ ထွက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil forlate {group_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {group_name} समूह छोड्न निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u {group_name} wilt verlaten?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å forlate {group_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kusiya {group_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {group_name} ਨੂੰ ਛੱਡਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz opuścić grupę {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو ډاډه یاست چې {group_name} پریږدئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja sair {group_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende sair {group_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să părăsești grupul {group_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите покинуть {group_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš napustiti {group_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} හැර යාමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete opustiť skupinu {group_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite zapustiti {group_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta lini {group_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да напустите {group_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da napustite {group_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill lämna {group_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuondoka {group_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} யிலிருந்து வெளியேற விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {group_name} ను వదిలిపెట్టాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือว่าต้องการออก {group_name}?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubundan ayrılmak istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чи дійсно ви бажаєте вийти з {group_name}?" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {group_name} dan ajralmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn rời {group_name}?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukufumana {group_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要退出{group_name}吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要離開 {group_name} 嗎?" + } + } + } + }, + "groupLeaveDescriptionAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil {group_name} verlaat?

Dit sal alle lede verwyder en alle groepinhoud skrap." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد مغادرة {group_name}?

سيؤدي ذلك إلى إزالة جميع الأعضاء وحذف كافة محتويات المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupunu tərk etmək istədiyinizə əminsiniz?

Bununla bütün üzvləri çıxarılacaq və qrupun bütün məzmunu silinəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا شما مطمئن هستن که صرف {group_name}؟

ایگ انت تمام ممبران بکھی و پیغامانی ڈلیٹ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце пакінуць {group_name}?

Гэта выдаліць усіх удзельнікаў і ўсю групавую інфармацыю." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да напуснете {group_name}?

Това ще премахне всички членове и изтрие цялото съдържание на групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি {group_name} ত্যাগ করতে চান?

এটি সমস্ত সদস্যদের সরিয়ে দেবে এবং সমস্ত গ্রুপ বিষয়বস্তু মুছে দেবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu deixar {group_name}?

Això eliminarà tots els membres i suprimirà tot el contingut del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete opustit {group_name}?

Tímto odeberete všechny členy a smažete veškerý obsah skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am adael {group_name}?

Bydd hyn yn dileu'r holl aelodau ac yn dileu'r holl gynnwys grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil forlade {group_name}?

Dette vil fjerne alle medlemmer og slette alt gruppeoplekalt indhold." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du {group_name} verlassen möchtest?

Dadurch werden alle Mitglieder entfernt und alle Gruppendaten gelöscht." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να αποχωρήσετε από την {group_name}?

Αυτό θα αφαιρέσει όλα τα μέλη και θα διαγράψει όλο το περιεχόμενο της ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to leave {group_name}?

This will remove all members and delete all group content." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas foriri el {group_name}?

Ĉi tio forigos ĉiujn membrojn kaj forigos ĉiun grupon enhavo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas abandonar {group_name}?

Esto eliminará a todos los miembros y borrará todo el contenido del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas abandonar el grupo {group_name}?

Esto eliminará a todos los miembros y borrará todo el contenido del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite lahkuda grupist {group_name}?

See eemaldab kõik liikmed ja kustutab kogu grupi sisu." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude {group_name} taldea utzi nahi duzula?

Honek kide guztiak kendu eta taldeko eduki guztiak ezabatuko ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا مطمین هستید می خواهید {group_name} را ترک کنید؟

این کار باعث حذف همه ی اعضا و پاک شدن تمام محتوای گروه خواهد شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistua ryhmästä {group_name}?

Tämä poistaa kaikki jäsenet ja poistaa kaiken ryhmäsisällön." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong umalis sa {group_name}?

Mababura nito ang lahat ng miyembro at lahat ng group content." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir quitter {group_name}?

Cela supprimera tous les membres et tout le contenu du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer abandonar {group_name}?

Isto desactivará o grupo para todos os membros." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka bar {group_name}?

Wannan zai cire dukkan mambobi kuma ya goge duk abubuwan da aka ƙunsa a rukuni." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לעזוב את {group_name}?

פעולה זו תסיר את כל החברים ותמחק את כל תוכן הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई {group_name} छोड़ना चाहते हैं?

इससे सभी सदस्यों को हटा दिया जाएगा और सभी समूह सामग्री को हटा दिया जाएगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite napustiti {group_name}?

Ovo će ukloniti sve članove i izbrisati sve sadržaje grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy ki akarsz lépni a {group_name} csoportból?

Ez az összes tag eltávolításával és a csoport teljes tartalmának törlésével jár." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք լքել {group_name}-ը:

Սա կհեռացնի բոլոր անդամներին և կհեռացնի խմբի բոլոր բովանդակությունները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin keluar dari {group_name}?

Ini akan menghapus semua anggota dan menghapus semua konten grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler uscire da {group_name}?

Facendo questo rimuoverai tutti i membri dal gruppo e cancellerai tutto il suo contenuto." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に{group_name}を退会しますか?

これにより、すべてのメンバーが削除され、すべてのグループコンテンツが削除されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ წასვლა ჯგუფიდან {group_name}?

ეს წაშლის ყველა წევრს და ყველა ჯგუფის შინაარსს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ចាកចេញពី {group_name}?

នេះនឹងដកសមាជិកទាំងអស់និងលុបមាតិកាក្រុមទាំងមូល។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {group_name} ತೊರೆಯಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?

ಇದು ಎಲ್ಲಾ ಸದಸ್ಯರನ್ನು ತೆಗೆದುಹಾಕುತ್ತದೆ ಮತ್ತು ಗುಂಪು ವಿಷಯವನ್ನು ಅಳಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} 그룹을 탈퇴하시겠습니까?

이 작업은 모든 멤버를 제거하고 그룹 콘텐츠를 삭제합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت مەڵحقەت ببەی تەواوی {group_name}?

ئەمە لە هەموو ئەندامەکان جێستەک دەبات و هەموو ناوەراسەکانی گروپ دەسڕێنەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula {group_name}?

Abalonzi bonna bajja kuvawa ne ebikozesebwa byonna bijja kusangiibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išeiti iš {group_name}?

Tai pašalins visus narius ir ištrins visą grupės turinį." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties pamest {group_name}?

Tas noņems visus dalībniekus un dzēsīs visu grupas saturu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја напуштите {group_name}?

Ова ќе ги отстрани сите членови и ќе ја избрише целата содржина на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name} бүлгээс гарахдаа итгэлтэй байна уу?

Энэ нь бүх гишүүдийг устгаж, бүлгийн бүх контентыг устгана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu meninggalkan {group_name}?

Ini akan membuang semua ahli dan memadamkan semua kandungan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် {group_name}ကို ထွက်ချင်သေချာပါသလား?

၎င်းသည် အဖွဲ့ဝင်များအားလုံးကို ဖယ်ရှားပြီး အဖွဲ့၏အကြောင်းအရာအားလုံးကို ဖျက်သိမ်းပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil forlate {group_name}?

Dette vil fjerne alle medlemmer og slette alt gruppearbeid." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाई पक्का हुनुहुन्छ कि तपाई {group_name} छोड्न चाहनुहुन्छ?

यसले सबै सदस्यहरूलाई हटाउँछ र सबै समूह सामग्री मेटाउँछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u de groep {group_name} wil verlaten?

Dit zal alle leden en de inhoud van de groep verwijderen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil forlate {group_name}?

Dette vil fjerne alle medlemmane og slette alt av gruppeinnhald." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchoka pa {group_name}?

Izi zithandizira kuchotsa mamembala onse ndikuchotsa zonse zomwe zili m'gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ {group_name} ਛੱਡਣਾ ਚਾਹੁੰਦੇ ਹੋ?

ਇਹ ਸਾਰੇ ਮੈਂਬਰਾਂ ਨੂੰ ਹਟਾ ਦੇਵੇਗਾ ਅਤੇ ਸਾਰੀ ਗਰੁੱਪ ਸੂਚਨਾ ਨੂੰ ਮਿਟਾ ਦੇਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz opuścić grupę {group_name}?

Usunie to wszystkich jej członków i całą zawartość grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو ډاډه یاست چې تاسو غواړئ {group_name} پریږدئ؟

دا به ټول غړي لرې کړي او د ډلې ټول مینځپانګه به حذف کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja sair de {group_name}?

Isso removerá todos os membros e excluirá todo o conteúdo do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que pretende sair {group_name}?

Isto irá remover todos os membros e eliminar todo o conteúdo do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să părăsești {group_name}?

Această acțiune va elimina toți membrii și va șterge tot conținutul grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите покинуть {group_name}?

Это удалит всех участников и всё содержимое группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš napustiti {group_name}?

Time ćeš ukloniti sve članove i izbrisati sav sadržaj grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} හැර පිටවීමට අවශ්‍ය බව විශ්වාසද?

මෙය සියලු සාමාජිකයින් ඉවත් කර සහ සමූහ අන්තර්ගතය සියල්ල මකනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete opustiť {group_name}?

Tým sa odstránia všetci členovia a všetok obsah skupiny bude vymazaný." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite zapustiti {group_name}?

To bo odstranilo vse člane in izbrisalo vsebine skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të largoheni nga {group_name}?

Kjo do të heqë të gjithë anëtarët dhe do të fshijë të gjitha përmbajtjet e grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да напустите {group_name}?

Ово ће уклонити све чланове и избрисати сав садржај групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da napustite {group_name}?

Time će biti uklonjeni svi članovi i izbrisan sav sadržaj grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill lämna {group_name}?

Detta kommer att ta bort alla medlemmar och radera allt gruppinnehåll." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kutoka {group_name}?

Hii itawaondoa wanachama wote na kufuta maudhui yote ya kikundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {group_name} க்கு விட்டு வெளியேற உறுதியாக உள்ளீர்களா?

இது அனைத்து உறுப்பினர்களையும் அகற்றி, அனைத்து குழு உள்ளடக்கங்களை நீக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {group_name} వదిలివేయాలనుకుంటున్నారా?

ఇది అన్ని సభ్యులను తొలగించి, అన్ని సమూహ విషయాన్ని తొలగిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการออกจากกลุ่ม {group_name}?

การกระทำนี้จะลบสมาชิกทั้งหมดและลบเนื้อหากลุ่มทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} adlı gruptan ayrılmak istediğinizden emin misiniz?

Bu, tüm üyeleri kaldıracak ve tüm grup içeriğini silecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете вийти з {group_name}?

Це видалить усіх учасників та вміст групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی {group_name} چھوڑنا چاہتے ہیں؟

اس سے تمام اراکین کو ہٹا دیا جائے گا اور تمام گروپ مواد کو حذف کر دیا جائے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham {group_name} guruhini tark etmoqchimisiz?

Bu barcha a'zo va guruh kontentlarini o'chiradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn rời khỏi {group_name}?

Điều này sẽ loại bỏ tất cả các thành viên và xóa tất cả nội dung nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukushiya {group_name}?

Oku kuyakususa onke amalungu kwaye kusebenzise yonke imixholo yeqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要离开{group_name}吗?

该操作将移除所有成员并删除所有群组内容。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要離開 {group_name} 嗎?

這將移除所有成員並刪除所有群組內容。" + } + } + } + }, + "groupLeaveErrorFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie {group_name} verlaat nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في مغادرة {group_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupunu tərk etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} کو چھوڑنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася пакінуць {group_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно напускане на {group_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ছাড়তে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat intentar deixar {group_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo odhlášení ze skupiny {group_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu gadael {group_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke forlade {group_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Verlassen von {group_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αποχώρησης από το {group_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to leave {group_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukceso forlasi {group_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al salir de {group_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo salir de {group_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebaõnnestus lahkuda grupist {group_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hutsa izan da {group_name} uzten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترک {group_name} ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistuminen ryhmästä {group_name} epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong umalis sa {group_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de quitter {group_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido abandonar {group_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa barin {group_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לעזוב את {group_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} छोड़ने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napustanje grupe {group_name} nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült kilépni a {group_name} csoportból" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց լքել {group_name} խումբը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal meninggalkan {group_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile abbandonare {group_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} を退出できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში {group_name} ჯგუფიდან ანუ მიცემა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការចាកចេញពី {group_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ತೊರೆಯಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}을(를) 떠날 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەتوانرا لاتەوێ بۆ {group_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwetaalya mu {group_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດອອກຈາກ {group_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko išeiti iš {group_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās pamest {group_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно напуштање на {group_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} оос гарахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal keluar dari {group_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ {group_name} မှထွက်ရန် မဖြစ်နိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke forlate {group_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} छोड्न असफल।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het verlaten van {group_name} is mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje forlata {group_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kusiya {group_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ਨੂੰ ਛੱਡਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się opuścić grupy {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {group_name} پرېښودو کې ناکامه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao sair do {group_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao sair do grupo {group_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut părăsi grupul {group_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось выйти из {group_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo napuštanje {group_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} හැර පිටවීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa opustiť {group_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo zapustiti skupine {group_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi dalja nga {group_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напуштање {group_name} није успело" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo napuštanje grupe {group_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att lämna {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuondoka {group_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} விட்டு நீக்குவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} ను వదిలివేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถออกจาก {group_name} ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} çıkış yapılamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося вийти з {group_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} چھوڑنے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} dan chiqish vaqtida muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể rời khỏi nhóm {group_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuphuma ku {group_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开{group_name}失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法退出 {group_name}" + } + } + } + }, + "groupLegacyBanner" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepe is opgegradeer, skep 'n nuwe groep om op te gradeer. Ou groep funksionaliteit sal vanaf {date} agteruitgaan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت ترقية المجموعات، أنشئ مجموعة جديدة للترقية. سوف تتدهور صلاحية عمل المجموعة القديمة بدءًا من {date}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qruplar yüksəldildi. Yüksəltmək üçün yeni bir qrup yaradın. Köhnə qrup funksionallıqları {date} tarixindən etibarən azaldılacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپاںءَ آپگریڈ بوءِ گا اِنّی ایک نوک گروپ ٺاہگ۔ پُرانا گروپءِ کجيعت {date} ہد کجے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групы былі абноўлены, стварыце новую групу для абнаўлення. Функцыянальнасць старой групы будзе пагоршана з {date}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групите са обновени, създайте нова група, за да обновите. Старата функционалност ще се понижи от {date}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপগুলো আপগ্রেড করা হয়েছে, আপগ্রেড করতে একটি নতুন গ্রুপ তৈরি করুন। পুরানো গ্রুপ কার্যকারিতা {date} থেকে হ্রাস করা হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els grups han estat millorats, crea un nou grup per a actualitzar-lo. La funcionalitat dels grups antics es degradarà des del {date}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny byly přepracovány, pro využití tohoto upgrade vytvořte prosím novou skupinu. Funkčnost staré skupiny bude omezena od {date}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae grwpiau wedi'u huwchraddio, creu grŵp newydd i uwchraddio. Bydd swyddogaeth hen grŵp yn dirywio o {date}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper er blevet opgraderet, opret en ny gruppe for at opgradere. Gammel gruppefunktionalitet vil blive nedgraderet fra {date}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppen wurden aktualisiert. Erstelle eine neue Gruppe, um sie zu aktualisieren. Alte Gruppenfunktionen werden ab {date} eingeschränkt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι ομάδες έχουν αναβαθμιστεί, δημιουργήστε μια νέα ομάδα για αναβάθμιση. Η παλαιά λειτουργία ομάδας θα υποβαθμιστεί από {date}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from {date}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupoj ĝisdatigitaj, kreu novan grupon por ĝisdatigi. Malnova grupa funkcio malkreskos de {date}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los grupos han sido actualizados, crea un nuevo grupo para actualizar. La funcionalidad del grupo antiguo se degradará a partir de {date}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los grupos han sido actualizados, crea un nuevo grupo para actualizar. La funcionalidad del grupo antiguo se degradará a partir de {date}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupid on uuendatud, loo uus grupp, et uuendada. Vana grupi funktsionaalsus hakkab alates {date} aeguma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeak eguneratu dira, sortu talde berria eguneratzeko. Talde zaharren funtzionalitatea {date}-tik aurrera degradatuko da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه‌ها ارتقا یافته‌اند، یک گروه جدید ایجاد کنید تا ارتقا دهید. عملکرد گروه قدیمی از {date} کاهش می‌یابد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmäominaisuuksia päivitetty. Käytä muutoksia luomalla uusi ryhmä. Vanhat ominaisuudet poistuvat {date}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-upgrade na ang mga grupo, lumikha ng bagong grupo upang mag-upgrade. Ang lumang pagpapagana ng grupo ay babawasan mula {date}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les groupes ont été améliorés, créez un nouveau groupe pour mettre à jour. Les fonctionnalités de l'ancien groupe seront dégradées à partir de {date}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os grupos foron modernizados, crea un novo grupo para actualizar. A funcionalidade dos antigos reséntase a partir de {date}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siffofin rukuni sun inganta, ƙirƙiri sabon rukuni don haɓakawa. Karfin aikin rukunin tsoffin za a rage daga {date}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שדרגו קבוצות, צרו קבוצה חדשה לשדרוג. תפקוד הקבוצה הישן ידרדר מ-{date}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहों को अपग्रेड किया गया है, अपग्रेड करने के लिए एक नया समूह बनाएं। पुरानी समूह कार्यक्षमता {date} से कमजोर हो जाएगी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe su nadograđene, stvorite novu grupu za nadogradnju. Stara funkcionalnost grupe bit će degradirana od {date}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A csoportok funkció frissítve lett, hozzon létre egy új csoportot a frissítéshez. A régi csoportok funkcionalitása {date} dátumtól csökkenni fog." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբերն թարմացվել են, ստեղծեք նոր խումբ՝ թարմացնելու համար: Հին խմբի ֆունկցիոնալությունը վատթարանուլ է {date}-ից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup telah ditingkatkan, buat grup baru untuk meningkatkan. Fungsi grup lama akan menurun mulai {date}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "I gruppi sono stati aggiornati, crea un nuovo gruppo per gli aggiornamenti. Le funzionalità dei vecchi gruppi cesseranno dal {date}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループがアップグレードされました。アップグレードするには新しいグループを作成してください。古いグループの機能は{date}以降低下します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფები გაუმჯობესებულია, შექმენით ახალი ჯგუფი. ძველ ჯგუფის ფუნქციონალი დაქვეითებული იქნება {date}-დან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្រុមបានធ្វើឱ្យប្រសើរឡើង បង្កើតក្រុមថ្មីដើម្បីធ្វើឱ្យប្រសើរ។ មុខងារក្រុមចាស់នឹងត្រូវបានបន្ទោរបង់ចាប់ពី {date}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪುಗಳನ್ನು ನವೀಕರಿಸಲಾಗಿದೆ, ನವೀಕರಣ ಮಾಡಲು ಹೊಸ ಗುಂಪನ್ನು ರಚಿಸಿ. ಹಳೆಯ ಗುಂಪು ಕಾರ್ಯಕ್ಷಮತೆ {date} ರಿಂದ ನಾಷಿಯಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹이 업그레이드되었습니다. 새 그룹을 생성하여 업그레이드하세요. 오래된 그룹 기능은 {date} 이후로 저하될 것입니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپەکان نوێکرانەوە، گروپی نوێ دروست بکە بۆ نوێکردنەوە. کار کردی گروپی کهن دابەش دەبێت لە {date}دا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebibinja byonnookyekulusizza, Tandika ekibinja ekipya okwasuzibwa. Ekola ya Kibinja ekijja kwefaananamu kubanga okuva {date}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės buvo atnaujintos, sukurkite naują grupę norėdami atnaujinti. Senų grupių funkcionalumas bus apribotas nuo {date}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas ir atjauninātas. Izveido jaunu grupu, lai atjauninātu. Vecas grupas funkcionalitāte būs degradēta no {date}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групите се ажурирани, создадете нова група за надградба. Старите функции на групата ќе се деградираат од {date}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгүүд шинэчлэгдсэн, шинэ бүлэг үүсгэ. Хуучин бүлгийн үйл ажиллагаа {date}-аас муудна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpulan telah dinaik taraf, buat kumpulan baru untuk naik taraf. Fungsi kumpulan lama akan semakin merosot dari {date}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုများအားအဆင့်မြှင့်ထားပြီး၊ Upgrade လုပ်ရန် အုပ်စုအသစ်တစ်ခုကိုဖန်တီးပါ။ အုပ်စု ဟောင်းများ၏ အလုပ်လုပ်မှုကို {date} မှာကျဆင်းသွားမှာဖြစ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper har blitt oppgradert, opprett en ny gruppe for å oppgradere. Gammel gruppefunksjonalitet vil bli redusert fra {date}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहहरू अपग्रेड गरिएका छन्, अपग्रेड गर्न नयाँ समूह सिर्जना गर्नुहोस्। पुरानो समूह कार्यक्षमता {date} देखि घटाइनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepen zijn geüpgraded, maak een nieuwe groep aan om te upgraden. De oude groepsfunctionaliteit zal vanaf {date} worden afgebouwd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper har blitt oppgradert, opprett ei ny gruppe for å oppgrader dei. Den gamle gruppefunksjonaliteten vil bli degradert frå {date}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magulu asinthidwa, pangani gulu latsopano kuti muwonjeze. Ntchito yakale ya magulu idzalephera kuyambira {date}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪਾਂ ਨੂੰ ਅਪਗਰੇਡ ਕੀਤਾ ਗਿਆ ਹੈ, ਅਪਗਰੇਡ ਕਰਨ ਲਈ ਨਵਾਂ ਗਰੁੱਪ ਬਣਾਓ। ਪੁਰਾਣੀ ਗਰੁੱਪ ਵਿਸ਼ੇਸ਼ਤਾਵਾਂ {date} ਤੋਂ ਘਟਦਾ ਰਹਿਣਗੀਆਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupy zostały zaktualizowane. Aby zaktualizować, utwórz nową grupę. Funkcjonalność starej grupy zostanie ograniczona od {date}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډلې پرمختګ کړی دی، د نویو ډلو د جوړولو لپاره نوی ډله جوړه کړئ. د زړو ډلو فعالیت به له {date} څخه کم شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os grupos foram atualizados, crie um novo grupo para atualizar. A funcionalidade antiga do grupo será desativada a partir de {date}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os grupos foram atualizados, crie um novo grupo para atualizar. A funcionalidade do grupo antigo será degradada a partir de {date}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupurile au fost actualizate, creează un grup nou pentru actualizare. Funcționalitatea grupului vechi va fi întreruptă începând cu {date}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функциональность групп была обновлена, создайте новую группу. Старые группы перестанут работать с {date}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe su unaprijeđene, kreirajte novu grupu da biste se nadogradili. Stara funkcionalnost grupa će biti degradirana od {date}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ යාවත්කාලීන කිරීමට, නව සමූහයක් සාදන්න. පරණ සමූහ ක්‍රියාකාරකම {date} සිට අඩක නිර්මිත කරනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupiny boli aktualizované, vytvorte novú skupinu na aktualizáciu. Funkčnosť starých skupín sa obmedzí od {date}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupine so bile nadgrajene, ustvarite novo skupino za nadgradnjo. Stara funkcionalnost skupine bo od {date} omejena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupet janë përmirësuar, krijoni një grup të ri për të përditësuar. Funksionaliteti i grupit të vjetër do të degradohet nga {date}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групе су надограђене, креирајте нову групу да бисте ажурирали. Стара функционалност групе ће бити деградирана од {date}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe su nadograđene, kreirajte novu grupu da izvršite nadogradnju. Stara funkcionalnost grupa biće degradirana od {date}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupper har uppgraderats, skapa en ny grupp för att uppgradera. Gamla gruppfunktioner kommer att försämras från och med {date}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makundi yameboreshwa, unda kikundi kipya kuboresha. Utendaji wa kikundi wa zamani utapungua kutoka {date}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுக்கள் மேம்படுத்தப்பட்டுள்ளன, மேம்படுத்த புதிய குழுவை உருவாக்கவும். பழைய குழு செயல்பாடு {date} முதல் குறைக்கப்படும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహాలు అభివృద్ధి చేయబడ్డాయి, మెరుగుపరచడానికి కొత్త సమూహం సృష్టించండి. పాత సమూహ పనితీరు {date} నుండి దిగజారిపోతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลุ่มถูกอัปเกรด สร้างกลุ่มใหม่เพื่ออัปเกรด ฟังก์ชันกลุ่มเก่าจะลดลงตั้งแต่ {date}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruplar güncellendi, yükseltmek için yeni bir grup oluşturun. Eski grup işlevselliği {date} tarihinden itibaren azaltılacaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групи було оновлено, створіть нову групу для оновлення. Функціонал старої групи буде скорочено з {date}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپس کو اپ گریڈ کر دیا گیا ہے، اپ گریڈ کرنے کے لیے ایک نیا گروپ بنائیں۔ پرانے گروپ کی فعالیت کو {date} سے کم کر دیا جائے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruhlar yangilandi, yangilanish uchun yangi guruh yarating. Eski guruh qobiliyatlari {date} dan pastga ketadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các nhóm đã được nâng cấp, tạo một nhóm mới để nâng cấp. Chức năng nhóm cũ sẽ bị suy giảm từ {date}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaqela aphuculwe, yenza iqela elitsha ukuphucula. Umsebenzi weqela elidala uya kunciphisa ukusukela ngomhla we {date}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组已升级,请创建新群组以进行升级。旧群组功能将在{date}后弃用。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組已升級,創建一個新群組以進行升級。舊群組的功能將從 {date} 開始無法正常使用。" + } + } + } + }, + "groupMemberLeft" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het die groep verlaat," + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} غادر المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} qrupu tərk etdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} jāmš." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} пакінуў групу." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} напусна групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} গ্রুপ থেকে বের হয়ে গিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha abandonat el grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} opustil(a) skupinu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y gadawodd y grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} forlod gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat die Gruppe verlassen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} αποχώρησε από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} left the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} forlasis la grupon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha abandonado el grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha abandonado el grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} lahkus grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(e)k taldea utzi du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} گروه را ترک کرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} poistui ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay umalis sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a quitté le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} abandonou o grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya bar ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ עזב את הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने समूह छोड़ दिया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napustio grupu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kilépett a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը լքեց խումբը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} keluar dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha lasciato il gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} がグループを退会しました." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს დატოვა ჯგუფი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ បានចាកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಗುಂಪನ್ನು ತೊರೆದು ಹೋದರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 그룹을 나갔습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} گروپەکەی بەجێهێشت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yava mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ອອກຈາກກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} išėjo iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} atstāja grupu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ја напушти групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} бүлгээс гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} meninggalkan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အဖွဲ့မှ ထွက်သွားပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} forlot gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} समूह छोड्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft de groep verlaten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} forlot gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} achoka gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਗਰੁੱਪ ਛੱਡਕੇ ਚਲੇ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} opuścił(a) grupę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ګروپ پریښود." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} saiu do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} saiu do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a părăsit grupul." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} покинул(а) группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napustio grupu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} කණ්ඩායම හැර ගියා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} opustil/a skupinu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je zapustil skupino." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e la grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је напустио групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napustio/la grupu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} lämnade gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ameondoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} குழுவிலிருந்து வெளியேற்றம் செய்யப்பட்டார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సమూహాన్ని వదిలి వెళ్లారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้ออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gruptan ayrıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} покинув групу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے گروپ چھوڑ دیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} guruhni tark etdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã rời nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bashiye iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}离开了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 離開此群組。" + } + } + } + }, + "groupMemberLeftMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander het die groep verlaat." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} آخرين غادروا المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} başqaları qrupu tərk etdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg šumārīyā jāmš." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых пакінулі групу." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други напуснаха групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্যরা গ্রুপ থেকে বের হয়ে গিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han abandonat el grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších opustilo skupinu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {count} eraill gadawodd y grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre forlod gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere haben die Gruppe verlassen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} ακόμη έφυγαν από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others left the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj forlasis la grupon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más abandonaron el grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más abandonaron el grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist lahkusid grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta beste {count} pertsona taldea utzi dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} نفر دیگر گروه را ترک کردند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta poistui ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay umalis sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont quitté le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} máis abandonaron o grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu sun bar ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ עזבו את הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य समूह से निकल गए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi napustili su grupu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy kiléptek a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ լքեցին խումբը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya keluar dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} hanno lasciato il gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}人 がグループから退会しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {count} სხვებს დატოვეს ჯგუფი." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {count} ಇತರೆರು ಗುಂಪನ್ನು ತೊರೆದು ಹೋದರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{count}명이 그룹을 나갔습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە گروپەکەی بەجێهێشت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala baava mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ແລະ {count}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti išėjo iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {count} citi atstāja grupu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други ја напуштија групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад бүлгээс гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya meninggalkan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့မှ ထွက်သွားကြသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre forlot gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्य समूह छोड्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen hebben de groep verlaten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre forlot gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena achoka gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{count}ਹੋਰਾਂਗਰੁੱਪ ਛੱਡਕਰ ਚਲੇ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników opuścili grupę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نورو ګروپ پریښود." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros saíram do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros saíram do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au părăsit grupul." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других человек покинули группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su napustili grupu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය කණ්ඩායම හැර ගියා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší opustili skupinu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so zapustili skupino." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë braktisën grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су напустили групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su napustili grupu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra lämnade gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wameondoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் குழுவிலிருந்து வெளியேறினர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count}ఇతరులు సమూహాన్ని వదిలివేశారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} อื่นๆ ได้ออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer gruptan ayrıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших покинули групу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر نے گروپ چھوڑ دیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqa guruhni tark etishdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} người khác đã rời nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu bashiye iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}名成员离开了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 位其他成員 離開了群組。" + } + } + } + }, + "groupMemberLeftTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} het die groep verlaat." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} غادروا المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} qrupu tərk etdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} jāmš." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} пакінулі групу." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} напуснаха групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} গ্রুপ থেকে বের হয়ে গিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han abandonat el grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} opustili skupinu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {other_name} gadawodd y grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} forlod gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} haben die Gruppe verlassen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} έφυγε από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} left the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} forlasis la grupon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} abandonaron el grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} abandonaron el grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} lahkusid grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} taldea utzi dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} گروه را ترک کردند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} poistui ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay umalis sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont quitté le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} abandonaron o grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} sun bar ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ עזבו את הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} समूह से निकल गए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} napustili su grupu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} kiléptek a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը լքեցին խումբը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} keluar dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} hanno lasciato il gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がグループから退会しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {other_name}ს დატოვეს ჯგუფი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {other_name}‍ បានចាកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {other_name} ಪ್ರ ಗುಂಪನ್ನು ತೊರೆದು ಹೋದರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 그룹을 나갔습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} گروپەکەیان بەجێهێشت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} baava mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}และ{other_name}ออกจากກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} išėjo iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {other_name} atstāja grupu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} ја напуштија групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} бүлгээс гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} meninggalkan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အဖွဲ့မှ ထွက်သွားကြသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} forlot gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} समूह छोड्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} hebben de groep verlaten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} forlot gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} achoka gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{other_name}ਗਰੁੱਪ ਛੱਡਕਰ ਚਲੇ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} i {other_name} opuścili grupę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} ګروپ پریښود." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} saíram do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} saíram do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au părăsit grupul." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} покинули группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su napustili grupu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} කණ්ඩායම හැර ගියා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} opustili skupinu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta zapustila skupino." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} braktisën grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су напустили групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su napustili grupu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} lämnade gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wameondoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} குழுவிலிருந்து வெளியேறினர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} సమూహాన్ని వదిలి వెళ్లారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ได้ออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} gruptan ayrıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} покинули групу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} نے گروپ چھوڑ دیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} guruhni tark etdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã rời nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} bashiye iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}离开了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 離開此群組。" + } + } + } + }, + "groupMemberNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} انضم إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} qrupa qoşuldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} šumār zang ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} далучыўся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се присъедини към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} গ্রুপে যোগ দিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} s'ha unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se připojil(a) ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ist der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} συμμετείχε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} was invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} grupaniĝis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se ha unido al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se ha unido al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} liitus grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} taldea sartu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دعوت شد تا به گروه ملحق شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a été invité·e à rejoindre le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} uniuse ao grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} समूह में शामिल हो गए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} meghívást kapott a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} միացավ խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fa ora parte del gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}がグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს შეუერთდა ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍បន ចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಗುಂಪಿಗೆ ಸೇರಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پەیوەندی بە گروپەکەوە کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yayingira mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ເຂົ້າຮ່ວມກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} prisijungė prie grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupai pievienojās {name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се придружи на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble invitert til å bli med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} alowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproszono do grupy: {name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ته بلنه ورکړل شوه چې په ګروپ کې شامل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} entrou no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} juntou-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost invitat/ă să se alăture grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} присоединился(ась) к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sa pripojil/a ku skupine." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se je pridružil skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u bë pjesë e grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се придружи групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio/la grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} குழுவில் சேர்ந்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้เข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gruba katıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} приєднався до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}已被邀请加入群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 加入了群組。" + } + } + } + }, + "groupMemberNewHistory" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is genooi om by die groep aan te sluit. Kletsgeskiedenis is gedeel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تمت دعوته للانضمام إلى المجموعة. تمت مشاركة سجل الدردشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} qrupa qoşulmaq üçün dəvət edildi. Söhbət tarixçəsi paylaşıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} šumār zant group ke. Chat history was shared." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} быў(-ла) запрошаны(-а) далучыцца да групы. Гісторыя чатаў была абагулена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше поканен да се присъедини към групата. История на чатовете беше споделена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে। চ্যাট ইতিহাস শেয়ার করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha estat convidat a unir-se al grup. Historial de xat compartit." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pozván(a) do skupiny. Historie konverzace byla sdílena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wedi cael gwahoddiad i ymuno â'r grŵp. Hanes sgwrs wedi cael ei rhannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev inviteret til at deltage i gruppen. Chat historik blev delt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wurde eingeladen, der Gruppe beizutreten. Der Chat-Verlauf wurde freigegeben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} προσκλήθηκε να συμμετάσχει στην ομάδα. Το ιστορικό συνομιλιών κοινοποιήθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} was invited to join the group. Chat history was shared." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estis invitita aniĝi al la grupo. Babilhistorio estis dividita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue invitado a unirse al grupo. El historial de chat fue compartido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue invitado a unirse al grupo. Se compartió el historial del chat." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kutsuti grupiga liituma. Vestluse ajalugu jagati nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} taldera batzeko gonbidatu dute. Txat historia partekatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از {name} برای عضویت در گروه دعوت شد. تاریخچه ی چت به اشتراک گذاشته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kutsuttiin ryhmään. Keskusteluhistoria jaettiin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay inimbitahan na sumali sa grupo. Naibahagi ang kasaysayan ng chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a été invité·e à rejoindre le groupe. L'historique de conversation a été partagé." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an gayyace shi ya shiga ƙungiyar. An raba tarihin hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הוזמן להצטרף לקבוצה. היסטוריית הצ'אט שותפה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को समूह में शामिल होने के लिए आमंत्रित किया गया। चैट इतिहास साझा किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je pozvan da se pridruži grupi. Povijest razgovora je podijeljena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} meg lett hívva a csoportba. A beszélgetési előzményeket megosztottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը հրավիրվել է միանալու խմբին: Զրույցի պատմությունը կիսվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah diundang untuk bergabung dengan grup. Riwayat obrolan dibagikan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha ricevuto un invito a unirsi al gruppo. La cronologia della chat è stata condivisa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} がグループに招待されました。チャット履歴が共有されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} მიწვეული იყო ჯგუფში, ჩეთის ისტორია გაზიარდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។បានចែករំលែកប្រវត្តិការជជែក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಮಂತ್ರಿಸಲಾಯಿತು. ಚಾಟ್ ಇತಿಹಾಸವನ್ನು ಹಂಚಲಾಯಿತು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 그룹에 초대되었습니다. 채팅 기록이 공유되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بانگکرایەوە بۆ بەشداریکردن لە گروپەکە. مێژوو بگردەوەیی پەیامەکان سییبرەیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mwakuyitibwa okwegatta mu kibiina. Ebika by'obubaka by'akugabana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} buvo pakviestas prisijungti prie grupės. Pokalbio istorija buvo bendrinama." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше поканет да се придружи на групата. Историјата на разговорот е споделена." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} бүлэгт уригдлаа. Чатын түүх хуваалцагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dijemput untuk menyertai kumpulan. Sejarah sembang telah dikongsi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။ စကားဝိုင်းမှတ်တမ်းကိုမျှဝေခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble invitert til gruppen. Chat-historikk ble delt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} लाई समूहमा सामेल हुन आमन्त्रित गरियो। च्याट इतिहास सेयर गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is uitgenodigd om deel te nemen aan de groep. Gespreksgeschiedenis is gedeeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart invitert til å bli med i gruppa. Chathistorikk vart delt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} anaitanidwa kuti alowe mu gulu. Mbiri ya macheza idagawidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਚੈਟ ਇਤਿਹਾਸ ਸਾਂਝਾ ਕੀਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do grupy zaproszono użytkownika {name}. Udostępniono historię czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ډله کې ګډون کولو ته بلل شوی. د خبرو تاریخ شریک شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi convidado a se juntar-se ao grupo. O histórico de conversas será compartilhado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi convidado a a juntar-se ao grupo. O histórico de conversas foi partilhado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost invitat/ă să se alăture grupului. Istoricul conversațiilor a fost partajat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} был(а) приглашен(а) в группу. История чата доступна пользователю." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je pozvan da se pridruži grupi. Istorija razgovora je deljena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී. සංවාද ඉතිහාසය බෙදා ගන්නා ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bol/a pozvaný/á, aby sa pridal/a do skupiny. História chatu bola zdieľaná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je bil_a povabljen_a, da se pridruži skupini. Zgodovina klepeta je bila deljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u ftua të bashkohet me grupin. Historia e bisedës u ndanë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је позван да се придружи групи. Историја ћаскања је подељена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je pozvan da se pridruži grupi. Istorija četa je podeljena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev inbjuden att gå med i gruppen. Chatt historik delades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amealikwa kujiunga na kundi. Historia ya gumzo ilishirikiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} குழுவில் சேர்க்கப்பட்டார். உரையாடல் வரலாறு பகிரப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు. చాట్ చరిత్ర పంచబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ถูกเชิญเข้าร่วมกลุ่ม ประวัติการแชทถูกแชร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gruba katılmak üzere davet edildi. Sohbet geçmişi paylaşıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} був запрошений приєднатися до групи. Історія чатів була поділена." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو گروپ میں شامل ہونے کی دعوت دی گئی۔ چیٹ تاریخ شیئر کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} guruhga taklif qilindi. Suhbat tarixini ko'rish imkoniyati berilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã được mời tham gia nhóm. Lịch sử trò chuyện đã được chia sẻ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wabememelwe ukuba ajoyine iqela. Imbali yencoko yenziwe yabelwana ngayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}被邀请加入群组。聊天记录已共享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 被邀請加入群組。 聊天記錄已分享。" + } + } + } + }, + "groupMemberNewHistoryMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander is genooi om by die groep aan te sluit. Kletsgeskiedenis is gedeel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و{count} آخرين تمت دعوتهم للانضمام إلى المجموعة. تمت مشاركة سجل الدردشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}digər {count} nəfər qrupa qoşulmaq üçün dəvət edildi. Söhbət tarixçəsi paylaşıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg šumār zant group ke. Chat history was shared." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых былі запрошаны далучыцца да групы. Гісторыя чатаў была абагулена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други бяха поканени да се присъединят към групата. История на чатовете беше споделена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্য সদস্য গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে। চ্যাট ইতিহাস শেয়ার করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han estat convidats a unir-se al grup. S'ha compartit l'historial de la conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších bylo pozváno do skupiny. Historie konverzace byla sdílena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} eraill wedi cael gwahoddiad i ymuno â'r grŵp. Hanes sgwrs wedi cael ei rhannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre blev inviteret til at deltage i gruppen. Chat historik blev delt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere wurden eingeladen, der Gruppe beizutreten. Der Chat-Verlauf wurde freigegeben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλοι προσκλήθηκαν να συμμετάσχουν στην ομάδα. Το ιστορικό συνομιλιών κοινοποιήθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others were invited to join the group. Chat history was shared." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj estis invititaj aniĝi al la grupo. Babilhistorio estis dividita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} otros más fueron invitados a unirse al grupo. El historial de chat fue compartido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron invitados a unirse al grupo. Se compartió el historial del chat." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist kutsuti grupiga liituma. Vestluse ajalugu jagati nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste taldera batzeko gonbidatu dituzte. Txat historia partekatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} سایرین دعوت شدند تا به گروه بپیوندند. تاریخچه ی چت به اشتراک گذاشته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta kutsuttiin ryhmään. Keskusteluhistoria jaettiin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay inimbitahan na sumali sa grupo. Naibahagi ang kasaysayan ng chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont été invité·e·s à rejoindre le groupe. L'historique de conversation a été partagé." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu an gayyace su shiga ƙungiyar. An raba tarihin hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ הוזמנו להצטרף לקבוצה. היסטוריית הצ'אט שותפה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को समूह में शामिल होने के लिए आमंत्रित किया गया। चैट इतिहास साझा किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi su pozvani da se pridruže grupi. Povijest razgovora je podijeljena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy meg lettek hívva a csoportba. A beszélgetési előzményeket megosztottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ հրավիրվել են միանալու խմբին: Զրույցի պատմությունը կիսվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya telah diundang untuk bergabung dengan grup. Riwayat obrolan dibagikan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} altri hanno ricevuto un invito a unirsi al gruppo. La cronologia della chat è stata condivisa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}名 がグループに招待されました。チャット履歴が共有されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {count} სხვა მიწვეული იყვნენ ჯგუფში, ჩეთის ისტორია გაზიარდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {count} គេផ្សេងទៀត ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។បានចែករំលែកប្រវត្តិការជជែក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಮಂತ್ರಿಸಲಾಯಿತು. ಚಾಟ್ ಇತಿಹಾಸವನ್ನು ಹಂಚಲಾಯಿತು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{count}명이 그룹에 초대되었습니다. 채팅 기록이 공유되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە بانگکران بۆ بەشداریکردن لە گروپەکە. مێژوو بگردەوەیی پەیامەکان سییبرەیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala mwakuyitibwa okwegatta mu kibiina. Ebika by'obubaka by'akugabana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir dar {count} buvo pakviesti prisijungti prie grupės. Pokalbio istorija buvo pasidalinta." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други беа поканети да се придружат на групата. Историјата на разговорот е споделена." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад бүлэгт уригдлаа. Чатын түүх хуваалцагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dijemput untuk menyertai kumpulan. Sejarah sembang telah dikongsi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။ စကားဝိုင်းမှတ်တမ်းကိုမျှဝေခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble invitert til gruppen. Chat-historikk ble delt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्यलाई समूहमा सामेल हुन आमन्त्रित गरियो। च्याट इतिहास सेयर गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn uitgenodigd om deel te nemen aan de groep. Gespreksgeschiedenis is gedeeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart invitert til å bli med i gruppa. Chathistorikk vart delt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena anaitanidwa kuti alowe mu gulu. Mbiri ya macheza idagawidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਗੱਲਬਾਤ ਦਾ ਇਤਿਹਾਸ ਸਾਂਝਾ ਕੀਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do grupy zaproszono użytkownika {name} i {count} innych użytkowników. Udostępniono historię czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور ډله کې ګډون کولو ته بلل شوي. د خبرو تاریخ شریک شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram convidados a participarem do grupo. O histórico de conversas será compartilhado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram convidados a juntar-se ao grupo. O histórico de conversas foi partilhado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au fost invitați să se alăture grupului. Istoricul conversațiilor a fost partajat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других были приглашены в группу. История чата была передана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su pozvani da se pridruže grupi. Istorija razgovora je deljena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී. සංවාද ඉතිහාසය බෙදා ගන්නා ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší boli pozvaní, aby sa pripojili do skupiny. História chatu bola zdieľaná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so bili povabljeni, da se pridružijo skupini. Zgodovina klepeta je bila deljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë u ftuat të bashkoheni me grupin. Historia e bisedës u ndanë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су позвани да се придруже групи. Историја ћаскања је подељена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su pozvani da se pridruže grupi. Istorija četa je podeljena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra blev inbjudna att gå med i gruppen. Chatt historik delades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wamealikwa kujiunga na kundi. Historia ya gumzo ilishirikiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் குழுவில் சேர்க்கப்பட்டனர். உரையாடல் வரலாறு பகிரப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు. చాట్ చరిత్ర పంచబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {count} อื่นๆ ถูกเชิญเข้าร่วมกลุ่ม ประวัติการแชทถูกแชร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğerleri gruba katılmak üzere davet edildi. Sohbet geçmişi paylaşıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших були запрошені приєднатися до групи. Історія чатів була поділена." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر کو گروپ میں شامل ہونے کی دعوت دی گئی۔ چیٹ تاریخ شیئر کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalar guruhga taklif qilindi. Suhbat tarixini ko'rish imkoniyati berilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} người khác đã được mời tham gia nhóm. Lịch sử trò chuyện đã được chia sẻ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu babememelwe ukuba bajoyine iqela. Imbali yencoko yenziwe yabelwana ngayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}人被邀请加入群组。聊天记录已共享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 位其他成員 已被邀請加入群組。已分享聊天記錄。" + } + } + } + }, + "groupMemberNewHistoryTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} is genooi om by die groep aan te sluit. Kletsgeskiedenis is gedeel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و{other_name} تمت دعوتهم للانضمام إلى المجموعة. تمت مشاركة سجل الدردشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} qrupa qoşulmaq üçün dəvət edildi. Söhbət tarixçəsi paylaşıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} šumār zant group ke. Chat history was shared." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} былі запрошаны далучыцца да групы. Гісторыя чатаў была абагулена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} бяха поканени да се присъединят към групата. История на чатовете беше споделена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে। চ্যাট ইতিহাস শেয়ার করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han estat convidats a unir-se al grup. Historial de xat compartit." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} byli pozváni do skupiny. Historie konverzace byla sdílena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} wedi cael goahoddiad i ymuno â'r grŵp. Hanes sgwrs wedi cael ei rhannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} blev inviteret til at deltage i gruppen. Chat historik blev delt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} wurden eingeladen, der Gruppe beizutreten. Der Chat-Verlauf wurde freigegeben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} προσκλήθηκαν να συμμετάσχουν στην ομάδα. Το ιστορικό συνομιλιών κοινοποιήθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} were invited to join the group. Chat history was shared." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} estis invititaj aniĝi al la grupo. Babilhistorio estis dividita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron invitados a unirse al grupo. El historial de chat fue compartido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron invitados a unirse al grupo. Se compartió el historial del chat." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} kutsuti grupiga liituma. Vestluse ajalugu jagati nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} taldera batzeko gonbidatu dituzte. Txat historia partekatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} دعوت شدند تا به گروه بپیوندند. تاریخچه ی چت به اشتراک گذاشته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} kutsuttiin ryhmään. Keskusteluhistoria jaettiin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay inimbitahan na sumali sa grupo. Naibahagi ang kasaysayan ng chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont été invité·e·s à rejoindre le groupe. L'historique de conversation a été partagé." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} an gayyace su shiga ƙungiyar. An raba tarihin hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ הוזמנו להצטרף לקבוצה. היסטוריית הצ'אט שותפה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} को समूह में शामिल होने के लिए आमंत्रित किया गया। चैट इतिहास साझा किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su pozvani da se pridruže grupi. Povijest razgovora je podijeljena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} meg lettek hívva a csoportba. A beszélgetési előzményeket megosztottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը հրավիրվել են միանալու խմբին: Զրույցի պատմությունը կիսվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} telah diundang untuk bergabung dengan grup. Riwayat obrolan dibagikan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} hanno ricevuto un invito a unirsi al gruppo. La cronologia della chat è stata condivisa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がグループに招待されました。チャット履歴が共有されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {other_name} მიწვეული იყვნენ ჯგუფში, ჩეთის ისტორია გაზიარდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} នឹង {other_name} ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។បានចែករំលែកប្រវត្តិការជជែក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} ಅವರನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಮಂತ್ರಿಸಲಾಯಿತು. ಚಾಟ್ ಇತಿಹಾಸವನ್ನು ಹಂಚಲಾಯಿತು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 그룹에 초대되었습니다. 채팅 기록이 공유되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} بانگکران بۆ بەشداریکردن لە گروپەکە. مێژوو بگردەوەیی پەیامەکان سییبرەیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} mwakuyitibwa okwegatta mu kibiina. Ebika by'obubaka by'akugabana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} buvo pakviesti prisijungti prie grupės. Pokalbio istorija buvo pasidalinta." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} беа поканети да се придружат на групата. Историјата на разговорот е споделена." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} бүлэгт уригдлаа. Чатын түүх хуваалцагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dijemput untuk menyertai kumpulan. Sejarah sembang telah dikongsi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။ စကားဝိုင်းမှတ်တမ်းကိုမျှဝေခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble invitert til gruppen. Chat-historikk ble delt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}लाई समूहमा सामेल हुन आमन्त्रित गरियो। च्याट इतिहास सेयर गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn uitgenodigd om deel te nemen aan de groep. Gespreksgeschiedenis is gedeeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart invitert til å bli med i gruppa. Chathistorikk vart delt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} anaitanidwa kuti alowe mu gulu. Mbiri ya macheza idagawidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {other_name} ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਚੈਟ ਇਤਿਹਾਸ ਸਾਂਝਾ ਕੀਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} oraz {other_name} zostali zaproszeni do dołączenia do grupy. Udostępniono historię czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} ډله کې ګډون کولو ته بلل شوی. د خبرو تاریخ شریک شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram convidados para se juntar-se ao grupo. O histórico de conversas será compartilhado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram convidados a juntar-se ao grupo. O histórico de conversas foi partilhado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au fost invitați să se alăture grupului. Istoricul conversațiilor a fost partajat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} были приглашены в группу. История чата была передана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su pozvani da se pridruže grupi. Istorija razgovora je deljena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී. සංවාද ඉතිහාසය බෙදා ගන්නා ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} boli pozvaní, aby sa pripojili do skupiny. História chatu bola zdieľaná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta bila povabljena, da se pridružita skupini. Zgodovina klepeta je bila deljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} u ftuat të bashkoheni me grupin. Historia e bisedës u ndanë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су позвани да се придруже групи. Историја ћаскања је подељена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su pozvani da se pridruže grupi. Istorija četa je podeljena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} blev inbjudna att gå med i gruppen. Chatt historik delades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wamealikwa kujiunga na kundi. Historia ya gumzo ilishirikiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} குழுவில் சேர்க்கப்பட்டனர். உரையாடல் வரலாறு பகிரப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు. చాట్ చరిత్ర పంచబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ถูกเชิญเข้าร่วมกลุ่ม ประวัติการแชทถูกแชร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} gruba katılmak üzere davet edildi. Sohbet geçmişi paylaşıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} були запрошені приєднатися до групи. Історія чатів була поділена." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو گروپ میں شامل ہونے کی دعوت دی گئی۔ چیٹ تاریخ شیئر کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} guruhga taklif qilindi. Suhbat tarixini ko'rish imkoniyati berilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã được mời tham gia nhóm. Lịch sử trò chuyện đã được chia sẻ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} babememelwe ukuba bajoyine iqela. Imbali yencoko yenziwe yabelwana ngayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}被邀请加入群组。聊天记录已共享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 被邀請加入群組。聊天記錄已分享。" + } + } + } + }, + "groupMemberNewMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander is genooi om by die groep aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} اخرين تمت دعوتهم للانضمام إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}digər {count} nəfər qrupa qoşulmaq üçün dəvət edildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg šumār zant group ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых былі запрошаны далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други бяха поканени да се присъединят към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্য সদস্য গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han estat convidats a unir-se al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších bylo pozváno do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} eraill wedi cael gwahoddiad i ymuno â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre blev inviteret til at deltage i gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere wurden eingeladen, der Gruppe beizutreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλοι προσκλήθηκαν να εγγραφούν στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others were invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj estis invititaj aniĝi al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron invitados a unirse al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron invitados a unirse al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist kutsuti grupiga liituma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste taldera batzeko gonbidatu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} سایرین برای عضویت در گروه دعوت شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta kutsuttiin ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay inimbitahan na sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont été invité·e·s à rejoindre le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu an gayyace su shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ הוזמנו להצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य को समूह में शामिल होने के लिए आमंत्रित किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi pozvani su da se pridruže grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy meghívást kaptak a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ հրավիրվել են միանալու խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya telah diundang untuk bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} hanno ricevuto un invito a unirsi al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}名 がグループに招待されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {count} სხვა მოიწვიეს ჯგუფში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {count} គេផ្សេងទៀត ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {count} ಇತರರನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{count}명이 그룹에 초대되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە بانگکران بۆ بەشداریکردن لە گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala mwakuyitibwa okwegatta mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti buvote pakviesti prisijungti prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други беа поканети да се придружат на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад бүлэгт уригдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dijemput untuk menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble invitert til gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्यलाई समूहमा सामेल हुन आमन्त्रित गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn uitgenodigd om lid te worden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart invitert til å bli med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena anaitanidwa kuti alowe mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {count} ਹੋਰਾਂ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników zostali zaproszeni do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور ډله کې ګډون کولو ته بلل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram convidados a juntar-se ao grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram convidados a juntar-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au fost invitați să se alăture grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других человек были приглашены в группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su pozvani da se pridruže grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší boli pozvaní, aby sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so bili povabljeni, da se pridružijo skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë u ftuat të bashkoheni me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су позвани да се придруже групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su pozvani da se pridruže grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra bjöds in till gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wamealikwa kujiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {count} อื่นๆ ถูกเชิญเข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer gruba katılmaları için davet edildi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших були запрошені приєднатися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر گروپ میں مدعو کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalar guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} người khác đã được mời tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu babememelwe ukuba bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}名其他成员被邀请加入群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} 位其他成員 已被邀請加入群組。" + } + } + } + }, + "groupMemberNewTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} is genooi om by die groep aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} تم دعوتهم للانضمام إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} qrupa qoşulmaq üçün dəvət edildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} šumār zant group ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} былі запрошаны далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} бяха поканени да се присъединят към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han estat convidats a unir-se al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} byli pozváni do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} wedi cael eu gwahodd i ymuno â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} blev inviteret til at deltage i gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} wurden eingeladen, der Gruppe beizutreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} προσκλήθηκαν να συμμετάσχουν στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} were invited to join the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} estis invititaj aniĝi al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron invitados a unirse al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron invitados a unirse al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} kutsuti grupiga liituma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} taldera batzeko gonbidatu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} برای عضویت در گروه دعوت شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} kutsuttiin ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay inimbitahan na sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont été invités à rejoindre le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} an gayyace su shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ הוזמנו להצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} को समूह में शामिल होने के लिए आमंत्रित किया गया था।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} pozvani su da se pridruže grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} meghívást kaptak a csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը հրավիրվել են միանալու խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} telah diundang untuk bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} hanno ricevuto un invito a unirsi al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がグループに招待されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} და {other_name} მოიწვიეს ჯგუფში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} និង {other_name} ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಮತ್ತು {other_name} ಅವರನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 그룹 초대를 받았습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} بانگکران بۆ بەشداریکردن لە گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} mwakuyitibwa okwegatta mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} buvote pakviesti prisijungti prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} беа поканети да се придружат на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} бүлэгт элсэхээр уригдсан байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dijemput untuk menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble invitert til gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}लाई समूहमा सामेल हुन आमन्त्रित गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn uitgenodigd om lid te worden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart invitert til å bli med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} anaitanidwa kuti alowe mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਅਤੇ {other_name} ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} oraz {other_name} zostali zaproszeni do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} ډله کې ګډون کولو ته بلل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram convidados a juntar-se ao grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram convidados a juntar-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au fost invitați să se alăture grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} были приглашены в группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su pozvani da se pridruže grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} boli pozvaní, aby sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta bila povabljena, da se pridružita skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} u ftuat të bashkoheni me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су позвани да се придруже групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su pozvani da se pridruže grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} bjöds in att gå med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wamealikwa kujiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ถูกเชิญเข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} gruba katılmak üzere davet edildi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} були запрошені приєднатися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو گروپ میں شامل ہونے کی دعوت دی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã được mời tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} babememelwe ukuba bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}被邀请加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 已被邀請加入群組。" + } + } + } + }, + "groupMemberNewYouHistoryMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander is genooi om by die groep aan te sluit. Kletsgeskiedenis is gedeel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{count} آخرين انضموا للمجموعة. تمت مشاركة سجل الدردشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizdigər {count} nəfər qrupa qoşulmaq üçün dəvət edildiniz. Söhbət tarixçəsi paylaşıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {count} drīg šumār zant group ke. Chat history was shared." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і яшчэ {count} іншых былі запрошаны далучыцца да групы. Гісторыя чатаў была абагулена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бяхте поканени да се присъедините към групата. История на чатовете беше споделена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} জন অন্য সদস্য গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে। চ্যাট ইতিহাস শেয়ার করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {count} altres heu estat convidats a unir-vos al grup. S'ha compartit l'historial de la conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších bylo pozváno do skupiny. Historie konverzace byla sdílena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill ymunodd â'r grŵp. Hanes sgwrs wedi cael ei rhannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre blev inviteret til at deltage i gruppen. Chat historik blev delt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere wurden eingeladen, der Gruppe beizutreten. Der Chatverlauf wurde freigegeben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {count} άλλοι προσκληθήκατε να συμμετάσχετε στην ομάδα. Το ιστορικό συνομιλίας κοινοποιήθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others were invited to join the group. Chat history was shared." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj estis invititaj aniĝi al la grupo. Babilhistorio estis dividita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más fueron invitados a unirse al grupo. El historial de chat fue compartido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más habéis sido invitados a uniros al grupo. El historial de mensajes ha sido compartido." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {count} teist kutsuti grupiga liituma. Vestluse ajalugu jagati nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {count} beste taldera batzeko gonbidatu zaituzte. Txat historia partekatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و{count} سایرین دعوت شدید تا به گروه بپیوندید. تاریخچه ی چت به اشتراک گذاشته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta kutsuttiin ryhmään. Keskusteluhistoria jaetaan." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa ay inimbitahan na sumali sa grupo. Naibahagi ang kasaysayan ng chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres avez été invité·e·s à rejoindre le groupe. L'historique de discussion a été partagé." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {count} wasu an gayyace ku shiga ƙungiyar. An raba tarihin hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{count} אחרים‏ הוזמנתם להצטרף לקבוצה. היסטוריית הצ'אט שותפה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {count} अन्य को समूह में शामिल होने के लिए आमंत्रित किया गया। चैट इतिहास साझा किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugi pozvani ste da se pridružite grupi. Povijest razgovora je podijeljena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy meg lettetek hívva a csoportba. A beszélgetési előzményeket megosztottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} ուրիշներ հրավիրվել են միանալու խմբին: Զրույցի պատմությունը կիսվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya telah diundang untuk bergabung dengan grup. Riwayat obrolan dibagikan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e altri {count} avete ricevuto un invito a unirvi al gruppo. La cronologia della chat è condivisa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{count}名 がグループに招待されました。チャット履歴が共有されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვა მიწვეული იყავით ჯგუფში. ჩეთის ისტორია გაზიარდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} គេផ្សេងទៀត ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។បានចែករំលែកប្រវត្តិការជជែក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರನ್ನು ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ. ಚಾಟ್ ಇತಿಹಾಸವನ್ನು ಹಂಚಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{count} 명의 사람들이 그룹으로 초대받았습니다. 대화 내역이 공개됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} کەس دیکە بانگکران بۆ بەشداریکردن لە گروپەکە. مێژوو بگردەوەیی پەیامەکان سییبرەیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {count} abalala mwakuyitibwa okwegatta mu kibiina. Ebika by'obubaka by'akugabana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir dar {count} buvo pakviesti prisijungti prie grupės. Pokalbio istorija buvo pasidalinta." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други беа поканети да се придружат на групата. Историјата на разговорот е споделена." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {count} бусад бүлэгт нэгдэх урилга авсан байна. Чатын түүх хуваалцагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} yang lain dijemput untuk menyertai kumpulan. Sejarah sembang telah dikongsi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {count} ဦး အဖွဲ့သို့ ဖိတ်ကြားခံရသည်။ စကားဝိုင်းမှတ်တမ်းကိုမျှဝေခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre ble invitert til gruppen. Chat-historikk ble delt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{count} अन्यलाई समूहमा सामेल हुन आमन्त्रित गरियो। च्याट इतिहास सेयर गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {count} anderen zijn uitgenodigd om lid te worden van de groep. Geschiedenis van het gesprek is gedeeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre vart invitert til å bli med i gruppa. Chathistorikk vart delt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena anaitanidwa kuti alowe mu gulu. Mbiri ya macheza idagawidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰ ਨੂੰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਗਿਆ ਹੈ। ਗੱਲਬਾਤ ਦਾ ਇਤਿਹਾਸ ਸਾਂਝਾ ਕੀਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników zostaliście zaproszeni do grupy. Udostępniono historię czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور ډله کې ګډون کولو ته بلل شوی. د خبرو تاریخ شریک شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram convidados a participar do grupo. O histórico de conversas foi compartilhado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram convidados a juntar-se ao grupo. O histórico da conversa foi partilhado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} ați fost invitați să vă alăturați grupului. Istoricul conversațiilor a fost partajat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других пользователей приглашены вступить в группу. История чата была передана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih ste pozvani da se pridružite grupi. Istorija razgovora je deljena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} වෙනත් අය කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී. සංවාද ඉතිහාසය බෙදා ගන්නා ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší ste boli pozvaní, aby ste sa pripojili do skupiny. História chatu bola zdieľaná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugi ste bili povabljeni, da se pridružite skupini. Zgodovina klepeta je bila deljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë u ftuat të bashkoheni me grupin. Historia e bisedës u ndanë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} осталих су позвани да се придруже групи. Историја ћаскања је подељена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste pozvani da se pridružite grupi. Istorija četa je podeljena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra bjöds in att gå med i gruppen. Chatt historik delades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mmealikwa kujiunga na kundi. Historia ya gumzo ilishirikiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} பிறர் குழுவில் சேர்க்கப்பட்டீர்கள். உரையாடல் வரலாறு பகிரப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు. చాట్ చరిత్ర పంచబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {count} อื่นๆ ถูกเชิญเข้าร่วมกลุ่ม ประวัติการแชทถูกแชร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {count} diğerleri gruba katılmaya davet edildiniz. Sohbet geçmişi paylaşıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {count} інших були запрошені приєднатися до групи. Було надано спільний доступ до історії чату." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر گروپ میں شامل ہونے کی دعوت دی گئی۔ چیٹ تاریخ شیئر کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqalar guruhga qo'shildilar. Suhbat tarixini ko'rish imkoniyati berilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{count} người khác đã được mời tham gia nhóm. Lịch sử trò chuyện đã được chia sẻ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {count} abanye abantu babememelwe ukuba bajoyine iqela. Imbali yencoko yenziwe yabelwana ngayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "和其他{count}人被邀请加入群组。聊天记录已共享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{count} 位其他成員 加入了群組。聊天記錄已分享。" + } + } + } + }, + "groupMemberNewYouHistoryTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {name} is genooi om by die groep aan te sluit. Kletsgeskiedenis is gedeel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{name} انضموا للمجموعة. تمت مشاركة سجل الدردشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz{name} qrupa qoşulmaq üçün dəvət edildiniz. Söhbət tarixçəsi paylaşıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {name} šumār zant group ke. Chat history was shared." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {name} былі запрошаны далучыцца да групы. Гісторыя чатаў была абагулена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {name} бяхте поканени да се присъедините към групата. История на чатовете беше споделена." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {name} গ্রুপে যোগ দেওয়ার জন্য আমন্ত্রিত হয়েছে। চ্যাট ইতিহাস শেয়ার করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {name} heu estat convidats a unir-vos al grup. S'ha compartit l'historial de la conversa." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} byli pozváni do skupiny. Historie konverzace byla sdílena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {name} ymunodd â'r grŵp. Hanes sgwrs wedi cael ei rhannu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} blev inviteret til at deltage i gruppen. Chat historik blev delt." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {name} wurden eingeladen, der Gruppe beizutreten. Der Chatverlauf wurde freigegeben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {name} προσκληθήκατε να συμμετάσχετε στην ομάδα. Το ιστορικό συνομιλίας κοινοποιήθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {name} were invited to join the group. Chat history was shared." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {name} estis invititaj aniĝi al la grupo. Babilhistorio estis dividita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {name} fueron invitados a unirse al grupo. El historial de chat fue compartido." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {name} fueron invitados a unirse al grupo. El historial de chat fue compartido." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {name} kutsuti grupiga liituma. Vestluse ajalugu jagati nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {name} taldera batzeko gonbidatu zaituzte. Txat historia partekatu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {name} دعوت شدید تا به گروه بپیوندید. تاریخچه ی چت به اشتراک گذاشته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {name} kutsuttiin ryhmään. Keskusteluhistoria jaetaan." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {name} ay inimbitahan na sumali sa grupo. Naibahagi ang kasaysayan ng chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {name} avez été invité·e·s à rejoindre le groupe. L'historique de discussion a été partagé." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {name} an gayyace ku shiga ƙungiyar. An raba tarihin hira." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{name}‏ הוזמנתם להצטרף לקבוצה. היסטוריית הצ'אט שותפה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {name} को समूह में शामिल होने के लिए आमंत्रित किया गया। चैट इतिहास साझा किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} pozvani ste da se pridružite grupi. Povijest razgovora je podijeljena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {name} meg lettetek hívva a csoportba. A beszélgetési előzményeket megosztottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {name}֊ը հրավիրվել են միանալու խմբին: Զրույցի պատմությունը կիսվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} telah diundang untuk bergabung dengan grup. Riwayat obrolan dibagikan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {name} avete ricevuto un invito a unirvi al gruppo. La cronologia della chat è condivisa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{name} がグループに招待されました。チャット履歴が共有されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {name} მიწვეული იყავით ჯგუფში. ჩეთის ისტორია გაზიარდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {name} ត្រូវបានអញ្ជើញឱ្យចូលក្រុមនេះ។បានចែករំលែកប្រវត្តិការជជែក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {name} ಅವರಿಗೆ ಗುಂಪಿಗೆ ಸೇರಲು ಆಹ್ವಾನಿಸಲಾಗಿದೆ. ಚಾಟ್ ಇತಿಹಾಸವನ್ನು ಹಂಚಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{name}이 그룹에 초대받았습니다. 대화 내역이 공개됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {name} بانگکران بۆ بەشداریکردن لە گروپەکە. مێژوو بگردەوەیی پەیامەکان سییبرەیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {name} mwakuyitibwa okwegatta mu kibiina. Ebika by'obubaka by'akugabana." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {name} buvo pakviesti prisijungti prie grupės. Pokalbio istorija buvo pasidalinta." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {name} беа поканети да се придружат на групата. Историјата на разговорот е споделена." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {name} бүлэгт нэгдэх урилга авсан байна. Чатын түүх хуваалцагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} dijemput untuk menyertai kumpulan. Sejarah sembang telah dikongsi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်နှင့် {name} အဖွဲ့သို့ ဖိတ်ကြားခံရပြီ။ စကားဝိုင်းမှတ်တမ်းကိုမျှဝေခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} ble invitert til gruppen. Chat-historikk ble delt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{name}लाई समूहमा सामेल हुन आमन्त्रित गरियो। च्याट इतिहास सेयर गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {name} zijn uitgenodigd om lid te worden van de groep. Geschiedenis van het gesprek is gedeeld." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} vart invitert til å bli med i gruppa. Chathistorikk vart delt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {name} anaitanidwa kuti alowe mu gulu. Mbiri ya macheza idagawidwa." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty oraz użytkownik {name} zostaliście zaproszeni do grupy. Udostępniono historię czatu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {name} ډله کې ګډون کولو ته بلل شوی. د خبرو تاریخ شریک شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} foram convidados a participar do grupo. O histórico de conversas foi compartilhado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} foram convidados a juntar-se ao grupo. O histórico da conversa foi partilhado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {name} ați fost invitați să vă alăturați grupului. Istoricul conversațiilor a fost partajat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и пользователь {name} приглашены вступить в группу. История чата была передана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {name} ste pozvani da se pridružite grupi. Istorija razgovora je deljena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {name} කණ්ඩායමට සම්බන්ධ වන්නට ආරාධනා කරන ලදී. සංවාද ඉතිහාසය බෙදා ගන්නා ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} ste boli pozvaní, aby ste sa pripojili do skupiny. História chatu bola zdieľaná." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {name} sta bila povabljena, da se pridružita skupini. Zgodovina klepeta je bila deljena." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {name} u ftuat të bashkoheni me grupin. Historia e bisedës u ndanë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {name} су позвани да се придруже групи. Историја ћаскања је подељена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} ste pozvani da se pridružite grupi. Istorija četa je podeljena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {name} bjöds in att gå med i gruppen. Chatt historik delades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {name} mmealikwa kujiunga na kundi. Historia ya gumzo ilishirikiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {name} குழுவில் சேர்க்கப்பட்டீர்கள். உரையாடல் வரலாறு பகிரப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {name} సమూహంలో చేరడానికి ఆహ్వానించబడ్డారు. చాట్ చరిత్ర పంచబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {name} ถูกเชิญเข้าร่วมกลุ่ม ประวัติการแชทถูกแชร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {name} gruba katılmaya davet edildiniz. Sohbet geçmişi paylaşıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {name} були запрошені приєднатися до групи. Було надано спільний доступ до історії чату." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {name} گروپ میں شامل ہونے کی دعوت دی گئی۔ چیٹ تاریخ شیئر کی گئی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {name} guruhga qo'shildi. Suhbat tarixini ko'rish imkoniyati berilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{name} đã được mời tham gia nhóm. Lịch sử trò chuyện đã được chia sẻ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {name} babememelwe ukuba bajoyine iqela. Imbali yencoko yenziwe yabelwana ngayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}被邀请加入了群组。 聊天记录已共享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 加入了群組。聊天記錄已分享。" + } + } + } + }, + "groupMembers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep Lede" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أعضاء المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup üzvləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپءِ اراکنان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удзельнікі групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Членове на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ সদস্যবৃন্দ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membres del Grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Členové skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aelodau'r grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppemedlemmer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenmitglieder" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μέλη Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group Members" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupanoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miembros del grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miembros del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi liikmed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeko Kideak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعضای گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän jäsenet" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Miyembro ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membres du groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membros do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mambobin rukunin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חברי קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह के सदस्य" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Članovi grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoporttagok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի անդամներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anggota grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membri del gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループメンバー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის წევრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមាជិកក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನೊಂದಿಗೆ ಸಂಪರ್ಕ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 멤버" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەندامانی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės dalyviai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas dalībnieki" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Членови на групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн гишүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahli Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုဝင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppemedlemmer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह सदस्यहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsleden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppemedlemmar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mamembala am gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਮੈਂਬਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Członkowie grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې غړي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Participantes do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membros do Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membrii grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Участники группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Članovi grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ සාමාජිකයින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Členovia skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Člani skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anëtarë grupi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чланови групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Članovi grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppmedlemmar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wajumbe wa kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு உறுப்பினர்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ సభ్యులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สมาชิกกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Üyeleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учасники групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کے اراکین" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh aʼzolari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thành viên nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amalungu eQela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群成员" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組成員" + } + } + } + }, + "groupMembersNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar is geen ander lede in hierdie groep nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يوجد اعضاء اخرين في هذه المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu qrupda başqa üzv yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گروپ میں دوسرے کوئی رکن نہیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У гэтай групе больш няма ўдзельнікаў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма други членове в тази група." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই গ্রুপে অন্য কোনো সদস্য নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha altres membres en aquest grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "V této skupině nejsou žádní další členové." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes aelodau eraill yn y grŵp hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der er ingen andre medlemmer i denne gruppe." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es gibt keine anderen Mitglieder in dieser Gruppe." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν υπάρχουν άλλα μέλη σε αυτήν την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There are no other members in this group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne estas aliaj membroj en ĉi tiu grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay otros miembros en este grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay otros miembros en este grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selles grupis pole teisi liikmeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago beste kiderik talde honetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ عضو دیگری در این گروه نیست." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmässä ei ole muita jäseniä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang ibang miyembro sa grupong ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il n'y a pas d'autres membres dans ce groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai outros membros neste grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu sauran mambobi a cikin wannan rukunin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין חברים אחרים בקבוצה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस समूह में कोई अन्य सदस्य नहीं है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema drugih članova u ovoj grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek más tagok ebben a csoportban." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս խմբում այլ անդամներ չկան." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada anggota lain di dalam grup ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non ci sono altri membri in questo gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このグループには他のメンバーがいません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ამ ჯგუფში სხვა წევრები არ არიან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មានសមាជិកផ្សេងទៀតនៅក្នុងក្រុមនេះទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಗುಂಪಿನಲ್ಲಿ ಇತರ ಸದಸ್ಯರಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 그룹에 다른 멤버가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ ئەندامی تر لەم گروپەدا نیە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali mirala mu kibiina kino." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šioje grupėje nėra kitų narių." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā grupā nav citu dalībnieku." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема други членови во оваа група." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ бүлэгт өөр гишүүн байхгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada ahli lain di dalam kumpulan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤအုပ်စုတွင် အခြား အဖွဲ့ဝင်မရှိပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen andre medlemmer i denne gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस समूहमा अरु कुनै सदस्यहरू छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er zijn geen andere leden in deze groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er ingen andre medlemmer i denne gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe mamembala ena mu gulu ili." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਸਮੂਹ ਵਿੱਚ ਕੋਈ ਹੋਰ ਮੈਂਬਰ ਨਹੀਂ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "W grupie nie ma innych członków." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په دی ګروپ کې نور غړي نشته." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há outros membros neste grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há outros membros neste grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu există alți membri în acest grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В этой группе нет других участников." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema drugih članova u ovoj grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සමූහයේ වෙනත් සාමාජිකයින් නැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tejto skupine nie sú žiadni ďalší členovia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V tej skupini ni drugih članov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk ka anëtarë të tjerë në këtë grup." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема других чланова у овој групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema drugih članova u ovoj grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finns inga andra medlemmar i denna grupp." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna wanachama wengine katika kikundi hiki." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த குழுவில் வேறு உறுப்பினர்கள் இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ గ్రూపులో ఇతరులు సభ్యులు లేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีสมาชิกคนอื่นในกลุ่มนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu grupta başka üye yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відсутні учасники у цій групі." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گروپ میں کوئی دیگر رکن نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu guruhda boshqa a'zolar yo'q." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có thành viên nào khác trong nhóm này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho namanye amalungu kweli qela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此群组没有其他成员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個群組沒有其他成員。" + } + } + } + }, + "groupMemberYouLeft" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "You het die groep verlaat" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت غادرت المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz qrupu tərk etdiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār jāmš." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы пакінулі групу." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие напуснахте групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি গ্রুপ থেকে বের হয়ে গিয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu has abandonat el grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustil/a jste skupinu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rydych chi wedi gadael y grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du forlod gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast die Gruppe verlassen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς αποχωρήσατε από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You left the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi forlasis la grupon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " abandonaste el grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " has abandonado el grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina lahkusid grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk taldea utzi duzu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما گروه را ترک کردید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä poistuit ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay umalis sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez quitté le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti abandonaches o grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku sun bar ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה עזבת את הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप ने समूह छोड़ दिया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napustili ste grupu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te kiléptél a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք լքեցիք խումբը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda keluar dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai lasciato il gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Youがグループを退会しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ დატოვეთ ჯგუფი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានចាកចេញពីក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗುಂಪನ್ನು ತೊರೆದು ಹೋದಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 그룹을 나갔습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ گروپەکەت بەجێهێشتووە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wafuma mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານອອກຈາກກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs išėjote iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu atstāji grupu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие ја напуштивте групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүлгээс гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda meninggalkan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် အဖွဲ့မှ ထွက်သွားပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du forlot gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले समूह छोड्नुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft de groep verlaten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du forlot gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu achoka gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂਗਰੁੱਪ ਛੱਡ ਚੁੱਕੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opuszczasz grupę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو ګروپ پریښود." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você saiu do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você saiu do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu ai părăsit grupul." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы покинули группу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si napustio grupu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ කණ්ඩායම හැර ගියේය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste opustili skupinu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste zapustili skupino." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju braktisët grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте напустили групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste napustili grupu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du lämnade gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umetoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் குழுவிலிருந்து வெளியேறிவிட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు సమూహాన్ని వదిలారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ได้ออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen gruptan ayrıldın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви покинули групу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے گروپ چھوڑ دیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz guruhni tark etdik." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã rời nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna bashiye iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "離開了此群組。" + } + } + } + }, + "groupName" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep Naam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسم المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupun adı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپءِ ناو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назва групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Име на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ নাম" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Název skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enw'r grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenname" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όνομα Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group Name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupnomo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre del grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi nimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen Izena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän nimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangalan ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom du groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunan Rikuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שם הקבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह का नाम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport neve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome del gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ名" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈ្មោះក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ಹೆಸರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 이름" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinya lya Kibinja" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės pavadinimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas vārds" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Име на група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэр" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုအမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह नाम" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsnaam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzina la Gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਦਾ ਨਾਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazwa grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې نوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Numele grupului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Название группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naziv grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහයේ නම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Názov skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emër grupi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назив групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naziv grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jina la kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு பெயர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం పేరు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Adı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назва групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کا نام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh nomi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tên nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igama leQela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組名稱" + } + } + } + }, + "groupNameEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer 'n groepnaam in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل اسم المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup adını daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروہ کے نائم درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце назву групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете название группы" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপের নাম লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix nom de grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte název skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch enw'r grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast et gruppenavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenname eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε ένα όνομα ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter a group name" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu grupnomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingresa un nombre de grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingresa un nombre de grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestage grupi nimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu talde izena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام گروه را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä ryhmän nimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglagay ng pangalan ng grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saisissez un nom de groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce o nome do grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan ƙungiya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן שם קבוצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ग्रुप का नाम डालें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite naziv grupe" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy csoportnevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք խմբի անուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci un nome per il gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ名を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ ჯგუფის სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូលឈ្មោះក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ಹೆಸರು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 이름을 입력하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی گروپەکە بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza erinnya ly’ekibinja" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນຊື່ກຸ່ມ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite grupės pavadinimą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadīt grupas nosaukumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете име на групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэр оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့အမည်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn et gruppenavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूहको नाम प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vul een groepsnaam in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn eit gruppenamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani dzina la gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਗਰੁੱਪ ਦਾ ਨਾਮ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź nazwę grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګروپ نوم ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite o nome do grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduzir um nome para o grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți un nume de grup" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите название группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi naziv grupe" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ නාමයක් ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte názov skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite ime skupine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendosni një emër grupi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите назив групе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite naziv grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ett gruppnamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka jina la kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு பெயரை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం పేరును ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนชื่อกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir grup adı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть назву групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کا نام درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh nomini kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập tên nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa igama leqela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入群组名称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入群組名稱" + } + } + } + }, + "groupNameEnterPlease" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer asseblief 'n groepnaam in." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إدخال اسم للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən bir qrup adı daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی ایک گروپ نام ڈالیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце назву групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете име на групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি গ্রুপের নাম লিখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trieu un nom de grup, per favor." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zadej název skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch enw grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast venligst et gruppenavn." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib einen Gruppennamen ein." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισαγάγετε ένα όνομα ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter a group name." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu entajpi grupnomon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingresa un nombre de grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingresa un nombre para el grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun sisestage grupi nimi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu talde izena." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا یک نام گروه وارد کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä ryhmän nimi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ang pangalan ng grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez saisir un nom de groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce un nome de grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan ƙungiya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא הזן את שם הקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया ग्रुप नाम डालें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite naziv grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy csoportnevet." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք մուտքագրել խմբի անունը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci un nome per il gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ名を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეიყვანოთ ჯგუფის სახელი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមបញ្ចូលឈ្មោះក្រុម." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಗುಂಪಿನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 이름을 입력해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ ناوەکی فرمێ بکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba linnya lya Kikundi kyo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite grupės pavadinimą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, ievadiet grupas nosaukumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете име на група." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэрээ оруулна уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan nama kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့နာမည်ထည့်ပေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn et gruppenavn." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया समूहको नाम प्रविष्ट गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vul een groepsnaam in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn et gruppenavn." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani dzina la gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਗਰੁੱਪ ਨਾਂ ਡਾਲੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź nazwę grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ د یوې ډلې نوم دننه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite um nome de grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, insira o nome do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm introduceți un nume de grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, введите название группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite ime grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර කණ්ඩායම් නමක් ඇතුළත් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prosím názov skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite ime skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutem vendosni një emër grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Молимо Вас да унесете назив групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite naziv grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen ange ett gruppnamn." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka jina la kikundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு குழுத் பெயரை உள்ளிடவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి సమూహం పేరు ఎంటర్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขอระบุชื่อกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen bir grup adı girin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, введіть назву групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم ایک گروپ نام درج کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, guruh nomini kiriting." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng nhập tên nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa igama leqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入群组名称。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入群組名稱" + } + } + } + }, + "groupNameEnterShorter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer asseblief 'n korter groepnaam in." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إدخال اسم مجموعة أقصر." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən daha qısa bir qrup adı daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی ایک مختصر گروپ نام ڈالیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце карацейшую назву групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете по-кратко име на групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি ছোট নাম লিখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix un nom de grup mes curt." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zadejte kratší název skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch enw grŵp byrrach." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter a shorter group name." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib einen kürzeren Gruppennamen ein." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισαγάγετε ένα μικρότερο όνομα ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter a shorter group name." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu entajpi plej mallongan grupnomon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingrese un nombre de grupo más corto." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingresa un nombre de grupo más corto." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun sisestage grupile lühem nimi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu talde izen laburrago bat." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا نام گروه کوتاه‌تری وارد کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä lyhyempi ryhmän nimi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ng mas maikling pangalan ng grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez saisir un nom de groupe plus court." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduce un nome de grupo máis curto, por favor." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan ƙungiya wanda ya fi guntu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא הזן שם קצר יותר לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया एक छोटा ग्रुप नाम डालें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite kraći naziv grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adj meg egy rövidebb csoportnevet." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք մուտքագրել ավելի կարճ խմբի անուն:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama grup yang lebih pendek." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci un nome per il gruppo più breve" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "短いグループ名を入力してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეიყვანოთ მოკლე ჯგუფის სახელი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមបញ្ចូលឈ្មោះក្រុមខ្លីជាងនេះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಒಂದು ಕಿರು ಗುಂಪಿನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "짧은 그룹 이름을 입력해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامی دەبێ ناوبەخشین پەیامیەکان بپەیامەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba linnya lya kikundi eritali lya wakati." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite trumpesnį grupės pavadinimą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, ievadiet īsāku grupas nosaukumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете пократко име на група." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэрээ богиносгоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan nama kumpulan lebih pendek." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျေးဇူးပြု၍ ပိုတိုသော အဖွဲ့အမည် ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn et kortere gruppenavn." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया छोटो समूह नाम प्रविष्ट गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vul alstublieft een kortere groepsnaam in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn et kortere gruppenavn." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani dzina lachigulu lomwe lili lalifupi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਇੱਕ ਛੋਟਾ ਗਰੁੱਪ ਨਾਂ ਡਾਲੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź krótszą nazwę grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ لنډ شوی ښودل شوي نوم دننه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor entre um nome de grupo mais curto." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite um nome de grupo mais curto." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm introduceți un nume de grup mai scurt." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, введите более короткое название группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite kraće ime grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර කෙටි කණ්ඩායම් නමක් ඇතුළත් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prosím kratší názov skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite krajše ime skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi shkruani një emër grupi më të shkurtër." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Молимо Вас да унесете краћи назив групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite kraći naziv grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen ange ett kortare gruppnamn." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka jina fupi kidogo la kikundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குறுகிய குழுத் பெயரை உள்ளிடவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి చిన్న సమూహం పేరు ఎంటర్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขอระบุชื่อกลุ่มสั้นกว่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen daha kısa bir grup ismi giriniz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, введіть коротшу назву групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم ایک چھوٹا گروپ نام درج کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, qisqaroq guruh nomini kiriting." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng nhập một tên nhóm ngắn hơn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa igama leqela elifutshane." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入较短的群组名称。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入一個較短的群組名稱。" + } + } + } + }, + "groupNameNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupe naam is nou {group_name}." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أسم المجموعة الآن '{group_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupun adı indi belədir: {group_name}." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپءِ ناو ءَ '{group_name}' بوت است." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цяпер група называецца \"{group_name}\"." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Името на групата вече е {group_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপের নাম এখন {group_name}." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "El nom del grup ara és «{group_name}»." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Název skupiny je nyní {group_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enw'r grŵp nawr yw {group_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navnet på gruppen er nu {group_name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenname lautet jetzt {group_name}." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το όνομα της ομάδας είναι πλέον «{group_name}»." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group name is now {group_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "La grupnomo estas de nun „{group_name}“." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "El nombre del grupo ahora es: '{group_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahora el nombre del grupo es {group_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi nimi on nüüd {group_name}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen izena orain {group_name} da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام گروه در حال حاضر {group_name} است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän nimi on nyt {group_name}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang pangalan ng grupo ay ngayon ay {group_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le nom du groupe est maintenant {group_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agora o nome do grupo é {group_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunan rukuni yanzu {group_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שם הקבוצה עכשיו הוא {group_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह का नाम अब {group_name} है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe je sada {group_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A csoport neve mostantól {group_name}." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի անունը այժմ {group_name} է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama grup sekarang '{group_name}'." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il nome del gruppo è ora {group_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ名が「{group_name}」になりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის სახელი ახლა არის {group_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈ្មោះក្រុមឥឡូវគឺ {group_name}." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ಹೆಸರು ಈಗ {group_name}." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 이름이 '{group_name}'로 변경되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی گروپ ئێستا {group_name} ئەستێ." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinya lya kibinja kaakafuna {group_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dabar, grupės pavadinimas yra \"{group_name}\"." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas vārds tagad ir {group_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Името на групата сега е {group_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэрийг одоо {group_name} гэж өглөө." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama kumpulan kini {group_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုအမည်ဟာ {group_name} ဖြစ်ပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppens navn er nå {group_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह नाम अब {group_name} छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "De groepsnaam is nu {group_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenamnet er no «{group_name}»." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsopano dzina la gulu ndi {group_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਦਾ ਨਾਮ ਹੁਣ {group_name} ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazwa grupy to od teraz {group_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډلې نوم اوس {group_name} دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O nome do grupo agora é {group_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "O nome do grupo é agora '{group_name}'." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Numele grupului este acum {group_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Название группы поменялось на «{group_name}»." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe sada je {group_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැන් සමූහයේ නම {group_name} යි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Názov skupiny je teraz {group_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novo ime skupine je {group_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emri i grupit tani është {group_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назив групе је сада „{group_name}“." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe je sada {group_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppnamnet är nu {group_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jina la kundi sasa ni {group_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு பெயர் இப்போது {group_name}." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇప్పుడు సమూహం పేరు {group_name} ఉంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อกลุ่มตอนนี้คือ {group_name}." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup adı artık {group_name}." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назва групи тепер \"{group_name}\"." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کا نام اب {group_name} ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh nomi endi {group_name}." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tên nhóm hiện giờ là {group_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igama leqela ngoku ngu {group_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组现已更名为{group_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組名稱現在為 {group_name}。" + } + } + } + }, + "groupNameUpdated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep naam opgedateer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تحديث اسم المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrupun adı güncəlləndi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپءِ ناو آپڈیٹ بوت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назва групы абноўлена." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Името на групата е обновено." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপের নাম আপডেট হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom del grup actualitzat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Název skupiny aktualizován." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enw'r grŵp wedi'i ddiweddaru." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenavn opdateret." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenname aktualisiert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το όνομα της ομάδας ενημερώθηκε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group name updated." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa nomo ĝisdatigite." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre del grupo actualizado." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre del grupo actualizadó." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi nimi uuendatud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen izena eguneratua." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام گروه به‌روزرسانی شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmän nimi on vaihdettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-update ang pangalan ng grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le nom du groupe a été mis à jour." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do grupo actualizado." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunan rukuni ya sabuntu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שם הקבוצה עודכן" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह का नाम अपडेट किया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe je ažurirano." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport neve frissítve lett." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբի անունը թարմացվել է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama grup diperbarui." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome del gruppo aggiornato." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループ名を更新しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფის სახელი განახლდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈ្មោះក្រុមត្រូវបានធ្វើបច្ចុប្បន្នភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ಹೆಸರು ನವೀಕರಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 이름이 업데이트되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی گروپ نوێ کرایەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinya lya kibinja lunatukyusibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupės pavadinimas atnaujintas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupas vārds atjaunināts." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Името на групата е ажурирано." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн нэр шинэчлэгдсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama kumpulan diperbarui." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့အမည်အားအပ်ဒိတ်လုပ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenavnet oppdatert." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह नाम अद्यावधिक गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsnaam bijgewerkt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppenamn oppdatert." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzina la gulu latsitsidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਦਾ ਨਾਮ ਅੱਪਡੇਟ ਹੋਇਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaktualizowano nazwę grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډلې نوم تازه شو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do grupo atualizado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do grupo atualizado." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Numele grupului a fost actualizat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Название группы обновлено." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime grupe je ažurirano." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහයේ නම යාවත්කාලීන කළා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Názov skupiny bol aktualizovaný." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime skupine je bilo posodobljeno." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emri i grupit u përditësua." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назив групе ажуриран." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naziv grupe je ažuriran." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppnamn uppdaterat." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jina la kikundi limesasishwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு பெயர் புதுப்பிக்கப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం పేరు నవీకరించబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อัปเดตชื่อกลุ่มแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup adı güncellendi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назву групи оновлено." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کا نام اپ ڈیٹ ہوگیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh nomi yangilandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã cập nhật tên nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igama leqela lihlaziyiwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组名称已更新。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組名稱已更新。" + } + } + } + }, + "groupNoMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het geen boodskappe van {group_name} nie. Stuur 'n boodskap om die gesprek te begin!" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ليس لديك رسائل من {group_name}. أرسل رسالة لبدء المحادثة!" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} daxilində heç bir mesajınız yoxdur. Danışığa başlamaq üçün bir mesaj göndərin!" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {group_name} میں نہ پیغام وجود ندارد. ایک پیغام ارسال کنے گا بحث شروعی!" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас няма паведамленняў ад {group_name}. Адпраўце паведамленне, каб пачаць размову!" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нямате съобщения от {group_name}. Изпратете съобщение, за да започнете разговор!" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার {group_name} থেকে কোনো মেসেজ নেই। কথোপকথন শুরু করতে একটি মেসেজ পাঠান!" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No teniu missatges de {group_name}. Envieu un missatge per a encetar una conversa!" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemáte žádné zprávy od {group_name}. Pošlete zprávu pro zahájení konverzace!" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych unrhyw negeseuon gan {group_name}. Anfonwch neges i ddechrau'r sgwrs!" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen beskeder fra {group_name}. Send en besked for at starte samtalen!" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast keine Nachrichten von {group_name}. Sende eine Nachricht, um das Gespräch zu beginnen!" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε μηνύματα από {group_name}. Στείλτε ένα μήνυμα για να ξεκινήσετε τη συζήτηση!" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You have no messages from {group_name}. Send a message to start the conversation!" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne havas mesaĝojn de {group_name}. Sendu mesaĝon por komenci la konversacion!" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes mensajes de {group_name}. ¡Envía un mensaje para iniciar la conversación!" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes mensajes de {group_name}. ¡Envía un mensaje para iniciar la conversación!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil pole {group_name}'ilt sõnumeid. Vestluse alustamiseks saatke sõnum!" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu mezurik {group_name}-tik. Bidali mezu bat elkarrizketa hasteko!" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما پیامی از {group_name} ندارید. پیام بفرستید تا مکالمه شروع شود!" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole viestejä käyttäjältä {group_name}. Lähetä viesti aloittaaksesi keskustelun!" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang mga mensahe mula sa {group_name}. Magpadala ng mensahe upang simulan ang pag-uusap!" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez aucun message de {group_name}. Envoyez un message pour démarrer la conversation !" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non tes mensaxes de {group_name}. ¡Envía unha mensaxe para comezar a conversación!" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da saƙonni daga {group_name}. Aiko da saƙo don fara tattaunawa!" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין לך הודעות מ{group_name}. שלח הודעה כדי להתחיל את השיחה!" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पास {group_name} से कोई संदेश नहीं हैं। वार्तालाप शुरू करने के लिए एक संदेश भेजें!" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate poruka od {group_name}. Pošaljite poruku da započnete razgovor!" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek üzenetek a {group_name} csoportban. Küldj egy üzenetet a beszélgetés megkezdéséhez!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք չունեք հաղորդագրություններ {group_name}֊ից։ Ուղարկեք հաղորդագրություն խոսակցությունը սկսելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada pesan dari {group_name}. Kirim pesan untuk memulai percakapan!" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non ci sono messaggi su {group_name}. Invia un messaggio e inizia la conversazione!" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}からのメッセージがありません。会話を開始するにはメッセージを送信してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ არ გექნებათ მესიჯები {group_name} ჯგუფიდან. მესიჯი გაგზავნეთ საუბრის დასაწყებად!" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនមានសារទីពី {group_name}។ ផ្ញើសារមួយដើម្បីចាប់ផ្តើមការសន្ទនា!" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಬಳಿ {group_name} ನಿಂದ ಯಾವುದೇ ಸಂದೇಶಗಳಿಲ್ಲ. ಈ ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಲು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಿ!" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}님으로부터 받은 메시지가 없습니다.대화를 시작하려면 메시지를 보내세요!" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ هیچ پەیامێکت نییە لە {group_name}. پەیامێک بنێرە بۆ دەست پێکردنی گفتگو!" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina bubaka wona okuva {group_name}. Tumira obubaka okutandika olulungi olubaganya bw'ogenda!" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neturite žinučių iš {group_name}. Parašykite žinutę, kad pradėtumėte pokalbį!" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs vēl neesat saņēmuši nevienu ziņojumu no {group_name}. Nosūtiet ziņojumu, lai sāktu sarunu!" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате пораки од {group_name}. Испратете порака за да ја започнете конверзацијата!" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд {group_name}ээс мессэж байхгүй байна. Яриагаа эхлүүлэхийн тулд илгээмжээ илгээнэ үү!" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak mempunyai sebarang mesej daripada {group_name}. Hantar mesej untuk memulakan perbualan!" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်တွင် {group_name} မှ မက်ဆေ့ချ် မရှိပါ။ မက်ဆေ့ချ်ပို့၍ ဆွေးနွေးပွဲကို စတင်ပါ!" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen meldinger fra {group_name}. Send en melding for å starte samtalen!" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग {group_name}बाट कुनै सन्देश छैन। कुराकानी सुरु गर्न सन्देश पठाउनुहोस्!" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft geen berichten van {group_name}. Stuur een bericht om het gesprek te starten!" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga meldingar frå {group_name}. Send ei melding for å starta samtalen!" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulayambe kupeza mauthenga ochokera kwa {group_name}. Tumizani uthenga kuti muyambe kuyankhulana!" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ {group_name} ਤੋਂ ਕੋਈ ਮੈਸਜ ਨਹੀਂ ਹਨ। ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਮੈਸਜ ਭੇਜੋ!" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak wiadomości w grupie {group_name}. Wyślij wiadomość, aby rozpocząć rozmowę!" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو له {group_name} څخه هېڅ پیغام نلرئ. خبرې وکړئ تر څو مکالمه پیل کړئ!" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não possui mensagens de {group_name}. Envie uma mensagem para começar a conversa!" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não possui mensagens de {group_name}. Envie uma mensagem para iniciar a conversa!" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu ai mesaje din {group_name}. Trimite un mesaj pentru a începe conversația!" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас нет сообщений от {group_name}. Отправьте сообщение, чтобы начать беседу!" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemaš poruke od {group_name}. Pošalji poruku da započneš konverzaciju!" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} ගෙන් කිසිදු පණිවිඩයක් නැත. සංවාදය ආරම්භ කිරීමට පණිවිඩයක් යවන්න!" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemáte žiadne správy od {group_name}. Pošlite správu a začnite konverzáciu!" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimate sporočil iz {group_name}. Pošljite sporočilo, da začnete pogovor!" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni asnjë mesazh nga {group_name}. Dërgoni një mesazh për të filluar bisedën!" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате порука од {group_name}. Пошаљите поруку да започнете разговор!" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate nijednu poruku od {group_name}. Pošaljite poruku da započnete razgovor!" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga meddelanden från {group_name}. Skicka ett meddelande för att starta konversationen!" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna jumbe kutoka kwa {group_name}. Tuma ujumbe ili kuanza mazungumzo!" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் {group_name} -இல் எதுவும் இல்லை. உரையாடலைத் தொடங்க ஒரு செய்தியைக் குடியுங்கள்!" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీకు {group_name} నుండి సందేశాలు లేవు. సంభాషణ ప్రారంభించడానికి ఒక సందేశం పంపండి!" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่มีข้อความจาก {group_name} ส่งข้อความเพื่อเริ่มการสนทนา!" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} kullanıcısından herhangi bir mesajınız yok. Sohbeti başlatmak için bir mesaj gönderin!" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас немає повідомлень від {group_name}. Надішліть повідомлення, щоб розпочати розмову!" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پاس {group_name} سے کوئی پیغام نہیں ہے۔ گفتگو شروع کرنے کے لئے پیغام بھیجیں!" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda {group_name} dan hech qanday xabar yo'q. Suhbatni boshlash uchun xabar yuboring!" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không có tin nhắn nào từ {group_name}. Gửi một tin nhắn để bắt đầu cuộc trò chuyện!" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akunamiyalezo ivela kwi {group_name}. Thumela umyalezo ukuyiqala incoko!" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您没有来自{group_name}的消息。发送一条消息开始会话!" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您沒有來自 {group_name} 的訊息。發送訊息以開始對話!" + } + } + } + }, + "groupOnlyAdmin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy is die enigste administrateur in {group_name}.

Groepslede en instellings kan nie verander word sonder 'n administrateur nie." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {group_name} qrupunda yeganə adminsiniz.

Qrup üzvləri və ayarları admin olmadan dəyişdirilə bilməz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما {group_name} کے واحد منتظم ہیں۔

گروپ کے اراکین اور سیٹنگز ایک منتظم کے بغیر تبدیل نہیں کیے جا سکتے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы з'яўляецеся адзіным адміністратарам у {group_name}.

Удзельнікі групы і наладкі не могуць быць змененыя без адміністратара." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие сте единственият администратор в {group_name}.

Членовете и настройките на групата не могат да бъдат променяни без администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are the only admin in {group_name}.

Group members and settings cannot be changed without an admin." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vós sou l'únic administradór de {group_name}.

Els membres del grup i les configuracions no poden ser canviats sense un administradór." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste jediný správce ve skupině {group_name}.

Členové skupiny a nastavení nelze změnit bez správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi yw'r unig weinyddwr yn {group_name}.

Ni ellir newid aelodau a gosodiadau'r grŵp heb weinyddwr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er den eneste administrator i {group_name}.

Gruppemedlemmer og indstillinger kan ikke ændres uden en administrator." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du bist der einzige Admin in {group_name}.

Gruppenmitglieder und -einstellungen können ohne einen Admin nicht geändert werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε ο μόνος διαχειριστής στην {group_name}.

Τα μέλη και οι ρυθμίσεις της ομάδας δεν μπορούν να αλλάξουν χωρίς διαχειριστή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are the only admin in {group_name}.

Group members and settings cannot be changed without an admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estas la sola admin en {group_name}.

Grupanoj kaj agordoj ne povas esti ŝanĝitaj sen admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eres el único administrador en {group_name}.

Los miembros del grupo y la configuración no se pueden cambiar sin un administrador." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eres el único admin en {group_name}.

Los miembros y la configuración del grupo no pueden ser modificados sin un admin." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olete ainus administraator grupis {group_name}.

Grupi liikmeid ja sätteid ei saa muuta ilma administraatorita." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu zara {group_name}-ko administratzaile bakarra.

Taldekideak eta ezarpenak ezin daitezke aldatu admin bat gabe." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تنها مدیر در {group_name} هستید.

بدون مدیر، اعضای گروه و تنظیمات نمی‌توانند تغییر کنند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olet ainoa ylläpitäjä ryhmässä {group_name}.

Ryhmän jäseniä ja asetuksia ei voi muuttaa ilman ylläpitäjää." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ang tanging admin sa {group_name}.

Ang mga miyembro ng grupo at mga setting ay hindi maaaring baguhin nang walang admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous êtes le seul administrateur de {group_name}.

Les membres du groupe et les paramètres ne peuvent pas être modifiés sans un administrateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es o único admin en {group_name}.

Os membros do grupo e a configuración non se poden cambiar sen un administrador." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai ne kawai admin a cikin {group_name}.

Ba za a iya canza mambobin rukunin da saitin ba tare da admin ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה המנהל/ת היחיד/ה ב-{group_name}.

חברי הקבוצה וההגדרות לא יכולים להשתנות ללא מנהל/ת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप {group_name} में अकेले व्यवस्थापक हैं।

समूह सदस्य और सेटिंग्स बिना व्यवस्थापक के बदले नहीं जा सकते।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste jedini admin u {group_name}.

Članovi grupe i postavke se ne mogu mijenjati bez admina." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te vagy az egyetlen adminisztrátor a {group_name} csoportban.

A csoporttagok és beállítások nem változtathatók adminisztrátor nélkül." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք այս խմբի միակ ադմինն եք {group_name}։

Խմբի անդամներն ու կարգավորումները չեն կարող փոխվել առանց ադմին։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda adalah satu-satunya admin di {group_name}.

Anggota grup dan pengaturan tidak dapat diubah tanpa admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei l'unico amministratore in {group_name}.

I membri e le impostazioni del gruppo non possono essere modificati senza un amministratore." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたは{group_name}で唯一の管理者です。

管理者がいないと、グループメンバーと設定は変更できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ხართ ერთადერთი ადმინისტრატორი {group_name}-ში.

ჯგუფის წევრების და პარამეტრების შეცვლა შეუძლებელია ადმინისტრატორის გარეშე." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកគឺជាអ្នកគ្រប់គ្រងតែម្នាក់ប៉ុណ្ណោះនៅក្នុង {group_name}

សមាជិកក្រុមនិងការកំណត់មិនអាចផ្លាស់ប្តូរបានទេផុតពីអ្នកគ្រប់គ្រង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {group_name} ನಲ್ಲಿ ಮಾತ್ರ ಆಡ್ಮಿನ್ ಆಗಿದ್ದೀರಿ.

ಗುಂಪಿನ ಸದಸ್ಯರು ಮತ್ತು ಸೆಟ್ಟಿಂಗ್‌ಗಳನ್ನು ಆಡ್ಮಿನ್ ಇಲ್ಲದೆ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신은 {group_name}의 유일한 관리자입니다.

관리자가 없으면 그룹 구성원 및 설정을 변경할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ تەنها بەڕێوەبەری {group_name} یت.

ئەم ئەندامانی گروپە و ڕێکخستنهکان نەکرێن بگۆڕدرێن بێ ئەگەری بەڕێوەبەرێک." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe yekka admin mu {group_name}.

Abweeta by'olukungguwa n'ebisela ebiteredde - nga alimu admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs esate vienintelis administratorius grupėje {group_name}.

Grupės nariai ir nustatymai negali būti keičiami be administratoriaus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs esat vienīgais administrators {group_name}.

Grupas locekļus un iestatījumus nevar mainīt bez administratora." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие сте единствениот админ во {group_name}.

Членовите на групата и поставките не можат да се променат без админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name}-ийн цорын ганц админ байна.

Бүлгийн гишүүд болон тохиргоог админгүй өөрчлөх боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda adalah satu-satunya pentadbir dalam {group_name}.

Ahli kumpulan dan tetapan tidak boleh diubah tanpa pentadbir." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are the only admin in {group_name}.

Group members and settings cannot be changed without an admin." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er den eneste administratoren i {group_name}.

Gruppemedlemmer og innstillinger kan ikke endres uten en administrator." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं {group_name} मा मात्र प्रशासक हुनुहुन्छ।

समूह सदस्यहरू र सेटिङहरू प्रशासक बिना परिवर्तन गर्न सकिदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent de enige beheerder in {group_name}.

Groepsleden en instellingen kunnen niet worden gewijzigd zonder een beheerder." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du er den einaste administrator i {group_name}.

Gruppe medlemmer og innstillinger kan ikkje endrast utan ein administrator." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndinu oyang'anira payekha mu {group_name}.

Mabwenzi ndi zoikamo sizingasinthidwe popanda woyang'anira." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {group_name} ਵਿੱਚ ਅਕੇਲੇ ਐਡਮਿਨ ਹੋ।

ਗਰੁੱਪ ਦੇ ਮੈਂਬਰ ਅਤੇ ਸੈਟਿੰਗਜ਼ ਬਗੈਰ ਐਡਮਿਨ ਦੇ ਬਦਲੇ ਨਹੀਂ ਜਾ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesteś jedynym administratorem grupy {group_name}.

Bez administratora nie można zmieniać członków grupy ani ustawień." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو یوازې په {group_name} کې اډمین یاست.

د ګروپ غړي او ترتیبات نشي بدلیدلی له اډمین پرته." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você é o único administrador em {group_name}.

Os membros do grupo e as configurações não podem ser alterados sem um administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você é o único admin em {group_name}.

Os membros e as definições do grupo não podem ser alterados sem um admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești singurul administrator din {group_name}.

Membrii și setările grupului nu pot fi modificate fără un administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы единственный администратор в {group_name}.

Участники группы и настройки не могут быть изменены без администратора." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste jedini administrator u {group_name}.

Članovi grupe i podešavanja ne mogu se menjati bez administratora." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ {group_name} හි එකම පරිපාලකයෙක් වෙයි.

සමූහ සාමාජිකයන් හා සැකසුම් පරිපාලකයකු නොමැතිව වෙනස් කළ නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste jediným správcom v {group_name}.

Členovia skupiny a nastavenia sa bez správcu nedajú meniť." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste edini skrbnik v skupini {group_name}.

Člani skupine in nastavitve ne morejo biti spremenjeni brez skrbnika." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju jeni administratori i vetëm në {group_name}.

Anëtarët e grupit dhe cilësimet nuk mund të ndryshohen pa një administrator." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте једини администратор у {group_name}.

Чланови групе и подешавања не могу бити промењени без администратора." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste jedini administrator u {group_name}.

Članovi grupe i podešavanja ne mogu biti promenjeni bez administratora." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du är den enda administratören i {group_name}.

Gruppmedlemmar och inställningar kan inte ändras utan en administratör." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe ndiye msimamizi pekee katika {group_name}.

Wanakundi na mipangilio hawawezi kubadilishwa bila msimamizi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {group_name} இல் ஒரே நிர்வாகியாக உள்ளீர்கள்.

குழு உறுப்பினர்களும் அமைப்புகளும் நிர்வாகியில்லாமல் மாற்ற முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {group_name}లో ఏకైక అడ్మిన్ .

గుంపు సభ్యులు మరియు అమరికలు అడ్మిన్ లేకుండా మార్చబడవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณเป็นผู้ดูแลคนเดียวใน {group_name}.

สมาชิกกลุ่มและการตั้งค่าไม่สามารถเปลี่ยนแปลงได้หากไม่มีผู้ดูแล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubunda tek adminsiniz.

Admin olmadan grup üyeleri ve ayarları değiştirilemez." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви — єдиний адміністратор у {group_name}.

Учасники групи та налаштування не можуть бути змінені без адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ {group_name} میں واحد منتظم ہیں۔

گروپ اراکین اور سیٹنگز ایک منتظم کے بغیر تبدیل نہیں کی جا سکتیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {group_name}da yagona administrator siz.

Administrator bo'lmaganda guruh azolari va sozlamalarini o'zgartirib bo'lmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn là quản trị viên duy nhất trong {group_name}.

Các thành viên và cài đặt nhóm không thể được thay đổi nếu không có quản trị viên." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unguye kuphela admin kwi {group_name}.

Amalungu eqela kunye neesetingi azinakutshintshwa ngaphandle kwe-admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是{group_name}中唯一的管理员。

没有管理员,群组成员和设置将无法被更改。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是 {group_name} 中唯一的管理員。

沒有管理員,群組成員和設定將無法更改。" + } + } + } + }, + "groupPromotedYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy is bevorder tot Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت تم ترقيتك إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz Admin oldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār rīhīyā Admin šumār." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вас павысілі да адміністратара." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие бяхте повишен в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি অ্যাডমিন হিসেবে উন্নীত হয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu has estat ascendit a administrador." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byli jste povýšeni na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Penodwyd chi i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du wurdest zum Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς γίνατε Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You were promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estis promociita al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " fuiste promovido a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " fuiste promovido a Administrador." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina määrati adminiks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk administratzaile izendatu zaituzte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما به مدیر ارتقاء یافتید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinut ylennettiin ylläpitäjäksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay na-promote na Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez été promu·e en tant qu'administrateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti foste ascendido a Admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku an tayar ku zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה קודמת למנהל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovirani ste u Admina." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te adminisztrátorrá lettél előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք բարձրացվել եք որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei stato promosso amministratore." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "You はアドミンに昇格しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ მიენიჭა ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកត្រូវបានបដិស្មីជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ بە بەڕێوەبەر هەڵبژێردرا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe wakyusibwa okufuuka Admin." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານໄດ້ຮັບການເລື່ອນຊັ້ນການຄຸ້ມຄອງ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs buvote paskirti adminu." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu tika paaugstināts par administrētāju." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие бевте промовирани во Админ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် ကို အုပ်ချုပ်ရေးမှူးအဖြစ် တိုးတက်လာသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ble oppgradert til administrator." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई Admin मा बढुवा गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vart promotert til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu mwakwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zostajesz administratorem." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو د اډمین په توګه لوړ شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você foi promovido a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foi promovido a administrador." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu ai fost promovat/ă la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы назначены администратором." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si unaprijeđen u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ පරිපාලක උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste boli povýšený/á na správcu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste bili promovirani v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju u promovuat në Administrator." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте унапређени у администратора." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste unapredjeni u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blev befordrad till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் நிர்வாகியாக உயர்த்தப்பட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అడ్మిన్ గా ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen yönetici olarak terfi ettin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вас підвищили до адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz Administrator sifatida ko'tarildingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna ndinyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "被设置为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 被提拔為管理員。" + } + } + } + }, + "groupPromotedYouMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander is bevorder tot Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و {count} آخرين تمت ترقيتهم إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz digər {count} nəfər Admin oldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اور {count} دٖگر رِہویاً ادمن شومار." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {count} іншых былі павышаны да адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бяхте повишени в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} জন অন্যরা অ্যাডমিন হিসেবে উন্নীত হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {count} altres heu estat ascendits a administrador." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších jste byli povýšeni na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill penodwyd i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere wurden zu Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {count} άλλοι γίνατε Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others were promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj estis promociitaj al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más fueron promovidos a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más fueron promovidos a Administradores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {count} teist määrati administraatoriks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu eta {count} beste administratzaile izendatu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {count} سایرین به مدیر ارتقاء یافتید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta ylennettiin ylläpitäjiksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa ay na-promote na Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres ont été promus admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {count} wasu an tayar ku zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{count} אחרים קודמתם למנהל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {count} अन्य को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugi promovirani ste u administratora." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy adminisztrátorrá lettetek előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} ուրիշներ բարձրացվել են որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e altri {count} siete stati promossi ad amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{count}名 はAdminに昇格しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვები მიენიჭათ ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} នាក់ផ្សេងទៀត ត្រូវបានតែងតាំងជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರು ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{count}명이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} کەس دیکە بە بەڕێوەبەر هەڵبژێردران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {count} abalala baakyusibwa okufuuka Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {count} kiti buvo paskirti adminais." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бевте промовирани во адм." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {count} бусад Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {count} ဦး အဖွဲ့ဝင်များကို အုပ်ချုပ်ရေးမှူးအဖြစ် တက်လာသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre ble forfremmet til Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{count} अन्यलाई Admin मा बढुवा गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {count} anderen zijn gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre vart promoterte til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena mwakwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰਾਂ ਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników zostaliście administratorami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور اډمین ته پورته شوی وو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram promovidos a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram promovidos a Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} ați fost promovați la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других человек назначены администраторами." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih ste unaprijeđeni u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} වෙනත් අය පරිපාලක (Admin) තනතුරට උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší ste boli povýšení na správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugi so bili promovirani v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë u promovuan në Administratorë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} других сте унапређени у администраторе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste unapređeni u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra blev befordrade till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mmepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} பிறர் நிர்வாகியாக உயர்த்தப்பட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు అడ్మిన్ కీ ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {count} อื่นๆ ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {count} diğer yönetici olarak terfi ettiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та ще {count} інших були підвищені до адміністраторів." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqa Administrator sifatida ko'tarildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{count} người khác đã được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {count} abanye abantu banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "和其他{count}人被授权为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{count} 位其他成員 被設置為管理員。" + } + } + } + }, + "groupPromotedYouTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {name} is bevorder tot Admin." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و {name} تم ترقيتهم إلى مشرف." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz{name} Admin oldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما اور {name} رِہویاً ادمن شومار." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {name} былі павышаны да адміністратараў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {name} бяхте повишени в Администратор." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {name} অ্যাডমিন হিসেবে উন্নীত হয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {name} heu estat ascendits a administrador." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} jste byli povýšeni na správce." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {name} penodwyd i admin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} blev forfremmet til Admin." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {name} wurden zu Admin befördert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {name} γίνατε Διαχειριστές." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {name} were promoted to Admin." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {name} estis promociitaj al Admin." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {name} fueron promovidos a Admin." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {name} fueron promovidos a Administradores." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind ja {name} määrati administraatoriks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu eta {name} administratzaile izendatu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {name} به مدیر ارتقاء یافتید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {name} ylennettiin ylläpitäjiksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {name} ay na-promote na Admin." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {name} ont été promus admin." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {name} an tayar ku zuwa Admin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{name} קודמתם למנהל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {name} को Admin बनाया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} promovirani ste u administratora." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {name} adminisztrátorrá lettetek előléptetve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {name} բարձրացվել են որպես ադմին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} dipromosikan menjadi Admin." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {name} siete stati promossi ad amministratori." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{name} はAdminに昇格しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {name} მიენიჭათ ადმინისტრატორის როლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {name} ត្រូវបានតែងតាំងជា Admin។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {name} ನಿರ್ವಾಹಕರಾಗಿ ಬಡ್ತಿ ಪಡೆದಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{name}님이 관리자(Admin)로 승격되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {name} بە بەڕێوەبەر هەڵبژێردران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {name} baakyusibwa okufuuka Admin." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {name} buvo paskirti adminais." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {name} бевте промовирани во адм." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {name} Админ боллоо." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {name} dinaikkan ke Admin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {name} ကို အုပ်ချုပ်ရေးမှူးအဖြစ် တိုးတက်လာသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} ble forfremmet til Admin." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{name}लाई Admin मा बढुवा गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {name} zijn gepromoveerd tot Admin." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {name} vart promoterte til admin." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {name} mwakwezedwa kukhala Admin." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {name} ਨੂੰ ਪ੍ਰਸ਼ਾਸਕ ਬਣਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty oraz użytkownik {name} zostaliście administratorami." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {name} اډمین ته پورته شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} foram promovidos a Administrador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {name} foram promovidos a Admin." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {name} ați fost promovați la nivel de administrator." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {name} назначены администраторами." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {name} su unaprijeđeni u Admina." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {name} පරිපාලක (Admin) තනතුරට උසස් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {name} ste boli povýšení na správcov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {name} sta bila promovirana v administratorja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {name} u promovuan në Administratorë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {name} сте унапређени у администраторе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {name} ste unapređeni u admina." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {name} blev befordrade till Admin." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {name} mmepandishwa cheo kuwa Admin." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {name} நிர்வாகியாக உயர்த்தப்பட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {name} అడ్మిన్ కీ ప్రమోట్ చేయబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {name} ได้รับการเลื่อนตำแหน่งเป็นผู้ดูแลระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {name} yönetici olarak terfi ettiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {name} були підвищені до адміністратора." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {name} کو ایڈمن مقرر کیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {name} Administrator sifatida ko'tarildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{name} đã được thăng lên làm Admin." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye ne {name} banyuselwe kubu-Admin." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}被授权为管理员。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 被設置為管理員。" + } + } + } + }, + "groupRemoved" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is as lede van die groep verwyder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تم إزالته من المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} qrupdan çıxarıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gōra z group." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} выдалены з групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше премахнат от групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}কে গ্রুপ থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} s'ha suprimit del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} byl odebrán ze skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnwyd {name} o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} blev fjernet fra gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wurde aus der Gruppe entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} αφαιρέθηκε από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} was removed from the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} estas forigita el la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha sido expulsado del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fue expulsado del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eemaldati grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} taldetik kendu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} از گروه حذف شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} poistettiin ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay tinanggal sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a été retiré du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi eliminado do grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an cire shi daga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הוסר מהקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} को समूह से हटा दिया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je uklonjen iz grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} el lett távolítva a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} հեռացվել է խմբից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah dikeluarkan dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} è stato rimosso dal gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} はグループから削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს ჯგუფიდან წაიშალა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ ត្រូវបានដកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರನ್ನು ಗುಂಪಿನಿಂದ ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 그룹에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} لە گروپەکە لابرا." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yasasulwa okuva mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ໄດ້ຖືກລຶບອອກຈາກກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} buvo pašalintas iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tika noņemts no grupas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} беше отстранет од групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} бүлгээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dikeluarkan daripada kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ကို အဖွဲ့မှ ဖယ်ရှားခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble fjernet fra gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}लाई समूहबाट हटाइएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is verwijderd uit de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart fjerna frå gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} achotsedwa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੂੰ ਗਰੁੱਪ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} został(a) usunięty(-a) z grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} له ګروپ څخه لیرې شو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi removido do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} foi removido(a) do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a fost eliminat din grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} был(а) удален(а) из группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je uklonjen iz grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} කණ්ඩායමෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bol/a odstránený/á zo skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je bil_a odstranjen_a iz skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u largua nga grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је уклоњен из групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je izbrisan iz grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} togs bort från gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ameondolewa kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} குழுவிலிருந்து நீக்கப்பட்டார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సమూహం నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ถูกลบออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gruptan çıkarıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} було вилучено із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کو گروپ سے ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} guruhdan chiqarib yuborildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã bị xoá khỏi nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ikhutshelwe ngaphandle kweqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}已被移出群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已被移出群組。" + } + } + } + }, + "groupRemoveDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy {name} verwyder uit {group_name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود إزالة {name} من {group_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} istifadəçisini {group_name} qrupundan çıxarmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تراچ بیت پاسکن {name} {group_name}؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце выдаліць {name} з {group_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да отстраните {name} от {group_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} from {group_name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu eliminar {name} de {group_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstranit {name} ze skupiny {group_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi dynnu {name} o {group_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} fra {group_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} aus {group_name} entfernen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να αφαιρέσετε τον/την {name} από την {group_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} from {group_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus forigi {name} de {group_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} de {group_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} de {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite eemaldada {name} grupist {group_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {group_name}-tik kendu nahi duzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید {name} را از {group_name} حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko poistaa {name} ryhmästä {group_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang alisin si {name} mula sa {group_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous retirer {name} de {group_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés eliminar a {name} de {group_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a cire {name} daga {group_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך להסיר את {name} מ-{group_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} को {group_name} से निकालना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li ukloniti {name} iz {group_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "El szeretnéd távolítani {name}-t a {group_name} csoportból?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք հեռացնել {name}-ին {group_name} խմբից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin menghapus {name} dari {group_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi rimuovere {name} da {group_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}から{name}を削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ წაშალოთ {name} {group_name}-დან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ដក {name} ពី {group_name} មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} {group_name} ನಿಂದ ತೆಗೆದುಹಾಕಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에서 {name}님을 제거하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئايا دەتەوێت {name} لە {group_name} بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okulinyisa {name} okuva e {group_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pašalinti {name}{group_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties noņemt {name} no {group_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да го отстраните {name} од {group_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{group_name} -аас устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin mengeluarkan {name} dari {group_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} from {group_name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} fra {group_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं हटाउन चाहनुहुन्छ {name} देखि {group_name}?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u {name} verwijderen uit {group_name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} frå {group_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kuchotsa {name} ku {group_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਨੂੰ {group_name} ਤੋਂ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz usunąć użytkownika {name} z grupy {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ {name} له {group_name} څخه لرې کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} de {group_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} de {group_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să eliminați pe {name} din {group_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите удалить {name} из {group_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} iz {group_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} වෙතින් {name} ඉවත් කිරීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstrániť {name} z {group_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite odstraniti {name} iz {group_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të hiqni {name} nga {group_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите уклонити {name} из {group_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} iz {group_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du ta bort {name} från {group_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kuondoa {name} kutoka {group_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name}{group_name} இல் இருந்து அகற்ற விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name}ను {group_name} నుండి తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการลบ {name} ออกจาก {group_name} หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubundan {name} kişisini kaldırmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте видалити {name} з {group_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {group_name} سے {name} کو ہٹانا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ni {group_name}dan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn xóa {name} khỏi {group_name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukususa {name} kwi-{group_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "你想将 {name}{group_name} 中移除吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要從 {group_name} 中移除 {name}?" + } + } + } + }, + "groupRemoveDescriptionMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy {name} en {count} ander verwyder uit {group_name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود إزالة {name} و{count} آخرين من {group_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} və digər {count} nəfəri {group_name} qrupundan çıxartmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترا چہ بیتھہ {name} و {count} اسمیں {group_name}؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце выдаліць {name} і {count} іншых з {group_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да отстраните {name} и {count} други от {group_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {count} others from {group_name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu eliminar {name} i {count} altres de {group_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstranit {name} a {count} dalších ze skupiny {group_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi dynnu {name} a {count} eraill o {group_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {count} andre fra {group_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} und {count} andere aus {group_name} entfernen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να αφαιρέσετε τον/την {name} και άλλους {count} από την {group_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {count} others from {group_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus forigi {name} kaj {count} aliajn de {group_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} y a {count} otros de {group_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} y a {count} otros de {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite eemaldada {name} ja {count} teised grupist {group_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste batzuk {group_name}-tik kendu nahi dituzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید {name} و {count} نفر دیگر را از {group_name} حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko poistaa {name} ja {count} muuta ryhmästä {group_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang alisin sina {name} at {count} iba pa mula sa {group_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous retirer {name} et {count} autres de {group_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés eliminar a {name} e a {count} máis de {group_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a cire {name} da {count} wasu daga {group_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך להסיר את {name} ואת {count} אחרים מ-{group_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} और {count} अन्य को {group_name} से निकालना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li ukloniti {name} i {count} drugih iz {group_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "El szeretnéd távolítani {name}-t és {count} másik személyt a {group_name} csoportból?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք հեռացնել {name}-ին և {count} այլ անձանց {group_name}-ից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin menghapus {name} dan {count} lainnya dari {group_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi rimuovere {name} e altri {count} da {group_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}から{name}{count}人を削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ წაშალოთ {name} და {count} სხვები {group_name}-დან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ដក {name} និង {count} បន្ទាប់ ពី {group_name} មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {count} ಇತರರನ್ನು {group_name} ನಿಂದ ತೆಗೆದುಹಾಕಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에서 {name}님과 {count}명을 제거하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت بڕبەیتەوە {name} و {count} یەک و چەندێکی تر لە {group_name}؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okulinyisa {name} n'abalala {count} okuva e {group_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pašalinti {name} ir {count} kitus{group_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties noņemt {name} un {count} citus no {group_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да ги отстраните {name} и {count} други од {group_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-г болон {count} бусдыг {group_name}-аас устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin mengeluarkan {name} dan {count} yang lain dari {group_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {count} others from {group_name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {count} andre fra {group_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं हटाउन चाहनुहुन्छ {name}{count} अन्यहरू देखि {group_name}?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u {name} en {count} anderen verwijderen uit {group_name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {count} andre frå {group_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kuchotsa {name} ndi {count} ena ku {group_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਅਤੇ {count} ਹੋਰ ਨੂੰ {group_name} ਤੋਂ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz usunąć użytkownika {name} i {count} innych użytkowników z grupy {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ {name} او {count} نور له {group_name} څخه لرې کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} e {count} outros de {group_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} e {count} outros de {group_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să eliminați pe {name} și alți {count} din {group_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите удалить {name} и {count} других из {group_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} i {count} drugih iz {group_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {group_name} වෙතින් {name} සහ {count} මිලේනියමු ඉවත් කිරීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstrániť {name} a {count} ďalších z {group_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite odstraniti {name} in {count} drugih iz skupine {group_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të hiqni {name} dhe {count} të tjerë nga {group_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите уклонити {name} и {count} других из {group_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} i {count} drugih iz {group_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du ta bort {name} och {count} andra från {group_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kuondoa {name} na {count} wengine kutoka {group_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} மற்றும் {count} மற்றவர்களை {group_name} இல் இருந்து அகற்ற விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {count} ఇతరులను {group_name} నుండి తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการลบ {name} และอีก {count} คน ออกจาก {group_name} หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubundan {name} ve {count} diğerlerini kaldırmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте видалити {name} і {count} інших з {group_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ{group_name}سے {name} اور {count} دیگر کو ہٹانا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalarni {group_name}dan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn xóa {name}{count} người khác khỏi {group_name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukususa {name} kunye nabanye {count} kwi-{group_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望将{name}和其他{count}人{group_name}中移除吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要從 {group_name} 中移除 {name}{count} 名其他成員?" + } + } + } + }, + "groupRemoveDescriptionTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy {name} en {other_name} verwyder uit {group_name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود إزالة {name} و{other_name} من {group_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} istifadəçilərini {group_name} qrupundan çıxarmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تراچ بیتھہ {name} و {other_name} {group_name}؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце выдаліць {name} і {other_name} з {group_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да отстраните {name} и {other_name} от {group_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {other_name} from {group_name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu eliminar {name} i {other_name} de {group_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstranit {name} a {other_name} ze skupiny {group_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi dynnu {name} a {other_name} o {group_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {other_name} fra {group_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du {name} und {other_name} aus {group_name} entfernen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να αφαιρέσετε τον/την {name} και τον/την {other_name} από την {group_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {other_name} from {group_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus forigi {name} kaj {other_name} de {group_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} y a {other_name} de {group_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría eliminar a {name} y a {other_name} de {group_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite eemaldada {name} ja {other_name} grupist {group_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} {group_name}-tik kendu nahi dituzu?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید {name} و {other_name} را از {group_name} حذف کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko poistaa {name} ja {other_name} ryhmästä {group_name}?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang alisin sina {name} at {other_name} mula sa {group_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous retirer {name} et {other_name} de {group_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés eliminar a {name} e a {other_name} de {group_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a cire {name} da {other_name} daga {group_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך להסיר את {name} ואת {other_name} מ-{group_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} और {other_name} को {group_name} से निकालना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li ukloniti {name} i {other_name} iz {group_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "El szeretnéd távolítani {name}-t és {other_name}-t a {group_name} csoportból?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք հեռացնել {name}-ին և {other_name}-ին {group_name} խմբից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin menghapus {name} dan {other_name} dari {group_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi rimuovere {name} e {other_name} da {group_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}から{name}{other_name}を削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ წაშალოთ {name} და {other_name} {group_name}-დან?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ដក {name} និង {other_name} ពី {group_name} មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಮತ್ತು {other_name} {group_name} ನಿಂದ ತೆಗೆದುಹಾಕಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에서 {name}님과 {other_name}님을 제거하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت بڕبەیتەوە {name} و {other_name} لە {group_name}؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okulinyisa {name} ne {other_name} okuva e {group_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pašalinti {name} ir {other_name}{group_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties noņemt {name} un {other_name} no {group_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да ги отстраните {name} и {other_name} од {group_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-г болон {other_name}{group_name}-аас устгахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin mengeluarkan {name} dan {other_name} dari {group_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to remove {name} and {other_name} from {group_name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {other_name} fra {group_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं हटाउन चाहनुहुन्छ {name}{other_name} देखि {group_name}?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u {name} en {other_name} verwijderen uit {group_name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du fjerne {name} og {other_name} frå {group_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kuchotsa {name} ndi {other_name} ku {group_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਅਤੇ {other_name} ਨੂੰ {group_name} ਤੋਂ ਹਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz usunąć użytkowników {name} i {other_name} z grupy {group_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ {name} او {other_name} له {group_name} څخه لرې کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} e {other_name} de {group_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de remover {name} e {other_name} de {group_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să eliminați pe {name} și {other_name} din {group_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите удалить {name} и {other_name} из {group_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} i {other_name} iz {group_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ {other_name} සහ {group_name} ඉවත් කිරීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete odstrániť {name} a {other_name} z {group_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite odstraniti {name} in {other_name} iz {group_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të hiqni {name} dhe {other_name} nga {group_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите уклонити {name} и {other_name} из {group_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da uklonite {name} i {other_name} iz {group_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du ta bort {name} och {other_name} från {group_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kuondoa {name} na {other_name} kutoka {group_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} மற்றும் {other_name}{group_name} இல் இருந்து அகற்ற விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {other_name}ను {group_name} నుండి తొలగించాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการลบ {name} และ {other_name} ออกจาก {group_name} หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubundan {name} ve {other_name} kişilerini kaldırmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте видалити {name} і {other_name} з {group_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {group_name} سے {name} اور {other_name} کو ہٹانا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name}ni {group_name}dan o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn xóa {name}{other_name} khỏi {group_name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukususa {name} kunye no{other_name} kwi-{group_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望将{name}{other_name}{group_name}中移除吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要從 {group_name} 中移除 {name}{other_name}?" + } + } + } + }, + "groupRemovedMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander is uit die groep verwyder." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} آخرين تم إزالتهم من المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}başqa {count} nəfər qrupdan çıxarıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg gōra z group." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых былі выдалены з групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други бяха премахнати от групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্যরা গ্রুপ থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} altres han estat eliminats del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} dalších byli odebráni ze skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {count} eraill wedi cael eu symud o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre blev fjernet fra gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere wurden aus der Gruppe entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} άλλα αφαιρέθηκαν από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others were removed from the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj estis forigitaj de la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron expulsados del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más fueron expulsados del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist eemaldati grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste taldetik kendu ziren." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} نفر دیگر از گروه حذف شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta poistettiin ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay tinanggal sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont été retirés du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} máis foron eliminados do grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da{count} wasu an cire su daga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ הוסרו מהקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य समूह से हटा दिए गए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi su uklonjeni iz grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} mások el lettek távolítva a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ հեռացվել են խմբից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dikeluarkan dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanno rimosso {name} e altri {count} dal gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}人 がグループから削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {count} სხვებს ჯგუფიდან წაიშალნენ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {count} គេផ្សង ទៀត‍ ត្រូវណាដកចេញេញីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {count} ಇತರೆರು ಗುಂಪಿನಿಂದ ತೆಗೆದುಹಾಕಲ್ಪಟ್ಟರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{count}명이 그룹에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە لە گروپەکە لابران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala basasulwa okuva mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ແລະ {count}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti buvo pašalinti iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {count} citi tika noņemti no grupas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други беа отстранети од групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад бүлгээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya dikeluarkan dari kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့မှ ဖယ်ရှားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble fjernet fra gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्य समूहबाट हटाइएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn verwijderd uit de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart fjerna frå gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena achotsedwa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{count}ਹੋਰਾਂਨੂੰ ਗਰੁੱਪ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników zostali usunięci z grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور له ګروپ څخه ایستل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram removidos do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros foram removidos do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} au fost eliminați din grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других пользователей были удалены из группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su uklonjeni iz grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {count} වෙනත් අය කණ්ඩායමෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}a {count} ďalší boli odstránení zo skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so bili odstranjeni iz skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë u larguan nga grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су уклоњени из групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su uklonjeni iz grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra togs bort från gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wameondolewa kutoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் குழுவிலிருந்து நீக்கப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు సమూహం నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} อื่นๆ ถูกลบออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer gruptan çıkarıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших були вилучені із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر گروپ سے ہٹا دیے گئے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqa guruhdan chiqarib yuborildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} người khác đã bị xoá khỏi nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu bakhutshelwe ngaphandle kweqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}其他成员被移出了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 其他成員 被移出了群組。" + } + } + } + }, + "groupRemovedTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} is uit die groep verwyder." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} تم إزالتهم من المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} qrupdan çıxarıldı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} gōra z group." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} былі выдалены з групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} бяха премахнати от групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} গ্রুপ থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} han estat eliminats del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} byli odebráni ze skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {other_name} wedi cael eu symud o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} blev fjernet fra gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} wurden aus der Gruppe entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} αφαιρέθηκαν από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} were removed from the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} estis forigitaj de la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron expulsados del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} fueron expulsados del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} eemaldati grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} taldetik kendu ziren." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} از گروه حذف شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} poistettiin ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay tinanggal sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont été retirés du groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foron eliminados do grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} an cire su daga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ הוסרו מהקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} समूह से हटा दिए गए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni iz grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} el lettek távolítva a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը հեռացվել են խմբից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dikeluarkan dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanno rimosso {name} e {other_name} dal gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がグループから削除されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {other_name}ს ჯგუფიდან წაიშალნენ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {other_name}‍ ត្រូវបានដកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {other_name} ಪ್ರ ಗುಂಪಿನಿಂದ ತೆಗೆದುಹಾಕಲ್ಪಟ್ಟರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 그룹에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} لە گروپەکە لابران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} basasulwa okuva mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}และ{other_name}ໄດ້ຖືກລຶບອອກຈາກກຸ່ມ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} buvo pašalinti iš grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {other_name} tika noņemti no grupas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} беа отстранети од групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} бүлгээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} dikeluarkan dari kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အဖွဲ့မှ ဖယ်ရှားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble fjernet fra gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} समूहबाट हटाइएको थियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn verwijderd uit de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart fjerna frå gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} achotsedwa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{other_name}ਨੂੰ ਗਰੁੱਪ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użytkownicy {name} i {other_name} zostali usunięci z grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} له ګروپ څخه ایستل شوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram removidos do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} foram removidos do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} au fost eliminați din grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} были удалены из группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni iz grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} කණ්ඩායමෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} boli odstránení zo skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta bila odstranjena iz skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} u larguan nga grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су уклоњени из групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su uklonjeni iz grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} togs bort från gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wameondolewa kutoka kwenye kundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} குழுவிலிருந்து நீக்கப்பட்டனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} సమూహం నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ถูกลบออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} gruptan çıkarıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} були вилучені із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} کو گروپ سے ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} guruhdan chiqarib yuborildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã bị xoá khỏi nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} bakhutshelwe ngaphandle kweqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}被移出了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 被移出了群組。" + } + } + } + }, + "groupRemovedYou" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy is verwyder van {group_name}." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت إزالتك من {group_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} qrupundan çıxarıldınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {group_name}. تان ہٹا دئیے گئے ہیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вас выдалілі з {group_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бяхте премахнат от {group_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনাকে {group_name} থেকে সরানো হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu estat expulsat de {group_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byli jste odebráni z {group_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnwyd chi allan o {group_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blev fjernet fra {group_name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du wurdest aus der Gruppe {group_name} entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έχετε αφαιρεθεί από {group_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You were removed from {group_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estis forigita el {group_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has sido eliminado del grupo {group_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has sido eliminado del grupo {group_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teid eemaldati grupist {group_name}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}-tik kendu zaituzte." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما از {group_name} حذف شدید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinut poistettiin ryhmästä {group_name}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinanggal ka mula sa {group_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez été retiré de {group_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fuches eliminadx de {group_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An cire ku daga {group_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הוסרת מ{group_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको {group_name} से हटा दिया गया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklonjeni ste iz {group_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "El lettél távolítva {group_name} csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք հեռացվել եք {group_name} խմբից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dikeluarkan dari {group_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei stato rimosso da {group_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}から削除されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ჯგუფიდან წაგერთვათ {group_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកត្រូវបានយកចេញពី {group_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {group_name} ನಿಂದ ತೆಗೆದುಹಾಕಲ್ಪಟ್ಟಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name}에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ لە {group_name} لە دەرکرایت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wakugiddwa mu {group_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs buvote pašalinti iš {group_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs esat noņemts no {group_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бевте отстранети од {group_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {group_name} бүлгээс хасагдсан байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda telah dikeluarkan dari {group_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် {group_name} မှ ဖယ်ရှားခံလိုက်ရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ble fjernet fra {group_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई {group_name} बाट हटाइयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent verwijderd uit {group_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du blei fjerna frå {group_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Munachotsedwa ku {group_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ {group_name} ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਸੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usunięto Cię z grupy {group_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو له {group_name} څخه لرې کړل شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você foi removido do {group_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foi removido de {group_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai fost eliminat din {group_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вас исключили из {group_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklonjen si iz {group_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ {group_name} වෙතින් ඉවත් කරන ලදි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boli ste odstránení zo skupiny {group_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bili ste odstranjeni iz {group_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju keni qenë larguar nga {group_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклоњени сте из {group_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izbačeni ste iz {group_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du togs bort från {group_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umetolewa kutoka kwa {group_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {group_name} -இல் இருந்து நீக்கப்பட்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {group_name} నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณได้ถูกลบออกจาก {group_name} แล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{group_name} grubundan çıkarıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви були видалені з {group_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو {group_name} سے ہٹا دیا گیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {group_name} dan chiqarib yuborildingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã bị xoá khỏi {group_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ususwe kwi {group_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已被{group_name}移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已從{group_name}中被移除。" + } + } + } + }, + "groupRemovedYouMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander is uit die groep verwyder." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{count} آخرين تم إزالتهم من المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizdigər {count} nəfər qrupdan çıxarıldınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {count} drīg gōra z group." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {count} іншых былі выдалены з групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други бяхте премахнати от групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} জন অন্য সদস্য গ্রুপ থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {count} altres heu estat eliminats del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších bylo odebráno ze skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill wedi cael eu symud o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre blev fjernet fra gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere wurden aus der Gruppe entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {count} άλλοι αφαιρέθηκαν από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others were removed from the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj estis forigitaj de la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más fueron expulsados del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y otros {count} habéis sido eliminados del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {count} teist eemaldati grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {count} beste taldetik kendu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شماو{count}نفر دیگر از گروه حذف شدید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta poistettiin ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa ay tinanggal sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres ont été supprimé·e·s du groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {count} wasu an cire ku daga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{count} אחרים‏ הוסרתם מהקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {count} अन्य को समूह से हटा दिया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugi ste uklonjeni iz grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy el lettetek távolítva a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} ուրիշներ հեռացվել են խմբից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya telah dikeluarkan dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e altri {count} siete stati rimossi dal gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{count}名 がグループから削除されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვა წაიშალეთ ჯგუფიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} គេផ្សេងទៀត ត្រូវបានដកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರನ್ನು ಗುಂಪಿನಿಂದ ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{count} 명의 사람들이 그룹에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} کەس دیکە لە گروپەکە لابران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {count} abalala musasulwa okuva mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir dar {count} buvo pašalinti iš grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други беа отстранети од групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {count} бусад бүлгээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} yang lain dikeluarkan dari kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {count} ဦး အဖွဲ့မှ ဖယ်ရှားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre ble fjernet fra gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{count} अन्यलाई समूहबाट हटाइयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jij en {count} anderen werden uit de groep verwijderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre vart fjerna frå gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena achotsedwa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰ ਨੂੰ ਗਰੁੱਪ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników zostaliście usunięci z grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور ډله څخه لرې کړل شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram removidos do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros foram removidos do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} ați fost eliminați din grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других пользователей удалены из группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih ste uklonjeni iz grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} වෙනත් අය කණ්ඩායමෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší boli odstránení zo skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugi ste bili odstranjeni iz skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë u larguan nga grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} осталих су уклоњени из групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste uklonjeni iz grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra togs bort från gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mmeondolewa kutoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} பிறர் குழுவிலிருந்து நீக்கப்பட்டுள்ளீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు సమూహం నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {count} คนอื่นๆ ถูกลบออกจากกลุ่ม." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {count} diğer gruptan çıkarıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та ще {count} інших були видалені із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر کو گروپ سے ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqalar guruhdan chiqarib yuborildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{count} người khác đã bị xoá khỏi nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {count} abanye abantu bakhutshelwe ngaphandle kweqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "和其他{count}人被从群组中移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{count} 位其他成員 被移出了群組。" + } + } + } + }, + "groupRemovedYouTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {other_name} is uit die groep verwyder." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و {other_name} تم إزالتهم من المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz{other_name} qrupdan çıxarıldınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {other_name} gōra z group." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {other_name} былі выдалены з групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} бяхте премахнати от групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {other_name} গ্রুপ থেকে সরিয়ে দেওয়া হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {other_name} heu estat eliminats del grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} byli odebráni ze skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {other_name} wedi cael eu symud o'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} blev fjernet fra gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {other_name} wurden aus der Gruppe entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {other_name} αφαιρέθηκαν από την ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {other_name} were removed from the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {other_name} estis forigitaj de la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} fueron expulsados del grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} fueron expulsados del grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {other_name} eemaldati grupist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {other_name} taldetik kendu zaituztete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {other_name} از گروه حذف شدید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {other_name} poistettiin ryhmästä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {other_name} ay tinanggal sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {other_name} avez été retiré·e·s du groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {other_name} an cire ku daga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{other_name}‏ הוסרתם מהקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {other_name} को समूह से हटा दिया गया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} uklonjeni ste iz grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {other_name} el lettetek távolítva a csoportból." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {other_name}֊ը հեռացվել են խմբից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} telah dikeluarkan dari grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {other_name} siete stati rimossi dal gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{other_name} がグループから削除されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {other_name} წაიშალეთ ჯგუფიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {other_name} ត្រូវបានដកចេញពីក្រុមនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {other_name} ಅವರನ್ನು ಗುಂಪಿನಿಂದ ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{other_name}님이 그룹에서 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {other_name} لە گروپەکە لابران." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {other_name} musasulwa okuva mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {other_name} buvo pašalinti iš grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} беа отстранети од групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {other_name} бүлгээс хасагдлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} dikeluarkan dari kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {other_name} အဖွဲ့မှ ဖယ်ရှားခံရသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} ble fjernet fra gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{other_name}लाई समूहबाट हटाइयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {other_name} zijn verwijderd uit de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} vart fjerna frå gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {other_name} achotsedwa mu gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {other_name} ਨੂੰ ਗਰੁੱਪ ਤੋਂ ਹਟਾ ਦਿੱਤਾ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty oraz użytkownik {other_name} zostaliście usunięci z grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {other_name} ډله څخه لرې کړل شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} foram removidos do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} foram removidos do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {other_name} ați fost eliminați din grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и пользователь {other_name} удалены из группы." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {other_name} ste uklonjeni iz grupe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {other_name} කණ්ඩායමෙන් ඉවත් කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} boli odstránení zo skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {other_name} sta bila odstranjena iz skupine." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {other_name} u larguan nga grupi." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {other_name} су уклоњени из групе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} ste uklonjeni iz grupe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {other_name} togs bort från gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {other_name} mmeondolewa kutoka kwenye kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {other_name} குழுவிலிருந்து நீக்கப்பட்டுள்ளீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {other_name} సమూహం నుండి తొలగించబడ్డారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {other_name} ถูกลบออกจากกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {other_name} gruptan çıkarıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {other_name} були видалені із групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {other_name} کو گروپ سے ہٹا دیا گیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {other_name} guruhdan chiqarib yuborildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{other_name} đã bị xoá khỏi nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {other_name} bakhutshelwe ngaphandle kweqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name}被从该群组中移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name} 被移出了群組。" + } + } + } + }, + "groupRemoveMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder gebruiker en hul boodskappe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder gebruikers en hul boodskappe" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين ورسائلهم" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين ورسائلهم" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدم ورسائله" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين ورسائلهم" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين ورسائلهم" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين ورسائلهم" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçini və mesajlarını sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçiləri və mesajlarını sil" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "مستخدم اور انے سار پیغام برس ک" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "مستخدم اور انے سار پیغاما برس ک" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў і іх паведамленні" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў і іх паведамленні" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальніка і яго паведамленні" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў і іх паведамленні" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на потребител и неговите съобщения" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на потребители и техните съобщения" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "দীর্ঘ বার্তা সহ ব্যবহারকারীকে সরান" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "দীর্ঘ বার্তা সহ ব্যবহারকারীদের সরান" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix l'usuari i els seus missatges" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix els usuaris i els seus missatges" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele a jejich zprávy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele a jejich zprávy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele a jeho zprávy" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele a jejich zprávy" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr a'u negeseuon" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr a'u negeseuon" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddiwr a'u negeseuon" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr a'u negeseuon" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr a'u negeseuon" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr a'u negeseuon" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brugeren og deres beskeder" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brugerne og deres beskeder" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied und dessen Nachrichten entfernen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglieder und deren Nachrichten entfernen" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση χρήστη και των μηνυμάτων του" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση χρηστών και των μηνυμάτων τους" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove user and their messages" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove users and their messages" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi uzanton kaj iliajn mesaĝojn" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi uzantojn kaj iliajn mesaĝojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuario y sus mensajes" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuarios y sus mensajes" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar usuario y sus mensajes" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar usuario y sus mensajes" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda kasutaja ja nende sõnumid" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda kasutajad ja nende sõnumid" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzailea eta haien mezuak kendu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzaileak eta haien mezuak kendu" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربر و پیام هایش را حذف کنید" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربران و پیام هایشان را حذف کنید" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista käyttäjä ja hänen viestinsä" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista käyttäjät ja heidän viestinsä" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin ang user at ang kanilang mga mensahe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin ang mga user at ang kanilang mga mensahe" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer l'utilisateur et ses messages" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer les utilisateurs et leurs messages" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire mai amfani da saƙonnin su" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire masu amfani da saƙonninsu" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים והודעותיהם" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמש והודעותיו" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים והודעותיהם" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים והודעותיהם" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता और उनके भेजे हुए संदेशो को हटाएं" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ताओं और उनके भेजे हुए संदेशो को हटाएं" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika i njegove poruke" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó és üzeneteik eltávolítása" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználók és üzeneteik eltávolítása" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել օգտատիրոջը և նրանց հաղորդագրությունները" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել օգտատերերին և նրանց հաղորդագրությունները" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus pengguna dan pesan mereka" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi l'utente e i suoi messaggi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi gli utenti e i loro messaggi" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーとそのメッセージを削除" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლის წაშლა და მათი შეტყობინებები" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლების და მათი შეტყობინებების მოხსნა" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកអ្នកប្រើនិងសាររបស់ពួកគេ" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ಮತ್ತು ಅವರ ಸಂದೇಶಗಳನ್ನು ತೆಗೆದುಹಾಕಿ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ಮತ್ತು ಅವರ ಸಂದೇಶಗಳನ್ನು ತೆಗೆದುಹಾಕಿ" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 및 메시지 제거" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی بەکارهێنەر و پەیامەکانیان" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارەکان و پیامەکانیشان لاببردن" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo omukozesa nebamazima bibikwata" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo abakozesa nebamazima bibikwata" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus ir jų žinutes" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus ir jų žinutes" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotoją ir jo žinutes" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus ir jų žinutes" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани корисник и неговите пораки" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани корисници и нивните пораки" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг болон тэдний мессежийг устгах" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчдийг болон тэдний мессежийг устгах" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih keluar pengguna dan mesej mereka" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူများ နှင့် ၎င်းတို့၏မက်ဆေ့ချ်များကို ဖယ်ရှားမည်" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukeren og meldinga deres" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukere og beskjedene deres" + } + } + } + } + } + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता र उनीहरूको सन्देशहरू हटाउनुहोस्" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ताहरू र उनीहरूको सन्देशहरू हटाउनुहोस्" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder gebruiker en hun berichten" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder gebruikers en hun berichten" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukaren og meldingane deira" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukarar og meldingane deira" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani wogwiritsa ntchito ndi mauthenga awo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani ogwiritsa ntchito ndi mauthenga awo" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਰਤੋਂਕਾਰ ਅਤੇ ਉਨ੍ਹਾਂ ਦੇ ਸਨੇਹੇ ਹਟਾਓ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਰਤੋਂਕਾਰਾਂ ਅਤੇ ਉਹਨਾ ਦੇ ਸੰਕਰਟਹਕਰਾਂ ਨੂੰ ਹਟਾਓ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkowników i ich wiadomości" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkowników i ich wiadomości" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkownika i jego wiadomości" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkowników i ich wiadomości" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارونکی او د هغه پیغامونه لرې کړئ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاروونکي او د هغوی پیغامونه لرې کړئ" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover usuário e suas mensagens" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover usuários e suas mensagens" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover utilizador e as suas mensagens" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover utilizadores e as suas mensagens" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorii și mesajele acestora" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorul și mesajele acestuia" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorii și mesajele acestora" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей и их сообщения" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей и их сообщения" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователя и его сообщения" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей и их сообщения" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika i njihove poruke" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලක සහ ඔවුන්ගේ පණිවිඩ ඉවත් කරන්න" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලකයින් සහ ඔවුන්ගේ පණිවිඩ ඉවත් කරන්න" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov a ich správy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov a ich správy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľa a jeho správy" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov a ich správy" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnike in njihova sporočila" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnika in njegova sporočila" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnike in njihova sporočila" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnika in njuna sporočila" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqi përdoruesin dhe mesazhet e tyre" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqi përdoruesit dhe mesazhet e tyre" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони кориснике и њихове поруке" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони корисника и његове поруке" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони кориснике и њихове поруке" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika i njihove poruke" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike i njihove poruke" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort användare och deras meddelanden" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort användare och deras meddelanden" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa mtumiaji na jumbe zao" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa watumiaji na jumbe zao" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீது அவர் தகவல்கள் ஒட்டுவதின் முகம்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "கட்டும் முழுக் செய்திகள் இணைக்கும் வசம்" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారిని మరియు వారి సందేశాలను తొలగించు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారులను మరియు వారి సందేశాలను తొలగించు" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบผู้ใช้และข้อความของพวกเขา" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıyı ve mesajlarını sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıları ve mesajlarını sil" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів та їхні повідомлення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів та їхні повідомлення" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувача та його повідомлення" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів та їхні повідомлення" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارف کو اور ان کے پیغامات کو حذف کریں" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "صارفین کو اور ان کے پیغامات کو حذف کریں" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchi va ularning xabarlarini olib tashlash" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchilar va ularning xabarlarini olib tashlash" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa người dùng và tin nhắn của họ" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa umsebenzisi kunye nemiyalezo yabo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa abasebenzisi kunye nemiyalezo yabo" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除用户及其消息" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除成員及其訊息" + } + } + } + } + } + } + } + } + }, + "groupRemoveUserOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder gebruiker" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder gebruikers" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدم" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة المستخدمين" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçini sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstifadəçiləri sil" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف برجی مستخدم" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف برجی مستخدماں" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальніка" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць карыстальнікаў" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на потребителя" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на потребители" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যবহারকারীকে সরান" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ব্যবহারকারীদের সরান" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix usuari" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix usuaris" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit uživatele" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddiwr" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu defnyddwyr" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brugeren" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brugerne" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglied entfernen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglieder entfernen" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση Απλά Χρήστη" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση Χρηστών" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove user" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove users" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi uzanton" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi uzantojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuario" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuarios" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar usuario" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar usuarios" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda kasutaja" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda kasutajad" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzailea kendu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzaileak kendu" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربر را حذف کنید" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاربران را حذف کنید" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista käyttäjä" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista käyttäjät" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin ang user" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin ang mga user" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer l'utilisateur" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer les utilisateurs" + } + } + } + } + } + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuario" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar usuarios" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire mai amfani" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire masu amfani" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמש" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר משתמשים" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ता को हटाएं" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपयोगकर्ताओं को हटाएं" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó eltávolítása" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználók eltávolítása" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել օգտատիրոջը" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել օգտատերերին" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus pengguna" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi l'utente" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi gli utenti" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ユーザーを削除" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოხსნა მომხმარებელი" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომხმარებლების მოხსნა" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកអ្នកប្រើ" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಿ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬಳಕೆದಾರರನ್ನು ತೆಗೆದುಹಾಕಿ" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 제거" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی بەکارهێنەر" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کارەکان لاببردن" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo omukozesa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo abakozesa" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotoją" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti naudotojus" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани корисник" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани корисници" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгчийг устгах" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгч устгах" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih keluar pengguna" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုသူများကို ဖယ်ရှားမည်" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern bruker" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukere" + } + } + } + } + } + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ता हटाउनुहोस्" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रयोगकर्ताहरूलाई हटाउनुहोस्" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder gebruiker" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder gebruikers" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukaren" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brukarar" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani wogwiritsa ntchito" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani ogwiritsa ntchito" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਰਤੋਂਕਾਰ ਹਟਾਓ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਰਤੋਂਕਾਰਾਂ ਨੂੰ ਹਟਾਓ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pamiętaj użytkowników" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkowników" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkownika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń użytkowników" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "یو کاروونکی لرې کړئ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاروونکو لرې کړئ" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover usuário" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover usuários" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Utilizador" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover utilizadores" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorii" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorul" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină utilizatorii" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователя" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пользователей" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලකයෙකු ඉවත් කරන්න" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිශීලකයින් ඉවත් කරන්න" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť používateľov" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnike" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnike" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani uporabnika" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe përdoruesin" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqi përdoruesit" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони кориснике" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони корисника" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони кориснике" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni korisnike" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort användare" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort användare" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa mtumiaji" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa watumiaji" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழுவிலிருந்து அளவை மட்டுமே அகற்றவும்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயனர்களை அகற்று" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారీని తొలగించు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారులను తొలగించు" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบผู้ใช้" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıyı sil" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcıları sil" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувача" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити користувачів" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف صارف کو حذف کریں" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف صارفین کو حذف کریں" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchini olib tashlash" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanuvchilarni olib tashlash" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa người dùng" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa umsebenzisi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa abasebenzisi" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除用户" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除成員" + } + } + } + } + } + } + } + } + }, + "groupSetDisplayPicture" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel groep vertoon prent" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين صورة مجموعة العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup ekran şəklini ayarla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاره نمای گروہ مقرر کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усталюйце выяву для групы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на профилна снимка на групата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ প্রদর্শন চিত্র সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definiu la imatge del grup" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit zobrazovaný obrázek skupiny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Llun Arddangos y Grŵp" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil gruppens profilbillede" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppen-Anzeigebild festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Εικόνας Ομάδας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Display Picture" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Grupbildon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Imagen de Grupo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer imagen de perfil del grupo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra grupi kuvapilt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldearen erakutsi argazkia ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم تصویر نمایشی گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta ryhmän näyttökuva" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang Display Picture ng Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir la photo du groupe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Imaxe de Grupo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Hoton Nunin Rukuni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר תמונת פרופיל קבוצתית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह डिस्प्ले तस्वीर सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi grupnu sliku za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoportprofilkép beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել խմբի նկարը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Tampilan Gambar Grup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta immagine del gruppo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループのアイコン画像を設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფური ავატარის არჩევა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់រូបបង្ហាញក្រុម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪಿನ ಡಿಸ್ಪ್ಲೇ ಚಿತ್ರವನ್ನು ಸೆಟ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 프로필 사진 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانانی وێنەی پیشانده‌رەوی گروپ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Ekifaananyi Ekirabika ky'Ekibiina" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti grupės rodomą paveikslėlį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Grupas Atainojamo Attēlu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Слика за Групата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн дэлгэцийн зургаа тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Gambar Paparan Kumpulan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ပုံရိပ် ဖြန့်ဝေမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett gruppeprofilbilde" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह प्रदर्शन तस्वीर सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groepsfoto instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Display Picture" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Display Picture" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੂਹ ਡਿਸਪਲੇ ਤਸਵੀਰ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw zdjęcie profilowe grupy" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګروپ ډیسپلې انځور تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Imagem do Grupo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Imagem a Exibir do Grupo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează imaginea afișată de grup" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Установить изображение группы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi grupnu sliku profila" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහ ප්‍රදර්ශන ඡායාරූපය සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť profilový obrázok skupiny" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi skupinsko prikazno sliko" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Paraqitjen e Grupit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави групну слику профила" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi sliku grupe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange gruppvisningsbild" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Picha ya Kikundi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு காட்டி புகைப்படத்தை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గ్రూప్ ప్రదర్శన చిత్రాన్ని సెట్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งรูปภาพกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup Profil Resmini Seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрати картинку для групи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کی ڈسپلے تصویر سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guruh displey rasmini belgilang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập Hình ảnh Đại diện Nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Group Display Picture" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置群组头像" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定群組顯示圖片" + } + } + } + }, + "groupUnknown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekende Groep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجموعة غير معروفة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinməyən Qrup" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم گروپ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невядомая Група" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната група" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অজানা গ্রুপ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup desconegut" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznámá skupina" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grŵp Anhysbys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukendt gruppe" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekannte Gruppe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άγνωστη Ομάδα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown Group" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonita Grupo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo desconocido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo desconocido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tundmatu grupp" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezezagun Taldea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه ناشناس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuntematon ryhmä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi kilalang Grupo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groupe inconnu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo descoñecido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a san ƙungiya ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבוצה לא ידועה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनजान समूह" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata grupa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen csoport" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ խումբ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup tidak dikenal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppo sconosciuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "不明なグループ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი ჯგუფი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្រុមមិនស្គាល់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ ಗುಂಪು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 그룹" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپی نەناسراو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekibinja Ekitaategeerekesebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nežinoma grupė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nezināma grupa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната група" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тодорхойгүй бүлэг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpulan Tidak Diketahui" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မသိ Group" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjent gruppe" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अज्ञात समूह" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekende groep" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjend gruppe" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulu Losadziwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਜਾਣ ਸਮੂਹ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieznana grupa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلومه ډله" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo Desconhecido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo Desconhecido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup necunoscut" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неизвестная группа" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata grupa" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා කණ්ඩායම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznáma skupina" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznana skupina" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup i panjohur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната група" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznato grupa" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okänd grupp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kundi lisilojulikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறியாத குழு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తెలియని సమూహం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลุ่มที่ไม่ทราบ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen Grup" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невідома група" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم گروپ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma’lum guruh" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhóm không rõ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iqela elingaziwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知群组" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知群組" + } + } + } + }, + "groupUpdated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep opgedateer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تحديث المجموعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup güncəlləndi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ آپڈیٹ بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Група абноўлена" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групата е обновена" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গ্রুপ আপডেট করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup actualitzat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupina aktualizována" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grŵp wedi'i ddiweddaru" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe opdateret" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe aktualisiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η ομάδα ενημερώθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group updated" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo ĝisdatigita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo actualizado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo actualizado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupp uuendatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talde eguneratua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه به‌روزرسانی شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryhmä päivitetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na-update ang grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le groupe a été mis à jour" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo actualizado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rukunin ya sabunta" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קבוצה עודכנה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह अपडेट किया गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa ažurirana" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csoport frissítve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խմբը թարմացվել է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup diperbarui" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppo aggiornato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "グループが更新されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჯგუფი განახლდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្រុមបានធ្វើបច្ចុប្បន្នភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಂಪು ನವೀಕರಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "그룹 정보가 업데이트되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ نوێکرایەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekibinja kya kunjibwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupė atnaujinta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa atjaunināta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групата е ажурирана" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлэг шинэчлэгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpulan diperbarui" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အုပ်စုအပ်ဒိတ်လုပ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe oppdatert" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह अद्यावधिक गरियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Groep bijgewerkt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gruppe oppdatert" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulu latsitsidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa zaktualizowana" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډله تازه شوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo atualizado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupo atualizado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupul a fost actualizat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Группа обновлена" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa je ažurirana" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමූහයට නවීකරණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skupina bola aktualizovaná" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skpina je bila posodobljena" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupi u përditësua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Група ажурирана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupa je ažurirana" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grupp uppdaterad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kikundi kimeboreshwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குழு புதுப்பிக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహం నవీకరించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลุ่มมีการปรับปรุง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grup güncellendi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Групу оновлено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروپ کو اپ ڈیٹ کردیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamoa yangilandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã cập nhật nhóm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iqela lihlaziyiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "群组已更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "群組已更新" + } + } + } + }, + "helpFAQ" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الأسئلة الأكثر طرحًا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "TVS" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Частыя пытанні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "ЧЗВ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "PMF" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cwestiynau Cyffredin" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Häufig gestellte Fragen (FAQ)" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συχνές Ερωτήσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oftaj Demandoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preguntas frecuentes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preguntas Frecuentes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "KKK" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سؤالات متداول" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "UKK" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambayoyi akai-akai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שאלות נפוצות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अकसर किये गए सवाल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "GYIK" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "ՀՏՀ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "よくある質問" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំណួរដែលសួរញឹកញាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "자주 묻는 질문" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرسەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "DUK" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biežāk uzdotie jautājumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "ЧПП" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгээмэл асуултууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မကြာခဏမေးလေ့ရှိသော မေးခွန်းများ(FAQ)" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ofte Stilte Spørsmål" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रणाली सेटिङ्गहरु पछ्याउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veelgestelde vragen (FAQ)" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ofte stilte spørsmål" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پوښتنې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perguntas Frequentes" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ (Perguntas Mais Frequentes)" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Întrebări frecvente" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිති පැණ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "ЧПП" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maswali Yanayoulizwa Sana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அடிக்கடி கேட்கப்படும் கேள்விகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సహాయ విధానం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "SSS" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Часті питання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "عمومی سوالات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tez-tez so'raladigan savollar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Câu hỏi thường gặp" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "FAQ" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "常见问题" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "常見問題" + } + } + } + }, + "helpHelpUsTranslateSession" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help ons om {app_name} te vertaal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساعدنا في ترجمة {app_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tərcüməsinə kömək et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدار اُس گپ {app_name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дапамажыце нам перакласці {app_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помогни ни да преведем {app_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} অনুবাদ করতে আমাদের সাহায্য করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajuda'ns a traduir {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomozte nám přeložit {app_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helpwch ni gyfieithu {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjælp os med at oversætte {app_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilf uns {app_name} zu übersetzen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Βοηθήστε μας να μεταφράσουμε το {app_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help us translate {app_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helpu nin traduki {app_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayúdanos a traducir {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayúdanos a traducir {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aita meil tõlkida {app_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagundu itzultzen {app_name}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به ما در ترجمهٔ {app_name} کمک کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auta kääntämään {app_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulungan kami na isalin ang {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aidez-nous à traduire {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taimaka mana mu fassara {app_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עזרו לנו לתרגם את {app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हमें {app_name} का अनुवाद करने में मदद करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomozite nam prevesti {app_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segíts lefordítani {app_name}-t" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգնեք մեզ թարգմանելով {app_name}֊ը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bantu kami menerjemahkan {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aiutaci a tradurre {app_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}の翻訳にご協力ください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაგვეხმარეთ {app_name}-ის თარგმნაში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជួយយើងបកប្រែ {app_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಮಗೆ ಸಹಾಯ ಮಾಡಿ {app_name} ಇನ್ನುಮುಂದೆ ಸಾಹಿತ್ಯ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 번역 돕기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "یارمەتی پێ بدە بۆ وەرگێڕان {app_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twagala tukuyambe kugya mu ngeri endala {app_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padėkite išversti {app_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palīdzi mums pārtulkot {app_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помогнете ни да го преведеме {app_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ийг орчуулахаар туслах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bantu kami terjemah {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကို ဘာသာပြန်နိုင်ရန် ကျွန်တော်တို့ကို ကူညီပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjelp oss med å oversette {app_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हामीलाई {app_name} अनुवाद गर्न सहयोग गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help ons {app_name} te vertalen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjelp oss med å oversette {app_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tithandizeni kutanthauzira {app_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਡੇ ਨੂੰ {app_name} ਨੂੰ ਅਨੁਵਾਦ ਕਰਨ ਵਿੱਚ ਮਦਦ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomóż nam przetłumaczyć aplikację {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ سره مرسته وکړئ {app_name} وژباړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajude-nos a traduzir {app_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajude-nos a traduzir {app_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajută-ne să traducem {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помогите нам перевести {app_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomozite nam da prevedemo {app_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} පරිවර්තන කිරීමට අපට උදවු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomôžte nám preložiť {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomagajte nam prevajati {app_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na ndihmo të përkthejmë {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помозите нас у превођењу {app_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomozite nam da prevedemo {app_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjälp oss översätta {app_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tusaidie Kutafsiri {app_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} க்கான மொழிபெயர்ப்பில் எங்களுக்கு உதவுங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ను అనువదించడంలో మాకు సహాయపడండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ช่วยเราแปล {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}'yi çevirmemize yardımcı olun" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Допоможіть нам перекласти {app_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کا ترجمہ کرنے میں ہماری مدد کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarjima qilishimizga yordam bering" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giúp chúng tôi dịch {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siza uncede uguqulele i-{app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "帮助我们本地化{app_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "幫助我們翻譯 {app_name}" + } + } + } + }, + "helpReportABug" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapporteer 'n fout" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الإبلاغ عن خطأ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir xətanı bildir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بگ رپورٹ کنت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведаміць аб памылцы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Докладвай за проблем" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বাগ রিপোর্ট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informeu d'un error" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nahlásit chybu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adrodd nam" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapporter en fejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melde einen Fehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναφορά Σφάλματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Report a bug" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raporti eraron" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reportar un error" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reportar Error" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teata veast" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akats bat salatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گزارش خرابی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoita virheestä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mag-ulat ng Bug" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Signaler un bug" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informar dun erro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayyana bug" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דווח על תקלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बग सूचित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijavi bug" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba jelentése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդել սխալի մասին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laporkan Bug" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segnala un bug" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "バグを報告" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომის შესახებ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រាយការណ៍ពីកំហុសមួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದೋಷವನ್ನು ವರದಿ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "버그 제보" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "راپۆرتی هەڵە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alaga ekivvuuni" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešti apie klaidą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņot par kļūdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пријави грешка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Алдааг мэдээлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laporkan pepijat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြဿနာတစ်ခုကို အစီရင်ခံပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapporter en feil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बग रिपोर्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meld een bug" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapporter en bug" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotokozerani Chifukwa cholakwikacho" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬੱਗ ਦੀ ਰਿਪੋਰਟ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgłoś błąd" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یو غلطي راپور کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reportar um erro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reportar um Erro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raportează o eroare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщить об ошибке" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijavi grešku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දෝෂයක් වාර්තා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nahlásiť chybu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijavite napako" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raporto një difekt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пријави грешку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijavi grešku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapportera en bugg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ripoti hitilafu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முடையைச் செய்யல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "బగ్‌ను నివేదించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายงานบั๊ก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir hata bildir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомити про помилку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بگ کی اطلاع دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xato haqida habar bering" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Báo cáo lỗi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xela impazamo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bug反馈" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回報錯誤" + } + } + } + }, + "helpReportABugDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel 'n paar besonderhede om ons te help om jou probleem op te los. Exporteer jou logboeke, en laai dan die lêer deur {app_name} se Hulp lessenaar." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارك بعض التفاصيل لمساعدتنا في حل مشكلتك. صدّر السجلات الخاصة بك، ثم قم بتحميل الملف عبر مكتب المساعدة الخاص بـ {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probleminizi həll etməyimizə kömək olması üçün bəzi detalları bizimlə paylaşın. Jurnalınızı xaricə köçürün, daha sonra {app_name} Kömək Masası üzərindən faylı göndərin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چند تفصيلات بانٹیں تاکہ ہم آپ کے مسئلے کو حل کر سکیں۔ اپنے لاگ ایکسپورٹ کریں اور پھر {app_name} کے ہیلپ ڈیسک کے ذریعے اپلوڈ کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Падзяліцеся некаторымі падрабязнасцямі, каб дапамагчы нам вырашыць вашу праблему. Экспартуйце свае лагі, а затым загрузіце файл праз службу падтрымкі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Споделете някои детайли, за да ни помогнете да разрешим вашия проблем. Експортирайте вашите логове и след това качете файла чрез поддръжката на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার সমস্যার সমাধান করতে সাহায্য করতে কয়েকটি তথ্য শেয়ার করুন। আপনার লগ্‌স রপ্তানি করুন, তারপর ফাইল আপলোড করুন {app_name} এর সাহায্য ডেস্ক।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartiu alguns detalls per ajudar-nos a resoldre el vostre problema. Exporteu els vostres registres i després carregueu el fitxer a través del Servei d'Assistència de {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílejte detaily, abychom mohli vyřešit váš problém. Exportujte své logy, pak nahrajte soubor přes Help Desk aplikace {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch rywfaint o fanylion i'n helpu i ddatrys eich mater. Allforio eich cofnodiadau, yna lanlwythwch y ffeil drwy Desg Gymorth {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del nogle detaljer for at hjælpe os med at løse dit problem. Eksporter dine logs, og upload derefter filen via {app_name}'s Hjælp Desk." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teile uns einige Details mit, um dein Problem zu lösen. Exportiere deine Protokolle und lade die Datei dann über den Helpdesk von {app_name} hoch." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κοινοποιήστε κάποια στοιχεία για να μας βοηθήσετε να επιλύσουμε το ζήτημά σας. Εξαγάγετε τους καταγραφές σας και στη συνέχεια ανεβάστε το αρχείο μέσω του Help Desk του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share some details to help us resolve your issue. Export your logs, then upload the file through {app_name}'s Help Desk." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigu kelkajn detalojn por helpi nin solvi vian aferon. Eksportu viajn protokolojn kaj poste alŝutu la dosieron per la Helpa Skribotablo de {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comparte algunos detalles para ayudarnos a resolver tu problema. Exporta tus registros, luego sube el archivo a través del Help Desk de {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comparte algunos detalles para ayudarnos a resolver tu problema. Exporta tus registros, luego sube el archivo a través del Help Desk de {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga mõnda teavet, et saaksime teie probleemi lahendada. Ekspordi oma logid ja lae fail üles {app_name}'i abikeskuse kaudu." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xehetasun batzuk partekatu zure arazoa konpontzen laguntzeko. Esportatu zure erregistroak, eta igo fitxategia {app_name} 's Help Desk bidez." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برخی از جزئیات را برای کمک به حل مسئله شما به اشتراک بگذارید. لوگ های خود را صادر کنید و سپس فایل را از طریق مرکز راهنمایی {app_name} بارگذاری کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa meille tietoja, jotta voimme ratkaista ongelmasi. Vie lokeja ja lataa tiedosto sitten {app_name} Tukipisteeseen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ibahagi ang ilang mga detalye upang matulungan kaming malutas ang iyong isyu. I-export ang iyong mga log, pagkatapos i-upload ang file sa pamamagitan ng Help Desk ng {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partagez quelques détails pour nous aider à résoudre votre problème. Exportez vos journaux, puis téléchargez le fichier via le centre d'assistance de {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilla algúns detalles para axudarnos a resolver o teu problema. Exporta os teus rexistros e logo carga o ficheiro a través da Axuda de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raba wasu cikakkun bayanai domin taimakawa wajen magance matsalar ku. Fitar da rajistarku, sannan ku ɗora fayil ɗin ta hanyar Teburin Taimako na {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שתף פרטים שיעזרו לנו לפתור את הבעיה שלך. ייצא את היומנים שלך, ואז העלה את הקובץ דרך עמוד העזרה של {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने मुद्दे को हल करने में हमारी मदद करने के लिए कुछ विवरण साझा करें। अपने लॉग्स को निर्यात करें, फिर फ़ाइल को {app_name} के हेल्प डेस्क के माध्यम से अपलोड करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijelite neke podatke kako biste nam pomogli riješiti vaš problem. Izvezite svoje zapisnike, a zatim prenesite datoteku putem {app_name} stola za pomoć." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ossza meg velünk a problémája részleteit. Exportálja a naplóit, majd töltse fel a fájlt a(z) {app_name} Help Desk-en keresztül." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվեք որոշ մանրամասներով, որպեսզի մենք կարողանանք լուծել ձեր խնդիրը։ Արտահանեք ձեր գրանցումները, ապա վերբեռնեք ֆայլը {app_name}-ի Աջակցության բաժնում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan beberapa rincian untuk membantu kami menyelesaikan masalah Anda. Ekspor log Anda, kemudian unggah berkas melalui Help Desk {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi alcuni dettagli per aiutarci a risolvere il tuo problema. Esporta i tuoi log, poi carica il file tramite l'Help Desk di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "詳細を共有して、私たちが問題を解決するのを手伝ってください。ログをエクスポートし、{app_name}のヘルプデスクを通じてファイルをアップロードしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიუთითეთ დეტალები, რათა დაგვეხმარებოდეთ პრობლემის გადაჭრაში თე. იმპორტეთ თქვენი ლოგები და შემდეგ ატვირთეთ ფაილი {app_name}-ის დახმარების ცენტრში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែកព័ត៌មាននៃបញ្ហារបស់អ្នកដើម្បីជួយយើងដោះស្រាយបញ្ហា។ គម្រោងកំណត់ហេតុរបស់អ្នកហើយបញ្ចូលឯកសារនោះតាមរយៈជំនួយ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಸಮಸ್ಯೆಯನ್ನು ಪರಿಹರಿಸಲು μας ಮಾಹಿತಿ ಹಂಚಿಕೊಳ್ಳಿ. ನಿಮ್ಮ ಲಾಗ್‌ಗಳನ್ನು ಎಕ್ಸ್ಪೋರ್ಟ್ ಮಾಡಿ, ನಂತರ ಫೈಲ್ ಅನ್ನು {app_name} ಯ ಸಹಾಯ ಡೆಸ್ಕ್ ಮೂಲಕ ಅಪ್ಲೋಡ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "문제를 해결하는 데 도움이 될 수 있도록 몇 가지 세부 정보를 공유해 주세요. 로그를 내보낸 다음 {app_name}의 도움말 센터에 파일을 업로드하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "کورتە بازەشەکان هاوبەش بەرز بن و چاره‌که‌کن ئاڵۆزی کانتانە داده‌مێ. پارەگەڕەکانی گەیاندنەوە بە ناوی {app_name} بەیاری نوو و ئاڵۆزی گودان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana ebimu ku bisengekerezo okutuyamba okunaaliza ensonga yo. Export your logs, then upload the file through {app_name}'s Help Desk." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasidalinkite keletu detalių, kad galėtume išspręsti jūsų problemą. Eksportuokite savo žurnalus, tada įkelkite failą per {app_name} pagalbos tarnybą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, dalies ar dažām detaļām, lai mums palīdzētu atrisināt tavu problēmu. Eksportē savus log failus un pēc tam augšupielādē failu caur {app_name} palīdzības dienestu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели некои детали за да ни помогнеш да го решиме твојот проблем. Експортирај ги дневрниците, потоа прикачи ја датотеката преку {app_name}'s Help Desk." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Асуудлыг шийдвэрлэхэд туслах мэдээллээрэй хуваалцаарай. Логуудыг экспортлосны дараа {app_name}'s Тусламжийн ширээн дээр хуулж өгнө үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi beberapa butiran untuk membantu kami menyelesaikan isu anda. Eksport log anda, kemudian muat naik fail melalui Meja Bantuan {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ပြဿနာဖြေရှင်းရန် ကူညီရန်အချက်အလက်အချို့မျှဝေပါ။ လောက်မှာအထုတ်ကိုအင်တင်ပြီးနောက်တွင် {app_name}'s Help Desk တွင်ဖိုင်ကို အော်လိုခ်ခ်ခုံ၏" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del noen detaljer for å hjelpe oss med å løse problemet ditt. Eksporter loggene dine, og last deretter opp filen gjennom Hjelpesenteret til {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हाम्रो सहयोग डेस्क मार्फत फाइल अपलोड गर्नुहोस् {app_name}' को।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel enkele details om ons te helpen uw probleem op te lossen. Exporteer uw logs en upload het bestand vervolgens via de Help Desk van {app_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del nokre detaljar for å hjelpe oss med å løyse problemet ditt. Eksporter loggane dine, og last opp fila gjennom {app_name} sin Hjelp Desk." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share some details to help us resolve your issue. Export your logs, then upload the file through {app_name}'s Help Desk." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਦੀ ਸਹਾਇਤਾ ਦੇਸ਼ ਵਿੱਚ ਆਪਣੇ ਲਾਗਸ ਨਿਰਯਾਤ ਕਰੋ, ਫ਼ਿਰ ਫ਼ਾਈਲ ਅੱਪਲੋਡ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępnij szczegóły, które pomogą nam rozwiązać problem. Wyeksportuj dzienniki, a następnie prześlij plik za pośrednictwem działu pomocy aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ځینې جزییات شریک کړئ ترڅو موږ ستاسو مسئله حل کړو. خپل لاګونه صادر کړئ، بیا فایل د {app_name} د مرستې دفتر له لارې اپلوډ کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhe alguns detalhes para nos ajudar a resolver seu problema. Exporte seus logs e faça o upload do arquivo através do Help Desk da {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhe alguns detalhes para nos ajudar a resolver o seu problema. Exporte os seus registos e envie o arquivo para o Suporte Técnico do {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Împărtășește câteva detalii pentru a ne ajuta să rezolvăm problema. Exportă jurnalele, apoi încarcă fișierul prin Serviciul de asistență {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделитесь дополнительными данными, чтобы помочь нам решить проблему. Экспортируйте журнал отладки, а затем загрузите файл через Центр помощи {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijelite neke detalje kako bismo vam pomogli riješiti problem. Izvezite svoje logove, a zatim učitajte datoteku putem {app_name}'s Help Desk." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} හි උදව් මධ්‍යස්ථානය හරහා ඔබගේ ලොග්ස් අප වෙත එවීමෙන් අපගේ ගැටලුව විසඳීමට සහය වන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeľte sa o niektoré podrobnosti, ktoré nám pomôžu vyriešiť váš problém. Exportujte svoje protokoly a potom nahrajte súbor prostredníctvom help desku {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delite nekaj podrobnosti, da nam pomagate rešiti vaš problem. Izvozi svoje dnevnike, nato naloži datoteko prek {app_name}'s Help Desk." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndani disa detaje për të na ndihmuar të zgjidhim çështjen tuaj. Eksportoni regjistrat tuaj, pastaj ngarkoni skedarin përmes ndihmës së {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подели неке детаље како би нам помогао да решимо проблем. Извези своје записе, затим отпреми фајл преко {app_name}-ове подршке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podelite neke detalje kako biste nam pomogli da rešimo vaš problem. Izvezite svoje logove, a zatim ih prenesite putem pomoćnog centra {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela några detaljer för att hjälpa oss att lösa ditt problem. Exportera dina loggar och ladda sedan upp filen genom {app_name}'s Help Desk." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki maelezo machache kutusaidia kutatua tatizo lako. Hamisha maingizo yako, kisha pakia faili kupitia Kituo cha Msaada cha {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் பிரச்சினையைத் தீர்க்க உதவ சில விவரங்களைப் பகிரவும். உங்கள் பதிவுகளை ஏற்றுமதி செய்து, பின்னர் {app_name} இன் உதவி மையத்திற்கு கோப்பு பதிவேற்றவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ సమస్యను పరిష్కరించడానికి మాకు సహాయపడేందుకు కొంత సమాచారాన్ని పంచుకోండి. మీ లాగ్లను ఎగుమతీ చేసి, ఆ ఫైల్ను {app_name}'s సహాయక క్షేత్రం ద్వారా అప్‌లోడ్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งรายละเอียดบางอย่างเพื่อช่วยให้เราตรวจสอบปัญหาของคุณ ส่งบันทึกเหตุการณ์ของคุณ แล้วอัปโหลดไฟล์ผ่านระบบช่วยเหลือของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sorununuzu çözmemize yardımcı olmak için bazı ayrıntılar paylaşın. Günlüklerinizi dışa aktarın ve ardından dosyayı {app_name}'in Destek Merkezi'ne yükleyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поділіться деякими деталями, щоб допомогти нам розв'язати вашу проблему. Експортуйте свої журнали, а потім завантажте файл через службу підтримки {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے مسئلے کو حل کرنے میں ہماری مدد کرنے کے لیے کچھ تفصیلات شیئر کریں۔ اپنے لاگز ایکسپورٹ کریں، پھر فائل کو {app_name} کے ہیلپ ڈیسک کے ذریعے اپ لوڈ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muammoingizni hal qilishimizga yordam berish uchun ba'zi ma'lumotlarni bo'lishing. Lopalarni eksport qiling, keyin faylni {app_name} ning Yordam xizmatiga yuklang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chia sẻ một số chi tiết để giúp chúng tôi giải quyết vấn đề của bạn. Xuất nhật ký của bạn, sau đó tải tệp lên qua Trung tâm Trợ giúp của {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share some details to help us resolve your issue. Export your logs, then upload the file through {app_name}'s Help Desk." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享一些细节以帮助我们解决您的问题。导出您的日志,然后通过{app_name}的帮助台上传文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "將一些細節分享給我們, 以幫助我們解決您的問題。導出您的日誌, 然後通過 {app_name} 的幫助台上傳檔案。" + } + } + } + }, + "helpReportABugExportLogs" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporteer Logboeke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصدير السجلات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jurnalları xaricə köçür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لاکاتنیں ایکسپورٹ بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Экспартаваць часопісы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Експортиране на дневници" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লগ রপ্তানি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporteu registres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportovat logy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allforio Cofnodion" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportér logs" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Protokolle exportieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαγωγή Αρχείων Καταγραφής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Export Logs" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksporti protokolojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportar registros" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportar registros" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekspordi logid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportatu Egunerokoak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صدور گزارش‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vie lokitiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-export ang mga Log" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporter les journaux" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportar rexistros" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitar da Loken Bugawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ייצא יומנים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लॉग निर्यात करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvoz zapisnika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naplók exportálása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արտահանել տեղեկամատյանները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekspor Log" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esporta i log" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ログのエクスポート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჟურნალების ექსპორტი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការនាំចេញកំណត់ត្រា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಾಗ್ಗಳನ್ನು ರಫ್ತು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로그 내보내기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوردەکردنی تۆمارەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Export Logs" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສົ່ງຂໍ້ຄວາມບັກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportuoti žurnalus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportēt žurnālus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извезете записи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Логуудыг Экспортлох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksport Log" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log များ ထုတ်ယူမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportlogger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लग आउटपुट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporteer logboek" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportlogger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutumiza Mabulogu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲੌਗਜ਼ ਏਕਸਪੋਰਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportuj dzienniki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لاګونه صادروي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportar Logs" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportar Registos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportare jurnale" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Экспортировать логи" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvezi zapisnike" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සටහන් නිර්යාත කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportovať záznamy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvozi dnevnike" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksporto Regjistrimet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извези записе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportuj logove" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportera loggar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamisha Magogo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவுகளை ஏற்றுமதி செய்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లాగులను ఎగుమతి చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งออกบันทึก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Günlüğu Dışa Aktar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Експортувати журнали" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لاگز برآمد کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jurnallarni eksport qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xuất nhật ký" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela iiLogs" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "导出日志" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "匯出日誌記錄" + } + } + } + }, + "helpReportABugExportLogsDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou logboeke uit, laai dan die lêer deur {app_name} se Hulptoonbank." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصدر السجلات الخاصة بك، ثم ارفع الملف عبر مكتب المساعدة الخاص بـ{app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jurnalı xaricə köçürün və {app_name} Kömək Masası üzərindən yükləyin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنی lockاتنیں ایکسپورٹ بکنے کے بعد، فائل {app_name} کے مدد ڈیسک میں اپلوڈ بکنا۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Экспартуйце свае часопісы, затым загрузіце файл у службу падтрымкі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Експортирайте своите дневници, след което качете файла чрез Help Desk на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার লগ গুলি রপ্তানি করুন, তারপর ফাইলটি {app_name}'s এর সাহায্যের ডেস্ক এর মাধ্যমে আপলোড করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporta els vostres registres i, a continuació, carregueu el fitxer mitjançant el Servei d'Ajut de {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportujte své logy, pak nahrajte soubor přes {app_name}'s Help Desk." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allforiwch eich cofnodion, yna llwythwch y ffeil trwy Desg Gymorth {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportér dine logs, og upload derefter filen via {app_name}'s Help Desk." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportiere deine Protokolle und lade die Datei über den {app_name} Helpdesk hoch." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εξαγάγετε τα αρχεία καταγραφής σας και στη συνέχεια μεταφορτώστε το αρχείο μέσω του {app_name}'s Help Desk." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Export your logs, then upload the file through {app_name}'s Help Desk." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportu viajn protokolojn, tiam alŝutu la dosieron per help-ejo de {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporta tus registros, luego carga el archivo a través del Help Desk de {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporte sus registros, luego cargue el archivo a través del Help Desk de {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportige oma logid, laadige fail üles {app_name} kasutajatoe kaudu." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportatu zure egunerokoak ondoren igo fitxategia {app_name}ko Laguntza Mahaira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گزارش‌های خود را صادر کنید، سپس فایل را از طریق {app_name}'s Help Desk آپلود کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vie lokitiedot ja lähetä tiedosto {app_name}'s Help Desk -palvelusta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-export ang iyong mga log, pagkatapos ay i-upload ang file sa Help Desk ng {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportez vos journaux, puis télécharger le fichier par le service d'aide de {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporte os seus rexistros e logo cargue o ficheiro a través da Axuda de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitar da log ɗinku, sannan ku ɗora fayil ɗin ta hanyar {app_name} Help Desk." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ייצא את היומנים שלך, ואז העלה את הקובץ דרך Help Desk של {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने लॉग निर्यात करें, फिर फ़ाइल को {app_name} के हेल्प डेस्क के माध्यम से अपलोड करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvezite svoje zapisnike, a zatim prenesite datoteku putem Help Desk-a aplikacije {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentsd el a hibanaplót, majd a töltsd fel a(z) {app_name} ügyfélszolgálaton keresztül." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արտահանեք ձեր տեղեկամատյանները, ապա վերբեռնեք ֆայլը {app_name}-ի Help Desk-ի միջոցով։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekspor log Anda, lalu unggah berkas melalui {app_name} Help Desk." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esporta i tuoi log, quindi carica il file attraverso l'Help Desk di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ログをエクスポートし、{app_name} のヘルプデスクにてファイルをアップロードします。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეგიძლიათ ექსპორტირება, შემდეგ ატვირთეთ ფაილი {app_name} დახმარების ცენტრში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "នាំចេញកំណត់ហេតុរបស់អ្នក បន្ទាប់មកអាប់ឡូតឯកសារតាមរយៈ {app_name} របស់ផ្នែកជំនួយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಲಾಗ್ಗಳನ್ನು ರಫ್ತು ಮಾಡಿ, ಆಮೇಲೆ {app_name}ನ ಸಹಾಯ ಡೆಸ್ಕ್ ಮೂಲಕ ಕಡತವನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로그를 내보내고, {app_name}의 지원 데스크를 통하여 파일을 업로드하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆمارەکانت هاوردەکە، دوایەوە فایلی تێبینیان لە ڕێی {app_name}ی پەڕەی هاوکاری پاشەکەوتەبە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Export y'ebyogenda okuawulamu n'ekola fayiro nga kw'ogeresa {app_name}'s Help Desk." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ສົ່ງຂໍ້ມູນຂອງທ່ານ, ແລ້ວດາວໂຫຼດໄຟລຜ່ານທາງโต๊ะຊ່ວຍເຫຼືອຂອງ {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportuokite savo žurnalus, tada įkelkite failą per {app_name} pagalbos centrą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportējiet savus žurnālus, un pēc tam augšupielādējiet failu caur {app_name} palīdzības dienestu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извезете ги вашите записи, потоа прикачете ја датотеката преку Help Desk на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Логуудыг экспортлоод {app_name} Тусламжийн Хүсэлтээр файл оруулна уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksport log anda, kemudian muat naik fail tersebut melalui Meja Bantuan {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်လော့ဖိုင်များကို ထုတ်ပြီးနောက် ဖိုင်ကို {app_name} ၏ အကူအညီနေရာမှ တင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksporter logger, deretter last opp filen gjennom {app_name}'s Help Desk." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको लग आउटपुट गर्नुहोस्, त्यसपछि {app_name} को मद्दत डेस्क मार्फत फाइल अपलोड गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporteer je logs, upload het bestand via de Help Desk van {app_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksporter loggane dine, deretter last opp fila gjennom {app_name} sin hjelpedesk." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumizani mabulogu anu, kenako tumizani fayiloyo kudzera pa Help Desk ya {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣੇ ਲੌਗਜ਼ ਏਕਸਪੋਰਟ ਕਰੋ, ਫਿਰ ਫਾਈਲ ਨੂੰ {app_name} ਦੇ ਮਦਦ ਡੈਸਕ ਰਾਹੀਂ ਅਪਲੋਡ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyeksportuj dzienniki, a następnie prześlij plik przez dział pomocy aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل لاګونه صادروي، بیا د {app_name} د مرسته مرکز له لارې دوتنه پورته کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporte seus logs, e envie o arquivo através do Help Desk do {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exporte os seus registos e carregue o arquivo através do Suporte Técnico {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportă jurnalele, apoi încarcă fișierul prin Serviciul de asistență {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Экспортируйте свои логи, затем загрузите файл через {app_name}'s Help Desk." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvezi svoje zapisnike, zatim otpremite datoteku preko Help Desk-a aplikacije {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ සටහන් පිටපත් කර, {app_name}ගේ සහාය කාර්යාලය හරහා ගොනුව උඩුගත කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportujte vaše záznamy a potom súbor odošlite prostredníctvom služby {app_name} Pomocník." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvozite svoje dnevnike, nato naložite datoteko prek servisne mize {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksporto regjistrimet tua dhe pastaj ngarko kartelën përmes help desk të {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Извезите своје записе, а затим отпремите фајл преко {app_name}'s Help Desk." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eksportujte vaše logove, a zatim otpremite fajl preko {app_name}'s Help Desk." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exportera dina loggar, ladda sedan upp filen via {app_name}:s hjälpdisk." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamisha magogo yako, kisha pakia faili kupitia Dawati la Msaada la {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் பதிவுகளை ஏற்றுமதி செய்து, பிறகு {app_name} க்கான உதவி டெஸ்க்கில் கோப்பை பதிவேற்றவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ లాగులను ఎగుమతి చేయండి, తరువాత ఫైల్‌ను {app_name} యొక్క సహాయ డెస్క్ ద్వారా అప్‌లోడ్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งออกบันทึกของคุณ จากนั้น อัปโหลดไฟล์ผ่านฝ่ายสนับสนุนของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Günlüklerinizi dışa aktarın, ardından dosyayı {app_name}'ın Yardım Masası üzerinden yükleyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Експортуйте свої журналі, а потім завантажте файл через службу підтримки {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے لاگز برآمد کریں، پھر فائل کو {app_name} کی ہیلپ ڈیسک کے ذریعے اپلوڈ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jurnallaringizni eksport qiling, so'ngra faylni yuklang {app_name} yordam markazi orqali." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xuất nhật ký của bạn, sau đó tải tệp tin qua Help Desk của {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela iilogs zakho, uze ulayishe ifayile kwi-Help Desk yase {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "导出您的日志,然后通过{app_name}的帮助服务台上传日志。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "匯出你的日誌記錄,然後透過幫助服務台 {app_name} 上傳日誌記錄。" + } + } + } + }, + "helpReportABugExportLogsSaveToDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor na lessenaar" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حفظ على سطح المكتب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masaüstündə saxla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیسک ٹاپ پہ سیمپان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаваць на працоўны стол" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запази на работния плот" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডেস্কটপে সংরক্ষণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desa a l'escriptori" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložit na plochu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadw i’r bwrdd gwaith" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gem til desktop" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auf dem Desktop speichern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθήκευση στην επιφάνεια εργασίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save to desktop" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservi al labortablo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar en el escritorio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar en el escritorio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvesta töölauale" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorde mahaigainean" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ذخیره در دسکتاپ" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallenna työpöydälle" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-save sa desktop" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrer sur le bureau" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gardar no escritorio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajiye zuwa tebur" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור לשולחן העבודה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेस्कटॉप पर सहेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi na radnu površinu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentés az asztalra" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահել գրանցամատյանը աշխատասեղանին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan ke desktop" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salva sul desktop" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "デスクトップに保存" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შენახვა დესკტოპზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុកនៅក្នុងកុំព្យូទ័រ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೆಸ್ಕ್‌ಟಾಪ್‌ಗೆ ಉಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데스크탑에 저장" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاشەکەوت بکە بە ئۆفیس" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuuma ku desktop" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašyti ant darbalaukio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabāt uz darbvirsmas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувај на работно место" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ширээний компьютер дээр хадгалах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan ke desktop" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desktop သို့ သိမ်းဆည်းမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre til skrivebordet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेस्कटपमा बचत गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opslaan op bureaublad" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre til skrivebordet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save to desktop" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡੈਸਕਟਾਪ 'ਤੇ ਸੇਵ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisz na pulpicie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیسټاپ ته وساتئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvar no desktop" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar no desktop" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvează pe desktop" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохранить на рабочий стол" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi na radnu površinu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඩෙස්ක්ටොප් එකට සුරකින්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložiť na pracovnú plochu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shrani na namizje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruaje ne desktop" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувај на десктоп" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvaj na desktop" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spara på skrivbordet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhi kwenye desktop" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "டெஸ்க்டாப்பில் சேமி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డెస్క్‌టాప్‌లో సేవ్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกไปที่เดสก์ท็อป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masaüstüne kaydet" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зберегти на робочий стіл" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیسک ٹاپ پر محفوظ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ish stoliga saqlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lưu vào máy tính để bàn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina kwi desktop" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存到桌面" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "儲存到桌面" + } + } + } + }, + "helpReportABugExportLogsSaveToDesktopDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor hierdie lêer na jou lessenaar, en deel dit dan met die {app_name} ontwikkelaars." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "احفظ هذا الملف على سطح المكتب، ثم شاركه مع مطوري {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu faylı masaüstündə saxlayıb {app_name} tərtibatçıları ilə paylaşın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کاردارانءَ ہَچّ اِی فائیل انت دسک ٹاپیْ، پَس اِے کِھ شیئر کَپُت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захавайце гэты файл на сваім працоўным стале, затым падзяліцеся ім з распрацоўшчыкамі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазете този файл на работния плот и го споделете с разработчиците на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই ফাইলটি আপনার ডেস্কটপে সংরক্ষণ করুন, তারপর এটি {app_name} ডেভেলপারদের সাথে শেয়ার করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deseu aquest fitxer a l'escriptori, i després compartiu-lo amb els desenvolupadors de {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložte tento soubor na plochu, poté jej sdílejte s vývojáři aplikace {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadw'r ffeil hon i'ch bwrdd gwaith, yna ei rhannu gyda datblygwyr {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemt denne fil til din desktop, og del den derefter med {app_name} udviklere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speichere diese Datei auf deinem Desktop und teile sie dann mit den Entwicklern von {app_name}." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκεύστε αυτό το αρχείο στην επιφάνεια εργασίας σας, και μετά κοινοποιήστε το στους προγραμματιστές του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save this file to your desktop, then share it with {app_name} developers." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservu ĉi tiun dosieron al via labortablo, poste kunhavigu ĝin kun la zhviligistoj de {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde este archivo en su escritorio, luego compártalo con los desarrolladores de {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde este archivo en su escritorio y luego compártalo con los desarrolladores de {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvesta see fail oma arvutisse ja jaga seda {app_name} arendajatega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorde fitxategi hau zure mahaigainean, eta ondoren partekatu {app_name} garatzaileekin." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این فایل را در دسکتاپ خود ذخیره کنید، سپس آن را با توسعه‌دهندگان {app_name} به اشتراک بگذارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallenna tämä tiedosto työpöydällesi ja jaa se sitten {app_name}in kehittäjille." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-save ang file na ito sa iyong desktop, pagkatapos i-share ito sa mga developer ng {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrez ce fichier sur votre bureau, puis partagez-le avec les développeurs de {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garda este ficheiro no teu escritorio, logo compárteo cos desenvolvedores de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajiye wannan fayil zuwa teburin kwamfutarka, sannan raba shi tare da masu haɓaka {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור את הקובץ הזה לשולחן העבודה שלך, ואז שתף אותו עם המפתחים של {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस फ़ाइल को अपने डेस्कटॉप पर सहेजें, फिर इसे {app_name} डेवलपर्स के साथ साझा करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi ovu datoteku na radnu površinu, zatim je podijeli s razvojnim timom {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentse ezt a fájlt az asztalra, majd ossza meg a {app_name} fejlesztőivel." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահեք այս ֆայլը ձեր աշխատասեղանին, ապա կիսվեք այն {app_name} ծրագրավորողների հետ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan file ini ke desktop Anda, lalu bagikan dengan pengembang {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salva questo file sul tuo desktop, poi condividilo con gli sviluppatori di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このファイルをデスクトップに保存し、{app_name}開発者に共有してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეინახე ეს ფაილი დესკტოპზე, შემდეგ გაუზიარე მას {app_name}-ის დეველოპერებს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុកឯកសារនេះទៅក្នុងកុំព្យូទ័ររបស់អ្នក រួចចែករំលែកទៅអ្នកអភិវឌ្ឍ​ {app_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಕಡತವನ್ನು ನಿಮ್ಮ ಡೆಸ್ಕ್‌ಟಾಪ್‌ಗೆ ಉಳಿಸಿ, ನಂತರ ಅದನ್ನು {app_name} ಡೆವಲಪರ್‌ಗಳಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 파일을 데스크탑에 저장한 후, {app_name} 개발자와 공유하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم فایلە پاشەکەوت بکە لە سەر ئۆفیسەکەت، پاشان بهێنە گیاندن بە پەرەودەکارانی {app_name}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuuma fayiro eno ku desktop yo oluvannyuma ogigabane ne bakozi ba {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašykite šį failą ant savo darbalaukio, tada pasidalinkite juo su {app_name} kūrėjais." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabājiet šo failu savā darbvirsmā, pēc tam dalieties ar to {app_name} izstrādātājiem." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувај ја оваа датотека на твоето работно место, потоа сподели ја со развивачите на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ файлыг таны ширээний компьютер дээр хадгалж, дараа нь {app_name} хөгжүүлэгчидтэй хуваалцаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan fail ini ke desktop anda, kemudian kongsikannya dengan pembangun {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဖိုင်ကို သင့်ကွန်ပျူတာဖော်ပြရာနေရာတွင် သိမ်း၊ ထို့နောက် {app_name} ဖွံ့ဖြိုးသူများနဲ့ ဝေမျှပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre denne filen til skrivebordet, deretter del den med {app_name}-utviklerne." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो फाइल तपाईंको डेस्कटपमा बचत गर्नुहोस्, त्यसपछि यसलाई {app_name} विकासकर्ताहरूसँग साझा गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sla dit bestand op uw bureaublad op en deel het dan met {app_name} ontwikkelaars." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre denne fila til skrivebordet, og del ho med utviklarane av {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save this file to your desktop, then share it with {app_name} developers." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਫਾਈਲ ਨੂੰ ਆਪਣੇ ਡੈਸਕਟਾਪ 'ਤੇ ਸੇਵ ਕਰੋ, ਫਿਰ ਇਸ ਨੂੰ {app_name} ਡਿਵੈਲਪਰਾਂ ਨਾਲ ਸਾਂਝੀ ਕਰੋ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisz plik na pulpicie, a następnie udostępnij go programistom aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا دوسیه خپل ډیسټاپ ته وساتئ ، بیا یې د {app_name} پراختیا کونکي سره شریکه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salve este arquivo no seu desktop, então compartilhe-o com os desenvolvedores do {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde este ficheiro no seu desktop e partilhe-o com os desenvolvedores do {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvează acest fișier pe desktop-ul tău, apoi partajează-l cu dezvoltatorii {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохраните этот файл на рабочий стол, затем поделитесь им с разработчиками {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvajte ovu datoteku na svom desktopu, a zatim je podijelite s {app_name} programerima." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මේ ගොනුව ඔබේ ඩෙස්ක්ටොප් එකට සුරකින්න, අවසානයේ එය {app_name} සංවර්ධකයන් සමඟ බෙදාගන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložiť tento súbor na pracovnú plochu, potom ho zdieľajte s vývojármi aplikácie {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shrani to datoteko na namizje in jo nato deli z razvijalci {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruaje këtë skedar në desktop-in tuaj, pastaj ndaje me zhvilluesit e {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувајте овај фајл на вашој радној површини, затим поделите са {app_name} програмерима." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvajte ovaj fajl na svom desktopu, zatim ga podelite sa programerima {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spara denna fil till ditt skrivbord och dela den sedan med {app_name} utvecklarna." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhi faili hili kwenye desktop yako, kisha shirikisha na watengenezaji wa {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த கோப்பை உங்கள் டெஸ்க்டாப் கணினியில் சேமிக்கவும், பின்னர் ஏதும் பொருந்தும் {app_name} அபிவிருத்தியாளர்களுக்கு பகிரவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ దస్త్రాన్ని మీ డెస్క్‌టాప్‌లో సేవ్ చేసి, తరువాత దాన్ని {app_name} డెవలపర్‌లకు షేర్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกไฟล์นี้ลงในเดสก์ท็อปของคุณ จากนั้นแชร์กับนักพัฒนาของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu dosyayı masaüstüne kaydedin, ardından {app_name}'in geliştiricileriyle paylaşın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збережіть цей файл на робочому столі, а потім розділіть його з розробниками {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس فائل کو اپنے ڈیسک ٹاپ پر محفوظ کریں، پھر اسے {app_name} کے ڈویلپرز کے ساتھ شیئر کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu faylni ish stolingizga saqlang, so'ngra {app_name} ishlab chiquvchilari bilan ulashing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lưu tệp này vào máy tính để bàn của bạn, rồi chia sẻ nó với các nhà phát triển {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina le fayile kwi desktop yakho, uze uyibonise abaphuhlisi be-{app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "将此文件保存到您的桌面,然后与{app_name}开发者分享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "將次文檔存儲至您的桌面,並分享與 {app_name} 的開發者。" + } + } + } + }, + "helpSupport" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondersteuning" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الدعم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəstək" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آہچی جسارت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Падтрымка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поддръжка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সাপোর্ট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suport" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podpora" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cefnogaeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helpdesk" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Υποστήριξη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Subteno" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soporte" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soporte" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tugi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laguntza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پشتیبانی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tue" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suporta" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Assistance" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soporte" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taimako" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תמיכה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सहायता" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrška" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Támogatás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Աջակցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dukungan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Assistenza" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "サポート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხარდაჭერა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជំនួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಒದಗಿಕೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "지원" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پشتیوانی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obuyambi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pagalba" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbalsts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поддршка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэмжлэг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sokongan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပံ့ပိုးမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brukerstøtte" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समर्थन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondersteuning" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Støtte" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਹਾਇਤਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wsparcie techniczne" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملاتړ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suporte" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suporte" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asistență" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поддержка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrška" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සහාය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podpora" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podpora" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbështetje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подршка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrška" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usaidizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆதரவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మద్దతు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสนับสนุน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Служба підтримки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدد" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yordam" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hỗ trợ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "支持" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "支援" + } + } + } + }, + "helpWedLoveYourFeedback" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ons sal graag jou terugvoer wil hê" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نتطلع لقراءة أراءك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Əks-əlaqənizi görmək istərdik" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما ھور نظرتان دوست دیتیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы будзем рады вашаму водгуку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Желаем вашата обратна връзка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "We'd love your feedback" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ens agradaria molt de rebre els vostres comentaris" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chtěli bychom znát váš názor" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byddem wrth ein bodd i gael eich adborth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi vil gerne høre din feedback" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wir würden uns über dein Feedback freuen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλαμε πολύ τα σχόλιά σας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We'd love your feedback" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ŝatus ricevi vian retrosciigon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nos encantaría conocer tu opinión" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nos encantaría conocer tu opinión" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oleme tänulikud tagasiside eest" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gure iritzia eskatu nahi dizugu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از بازخوردهای شما استقبال می‌کنیم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluaisimme kuulla mielipiteesi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto namin ang feedback mo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous aimerions avoir votre avis" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gustaríanos recibir a túa opinión" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za mu so ra'ayinku" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נשמח לקבל את חוות דעתך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हमें आपकी प्रतिक्रिया पसंद आएगी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voljeli bismo čuti vaše mišljenje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Örülnénk a visszajelzésednek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մենք կցանկանայինք ձեր կարծիքը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami ingin masukan Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ci piacerebbe avere un tuo feedback" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ご意見をお聞かせください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩვენი უკუკავშირი გვინდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យើងចូលចិត្តមតិយោបល់របស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾವು ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಇಷ್ಟಪಡುವೆವು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "여러분의 의견을 기다리고 있습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فێدباکت دەبێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tukusabira amagezi go" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laukiame jūsų atsiliepimų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēs labprāt saņemtu jūsu atgriezenisko saiti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе ја цениме Вашата повратна информација" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны саналыг сонсмоор байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami sangat menghargai maklum balas anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကြံပြုချက်ကို ကျွန်ုပ်တို့ နှစ်သက်ပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ønsker gjerne dine tilbakemeldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हामी तपाईँको प्रतिक्रिया चाहन्छौं" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "We hechten veel waarde aan uw feedback" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ønsker gjerne dine tilbakemeldinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timakondwera ndi mayankho anu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਸੀਂ ਤੁਹਾਡਾ ਫੀਡਬੈਕ ਪਸੰਦ ਕਰਦੇ ਹਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcielibyśmy poznać Twoją opinię" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ ستاسو نظریات غواړو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nós adoraríamos seu feedback" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adoraríamos ter o seu feedback" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne-ar plăcea feedback-ul tău" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы будем рады вашим отзывам" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleli bismo vaše povratne informacije" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපට ඔබගේ ප්‍රතිපෝෂණ වැදගත්ය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radi by sme získali vašu spätnú väzbu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veseli bomo vaših povratnih informacij" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne do të mirëprisnim reagimet tuaja" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Волели бисмо ваше мишљење" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rado bismo čuli vaše povratne informacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi älskar din feedback" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tungependa maoni yako" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் பின்னூட்டத்தை நாங்கள் விரும்புகிறோம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మేము మీ అభిప్రాయం కోరుకుంటున్నాము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เรายินดีรับฟังความคิดเห็นของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görüşlerinizi almak isteriz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будемо раді, якщо залишите нам відгук" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم آپ کی رائے سننا پسند کریں گے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biz sizning fikr-mulohazangizni eshitishni xohlaymiz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chúng tôi rất mong nhận phản hồi từ bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sicela ingxelo yakho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "感谢您的反馈。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請提供我們建議" + } + } + } + }, + "hide" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрий" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লুকান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrýt" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezkutatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پنهان کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masquer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agochar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छिपाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elrejtés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թաքցնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "非表示" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slėpti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slēpt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сокриј" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbergen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਛੁਪਾਉ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshihe" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакриј" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakriti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దాచు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приховати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn đi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐藏" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱藏" + } + } + } + }, + "hideMenuBarDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wissel lêerstelsel werkbalk sigbaarheid" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle system menu bar visibility" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem menyu çubuğunun görünməsini dəyişdir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "System menu bar čārāw visibility" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рэгуляваць бачнасць сістэмнага меню" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Превключване на видимостта на системната лента с менюта" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সিস্টেম মেনুবার দৃশ্যমানতা টগল করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commuta la visibilitat de la barra de menú del sistema" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přepínač viditelnosti lišty systémového menu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toglo gwelededd bar dewislen system" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slå synlighed for systemmenulinjen til/fra" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schalte die Sichtbarkeit der Menüleiste um" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εναλλαγή προβολής γραμμής μενού συστήματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toggle system menu bar visibility" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝalti la videblecon de la sistemmenuo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar visibilidad de la barra de menú del sistema" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar visibilidad de la barra de menú del sistema" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaheta süsteemi menüüriba nähtavust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemaren menu barraren ikusgarritasuna piztu/itzali" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغییر نمایش نوار منوی سیستم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse järjestelmän valikkopalkin näkyvyys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-toggle ang visibility ng system menu bar" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher ou masquer la barre du menu système" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canza hasken menu ɗin tsarin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החלף את מצב הסתרת סרגל התפריט של המערכת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिस्टम मेनू बार दृश्यता टॉगल करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključivanje vidljivosti trake izbornika sustava" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A rendszer menüsor láthatóságának be-/kikapcsolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել համակարգի ընտրացանկի տեսանելիությունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alihkan visibilitas bilah menu sistem" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra/Nascondi la barra delle impostazioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メニューバーの表示を切り替える" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სისტემის მენიუს ხილვადობის გადართვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទបើកប្រព័ន្ធរបារម៉ឺនុយដែលអាចមើលឃើញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಿಸ್ಟಮ್ ಮೆನು ಬಾರ್ ದೃಶ್ಯಮಾನತೆಯನ್ನು ಷೇಮರಿಸಲು ಟೊರ್ನ್ ಕ್ರಿಯಲೆಗೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "시스템 메뉴 바를 끄거나 켜기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالاکی بینینی پەڕەی سیستەم" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ganda ebbanga ly’amakubo ery’ebikozesebwa ebyenfuna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perjungti sistemos meniu juostos matomumą" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вклучување на менито на системот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системийн цэсийн мөрний харагдах байдлыг тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Togol kebolehlihatan bar menu sistem" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စနစ် မီနှူးဘား၏ မြင်ကွင်းကို အတိအကျပြပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis eller skjul menylinjen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तन्त्र प्रणाली मेनु बार दृश्यता टगल गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zichtbaarheid systeemmenubalk in-/uitschakelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis eller skjul menylinjen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sintha kuonekera kwa system menu bar" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਸਟਮ ਮੀਨੂ ਬਾਰ ਵਿਖਾਈ ਦੇਣ ਦੀ ਸਥਿਤੀ ਟੌਗਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przełącz widoczność systemowego paska menu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سیستم مینو بار لیدنه وښایاست" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alternar visibilidade da barra de menu do sistema" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alternar a visibilidade da barra de menu do sistema" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comută vizibilitatea barei de meniu a sistemului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Переключить видимость панели системного меню" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prebacivanje vidljivosti sistemske trake s izbornicima" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පද්ධති මෙනු තීරු දෘශ්‍යතාව ටොගල් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prepnúť viditeľnosť systémového panela ponuky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preklopite vidnost sistemske menijske vrstice" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndryshoni dukshmërinë e shiritit të menusë së sistemit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пребаци видљивост системске траке са менијем" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi / isključi vidljivost sistemskog menija" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Växla synlighet för systemmenyraden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Badilisha muonekano wa upau wa menyu ya mfumo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிஸ்டம் மெனு பட்டியின் காட்சியைக் காட்டு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సిస్టమ్ మెనూ బార్ విజిబిలిటిని టాగిల్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สลับการแสดงผลแถบเมนูระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem menü çubuğu görünürlüğünü değiştirin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увімкнути або вимкнути видимість панелі меню" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سسٹم مینو بار کی مرئیت کو ٹوگل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tizim menyusi paneli koʻrinishini oʻzgartirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chuyển đổi sự hiển thị thanh trình đơn hệ thống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guqula ukubonakalisa kwebar yeendlela zenkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "切换系统菜单栏可见性" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "切換系統選單列可見性" + } + } + } + }, + "hideOthers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek Andere" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء الآخرين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digərlərini gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر پاہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схаваць іншыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Други" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অন্যান্য গোপন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga les altres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrýt ostatní" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio Eraill" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul andre" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andere ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη Άλλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Others" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi aliajn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Otros" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar otras" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida teised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besteak Ezkutatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مخفی سازی سایرین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota muut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago ang Iba" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacher les autres" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Máis" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ɓoye Sauran" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר אחרים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बाकियों को छुपाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij ostale" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Többi elrejtése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թաքցնել մյուսները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan lainnya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi altri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "他のウィンドウを隠す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სხვების დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់ផ្សេងទៀត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತರರನ್ನು ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "나머지 숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شاردنەوەی تر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka Abalala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slėpti kitus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slēpt citus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сокриј други" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бусдыг нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyi Orang Lain" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အခြားများအား ဖျောက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul andre" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्यहरू लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anderen verbergen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul andre" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa Enawo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੋਰਾਂ ਨੂੰ ਲੁਕਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj pozostałe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نور خلک پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esconder todas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Outros" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde altele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть других" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij druge" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අන් අය සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť ostatné" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij ostale" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshihi të Tjerat" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакриј остале" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij ostale" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj andra" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha Wengine" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மற்றவைகளை மறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇతరులను దాచండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อนหน้าต่างอื่นๆ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diğerlerini Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сховати інші" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boshqalarni yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn mục khác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla Abanye" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐藏其它" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱藏其他" + } + } + } + }, + "image" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beelde" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صورة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təsvir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выява" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изображение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইমেজ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrázek" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llun" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Billede" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bild" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εικόνα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Image" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagen" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagen" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irudia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuva" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Image" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wêne" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תמונה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "तस्वीर" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kép" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նկար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gambar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Immagine" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "画像" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სურათი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រូបភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಚಿತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이미지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وێنە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekifananyi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paveikslas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attēls" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слика" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зураг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရုပ်ပုံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilde" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छवि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afbeelding" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilete" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚਿੱਤਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdjęcie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "عکس" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagine" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изображение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඡායාරූපය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obrázok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Figurë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слика" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bild" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Picha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చిత్రం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ภาพ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görüntü" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зображення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rasm" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ảnh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umfanekiso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "图片" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "圖片" + } + } + } + }, + "incognitoKeyboard" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Sleutelbord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوحة المفاتيح في وضع التستّر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizli klaviatura" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پوشیدہ کی بورڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Клавіятура інкогніта" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инкогнито клавиатура" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইনকগনিটো কীবোর্ড" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclat d'incògnit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito klávesnice" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bysellfwrdd Dirgel" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito tastatur" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito-Tastatur" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόρρητο πληκτρολόγιο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognita klavaro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclado incógnito" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclado incógnito" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito klaviatuur" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pantaila Ezkutua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صفحه‌کلید ناشناس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yksityinen näppäimistö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clavier incognito" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclado de incógnito" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מקלדת סמויה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गुप्त कीबोर्ड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognitó billentyűzet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհիշել բառերը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Papan Ketik Penyamaran" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tastiera in incognito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プライバシーキーボード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ინკოგნიტო კლავიატურა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ក្តារចុចអនាមឹក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎನ್ಕೋಗ್ನಿಟೋ ಕೀಲಿಮಣೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사생활 키보드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تایبەتی سیفری کلیلۆرد" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito klaviatūra" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito tastatūra" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инкогнито тастатура" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Гар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Papan Kekunci Incognito" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လျှို့ဝှက်ပုံစံ ကီးဘုတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito-tastatur" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "इनकग्निटो किबोर्ड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito toetsenbord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognitotastatur" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Killkana hillay pakallaku" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੰਕੋਗਨਿਟੋ ਕੀਬੋਰਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klawiatura w trybie prywatnym" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم کیبورډ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclado incógnito" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teclado Anónimo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tastatură incognito" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Клавиатура «Инкогнито»" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito tipkovnica" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අප්‍රකට යතුරු පුවරුව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito klávesnica" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito tipkovnica" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tastatur e fshehtë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инкогнито тастатура" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito tastatura" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito-tangentbord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kibodi cha Incognito" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தனிமைப்படுத்தல் விசைப்பலகை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అజ్ఞాత కీబోర్డ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แป้นพิมพ์แบบลับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizli Klavye" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Клавіатура в режимі \"інкогніто\"" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incognito Keyboard" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognito klaviatura" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bàn phím ẩn danh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikhibhodi yeNcognito" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无痕键盘" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱私鍵盤" + } + } + } + }, + "incognitoKeyboardDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vra inkognitomodus aan as dit beskikbaar is. Afhangende van die sleutelbord wat jy gebruik, mag jou sleutelbord hierdie versoek ignoreer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "طلب وضع التخفي إذا كان متاحًا. بناءً على لوحة المفاتيح التي تستخدمها، قد تتجاهل لوحة المفاتيح هذا الطلب." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mövcuddursa gizli rejimi tələb et. İstifadə etdiyiniz klaviaturadan asılı olaraq, klaviaturanız bu tələbi yox saya bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اینگارن دا انکوگنیتو وضع کناں صورت ممکنہ۔ ممکن باہ نمانی فقہ جنا کنگ ءَ داگرت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запатрабаваць інкогніта рэжым, калі даступна. У залежнасці ад клавіятуры, якую вы выкарыстоўваеце, клавіятура можа праігнараваць гэты запыт." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заявете инкогнито режим, ако е наличен. В зависимост от клавиатурата, която използвате, вашата клавиатура може да пренебрегне тази заявка." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ইনকগনিটো মোড অনুরোধ করুন যদি উপলব্ধ থাকে। আপনি যে কীবোর্ডটি ব্যবহার করছেন তার উপর নির্ভর করে, আপনার কীবোর্ড এই অনুরোধটি উপেক্ষা করতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sol·liciteu el mode incògnit si està disponible. Segons el teclat que feu servir, el vostre teclat pot ignorar aquesta sol·licitud." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Požadovat anonymní režim, pokud je k dispozici. V závislosti na klávesnici, kterou používáte, může být tento požadavek ignorován." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gofyn am fodd incognito os ar gael. Yn dibynnu ar y bysellfwrdd rydych yn ei ddefnyddio, gall eich bysellfwrdd anwybyddu'r cais hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anmod om inkognitotilstand, hvis tilgængeligt. Afhængigt af tastaturet du bruger, kan dit tastatur ignorere denne anmodning." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fordere den Inkognito-Modus an, wenn verfügbar. Dies hängt von der Tastatur ab, die du verwendest, deine Tastatur könnte diese Anfrage ignorieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ζητήστε ανώνυμη λειτουργία αν είναι διαθέσιμη. Ανάλογα με το πληκτρολόγιο που χρησιμοποιείτε, το πληκτρολόγιο σας μπορεί να αγνοήσει αυτό το αίτημα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request incognito mode if available. Depending on the keyboard you are using, your keyboard may ignore this request." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peti inkognitan reĝimon se disponebla. Depende de la klavaro kiun vi uzas, via klavaro eble ignoros ĉi tiun peton." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar modo incógnito si está disponible. Dependiendo del teclado que estés usando, tu teclado puede ignorar esta solicitud." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar modo incógnito si está disponible. Dependiendo del teclado que estés usando, tu teclado puede ignorar esta solicitud." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küsi inkognito režiimi, kui see on saadaval. Olenevalt klaviatuurist võib see taotlus eirata." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskakizun pribatua ezarri erabilgarri badago. Erabiltzen ari zaren teklatuaren arabera, zure teklatuak eskaera hau ezezta dezake." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست حالت ناشناس اگر موجود باشد. بسته به صفحه کلیدی که استفاده می‌کنید، صفحه کلید شما ممکن است این درخواست را نادیده بگیرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pyydä incognito-moodi, jos saatavilla. Riippuen käyttämästäsi näppäimistöstä, pyyntösi saatetaan ohittaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Humiling ng incognito mode kung available. Depende sa keyboard na ginagamit mo, maaaring balewalain ng iyong keyboard ang kahilingang ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demander le mode incognito, si disponible. Selon le clavier que vous utilisez, votre clavier peut ignorer cette demande." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar modo incógnito se está dispoñible. Dependendo do teclado que empregue, o seu teclado pode ignorar esta solicitude." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemi incognito mode idan akwai. Dangane da madanninku da kuke amfani da shi, madanninku na iya watsi da wannan buƙatar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בקש מצב נסתר אם זמין. בהתאם למקלדת בה את/ה משתמש/ת, המקלדת שלך עשויה להתעלם ממשה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संवेदनशील मोड उपलब्ध होने पर अनुरोध करें। आप जिस कीबोर्ड का उपयोग कर रहे हैं, उसके आधार पर आपका कीबोर्ड इस अनुरोध को अनदेखा कर सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatraži incognito mod ako je dostupan. Ovisno o tipkovnici koju koristite, vaša tipkovnica može ignorirati ovaj zahtjev." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inkognitó mód igénylése, ha elérhető. A használt billentyűzettől függően előfordulhat, hogy a billentyűzet figyelmen kívül hagyja ezt a kérést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հարցեք գաղտնի ռեժիմը, եթե առկա է։ Կախված ձեր օգտագործած ստեղնաշարից, ձեր ստեղնաշարը կարող է անտեսել այս հարցումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minta mode incognito jika tersedia. Tergantung pada keyboard yang Anda gunakan, keyboard Anda mungkin mengabaikan permintaan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Richiedi la modalità incognito se disponibile. A seconda della tastiera in uso, la tua tastiera potrebbe ignorare questa richiesta." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "利用可能な場合はインコグニートモードを要求します。使用しているキーボードによっては、この要求を無視することがあります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თხოვა ინკოგნიტო რეჟიმი თუ შესაძლებელი. დამოკიდებულია იმ კლავიატურაზე, რომელიც თქვენ იყენებთ, თქვენი კლავიატურა შეიძლება იგნორიროს ეს თხოვნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្នើអំពីមុខងារសម្ងាត់ ប្រសិនបើមាន។ ទៅតាមប្រភេទក្តារចុចដែលអ្នកកំពុងប្រើ អាច​នឹង​មិន​ទាន់បញ្ចូនសំណើនេះ ឡើយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಭ್ಯವಿದ್ದರೆ ಇನ್‌ಕಾಗ್ನಿಟೊ ಮೋಡ್ ಅನ್ನು ವಿನಂತಿಸಿ. ನೀವು ಬಳಸುವ ಕೀಬೋರ್ಡ್ ಆಧರಿಸಿ, ನಿಮ್ಮ ಕೀಬೋರ್ಡ್ ಈ ವಿನಂತಿಯನ್ನು ನಿರ್ಲಕ್ಷಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용 가능한 경우 시크릿 모드를 요청합니다. 사용 중인 키보드에 따라 이 요청을 무시할 수도 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داواکاری کردن بۆ ڕێژیمی Incognito ئەگەر بەردەست بێت. پێویستە ھەموو جلەکان ڕێگە بدەن." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saba okukola mu ngeri y'ekyama singa ebaayo engeri. Okusinziira ku kyuma ky'empapali kyosula, empapula yo ey'ettungeana kyetaaga okubiikiriza omusango guno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prašykite įjungti incognito veikseną, jei tai įmanoma. Priklausomai nuo naudojamos klaviatūros, gali būti, kad ji ignoruos šį užklausimą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieprasīt inkognito režīmu, ja pieejams. Atkarībā no izmantotās tastatūras, tastatūra var ignorēt šo pieprasījumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бара инкогнито режим ако е достапен. Во зависност од тастатурата што ја користите, вашата тастатура може да го игнорира ова барање." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэв боломжтой бол инкогнито горим шаардах. Ашигласан гарнаасаа шалтгаалан энэ хүсэлтийг үл тоомсорлож магадгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minta mod incognito jika tersedia. Bergantung pada papan kekunci yang anda gunakan, papan kekunci anda mungkin mengabaikan permintaan ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သုံးနိုင်လျှင် incognito mode ကို တောင်းဆိုပါ။ သင့်ကီးဘုတ်ပတ်လမ်းပေါ်မှာ မူတည်ပြီး သင့်ကီးဘုတ်သည် အဆိုတို့အတိုင်းမလုပ်နိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be om inkognitomodus hvis tilgjengelig. Avhengig av tastaturet du bruker, kan det hende tastaturet ignorerer denne forespørselen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपलब्ध भएमा गुप्त मोड अनुरोध गर्नुहोस्। तपाईंले प्रयोग गरिरहेको किबोर्डको आधारमा, तपाईंको किबोर्डले यो अनुरोधलाई बेवास्ता गर्न सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vraag incognito modus aan indien beschikbaar. Afhankelijk van het toetsenbord dat je gebruikt, kan je toetsenbord dit verzoek negeren." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be om anonymmodus om tilgjengeleg. Avhengig av tastaturet ditt kan tastaturet ignorerer denne førespurnaden." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funsani mawonekedwe a incognito ngati alipo. Malinga ndi kiyibodi yomwe mukugwiritsa ntchito, kiyibodi yanu imatha kusamala kapena kukana pempholi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਲਬਧ ਹੋਣ 'ਤੇ ਗੁਪਤ ਮੋਡ ਦੀ ਬੇਨਤੀ ਕਰੋ। ਤੁਹਾਡੇ ਦੁਆਰਾ ਇਸਤੇਮਾਲ ਕੀਤੀ ਗਈ ਕੀਬੋਰਡ 'ਤੇ ਨਿਰਭਰ ਕਰਦਾ ਹੈ, ਤੁਹਾਡੀ ਕੀਬੋਰਡ ਇਸ ਬੇਨਤੀ ਨੂੰ ਅਣਦੇਖੀ ਕਰ ਸਕਦੀ ਹੈ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zażądaj trybu prywatnego, jeśli jest dostępny. W zależności od używanej klawiatury może ona zignorować to żądanie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "که شتون ولري انکګنيتو حالت غوښتنه وکړئ. ستاسو د کارول شوي کیبورډ پراساس کیبورډ ممکن دا غوښتنه له پامه وغورځوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar modo incógnito se disponível. Dependendo do teclado que você está usando, seu teclado pode ignorar essa solicitação." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar modo incognito se disponível. Dependendo do teclado que está a usar, o seu teclado pode ignorar este pedido." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicită modul incognito, dacă este disponibil. În funcție de tastatura pe care o folosești, este posibil ca tastatura ta să ignore această solicitare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросить режим «Инкогнито», если доступно. В зависимости от клавиатуры, которую вы используете, она может проигнорировать этот запрос." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zatraži incognito režim ako je dostupan. U zavisnosti od tastature koju koristite, vaša tastatura može ignorisati ovaj zahtev." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ලබා ගත හැකිනම් සුෛප් සක්‍රිය කරනවා. ඔබ යොදා ගන්නේ ය?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Požiadať o režim inkognito, ak je k dispozícii. V závislosti od klávesnice, ktorú používate, môže vaša klávesnica túto požiadavku ignorovať." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po potrebi omogočite način brez sledi. Glede na tipkovnico, ki jo uporabljate, tipkovnica morda ignorira to zahtevo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko modalitet inkognito, nëse është i disponueshëm. Në varësi të tastierës që po përdorni, ajo mund ta injorojë këtë kërkesë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Затражи инкогнито режим ако је доступан. У зависности од тастатуре коју користите, ваша тастатура можда игнорише овај захтев." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtev za incognito režim ako je dostupan. U zavisnosti od tastature koju koristite, vaša tastatura može ignorisati ovaj zahtev." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begär inkognitoläge om tillgängligt. Beroende på tangentbordet du använder kanske ditt tangentbord ignorerar denna begäran." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omba hali fiche ikiwa inapatikana. Kulingana na kibodi unayotumia, kibodi yako inaweza kupuuza ombi hili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எந்தத தேர்வு அளவுகள் கொண்ட நாடாக இருக்குறடில் சேரா." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అభ్యున్నత స్థాయి కీబోర్డ్ అందుబాటులో ఉంటే అభ్యున్నత మోడ్‌ కోరండి. మీరు ఉపయోగిస్తున్న కీబోర్డ్‌పై ఆధారపడి, మీ కీబోర్డ్ ఈ అభ్యర్థనను నిర్లక్ష్యం చేయవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขอเปิดโหมดไม่ระบุชื่อถ้าใช้ได้ ขึ้นอยู่กับคีย์บอร์ดที่คุณใช้ คีย์บอร์ดของคุณอาจจะไม่ยอมรับคำขอนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizli mod iste. Kullandığınız klavyeye bağlı olarak klavyeniz bu isteği göz ardı edebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запитувати режим інкогніто, якщо доступний. Залежно від клавіатури, яку ви використовуєте, ваша клавіатура може ігнорувати цей запит." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اگر دستیاب ہو تو انکونیٹو موڈ کی درخواست کریں۔ آپ جو کی بورڈ استعمال کر رہے ہیں اس پر منحصر ہے، آپ کا کی بورڈ اس درخواست کو نظر انداز کر سکتا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agar mavjud bo'lsa, inkognito rejimni talab qiling. Siz foydalanayotgan klaviaturaga qarab, klaviatura ushbu so'rovni e'tiborsiz qoldirishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu ẩn danh nếu có. Tùy thuộc vào bàn phím bạn đang sử dụng, bàn phím của bạn có thể bỏ qua yêu cầu này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cela imo esithunzini xa ikhona. Kuxhomekeka kwi-keyboard oisebenzisayo, i-keyboard yakho ingasilela ukuqwalasela esi sicelo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "启用隐身模式(如果可用)。您正在使用的键盘可能会忽略此请求。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請求隱身模式。您的鍵盤程式不一定會響應此請求。" + } + } + } + }, + "info" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Məlumat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інфармацыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "তথ্য" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwybodaeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πληροφορίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impormasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מידע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जानकारी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet adatai" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեղեկություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "詳細" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ინფორმაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾಹಿತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정보" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زانیاری" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informācija" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инфо" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдээлэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သတင်းအချက်အလက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਾਣਕਾਰੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacje" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informações" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informações" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තොරතුරු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инфо" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taarifa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమాచారం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilgi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інформація" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông tin" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulwazi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "信息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "資訊" + } + } + } + }, + "invalidShortcut" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeldige kortpad" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختصار غير صالح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yararsız qısayol" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط شارٹ کٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылковы цэтлік" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невалидена заобиколна пътя" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শর্টকাট অকার্যকর" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drecera no vàlida" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chybná zkratka" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwybr byr annilys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig genvej" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültige Verknüpfung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μη έγκυρη συντόμευση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid shortcut" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevalida ŝparvojo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atajo no válido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atajo no válido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sobimatu otsetee" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bide labur ez baliozkoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "میانبر نامعتبر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virheellinen pikakuvake" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi valid na shortcut" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raccourci invalide" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atallo non válido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurterêya nederbasdar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קיצור דרך בלתי תקף" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अमान्य शॉर्टकट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevažeća prečac" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Érvénytelen parancsikon" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ կարճեցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pintasan tidak valid" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scorciatoia non valida" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "不正なショートカット" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არასწორი მალსახმობი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រូបតំណាងផ្លូវកាត់មិនត្រឹមត្រូវ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಮಾನ್ಯ ಶಾರ್ಟ್‌ಕಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 바로 가기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارتی ناکرێنەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shortcut si kituufu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neteisingas šaukinys" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nederīga saīsne" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невалиден пречекор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвшөөрөгдөөгүй төрийнүт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pintasan tidak sah" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "shortcut မှားယွင်းနေပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig snarvei" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अवैध सर्टकट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeldige snelkoppeling" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ugyldig snarveg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ñapash chayak mana allichu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤ ਸ਼ਾਰਟਕਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprawidłowy skrót" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناسم شارټ کټ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atalho inválido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atalho inválido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scurtătură incorectă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недопустимый ярлык" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevažeći prečac" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වලංගු නොවන කෙටිමඟකි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neplatná skratka" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neveljavna bližnjica" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkurtore e pavlefshme" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неважећа пречица" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neispravna prečica" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogiltig genväg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mkato wa batili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவறான பலியல் வழிகாட்டி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చెల్లని సత్వరమార్గం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชอร์ตคัทใช้ไม่ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geçersiz kısayol" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недопустимий ярлик" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط شارٹ کٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noto‘g‘ri yorliq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lối tắt không hợp lệ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isiqhosho esingalunganga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无效的快捷方式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無效的捷徑" + } + } + } + }, + "join" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sluit aan" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انضم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşul" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شامل ہو جائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далучыцца" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присъединяване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "যোগদান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uneix-t'hi" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připojit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymuno" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deltag" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beitreten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνετε μέλος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aliĝi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bat egin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوستن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liity" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sumali" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejoindre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unirse" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiga" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "להצטרפות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "से जुड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csatlakozás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միանալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabung" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unisciti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "参加" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეუერთდით" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចូលរួម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸೇರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "가입" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "به‌ kidllax" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwegatta" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prisijungti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienoties" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приклучи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэгдэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sertai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပူးပေါင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bli med" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामेल हुनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deelnemen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bli med" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwati" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸ਼ਾਮਿਲ ਹੋਵੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dołącz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوځای شئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alătură-te" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Присоединиться" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "එක්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripojiť sa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bashkohu" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Придружите се" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridruži se" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anslut" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jiunge" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேர" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చేరండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เข้าร่วม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katıl" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приєднатися" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شامل ہوں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'shilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tham gia" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joyina" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入" + } + } + } + }, + "later" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Later" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لاحقاً" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha sonra" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعد میں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пазней" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "По-късно" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পরে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Després" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Později" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn hwyrach" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Später" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αργότερα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Later" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poste" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Más tarde" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Más tarde" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiljem" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geroago" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Myöhemmin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mamaya" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plus tard" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máis tarde" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daga baya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אחר־כך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बाद में" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasnije" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Később" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելի ուշ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nanti" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Più tardi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "後で" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოგვიანებით" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លើកក្រោយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಂತರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "나중에" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "له ڕاستەدەی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olukya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vėliau" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vēlāk" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подоцна" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дараа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kemudian" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နောက်မှ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senere" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पछि गरौं" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Later" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seinare" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ashata kashpa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬਾਅਦ ਵਿੱਚ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Później" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وروسته" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mais tarde" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mais tarde" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mai târziu" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позже" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasnije" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පසුව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neskôr" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasneje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Më vonë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Касније" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasnije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senare" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baadae" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பிறகு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తర్వాత" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไว้ภายหลัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonra" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пізніше" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعد میں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keyinroq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sau này" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamva" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "稍后" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "稍後" + } + } + } + }, + "learnMore" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leer Meer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معرفة المزيد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha ətraflı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مزید سیکھیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даведацца больш" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Научи повече" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আরও জানুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Més informació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zjistit více" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dysgu Rhagor" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lær mere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mehr erfahren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μάθετε Περισσότερα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Learn More" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lerni pli" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saber más" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saber más" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisateave" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gehiago ikasi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیشتر یاد بگیرید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisätietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matuto Pa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En savoir plus" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saber máis" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kara sani" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "למד עוד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अधिक जानें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saznaj više" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "További információ" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իմանալ Ավելին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selengkapnya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per saperne di più" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "詳細を知る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაიგე მეტი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្វែង​យល់​បន្ថែម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇನ್ನಷ್ಟು ತಿಳಿಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "더 알아보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فوکی لە زانیاری" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yiga Ebisingawo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sužinoti daugiau" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzzināt vairāk" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дознај повеќе" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэрэнгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ketahui Lagi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိုမိုလေ့လာရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lær mer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "थप सिक्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kom meer te weten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lær meir" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phunziranin Zambiri" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੋਰ ਜਾਣੌ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dowiedz się więcej" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نور زده کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saber mais" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saber mais" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Află mai mult" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Узнать больше" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naučiti više" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තවත් හදාරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viac informácií" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Več o tem" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mësoni më tepër" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сазнајте више" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saznajte više" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Läs mer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jua Mengine" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மேலும் அறிக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇంకా నేర్చుకో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เรียน​รู้​เพิ่ม​เติม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha fazla bilgi edinin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дізнатися більше" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مزید سیکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batafsil" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tìm hiểu thêm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funda kabanzi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "了解更多" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "瞭解更多" + } + } + } + }, + "leave" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مغادرة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tərk et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوڑیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пакінуць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напускане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ছেড়ে যান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marxar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlad" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlassen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποχώρηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlasi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahku" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خروج از گروه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iwanan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quitter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deixar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bari" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עזוב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լքել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinggalkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbandona" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "抜ける" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გატოვე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាកចេញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತೊರೆಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "나가기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بە تێ کردنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeiti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atstāt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напушти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гарах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinggalkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆိုင်ရာ ထွက်စရာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlat" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekayo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਛੱਡੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opuść" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پریږده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Părăsește" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покинуть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හැරයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opustiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapusti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Braktise" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napusti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lämna" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toka" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வெளியேறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వదిలివేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayrıl" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покинути" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوڑ دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rời đi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiya" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "离开" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "離開" + } + } + } + }, + "leaving" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat ..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاري المغادرة..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tərk edilir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوڑنا..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пакідаем..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напускане..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পরিত্যাগ হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sortint..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opouštění..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlader..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlassen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποχώρηση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leaving..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlasante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saliendo..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saliendo..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahkumine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irten..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال ترک..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poistutaan..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umalis..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Départ..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abandonando..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficewa..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עוזב..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड़ना..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odlazak..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լքում..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meninggalkan..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbandonando..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "終了しています..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოდიხართ..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងចាកចេញ..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಿಡುಗೋಲುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "떠나는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بەرچاو..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nva..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeinama..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pamet..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напуштање..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гарах..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meninggalkan..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထွက်နေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlater..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड्दै..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vertrekken..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forlatar..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanipo..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਛੱਡਦੇ ਹੋਏ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opuszczanie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرېښودل..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saindo..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sair..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se părăsește..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выход..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napustanje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හැරයමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opúšťanie..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapustim..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duke braktisur..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напуштам..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napustanje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lämnar..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuondoka..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வெளியேறுகின்றது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వదులుతున్నా..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังออก..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çıkılıyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покидання..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوڑ رہے ہیں..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiqmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rời..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kushiywa..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "退出中..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "離開中…" + } + } + } + }, + "legacyGroupMemberNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} انضم إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} qrupa qoşuldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} šumār zang ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} далучыўся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се присъедини към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} গ্রুপে যোগ দিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} s'ha unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se připojil(a) ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ist der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} συμμετείχε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} grupaniĝis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se unió al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se unió al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} liitus grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} taldea sartu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} به گروه پیوست." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a rejoint le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הצטרף לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} समूह में शामिल हुए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} csatlakozott a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} միացավ խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} è entrato nel gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}がグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს შეუერთდა ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} បានចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಗುಂಪಿಗೆ ಸೇರಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} پەیوەندی بە گروپەکەوە کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yayingira mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} prisijungė prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се придружи на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} is lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} alowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do grupy dołącza {name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ډله کې شامل شو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} entrou no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} juntou-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} s-a alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} присоединяется к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sa pripojil/a ku skupine." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se je pridružil skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u bë pjesë e grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} се придружи групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} se pridružio/la grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} குழுவில் சேர்ந்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้เข้าร่วมกลุ่ม." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gruba katıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} приєднався до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} guruhga qo'shildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 加入了群組。" + } + } + } + }, + "legacyGroupMemberNewMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} ander het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انضم {name} و{count} آخرين إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}başqa {count} nəfər qrupa qoşuldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} drīg šumār zang ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {count} іншых далучыліся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други се присъединиха към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {count} জন অন্য সদস্য গ্রুপে যোগ দিয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} altres s'han unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} další se připojili ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {count} eraill ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {count} andere sind der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {count} ακόμα εντάχθηκαν στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} others joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {count} aliaj grupaniĝis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {count} más se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} teist liitusid grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {count} beste taldean sartu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} نفر دیگر به گروه پیوستند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {count} muuta liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {count} iba pa ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {count} autres ont rejoint le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} máis uníronse ao grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {count} wasu sun shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{count} אחרים‏ הצטרפו לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {count} अन्य समूह में शामिल हुए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugi pridružili su se grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {count} másik személy csatlakozott a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {count} ուրիշներ միացան խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e altri {count} si sono uniti al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}人 がグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {count} სხვებს შეუერთდნენ ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {count} គេផ្សង ទៀត‍ បន ចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {count} ಇತರೆರು ಗುಂಪಿಗೆ ಸೇರಿದರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님님과 {count}명이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {count} کەس دیکە پەیوەندی بە گروپەکەوە کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {count} abalala baayingira mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ແລະ {count}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {count} kiti prisijungė prie grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {count} citi pievienojās grupai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} други се придружија на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {count} бусад бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {count} lainnya menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {count} ဦး အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} अन्य समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {count} anderen zijn lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {count} andre vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {count} ena alowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{count}ਹੋਰਾਂਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} innych użytkowników dołączyli do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {count} نور په ګروپ کې شامل شول." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {count} outros juntaram-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și alți {count} s-au alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} других пользователей присоединились к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su se pridružili grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සමඟ {count} වෙනත් අය කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {count} ďalší sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {count} drugi so se pridružili skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {count} të tjerë ju bashkuan grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {count} осталих су се придружили групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {count} drugih su se pridružili grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {count} andra gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {count} wengine wamejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {count} பிறர் குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {count} ఇతరులు సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {count} อื่นๆ ได้เข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğer grup katıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та ще {count} інших приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {count} دیگر نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqa guruhga qo'shildilar." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {count} người khác đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {count} abanye abantu bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}和其他{count}名成员加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count} 位其他成員 加入了群組。" + } + } + } + }, + "legacyGroupMemberNewYouMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {count} ander het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و{count} آخرين انضموا للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizdigər {count} nəfər qrupa qoşuldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {count} drīg šumār zant group ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і яшчэ {count} іншых былі запрошаны далучыцца да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други се присъединихте към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {count} জন অন্য সদস্য গ্রুপে যোগ দিয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {count} altres us heu unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} dalších se připojilo ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {count} eraill ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {count} andere sind der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {count} άλλοι προσκληθήκατε να συμμετάσχετε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {count} others joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {count} aliaj aniĝis al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {count} más se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {count} teist liitusid grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {count} beste taldera batu zarete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {count} سایرین به گروه پیوستند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {count} muuta liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {count} iba pa ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {count} autres avez été invité·e·s à rejoindre le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {count} wasu sun shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{count} אחרים הצטרפתם לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {count} अन्य समूह में शामिल हुए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugi pridružili ste se grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {count} másik személy csatlakoztatok a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {count} ուրիշներ միացան խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e altri {count} avete ricevuto un invito a unirvi al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{count}名 がグループに加わりました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {count} სხვა შეუერთდით ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {count} គេផ្សេងទៀត បានចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {count} ಇತರರು ಗುಂಪನ್ನು ಸೇರಿದರು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신님과 {count}명이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {count} کەس دیکە پەیوەندیدانت بەرەو گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {count} abalala mweyingira mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir dar {count} prisijungėte prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {count} други се придружувате на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {count} бусад бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {count} lainnya menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {count} ဦး အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{count} अन्यलाई समूहमा सामेल हुन गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {count} anderen zijn uitgenodigd om lid te worden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {count} andre vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {count} ena analowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {count} ਹੋਰ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty i {count} innych użytkowników dołączyliście do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {count} نور ډله کې شامل شول." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {count} outros juntaram-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și alți {count} v-ați alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и {count} других человек присоединились к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {count} drugih ste se pridružili grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {count} වෙනත් අය කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {count} ďalší sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {count} drugi ste se pridružili skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {count} të tjerë u bashkuan me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {count} осталих су се придружили групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {count} drugih ste se pridružili grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {count} andra gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {count} wengine mmejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {count} பிறர் குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {count} ఇతరులు సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {count} อื่นๆ ได้เข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen ve {count} diğerleri gruba katılmaya davet edildiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та ще {count} інших приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {count} دیگر نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {count} boshqalar guruhga qo'shildilar." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{count} người khác đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {count} abanye abantu bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "和其他{count}人加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{count} 位其他成員 加入了群組。" + } + } + } + }, + "legacyGroupMemberNewYouOther" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy en {other_name} het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت و {other_name} انضممتما إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz{other_name} qrupa qoşuldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār a {other_name} šumār zant group ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы і {other_name} далучыліся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} се присъединихте към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি এবং {other_name} গ্রুপে যোগ দিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu i {other_name} us heu unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} se připojili ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi a {other_name} ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du und {other_name} seid der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς και {other_name} συμμετείχατε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You and {other_name} joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kaj {other_name} aniĝis al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : " y {other_name} se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina ja {other_name} liitusid grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk eta {other_name} taldea batu zarete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما و {other_name} به گروه پیوستید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä ja {other_name} liittyivät ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw at {other_name} ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous et {other_name} avez rejoint le groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku da {other_name} sun shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה ו{other_name}‏ הצטרפתם לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप और {other_name} समूह में शामिल हुए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} ste se pridružili grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te és {other_name} csatlakoztatok a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք և {other_name}֊ը միացան խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu e {other_name} vi siete uniti al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた{other_name} がグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ და {other_name} შეუერთდით ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក និង {other_name} បានចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಮತ್ತು {other_name} ಅವರು ಗುಂಪಿಗೆ ಸೇರಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신{other_name}님이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ و {other_name} بەشداریت بەرەو گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe ne {other_name} mweyingira mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs ir {other_name} prisijungėte prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие и {other_name} се придруживте на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та болон {other_name} бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dan {other_name} menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် နှင့် {other_name} အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं{other_name} समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U en {other_name} zijn lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du og {other_name} vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu ndi {other_name} analowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਅਤੇ {other_name} ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty oraz użytkownik {other_name} dołączyliście do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو او {other_name} ډله کې شامل شول." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você e {other_name} juntaram-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu și {other_name} v-ați alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы и пользователь {other_name} присоединились к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti i {other_name} ste se pridružili grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ සහ {other_name} කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy a {other_name} sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi in {other_name} sta se pridružila skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju dhe {other_name} u bashkuan me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви и {other_name} су се придружили групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi i {other_name} ste se pridružili grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du och {other_name} gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe na {other_name} mmejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் மற்றும் {other_name} குழுவில் சேர்ந்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మరియు {other_name} సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ และ {other_name} ได้เข้าร่วมกลุ่ม." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ve {other_name} gruba katıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви та {other_name} приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ اور {other_name} نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz va {other_name} guruhga qo'shildilar." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn{other_name} đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna kunye {other_name} bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name}加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{other_name} 加入了群組。" + } + } + } + }, + "legacyGroupMemberTwoNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} انضموا للمجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} qrupa qoşuldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} šumār zang ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} і {other_name} далучыліся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} се присъединиха към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এবং {other_name} গ্রুপে যোগ দিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} s'han unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} se připojili ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y a {other_name} ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} und {other_name} sind der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} και {other_name} εντάχθηκαν στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} and {other_name} joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kaj {other_name} aniĝis al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} se unieron al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y {other_name} se unieron al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} said grupi liikmeks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eta {other_name} taldean sartu dira." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} به گروه ملحق شدند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ja {other_name} liittyi ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} at {other_name} ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} et {other_name} ont rejoint le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} uníronse ao grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} da {other_name} sun shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ו{other_name}‏ הצטרפו לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} और {other_name} समूह में शामिल हुए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} pridružili su se grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} és {other_name} csatlakoztak a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը և {other_name}֊ը միացան խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} fanno ora parte del gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} がグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს და {other_name}ს შეუერთდნენ ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ និង {other_name}‍ បន ចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಪ್ರ ಮತ್ತು {other_name} ಪ್ರ ಗುಂಪಿಗೆ ಸೇರಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{other_name}님이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} و {other_name} پەیوەندی بە گروپەکەوە کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ne {other_name} baayingira mu kibiina." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ແລະ {other_name} \"," + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir {other_name} prisijungė prie grupės." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} un {other_name} pievienojās grupai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} се придружија на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} болон {other_name} бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dan {other_name} menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} နှင့် {other_name} အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} en {other_name} zijn lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} og {other_name} vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ndi {other_name} alowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਅਤੇ{other_name}ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} dołączyli do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} او {other_name} په ګروپ کې شامل شول." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} entraram no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} e {other_name} juntaram-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} și {other_name} s-au alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} присоединились к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su se pridružili grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සහ {other_name} කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {other_name} sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} in {other_name} sta se pridružila skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} dhe {other_name} ju bashkuan grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} и {other_name} су се придружили групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {other_name} su se pridružili grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} och {other_name} gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {other_name} wamejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} மற்றும் {other_name} குழுவில் சேர்ந்தனர்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మరియు {other_name} సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} และ {other_name} ได้เข้าร่วมกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} gruba katıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} та {other_name} приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} اور {other_name} نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} guruhga qo'shildilar." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kunye {other_name} bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name} 加入了群組。" + } + } + } + }, + "legacyGroupMemberYouNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het by die groep aangesluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت انضممت إلى المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz qrupa qoşuldunuz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šumār šumār zant group ke." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы далучыліся да групы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие се присъединихте към групата." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি গ্রুপে যোগ দিয়েছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu t'has unit al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy jste se připojili ke skupině." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi ymunodd â'r grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du tilsluttede sig gruppen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du bist der Gruppe beigetreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς συμμετείχατε στην ομάδα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You joined the group." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi aniĝis al la grupo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te uniste al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te uniste al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sa liitusid grupiga." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk taldea batu zara." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما به گروه پیوستید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä liityit ryhmään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw ay sumali sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez rejoint le groupe." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "You uniuse ao grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ku sun shiga ƙungiyar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה הצטרפת לקבוצה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप समूह में शामिल हुए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste se pridružili grupi." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te csatlakoztál a csoporthoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք միացաք խմբին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda bergabung dengan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti sei unito al gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなたがグループに加わりました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ შეუერთდით ჯგუფს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក បានចូលក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗುಂಪಿಗೆ ಸೇರಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신이 그룹에 참여했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ بەشداریت بەرەو گروپەکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe waayingira mu kibiina." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs prisijungėte prie grupės." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие се придруживте на групата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүлэгт нэгдсэн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda menyertai kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် အဖွဲ့ကို ပူးပေါင်းခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du ble med i gruppen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं समूहमा सामेल हुनुभयो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U bent lid geworden van de groep." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vart med i gruppa." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu analowa gulu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋ ਗਏ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dołączono do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو ډله کې شامل شو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você entrou no grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você juntou-se ao grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te-ai alăturat grupului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы присоединились к группе." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti si se pridružio grupi." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ කණ්ඩායමට එක් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy ste sa pripojili do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste se pridružili skupini." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju u bashkuat me grupin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви сте се придружили групи." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ste se pridružili grupi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du gick med i gruppen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe umejiunga na kundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் குழுவில் சேர்ந்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు సమూహంలో చేరారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ ได้เข้าร่วมกลุ่ม." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz gruba katıldınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви приєдналися до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے گروپ میں شمولیت اختیار کی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz guruhga qo'shildingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã tham gia nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mna bajoyine iqela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加入了群组。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : " 加入了群組。" + } + } + } + }, + "linkPreviews" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skakeldruk-voorskoue" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معاينات الرابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləmələri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Папярэдні прагляд спасылак" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Визуализации на връзки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিংক প্রিভিউ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualitzacions prèvies d'enllaços" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhledy odkazů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhagolwg Dolen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Forhåndsvisninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-Vorschauen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προεπισκοπήσεις Συνδέσμου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antaŭrigardoj de Ligilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizaciones de enlaces" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizar enlaces" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lingi eelvaated" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka aurrebistak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش‌نمایش‌های لینک" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkkien esikatselut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Preview ng Link" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aperçus des liens" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizacións de ligazóns" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan Gajeren Hoto" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תצוגות מקדימות של קישורים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi poveznica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkelőnézetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հղումների նախադիտումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratinjau Tautan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anteprime dei link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクプレビュー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბმულის წინა ხედები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការមើលតំណជាមុន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಿಂಕ್ ಪೂರ್ವावलೋಕನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێنمای بارێنە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba Enkule okuva ku Link" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuorodų peržiūros" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saišu priekšskatījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прегледи на врски" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Линк урьдчилан үзэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratonton Pautan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အစမ်းကြည့်ရှုလင့်ခ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning av lenker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक प्रीभ्यू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-voorbeelden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning av lenker" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma Link Previews" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਿੰਕ ਪੂਰਵਾਦ੍ਰਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previzualizări ale linkurilor" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوند مخکتنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizações de links" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizações de links" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previzualizări ale linkurilor" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предпросмотры ссылок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi linkova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබැඳි පෙරදසුන්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhľady odkazov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predogledi povezav" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paraparje lidhjesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед везе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi veza" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Förhandsgranskning av länkar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muhtasari wa Viungo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு முன்னோட்டங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ ప్రీవ్యూస్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตัวอย่างจากลิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı Önizlemeleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Попередній перегляд посилань" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پریویوز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Havola ko'rinishlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imixholo yeLinki" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "链接预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "連結預覽" + } + } + } + }, + "linkPreviewsDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wys skakel voordeurigs vir ondersteunde URL's." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إظهار معاينات الروابط لعناوين URL المدعومة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəstəklənən URL-lər üçün keçid önizləməsini göstər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیشوں مرتبط URLs پیــــــــــش نمایان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказваць прагляды спасылак для падтрымліваемых URL." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показване на предварителен преглед на връзки за поддържани URL адреси." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সমর্থিত URL গুলোর জন্য লিঙ্ক প্রিভিউ দেখান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genereu previsualitzacions d'enllaços per als URL compatibles." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit náhledy odkazů pro podporované URL adresy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos rhagolwg dolenni ar gyfer URLau a gefnogir." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis linkforhåndsvisninger for understøttede URL'er." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeige Link-Vorschauen für unterstützte URLs." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργία προεπισκοπήσεων συνδέσμου για υποστηριζόμενα URL." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show link previews for supported URLs." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri ligilajn antaŭrigardo por subtenataj retadresoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar previsualizaciones de enlaces para las URL soportadas." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar previsualización de enlaces para las URLs soportadas." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita linkide eelvaateid toetatud URL-ide puhul." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi loturen aurreikuspenak onartutako URLetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نشان دادن پیش نمایش لینک برای URL های پشتیبانی شده." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä linkin esikatselut tuetuille URL-osoitteille." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipakita ang mga preview ng link para sa mga suportadong URL." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher les aperçus de lien pour les URL supportées." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar vistas previas para ligazóns soportadas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuna fayyace haɗin yanar gizo don URLs." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג תצוגות מקדימות של קישורים ל־URL נתמך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समर्थित URL के लिए लिंक प्रीव्यू दिखाएं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži preglede poveznica za podržane URL-ove." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hivatkozás előnézet készítése támogatott URL-ekhez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրել հղման նախադիտում աջակցվող URL-ների համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan pratinjau tautan untuk URL yang didukung." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra le anteprime dei link per gli indirizzi web supportati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "サポートされている URL のリンクプレビューを表示します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოავლეთ ბმულის პრევიუები მხარდაჭერილი URL-ებისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញតំណឲ្យមើលជាមុនសម្រាប់ URLs ដែលអាចប្រើប្រាស់បាន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಧಾರಿತ URL ಗಳಿಗೆ ಲಿಂಕ್ ಪೂರ್ವावलೋಕನಗಳನ್ನು ತೋರಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "지원되는 URL에 대한 링크 미리보기를 표시합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیشان دان بە لینکی پێشینەکان بۆ URLs ی پارێزی-کراو." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laga ekifaananyi kya URL ezigatiddwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti nuorodų peržiūras, palaikomoms URL." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rādīt saites priekšskatījumus atbalstītām URL." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи прегледи на линкови за поддржани URLs." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэмжигдсэн URL хаягийн урьдчилан харагдацыг харуулах." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunjukkan pratonton pautan untuk URL yang disokong." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထောက်ခံနေတဲ့ URL တွေအတွက် လင့်ခ်အကြမ်းများ ပြပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis lenkeforhåndsvisninger for støttede URL-er." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समर्थित URLs का लागि लिंक पूर्वावलोकनहरू देखाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toon linkvoorbeelden voor ondersteunde URL's." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis lenkeforhåndsvisningar for støtta URL-ar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show link previews for supported URLs." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਹਾਇਤਿਤ URL ਲਈ ਲਿੰਕ ਅਗੇਮਾਂ ਦਿਖਾਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokaż podglądy linków dla obsługiwanych adresów URL." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ملاتړ شوي URLs لپاره لینک مخکتنې وښاياست." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar pré-visualização de links para URLs suportadas." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exibir pré-visualizações de links para URLs suportados." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează previzualizări ale linkurilor pentru URL-urile acceptate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активировать предпросмотр ссылок для поддерживаемых URL." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži preglede poveznica za podržane URL-ove" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සහාය ලිනක් පෙවීව්ස් පෙන්වන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukázať obsah linkou pre podporované URL." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži predoglede povezav za podprte URL-je." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaqi parapamjet e lidhjeve për URL-të e mbështetura." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи прегледе линкова за подржане URL адресе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži prikaze linkova za podržane URL adrese." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa länkförhandsvisningar för stödda URL:er." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha hakikisho za viungo kwa URL zinazotumiwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒப்புதலான URL க்கான தொடர்பு முன்னோட்டங்களைக் காண்பிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మద్దతు ఉన్న URLల కోసం లింక్ ముందస్తు వీక్షణలను చూపించు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงตัวอย่างลิงก์สำหรับ URL ที่รองรับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desteklenen URL'ler için bağlantı önizlemeleri göster." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показувати попередні перегляди посилань для підтримуваних URL." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مستند URLs کے لیے لنک پریویوز دکھائیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'llab-quvvatlanadigan URL manzillar uchun havolalarni oldindan ko'rishni yarating." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị bản xem trước liên kết cho các URL được hỗ trợ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show link previews for supported URLs." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "为支持的链接生成预览。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "為支援的連結顯示連結預覽。" + } + } + } + }, + "linkPreviewsEnable" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiveer Skakelvoorbeelde" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تفعيل معاينة الروابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləmələrini fəallaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال کریں لنک کا پیش نظارہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уключыць перадпрагляды спасылак" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активиране на визуализации на връзки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিংক প্রিভিউ সক্রিয় করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu activar les visualitzacions prèvies d'enllaços" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapnout náhledy odkazů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galluogi Rhagolwg Dolenni" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver Forhåndsvisning Af Links" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-Vorschau aktivieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enable Link Previews" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enable Link Previews" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu Ŝalti Antaŭrigardojn de Ligilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Habilitar vista previa de enlaces" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar vistas previas de enlaces" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas lubada lingi eelvaated" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka Aurrebistak Gaitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال‌سازی پیش‌نمایش‌های لینک" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otetaanko linkkien esikatselu käyttöön" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-enable ang Mga Preview ng Link" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activer les aperçus de lien" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar previsualizacións das ligazóns" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunna Dubawa na Hanyoyi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לאפשר תצוגה מקדימה של קישורים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकन सक्षम करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući preglede poveznica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkelőnézetek engedélyezése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացնել հղումների նախադիտումները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan Pratinjau Tautan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abilita anteprima link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクプレビューを有効にする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბმულის წინასწარი დათვალიერების ჩართვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើកការមើលតំណជាមុនឬ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಿಂಕ್ ಪೂರ್ವದರ್ಶನಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기를 사용하시겠습니까" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالاککردنی پیشاندانی لینک" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okubaga okunene" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເປີດການພິມລິ້ງເບິ່ງກ່ອນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įjungti nuorodų peržiūras" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iespējot saišu priekšskatījumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможи прегледи на линкови" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL урьдчилсан харагдацыг идэвхжүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktifkan Pratonton Pautan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews ဖွင့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver lenkeforhåndsvisninger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिङ्क पूर्वावलोकन सक्षम गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkvoorbeelden inschakelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiver lenkjesniktittar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yambitsa Zowonera Maulalo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਿੰਕ ਪ੍ਰੀਵਿਊ ਚਾਲੂ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Włącz podgląd linków" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لینک مخکتنې فعالې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar pré-visualizações de link" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ativar pré-visualizações do link" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activează previzualizarea linkurilor" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включить Предпросмотр Ссылок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući preglede linkova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබැඳි පෙරදසුන් සබල කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapnúť náhľady odkazov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogoči predoglede povezav" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivizo paraparjet e lidhjeve" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Омогући прегледе веза" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući preglede linkova" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktivera förhandsgranskningar av länkar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wezesha Muhtasari wa Viungo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews செயல்படுத்தவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ ప్రివ్యూ ప్రారంభించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิดใช้งานการแสดงตัวอย่างลิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı Önizlemeleri Etkinleştirilsin mi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ввімкнути попередній перегляд посилань" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پیش نظارے فعال کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Havola ko'rinishini yoqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bật xem trước liên kết" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela I-Link Previews" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "是否启用链接预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "啟用連結預覽" + } + } + } + }, + "linkPreviewsErrorLoad" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie skakel voorskou laai nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "غير قادر على تحميل معاينة الرابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləməsi yüklənə bilmir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک کو لوڈ کرنے میں ناکامی." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма загрузіць папярэдні прагляд спасылкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно зареждане на връзка за преглед" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিঙ্ক প্রিভিউ লোড করতে অক্ষম" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot mostrar la previsualització de l'enllaç." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze načíst náhled odkazu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu llwytho rhagolwg dolenni" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke indlæse forhåndsvisning af link" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkvorschau konnte nicht geladen werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία φόρτωσης προεπισκόπησης συνδέσμων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to load link preview" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblis ŝargi antaŭrigardon de ligilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede cargar la previsualización del enlace" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede cargar la vista previa del enlace" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linki eelvaate laadimine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka osteko ezin kargatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان برای بارگذاری پیش نمایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esikatselua ei voida ladata" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi mai-load ang preview ng link" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de charger l'aperçu du lien" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non é posible cargar a vista previa da ligazón" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a iya ɗaukar bayani na juyin yanayi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לטעון תצוגה מקדימה של קישור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकन लोड करने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće učitati pregled veze" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkelőnézet betöltése sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց բեռնել հղման նախադիտումը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memuat pratinjau tautan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile caricare l'anteprima del link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクプレビューを読み込めません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბმულის პრევიუს ჩატვირთვა ვერ ხერხდება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to load link preview" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಿಂಕ್ ಪೂರ್ವನೋಟವನ್ನು ಲೋಡ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기를 사용할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرا پیشاندانی لینکی پێشبینین بکات" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisoboka okugula kulika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko įkelti nuorodos peržiūros" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar ielādēt priekšskatījumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е можно да се учита претпрегледот на линкот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбоосын урьдчилсан үзүүлэлтийг ачаалж чадахгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memuatkan pratonton pautan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လင့်ခ် ပြသခြင်း မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke laste inn forhåndsvisning av lenke" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिङ्क पूर्वावलोकन लोड गर्न असमर्थ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkvoorbeeld laden mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke laste inn forhåndsvisning" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sitingathe kutsitsa chithunzicho" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਿੰਕ ਝਲਕ ਲੋਡ ਕਰਨ ਵਿੱਚ ਅਸਮਰੱਥ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można wczytać podlągu linku" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سلسلې پيوند مخکتنې بارولو کې پاتې راغله" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível carregar a pré-visualização de link" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível carregar a pré-visualização" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la încărcarea previzualizării linkului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно загрузить предпросмотр ссылки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće učitati pregled poveznice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "විවිදසල් ඊළඟ සැළසුම්වල දෝශ භාවිත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa načítať ukážku odkazu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni mogoče naložiti pregleda povezave" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u arrit të ngarkohej parapamja e lidhjes" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не могу да учитам преглед линка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće učitati pregled linka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte ladda en förhandsgranskning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kupakia hakikisho la kiungo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு முன்னோட்டத்தை ஏற்ற முடியவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ ప్రివ్యూ ని లోడ్ చేయడం సాధ్యపడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถโหลดการแสดงตัวอย่างลิงก์ได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı önizlemesi yüklenemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося завантажити попередній перегляд посилання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پیش نظارہ لوڈ کرنے سے قاصر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link previewni yuklab bo'lmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể tải bản xem trước liên kết" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayikwazi ukulayisha ukujonga ikhonkco" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未能加载链接预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法載入連結預覽" + } + } + } + }, + "linkPreviewsErrorUnsecure" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voorskou nie gelaai vir onsekure skakel nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم يتم تحميل المعاينة للرابط غير الآمن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güvənli olmayan keçidə görə önizləmə yüklənmədi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر محفوظ لینکءِ خاطر پیش نمایش لاد نبو." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Папярэдні прагляд не загружаны з-за небяспечнай спасылкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед не е зареден за несигурна връзка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অরক্ষিত লিঙ্কের জন্য পূর্বরূপ লোড হয়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La previsualització no està carregada per l'enllaç no segur" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhled nebyl načten pro nezabezpečený odkaz" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heb lwytho rhagolwg ar gyfer dolen anniogel" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning ikke indlæst for usikkert link" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vorschau nicht für unsicheren Link geladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η προεπισκόπηση δε φορτώθηκε για μη ασφαλή σύνδεσμο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preview not loaded for unsecure link" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antaŭrigardo ne ŝargita por nesekura ligilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vista previa no cargada por un enlace inseguro" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vista previa no cargada por un enlace inseguro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eelvaadet ei laaditud turvamata lingi jaoks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka insegururako aurrebista ez dago kargatuta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش نمایش برای لینک ناامن کامل نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esikatselua ei ladattu suojaamattomalle linkille" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi na-load ang preview para sa di-seguradong link" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aperçu non chargé pour les liens non sécurisés" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualización non cargada para a ligazón non segura" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a loda duban hanyar haɗi da ba ta da tsaro ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תצוגה מקדימה לא נטענה עבור קישור לא מאובטח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unsecure लिंक के लिए पूर्वावलोकन लोड नहीं हुआ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled nije učitan za nesigurnu poveznicu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A nem biztonságos link előnézete nem tölt be" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նախադիտումը չի բեռնվել ոչ ապահով հղման համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratinjau tidak dimuat untuk tautan yang tidak aman" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anteprima non caricata: il link non è sicuro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "セキュアでないリンクのプレビューは読み込めません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩვენება არ განახლდა დაუცველი ბმული" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មើលភាពមិនបានផ្ទុកសម្រាប់តំណភ្ជាប់ដែលមិនមានសុវត្ថិភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಸುರಕ್ಷಿತ ಲಿಂಕ್‌ಗಾಗಿ ಮುನ್ನೋಟ ಏತು ತಪ್ಪಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보안되지 않은 링크의 미리보기가 로드되지 않았습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێشاندەران ڕاکێشرا بۆ بەستەرێکی نەخێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omuweereza tategerefu ku link ennonya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peržiūra neužkrauta dėl nesaugaus ryšio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priekšskatījums nav ielādēts nedrošai saitei" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прегледот не е вчитан за небезбеден линк" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аюулгүй бус холбоосын урьдчилан харах ачаалагдсангүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratonton tidak dimuatkan untuk pautan tidak selamat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လုံခြုံမှုမရှိသော လင့်ခ်အတွက် မျဉ်တင်မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning ikke lastet inn for usikker lenke" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "असुरक्षित लिङ्कको लागि पूर्वावलोकन लोड छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voorbeeld kon niet geladen worden vanwege onveilige link" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning ikkje lasta inn for usikker lenke" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzithunzi sichikupezeka pa ulalo wosatetezedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਸੁਰੱਖਿਅਤ ਲਿੰਕ ਲਈ ਪ੍ਰੀਵਿਊ ਲੋਡ ਨਹੀਂ ਕੀਤਾ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie wczytano podglądu dla niezabezpieczonego linku" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د غیر محفوظ لینک لپاره پیش منظر نه دی بار شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualização não carregada para link não seguro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualização não carregada devido a link inseguro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previzualizarea nu a fost încărcată pentru linkul nesigur" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предпросмотр не загружен для небезопасных ссылок" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled nije učitan za nesiguran link" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unsecure සබැඳිය සඳහා පෙරදසුන පූරණය කළ නොහැක" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukážka nebola načítaná pre nezabezpečený odkaz" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predogled za nenevarno povezavo ni naložen" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paraparje nuk u ngarkua për lidhje të pasigurt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед није учитан за небезбедни линк" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled nije učitan za nesiguran link" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Förhandsgranskningen laddas ej för osäkra länkar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muhtasari haujapakiwa kwa kiungo kisicho salama" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பாதுகாப்பற்ற இணைப்புக்கான முன்னோட்டம் ஏற்றப்படவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రమాదకర లింక్‌కు ప్రివ్యూ లోడ్ కాలేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหลดพรีวิวไม่ได้สำหรับลิงก์ที่ไม่ปลอดภัย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı güvensiz olduğu için önizleme yüklenmedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Попередній перегляд не застосовується для незахищеного посилання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر محفوظ لنک کے لئے پیش نظارہ نہیں لوڈ کیا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xavfsiz bo'lmagan havola uchun oldindan ko'rish yuklanmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem trước không được tải cho liên kết không bảo mật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuqhaynqa akuthunyiselwanga ku-link engekho ekhuselekileyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未加载非安全链接预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法載入不安全連結的預覽" + } + } + } + }, + "linkPreviewsFirstDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vertoon voorbeeld vir URL's wat jy stuur en ontvang. Dit kan nuttig wees, maar {app_name} moet kontak maak met gekoppelde webwerwe om voorbeelde te genereer. Jy kan altyd skakelskermvoorbeelde in {app_name} se instellings afskakel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يعرض معاينات للرابطات التي ترسلها وتستلمها. قد يكون هذا مفيداً، لكن يجب على {app_name} التواصل مع المواقع المرتبطة لإنشاء المعاينات. يمكنك دائماً إيقاف معاينات الروابط في إعدادات {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərdiyiniz və aldığınız URL-lər üçün önizləmələri göstər. Bu faydalı ola bilər, ancaq {app_name} önizləmələr yaratmaq üçün əlaqələndirilmiş veb-saytlarla əlaqə qurmalıdır. Keçid önizləmələrini istənilən vaxt {app_name} ayarlarında söndürə bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLs کے پیش نظارے دکھائیں جو آپ بھیجیں اور وصول کریں۔ یہ مفید ہوسکتا ہے، تاہم {app_name} کو پیش نظارے تیار کرنے کے لئے منسلک ویب سائٹس سے رابطہ کرنا ہوگا۔ آپ کسی بھی وقت {app_name} کی ترتیبات میں لنک پیش نظارے کو بند کر سکتے ہیں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказаць прэв’ю для URL-адрасаў, якія вы адпраўляеце і атрымліваеце. Гэта можа быць карысна, але {app_name} трэба будзе злучыцца з сайтамі, звязанымі са спасылкамі, каб згенераваць перадпрагляд. Вы заўсёды можаце адключыць перадпрагляд спасылак у наладах {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показвай визуализации за URL адресите, които изпращате и получавате. Това може да бъде полезно, но {app_name} трябва да се свърже със свързаните уебсайтове, за да генерира визуализации. Винаги можете да изключите визуализациите на връзки в настройките на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি পাঠানো বা প্রাপ্ত URL গুলির প্রিভিউ দেখান। এটি সহায়ক হতে পারে, তবে {app_name} কে ওই সাইটগুলির প্রিভিউ তৈরি করতে প্রয়োজনীয় লিঙ্কগুলি সম্পূর্ণ করতে হয়। আপনি {app_name} এর সেটিংসে লিঙ্ক প্রিভিউ বন্ধ করতে পারবেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra previsualitzacions d'URL que enviïs i rebis. Això pot ser útil, però {app_name} ha de contactar amb els llocs web vinculats per generar les previsualitzacions. Pots apagar les previsualitzacions a la configuració de {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazovat náhledy URL adres, které odesíláte a přijímáte. To může být užitečné, ale {app_name} se bude muset spojit s danou webovou stránkou pro vygenerování náhledů. Náhled odkazů můžete kdykoli zakázat v nastavení {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos rhagolwg ar gyfer URLs byddwch chi'n eu hanfon a derbyn. Gall hwn fod yn ddefnyddiol, ond mae'n rhaid i {app_name} gysylltu â gwefannau cysylltiedig i greu rhagolwg. Gallwch bob amser troi rhagolwg dolenni bant yn gosodiadau {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display previews for URLs you send and receive. This can be useful, however {app_name} must contact linked websites to generate previews. You can always turn off link previews in {app_name}'s settings." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeige Vorschauen für URLs an, die du sendest und empfängst. Dies kann nützlich sein, jedoch muss {app_name} verbundene Websites kontaktieren, um Vorschauen zu generieren. Du kannst Link-Vorschauen jederzeit in den Einstellungen von {app_name} deaktivieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display previews for URLs you send and receive. This can be useful, however {app_name} must contact linked websites to generate previews. You can always turn off link previews in {app_name}'s settings." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display previews for URLs you send and receive. This can be useful, however {app_name} must contact linked websites to generate previews. You can always turn off link previews in {app_name}'s settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri antaŭrigardojn de ligiloj kiujn vi sendas kaj ricevas. Tio povas esti utila, tamen {app_name} devas kontakti ligitajn retejojn por generi antaŭrigardojn. Vi ĉiam povas malŝalti ligilan antaŭrigardon en {app_name} agordojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar vistas previas de los URLs que envías y recibes. Esto puede ser útil, sin embargo {app_name} debe contactar sitios web vinculados para generar vistas previas. Siempre puedes desactivar las vistas previas de enlaces en los ajustes de {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar vistas previas para URLs que envíes y recibas. Esto puede ser útil, sin embargo {app_name} debe contactar a los sitios web vinculados para generar vistas previas. Siempre puedes desactivar las vistas previas de enlaces en la configuración de {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuva eelvaated Linkidele, mida saadad ja vastu võtad. See võib olla kasulik, kuid {app_name} peab eelvaadete näitamiseks ühenduma lingitud veebisaitidega. Saate alati linkide eelvaated {app_name} seadetest välja lülitada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidaltzen eta jasotzen dituzun URLen aurrebistak erakutsi. Hau erabilgarria izan daiteke, hala ere {app_name}-k estekatutako webguneekin harremanetan jarri behar du aurrebistak sortzeko. Beti desaktibatu ditzakezu esteka aurrebistak {app_name}-en ezarpenetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش پیش‌نمایش‌ها برای URL هایی که ارسال و دریافت می‌کنید. این می‌تواند مفید باشد، اما {app_name} باید با وب‌سایت‌های پیوند شده تماس بگیرد تا پیش‌نمایش‌ها را تولید کند. شما همیشه می‌توانید پیش‌نمایش‌های پیوند را در تنظیمات {app_name} غیرفعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä esikatselut URL-osoitteille, jotka lähetät ja vastaanotat. Tämä voi olla hyödyllinen, mutta {app_name} täytyy ottaa yhteyttä linkitettyihin verkkosivustoihin esikatseluiden luomiseksi. Voit aina poistaa linkkien esikatselut käytöstä {app_name}'s asetuksissa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magpakita ng mga preview para sa mga URL na ipinadala at natatanggap mo. Maaari itong makatulong, ngunit {app_name} ay dapat makipag-ugnayan sa mga naka-link na website para makabuo ng mga preview. Maaari mong palaging i-off ang mga link preview sa mga setting ng {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher des aperçus pour les URL que vous envoyez et recevez. Cela peut être utile, mais {app_name} doit contacter des sites Web liés pour générer les aperçus. Vous pouvez toujours désactiver les aperçus de liens dans les paramètres de {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar previsualizacións das ligazóns que envías e recibes. Isto pode ser útil, pero {app_name} debe contactar coas páxinas web enlazadas para xerar previsualizacións. Sempre podes desactivar as previsualizacións das ligazóns en configuracións de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuna ganin gaba-gaba na URLs da ka aiko kuma ka karɓa. Wannan na iya zama amfani, duk da haka {app_name} dole ne ya tuntuɓi shafuka masu alaƙa don ƙirƙirar ganin gaba-gaba. Kuna iya kashe ganin alaƙar cikin saitunan {app_name} duk lokacin da kuke so." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג תצוגות מקדימות לכתובות אתרים שאתה שולח ומקבל. זה יכול להיות שימושי, אבל {app_name} יצטרך לפנות לאתרים המקושרים כדי ליצור תצוגות מקדימה. אפשר תמיד לכבות את התצוגות המקדימות של הקישורים בהגדרות של {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके द्वारा भेजे और प्राप्त किए गए यूआरएल के पूर्वावलोकन प्रदर्शित करें। यह उपयोगी हो सकता है, हालाँकि पूर्वावलोकन बनाने के लिए {app_name} को लिंक की गई वेबसाइटों से संपर्क करना होगा। आप कभी भी {app_name} की सेटिंग में लिंक पूर्वावलोकन बंद कर सकते हैं." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogućavanjem pregleda poveznica prikazat će se pregledi za URL-ove koje šaljete i primate. To može biti korisno, ali {app_name} će trebati kontaktirati povezane web stranice kako bi generirao preglede. Uvijek možete onemogućiti preglede poveznica u {app_name}'ovim postavkama." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A küldött és fogadott URL-címek előnézeteinek megjelenítéséhez {app_name}-nek kapcsolatba kell lépnie a webhelyekkel. A(z) {app_name} beállításaiban bármikor kikapcsolhatja a linkelőnézeteket." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրել նախադիտումները այն հղումների համար, որոնք ուղարկված են և ստացված են։ Սա կարող է օգտակար լինել, սակայն {app_name} պետք է կապ հաստատի կապված կայքեր հետ նախադիտումները ստեղծելու համար։ Դուք միշտ կարող եք անջատել հղումների նախադիտումները {app_name}-ի կարգավորումներում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan pratinjau untuk URL yang Anda kirim dan terima. Ini bisa berguna, namun {app_name} harus menghubungi situs web yang ditautkan untuk menghasilkan pratinjau. Anda selalu dapat mematikan pratinjau tautan di pengaturan {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra anteprime per i link che invii e ricevi. Questo può essere utile, ma {app_name} deve interfacciarsi con i siti web collegati per generare le anteprime. Puoi sempre disattivare le anteprime dei link nelle impostazioni di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送受信する URL のプレビューを表示します。これは便利ですが、{app_name} はプレビューを生成するためにリンクされた サイトにアクセスする必要があります。 {app_name} の設定でいつでもリンクのプレビューをオフにできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩვენება წინასწარი დათვალიერებები URL-ებისთვის, რომლებსაც აგზავნით და მიიღებთ. ეს შეიძლება იყოს სასარგებლო, თუმცა {app_name} უნდა დაუკავშირდეს დაკავშირებულ ვებგვერდებს წინასწარი დათვალიერებების გენერირებისთვის. ყოველთვის შეგიძლიათ გამორთოთ ბმულების წინასწარი დათვალიერებები {app_name}-ის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញការមើលជាមុនសម្រាប់ URLs ដែលអ្នកផ្ញើ និងទទួល។ វាអាចល្អប្រសើរ ទោះបីជាកម្មវិធី {app_name} ត្រូវការទាក់ទងគេហទំព័រដូចគ្នា ដើម្បីបង្កើតការមើលជាមុនទាំងនេះ។ អ្នកអាចបិទការមើលតំណភ្ជាប់នៅក្នុងការកំណត់នៃកម្មវិធី {app_name} បានជានិច្ច។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಕಳುಹಿಸುವ ಮತ್ತು ಸ್ವೀಕರಿಸುವ URL-ಗಳ ಪೂರ್ವನೋಟಗಳನ್ನು ತೋರಿಸಿ. ಇದು ಉಪಯುಕ್ತವಾಗಬಹುದು, ಆದರೆ {app_name} ಪೂರ್ವನೋಟಗಳನ್ನು ನಿರ್ಮಿಸಲು ಲಿಂಕ್ ಮಾಡಲಾದ ವೆಬ್‌ಸೈಟ್‌ಗಳನ್ನು ಸಂಪರ್ಕಿಸಬೇಕು. ನೀವು ಯಾವಾಗಲಾದರೂ {app_name}'s ಸಂಯೋಜನೆಗಳಲ್ಲಿ ಲಿಂಕ್ ಪೂರ್ವನೋಟಗಳನ್ನು ಆನ್ ಅಥವಾ ಆಫ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}가 URL 미리보기를 생성하기 위해 연결된 웹사이트에 접속해야 합니다. 그러나 이를 신경 쓰이는 경우 {app_name}의 설정에서 링크 미리보기를 끌 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیشان دن بینی تی تایسهی پەیژنتکی URLs تی ogé دەنێتی و گەڕەنیت. ئەمە ئەنصر بۆ، بەڵام {app_name} دەوەقە هەیت تەهەچێک ئاڤاهیەیەکان بۆ دەیڤەینیت پیشیشانی ژیارانت. لە هەموو سیماندانەکانپێشاندان ناڤەندەر پێبەدەینانە بەگەڤەرێن {app_name} دەیقە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa previews za URLs zo zisubirwa. Eno ejja kuba nvumanyisa, naye {app_name} enyiga websites ezo okukola previews. Osobola okutandika okuyiga link previews mu settings za {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti nuorodų peržiūras siųstoms ir gautoms URL. Tai gali būti naudinga, tačiau {app_name} turi kreiptis į susietas svetaines, kad sukurtų peržiūras. Visada galite išjungti nuorodų peržiūras {app_name} nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attēlot priekšskatījumus saitēm, kuras tu sūti un saņem. Tas var būt noderīgi, taču {app_name} būs jāsazinās ar saistītajām interneta vietnēm, lai ģenerētu priekšskatījumus. Tu vienmēr vari izslēgt saišu priekšskatījumus {app_name} uzstādījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажете прегледи за URL адресите што ги праќате и примате. Ова може да биде корисно, но {app_name} мора да контактира со линковите за да ги генерира прегледите. Секогаш можете да ги исклучите прегледите на линкови во поставките на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээсэн болон хүлээн авсан URL-үүдийн урьдчилсан харагдацыг харуулна. Энэ нь хэрэгтэй байж болно, гэвч {app_name} урьдчилсан харагдац үүсгэхийн тулд холбоотой вэбсайтуудтай холбогдох шаардлагатай. Та URL-үүдийн урьдчилсан харагдацыг {app_name}–ийн тохиргоонд унтрааж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Papar pratonton untuk URL yang anda hantar dan terima. Ini mungkin berguna, namun {app_name} harus menghubungi laman web yang dipautkan untuk menjana pratonton. Anda selalu boleh mematikan pratonton pautan dalam tetapan {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်ပေးပို့နှင့်လက်ခံထားသော URL များအတွက် ကြိုတင်အမြင်များကို ပြပါ။ ၎င်းသည် အသုံးဝင်နိုင်ပါသည်၊ သို့သော် {app_name} သည် ကြိုတင်အမြင်များကို ပေါ်ပေါက်အောင်ရန် ဆက်စပ်ဝက်ဘ်ဆိုဒ်များနှင့် ဆက်သွယ်ရပါမည်။ သင်သည် {app_name} ၏ ဆက်တင်များတွင် လင့်ခ်ကြိုတင်အမြင်များကို အမြဲပိတ်ထားနိုင်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display previews for URLs du sender og mottar. Dette kan være nyttig, men {app_name} må kontakte tilkoblede nettsteder for å generere forhåndsvisninger. Du kan alltid slå av link forhåndsvisninger i {app_name}'s innstillinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले पठाउने र प्राप्त गर्ने URLs का लागि पूर्वावलोकन प्रदर्शन गर्नुहोस्। यो उपयोगी हुन सक्छ, तर {app_name} ले पूर्वावलोकन जेनरेट गर्न लिङ्क गरिएको वेबसाइटहरूसँग सम्पर्क गर्नुपर्दछ। तपाईं सधैं {app_name} को सेटिङमा लिंक पूर्वावलोकनहरू बन्द गर्न सक्छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkvoorbeelden tonen voor URLs die u verstuurt en ontvangt. Dit kan nuttig zijn, maar {app_name} moet contact opnemen met gekoppelde websites om previews te genereren. U kunt links altijd uitschakelen in de {app_name}-instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skru på lenkeforhåndsvisning, vil du få forhåndsvist URL'er du sender og mottar. Dette kan være nyttig, men {app_name} er nødt til å koble til websidene for å generere forhåndsvisninger. Du har alltid muligheten til å skru av lenkeforhåndsvisning i {app_name}'s innstillinger senere." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kulumikiza mawebusayiti okhudzana ndikupanga zowonetsa. Nthawi zonse mutha kuzimitsa zowonera maulalo mu {app_name} zovomerezeka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੀਆਂ ਭੇਜੀਆਂ ਅਤੇ ਪ੍ਰਾਪਤੀ ਜਾਂਦੇ URLs ਲਈ ਪੁਸ਼ਟ ਪ੍ਰਦਰਸ਼ਨ. ਇਹ ਲਾਗੂ ਹੋ ਸਕਦੀ ਹੈ, ਹਾਲਾਂਕਿ {app_name} ਨੂੰ ਲਿੰਕ ਕੀਤੀਆਂ ਵੈਬਸਾਈਟਾਂ ਤੋਂ ਪ੍ਰੀਵਿਊ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ ਸੰਪਰਕ ਕਰਨਾ ਹੋਵੇਗਾ। ਤੁਸੀਂ ਹਮੇਸ਼ਾਂ {app_name} ਦੀਆਂ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਲਿੰਕ ਪ੍ਰੀਵਿਊ ਬੰਦ ਕਰ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyświetla podgląd wysyłanych i odbieranych adresów URL. Może to być przydatne, jednak aby wygenerować podgląd, aplikacja {app_name} musi skontaktować się z powiązanymi stronami internetowymi. Zawsze możesz wyłączyć podgląd linków w ustawieniach aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د URLs لپاره مخکتنې نندارې کړئ چې تاسو یې لیږئ او ترلاسه کوئ. دا ګټور کیدی شي، مګر {app_name} باید تړل شوي ویب سایټونو سره اړیکه ونیسي ترڅو مخکتنې تولید کړي. تاسو تل کولی شئ په {app_name} کې لینک مخکتنې بندې کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display previews for URLs you send and receive. This can be useful, however {app_name} must contact linked websites to generate previews. You can always turn off link previews in {app_name}'s settings." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exibir pré-visualizações para URLs que recebe e envia.Pode ser útil, no entanto {app_name} precisa de se ligar aos websites para gerar as pré-visualizações. Pode desligar esta fucionalidade nas configurações de {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișați previzualizări pentru URL-urile pe care le trimiteți și le primiți. Acest lucru poate fi util, însă {app_name} trebuie să consulte site-urile web asociate pentru a genera previzualizările. Puteți, oricând, dezactiva previzualizarea linkurilor în setările din {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отображать превью сайтов для полученных или отправляемых ссылок. Может быть полезно, однако {app_name} должен посетить эти сайты, чтобы создать превью. Вы сможете отключить эту функцию в настройках {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži preglede za URL-ove koje šaljete i primate. Ovo može biti korisno, međutim {app_name} mora kontaktirati povezane web stranice za generiranje pregleda. Uvijek možete isključiti preglede linkova u postavkama aplikacije {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLs සඳහා ඔබ යවන සහ ලබා ගන්නා පෙරදසුන් පෙන්වන්න. මෙය ප්‍රයෝජනවත් විය හැකි අතර {app_name} පෙරදසුන් උත්පාදනය කිරීම සඳහා සම්බන්ධ වෙබ් අඩවිවලට සම්බන්ධ වේ. ඔබට {app_name} ලිංක් පෙරදසුන් හැම විටම සබල කිරීමට හැකි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť náhľady URL, ktoré posielate a dostávate. Môže to byť užitočné, ale {app_name} musí kontaktovať prepojené webové stránky, aby mohol generovať náhľady. Náhľady odkazov môžete kedykoľvek vypnúť v nastaveniach {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaz predogledov za URL-je, ki jih pošljete in prejmete. To je lahko uporabno, vendar mora {app_name} kontaktirati povezane spletne strani za ustvarjanje predogledov. Predoglede povezav lahko vedno izklopite v nastavitvah {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaq paraparje për URL-të që dërgoni dhe pranoni. Kjo mund të jetë e dobishme, megjithatë {app_name} duhet të kontaktojë me faqet e lidhura për të krijuar paraparje. Gjithmonë mund të çaktivizoni paraparjet e lidhjeve në cilësimet e {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи прегледе за URL адресе које шаљете и примате. Ово може бити корисно, међутим {app_name} мора контактирати повезане веб странице да би генерисао прегледе. Можете увек искључити прегледе веза у подешавањима {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikazivanje pregleda za URL-ove koje šaljete i primate. Ovo može biti korisno, međutim {app_name} mora kontaktirati povezane sajtove kako bi generisao preglede. Uvek možete isključiti prikazivanje pregleda linkova u podešavanjima {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa förhandsgranskningar av URL:er du skickar och tar emot. Detta kan vara användbart, men {app_name} måste kontakta länkade webbplatser för att generera förhandsvisningar. Du kan alltid stänga av länkförhandsvisningar i {app_name}s inställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha mapitio ya URLs unazotuma na kupokea. Hili linaweza kuwa na manufaa, hata hivyo {app_name} inahitaji kuwasiliana na tovuti zilizounganishwa ili kutengeneza mapitio. Unaweza kuzima muhtasari wa viungo wakati wowote kwenye mipangilio ya {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்ப மற்றும் பெறும் URLs க்கான முன்னோட்டங்களை திரைக்கவும். இது பயனுள்ளதாக இருக்கலாம், எனினும் {app_name} இணைக்கப்பட்ட இணையதளங்களை தொடர்பு கொண்டு முன்னோட்டங்களை உருவாக்க வேண்டும். முன்னோட்ட காட்சிகளை {app_name} இன் அமைப்புகளில் எப்பொழுதும் முடக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు పంపిన మరియు స్వీకరించిన URLల ప్రివ్యూ చూపించండి. ఇది ఉపయోగకరం, అయినప్పటికీ {app_name} ప్రివ్యూ సృష్టించడానికి లింక్ చేసిన వెబ్‌సైట్‌లను సంప్రదించాలి. మీరు ఎప్పుడైనా లింక్ ప్రివ్యూలను {app_name} యొక్క సెట్టింగ్‌లలో ఆఫ్ చేయవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงตัวอย่างสำหรับ URL ที่คุณส่งและรับ สิ่งนี้มีประโยชน์ แต่ {app_name} จะต้องติดต่อเว็บไซต์ที่ลิงก์เพื่อสร้างตัวอย่าง คุณสามารถปิดการแสดงตัวอย่างลิงก์ได้ตลอดเวลาในการตั้งค่าของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderdiğiniz ve aldığınız URL'lerin önizlemelerini görüntüleyin. Bu faydalı olabilir, ancak {app_name} önizlemeleri oluşturmak için bağlantılı web sitelerine erişmek zorundadır. Bağlantı önizlemelerini her zaman {app_name} ayarlarında kapatabilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відображати попередній перегляд посилань, які ви надсилаєте та отримуєте. Це може бути корисно, однак {app_name} має зв'язуватися з вебсайтами для генерації попереднього перегляду. Ви завжди можете вимкнути попередній перегляд посилань у налаштуваннях {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے بھیجے اور موصول ہونے والے URLs کے لئے پیش نظارے ڈسپلے کریں۔ یہ مفید ہو سکتا ہے، تاہم {app_name} کو پیش نظارے بنانے کے لئے لنک کی گئی ویب سائٹس سے رابطہ کرنا ہوگا۔ آپ ہمیشہ {app_name} کی سیٹنگز میں لنک پیش نظاروں کو بند کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz yuborgan va qabul qilgan URL manzillar uchun ko‘rinishlar ko‘rsatiladi. Bu foydali bo‘lishi mumkin, ammo {app_name} ko‘rinishlarni yaratish uchun bog‘langan veb-saytlarga murojaat qilishi kerak. Siz har doim {app_name}'ning sozlamalarida havola ko‘rinishlarini o‘chirib qo‘ya olasiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị bản xem trước cho URL bạn gửi và nhận. Điều này có thể hữu ích, tuy nhiên {app_name} phải liên hệ với các trang web liên kết để tạo ra bản xem trước. Bạn luôn có thể tắt bản xem trước liên kết trong cài đặt của {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonisa i-preview yezixhumanisi ozithumeletyayanayo. Kungenzeka ukuba luncedo, nangona kunjalo {app_name} kufuneka wuqhagamshele iindawo ezinoxulumaniso ukuze kuveliswe i-preview. Ungayivala i-preview ye-link ku {app_name}'s settings." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "显示您发出的和收到网址的链接预览。这是一项实用功能,但{app_name}必须访问链接网站以生成预览。您可以随时在{app_name}的设置关闭链接预览功能。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示您發送和接收的連結預覽。這可能會很有用,但 {app_name} 必須聯繫已鏈接的網站才能生成預覽。您可以隨時在 {app_name} 的設置中關閉連結預覽。" + } + } + } + }, + "linkPreviewsSend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur Skakel Voorskoue" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال معاينات الروابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləmələrini göndər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج لنک پیش نظارہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць папярэдні прагляд спасылкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане на визуализации на връзка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিঙ্ক প্রিভিউ পাঠান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envia previsualitzacions d'enllaços" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat náhledy odkazů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Rhagolwg Dolenni" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Link Preview" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-Vorschauen senden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή Προεπισκοπήσεων Συνδέσμου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Link Previews" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi antaŭrigardojn de ligilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar Previsualizaciones de Enlaces" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar previsualizaciones de enlaces" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada lingi eelvaated" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lotura Aurrebistak Bidali" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال پیش‌نمایش‌های لینک" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä linkkien esikatselut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-send ang mga Preview sa Link" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer des aperçus de liens" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar previsualizacións das ligazóns." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika Tashin Fuskoki" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח קדם־תצוגות של קישורים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकन भेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošaljite preglede poveznica" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkelőnézetek küldése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել հղման նախադիտումները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim Pratinjau Tautan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invia le anteprime dei link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクプレビューを送る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ლინკის პრევიუების გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើទម្រង់ឆ្លើយតប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಿಂಕ್ ಪೂರ್ವದೃಶ್ಯಗಳನ್ನು ಕಳುಹಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기 보내기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردنی پێشینەی بەستەر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikira okutambula kw’ebigambo ebigatta" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti nuorodų peržiūras" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sūtīt saišu priekšskatījumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати прегледи на линкови" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбоосов сонгуудаа илгээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar Pratonton Pautan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အစမ်းကြည့်ရှုလင့်ခ်များကို ပေးပို့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send forhåndsvisning av lenker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकनहरू पठाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verstuur Link-voorbeelden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send forhåndsvisning av lenker" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Link Previews" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਿੰਕ ਪੂਰਵੀ ਭੇਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij podglądy linków" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د لینک ښکاره کول ولیږئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar Pré-Visualizações De Links" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar pré-visualizações de links" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite previzualizări linkuri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предпросмотр Ссылки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji preglede linkova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබැඳියේ පෙරදසුන් යවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posielať náhľady odkazov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji predogled povezave" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgo Paraparje Lidhjesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слање прегледа везе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji preglede veza" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka förhandsvisningar av länk" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma Muhtasari wa Viungo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொலைத்தொடுப்புகளை அனுப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ ప్రివ్యూలను పంపుము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งตัวอย่างจากลิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı Önizlemelerini Gönder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилати попередній перегляд посилань" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پیش نظارے بھیجیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Havola ko'rinishini yuborish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi đường dẫn xem trước" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela Iipriviuwe Zemisebenzi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送链接预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送連結預覽" + } + } + } + }, + "linkPreviewsSendModalDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy sal nie volle metadatabeskerming hê as jy skakelvoorskoue stuur nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لن تكون لديك الحماية الكاملة للبيانات الوصفية عند إرسال معاينات الروابط." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləmələri göndərərkən tam metadata qorumasına sahib olmayacaqsınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما لینک کی پیش نماہ و ننا کناں وقتی پیغام پوسٹاں میں چُکَّلاتی میٹاڈاٹا نہاں ای حفاظت سرانیء." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не будзеце мець поўную абарону метададзеных пры адпраўцы папярэдняга прагляду спасылак." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма да имате пълна защита на метаданните, когато изпращате превюта на връзки." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিঙ্ক প্রিভিউ পাঠানোর সময় আপনার সম্পূর্ণ মেটাডাটা সুরক্ষা থাকবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tindreu protecció completa de metadades en enviar previsualitzacions d’enllaços." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Při odesílání náhledů odkazů nebudete mít plnou ochranu metadat." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni fydd gennych ddiogelwch metadata llawn wrth anfon rhagolwg dolenni." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ikke fuld beskyttelse af metadata når du sender link previews." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beim Senden von Link-Vorschauen hast du keinen vollständigen Metadatenschutz." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε θα έχετε πλήρη προστασία μεταδεδομένων αν αποστέλλετε προεπισκοπήσεις συνδέσμων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You will not have full metadata protection when sending link previews." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne havos plenan metadata protekton kiam vi sendos ligilajn antaŭrigardojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tendrás una privacidad completa de metadatos al enviar previsualizaciones de enlaces." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tendrás una privacidad completa de metadatos al enviar previsualizaciones de enlaces." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lingieelvaadete saatmisel ei pruugi teil olla täielik metakaitse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka-aurreikuspenak bidaltzerakoan, ez duzu metadatuen babes osoa izango." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با ارسال پیش‌نمایش لینک‌ها محافظت کامل از متادیتا نخواهید داشت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla ei ole täyttä metatietosuojaa lähetettäessä linkkien esikatseluita." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang ganap na proteksyon sa metadata kapag nagpapadala ng preview ng link." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'aurez pas une protection complète des métadonnées en envoyant des aperçus de liens." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non terás protección completa de metadatos ao enviar previsualizacións de ligazóns." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za ku sami cikakken kariyar metadata yayin aika da gabatarwar haɗin ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא תהיה לך הגנת נתוני מטא מלאה בעת שליחת תצוגות מקדימות של קישורים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक प्रीव्यू भेजते समय आपके पास पूर्ण मेटाडेटा सुरक्षा नहीं होगी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nećete imati potpunu zaštitu metapodataka prilikom slanja pregleda veza." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A linkelőnézetének elküldésekor nem lesz teljes metaadat-védelmed." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հղումների նախադիտում ուղարկելիս դուք չեք ունենա մետատվյալների ամբողջական պաշտպանություն։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak mendapatkan perlindungan metadata penuh ketika mengirim tautan pratinjau." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviando le anteprime dei link non avrai la protezione completa dei metadati." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクのプレビューを送信するとき、完全なメタデータ保護はありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ არ გექნებათ სრულად მეთადათა დაცვა ლინკების შემოფასებისას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​នឹងមិន​មានការការពារទិន្នន័យមេតាពេញលេញនៅពេលផ្ញើការមើលតំណជាមុននេះទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಳಹಳ ಕ್ಯಾಮೆರಾವನ್ನು ಕಳುಹಿಸಲು ನಿಮ್ಮ ಸಂಪೂರ್ಣ ಮೆಟಾಡೇಟಾ ರಕ್ಷಣೆ ಇರುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기를 보낼 때 모든 메타데이터 보호가 이루어지지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ ناوەڕستی پرۆتێکشنی مەتا دەرنەبەخشن کاتێک بێجەی ئەگەرەکان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ojja kubeerako obukwasaganya bw'ebiri ekuteekateeka obwa Ow'ekitiibwa bwe oba otoose zibeera obubonerezo bwabviri byatekateeka link previews." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiant nuorodos peržiūras, nebus visapusiškos meta duomenų apsaugos." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtot saites priekšskatījumus, jums nebūs pilnīgas meta datu aizsardzības." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема да имате целосна заштита на метаподатоците при испраќање прегледи на линкови." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбоосны урьдчилан харагдах хэсгийг илгээх үед та бүрэн мета өгөгдөл хамгаалалтгүй байх болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak akan mempunyai perlindungan metadata sepenuhnya semasa menghantar pratonton pautan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် လင့်များအား ပို့ရာတွင် Metadata protection အပြည့်အစုံ မရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil ikke ha full metadatabeskyttelse når du sender lenkeforhåndsvisninger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिङ्क प्रिभ्यूहरू पठाउँदा तपाईंसँग पूर्ण मेटाडाटा सुरक्षाको व्यवस्था हुँदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft geen volledige Metadata-bescherming bij het verzenden van linkvoorbeelden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil ikkje ha full metadatabeskyttelse når du sender lenkeforhåndsvisningar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simudzakhala ndi chitetezo chokwanira cha metadata mukatumiza mawonetsero a maulalo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਲਿੰਕ ਪਰੀਵਿਊ ਭੇਜਣ ਸਮੇਂ ਪੂਰੀ ਮੈਟਾਡਾਟਾ ਸੁਰੱਖਿਆ ਪ੍ਰਾਪਤ ਨਹੀਂ ਹੋਵੇਗੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podczas wysyłania podglądu linków nie wystęuje pełna ochrona metadanych." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو به د لینک مخونو لیږلو په وخت کې بشپړ میټاډاټا خونديتیا ونلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não terá proteção completa de metadados ao enviar pré-visualizações de links." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não terá proteção total de metadados ao enviar visualizações de links." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu veți avea protecție completă asupra metadatelor atunci când trimiteți previzualizări ale linkurilor." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваши метаданные не будут полностью защищены при отправке ссылок с предпросмотром." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nećeš imati potpunu zaštitu metapodataka kada šalješ preglede linkova." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබැඳි පෙරදසුන් යැවීමේදී ඔබට සම්පූර්ණ පාරදත්ත ආරක්ෂාවක් නොලැබෙනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pri odosielaní náhľadov odkazov nebudete mať úplnú ochranu meta údajov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko pošiljate povezave za predogled, ne boste imeli popolne zaščite metapodatkov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk do të keni mbrojtje të plota të metadata-s kur dërgoni parapamje të lidhjeve." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нећете имати потпуну заштиту метаподатака када шаљете прегледе линкова." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nećete imati potpunu zaštitu metapodataka prilikom slanja pregleda linkova." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kommer inte att ha fullt metadata-skydd när du skickar förhandsgranskningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hautakuwa na ulinzi kamili wa metadata unapoituma kiungo za mapitio." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "லிங்க் மாதிரிகளைக் அனுப்புதல் போது உங்கள் முழுமையான புள்ளிவிவர பாதுகாப்பு இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ పీవ్యూస్ పంపడం సమయంలో మీకు పూర్తిస్థాయి మెటాడేటా రక్షణ లభించదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณจะไม่มีการป้องกันข้อมูลเมตาอย่างเต็มที่เมื่อส่งการแสดงตัวอย่างลิงก์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı önizlemeleri gönderirken tamamıyla metaveri korumasına sahip olmazsınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас не буде повного захисту метаданих при надсиланні попереднього перегляду посилань." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پیش منظر بھیجتے وقت آپ کو مکمل Metadata protection نہیں ہوگی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qabul qiluvchining xabar so'rovini tasdiqlaganidan keyin ovozli xabarlar va ilovalarni yuborishingiz mumkin bo'ladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn sẽ không được bảo vệ siêu dữ liệu đầy đủ khi gửi bản xem trước liên kết." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awuyi kuba nokhuseleko olupheleleyo lweMetadata xa uthumela izikhankanyi zamakhonkco." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您无法在绝对的元数据安全保障前提下发送链接预览。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在傳送連結預覽時無法得到完整的元數據保護。" + } + } + } + }, + "linkPreviewsTurnedOff" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skakeldruk-voorskoue is af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معاينات الرابط مغلقة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keçid önizləmələri bağlıdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews Are Off" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Папярэдні прагляд спасылак адключаны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Визуализациите на връзки са изключени" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লিংক প্রিভিউ বন্ধ হয়ে গেছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualitzacions prèvies d'enllaços desactivades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhledy odkazů vypnuty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhagolygon Dolenau wedi'u Diffodd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Forhåndsvisninger Er Slået Fra" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-Vorschauen sind aus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προεπισκοπήσεις Συνδέσμου Απενεργοποιημένες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews Are Off" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antaŭrigardoj de Ligilo estas Malŝaltitaj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizaciones de enlaces desactivadas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Las previsualizaciones de enlaces están desactivadas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lingi eelvaated on välja lülitatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteka aurrebistak desaktibatuak daude" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش‌نمایش‌های لینک خاموش هستند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkkien esikatselu on poistettu käytöstä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Preview ng Link Ay Naka-off" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aperçus des liens désactivés" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizacións de ligazóns desactivadas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanan Gajeren Hoto An Kashe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תצוגות מקדימות של קישורים כבויות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक पूर्वावलोकन बंद हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi poveznica su isključeni" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linkelőnézetek letiltva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հղումների նախադիտումները անջատված են" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratinjau Tautan Dinonaktifkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anteprime dei link disabilitate" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リンクプレビューが無効です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბმულის წინა ხედები გამორთულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការមើលតំណភាសាសាសកូន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಿಂಕ್ ಪೂರ್ವावलೋಕನಗಳು ಆಫ್ ಆಗಿವೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "링크 미리보기 꺼짐" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێنمای بارێنە کڵاوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba Enkule okuva ku Link Zikkiriziddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuorodų peržiūros išjungtos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saišu priekšskatījumi ir izslēgti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прегледите на врски се исклучени" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Линк урьдчилан үзэхүүд унтарсан байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratonton Pautan Dimatikan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အစမ်းကြည့်ရှုလင့်ခ်များကို ပိတ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning av lenker er av" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लिंक प्रीभ्यूहरू बन्द छन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link-voorbeelden uitgeschakeld" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lenkeforhåndsvisning er avslått" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma Link Previews Akutsekedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲਿੰਕ ਪੂਰਵਾਦ੍ਰਸ਼ ਆਫ਼ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podglądy linków wyłączone" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیوند مخکتنه بند دي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizações de Link Desativadas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizações de links estão desligadas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previzualizările linkurilor sunt dezactivate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предпросмотры ссылок выключены" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi linkova su isključeni" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබැඳි පෙරදසුන් අක්‍රියයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukážky odkazov sú vypnuté" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predogledi povezav so izklopljeni" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paraparjet e Lidhjeve Janë të Fikura" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прегледи веза су искључени" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledi veza su isključeni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Länkförhandsgranskningar är inaktiverade" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muhtasari wa Viungo Umezimwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இணைப்பு முன்னோட்டங்கள் அணைக்கப்பட்டிருக்கின்றது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్ ప్రీవ్యూస్ ఆఫ్ ఉన్నాయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิดตัวอย่างจากลิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı Önizlemeleri Kapalı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Попередній перегляд посилань вимкнено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پریویوز بند ہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Havola ko'rinishlari o'chirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link Previews Tắt" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imixholo yeLinki Icinyiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "链接预览已关闭" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已停用連結預覽" + } + } + } + }, + "linkPreviewsTurnedOffDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} moet gekoppelde webwerwe kontak om voorskoue van skakels wat jy stuur en ontvang te genereer.

Jy kan hulle aanskakel in {app_name} se instellings." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يجب الاتصال بالمواقع المرتبطة لإنشاء معاينات للروابط التي ترسلها وتستقبلها.

يمكنك تفعيلها في إعدادات {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} göndərdiyiniz və aldığınız keçidlərin önizləmələrini yaratmaq üçün əlaqələndirilmiş veb saytlarla əlaqə saxlamalıdır.

Onları {app_name} ayarlarında işə sala bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پیڈلنکلاسٹ بندشین وِسا پنیں لرناں سکال کیئے.

چاہ گرتیے دستندہ تشکیل کریں {app_name}یبچ تحتدی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} павінен звяртацца да звязаных вэб-сайтаў, каб атрымліваць прэв'ю спасылак, якія вы адпраўляеце і атрымліваеце.

Вы можаце ўключыць гэта ў наладках {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} трябва да се свърже с линкнатите уебсайтове, за да генерира визуализации на линковете, които изпращате и получавате.

Можете да ги включите в настройките на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} সংযুক্ত ওয়েবসাইটগুলি প্রি-ভিউস তৈরির জন্য যোগাযোগ করতে হবে।

আপনি এগুলি {app_name} এর সেটিংসে চালু করতে পারেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ha de contactar amb llocs web enllaçats per generar previsualitzacions dels enllaços que envieu i rebeu.

Podeu activar-ho a la configuració de {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} musí kontaktovat propojené webové stránky, aby vytvořil náhledy odkazů, které posíláte a přijímáte.

Můžete je zapnout v nastavení {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'n rhaid i {app_name} gysylltu â gwefannau cysylltiedig i gynhyrchu rhagolwg o ddolenni a anfonwch a derbyniwch.

Gallwch eu troi ymlaen yng ngosodiadau {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skal kontakte tilknyttede websites for at generere forhåndsvisninger af links, du sender og modtager.

Du kan slå dem til i {app_name}'s indstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} muss verlinkte Webseiten kontaktieren, um Vorschauen von Links zu erstellen, die du sendest und empfängst.

Du kannst diese Funktion in den {app_name}-Einstellungen aktivieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} πρέπει να επικοινωνήσει με συνδεδεμένες ιστοσελίδες για να δημιουργήσει προεπισκοπήσεις των συνδέσμων που στέλνετε και λαμβάνετε.

Μπορείτε να τις ενεργοποιήσετε στις ρυθμίσεις του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} must contact linked websites to generate previews of links you send and receive.

You can turn them on in {app_name}'s settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} devas kontakti ligitajn retejojn por generi antaŭprezentojn de ligiloj kiujn vi sendas kaj ricevas.

Vi povas ŝalti ilin en la agordoj de {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} debe contactar con sitios web enlazados para generar vistas previas de los enlaces que envías y recibes.

Puedes activarlas en los ajustes de {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} debe contactar sitios web vinculados para generar vistas previas de los enlaces que envíes y recibas.

Puedes activarlos en la configuración de {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} peab linkide eelvaadete genereerimiseks ühendust võtma lingitud veebisaitidega.

Saate need sisse lülitada {app_name}'i seadetes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k lotutako webguneak kontaktatu behar ditu bidaltzen eta jasotzen dituzun esteken aurrizkiak sortzeko.

Berriro piztu ditzakezu {app_name}'n ezarpenetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} باید برای ایجاد پیش‌نمایش لینک‌هایی که ارسال و دریافت می‌کنید، با وب‌سایت‌های لینک شده تماس بگیرد.

می‌توانید آنها را در تنظیمات {app_name} روشن کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} täytyy ottaa yhteyttä linkitettyihin verkkosivustoihin luodakseen linkkien esikatselut lähetetyistä ja vastaanotetuista linkeistä.

Voit ottaa esikatselut käyttöön {app_name} asetuksista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangang kontakin ng {app_name} ang mga naka-link na website upang makabuo ng mga preview ng mga link na iyong ipinapadala at natatanggap.

Maaari mong i-on ito sa mga settings ng {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} doit contacter des sites web liés pour générer les aperçus des liens que vous envoyez et recevez.

Vous pouvez les activer dans les paramètres de {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} debe contactar con webs para xerar previsualizacións das ligazóns que envías e recibes.

Podes activalas nos axustes de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dole ne ya tuntuɓi gidajen yanar sadarwa don samar da hasashen hanyoyin da kake aikawa da karɓa.

Za ku iya kunna su a cikin saitin {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} חייב ליצור קשר עם אתרים מקושרים כדי ליצור תצוגות מקדימות של קישורים שאתה שולח ומקבל.

אתה יכול להפעיל אותם בהגדרות של {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को आपके द्वारा भेजे और प्राप्त किए गए लिंक के पूर्वावलोकन उत्पन्न करने के लिए लिंक की गई वेबसाइटों से संपर्क करना होगा।

आप इन्हें {app_name} की सेटिंग्स में चालू कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mora kontaktirati povezane web stranice kako bi generirao preglede poveznica koje šaljete i primate.

Možete ih uključiti u postavkama {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kapcsolatba kell lépjen a hivatkozott webhelyekkel, hogy előnézeteket készíthessen az általad küldött és fogadott linkekről.

Ezt a {app_name} beállításaiban bekapcsolhatod." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պետք է հասանելիություն ունենա Ազդանշանային կայքերին հղումների նախադիտումի համար.

Դուք կարող եք դրանք միացնել {app_name}-ի կարգավորումներում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} harus menghubungi situs web yang ditautkan untuk menghasilkan pratinjau tautan yang Anda kirim dan terima.

Anda dapat menyalakannya di pengaturan {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} deve interfacciarsi con i siti web condivisi per generare l'anteprima dei link che invii e ricevi.

Puoi attivarli nelle impostazioni di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}は、送受信するリンクのプレビューを生成するためにリンクされたウェブサイトに接続する必要があります。

{app_name}の設定でプレビューをオンにできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება დაკავშირებული ვებსაიტების კონტაქტი, რომ გენერირდებოდნენ ბმულების წინასწარი ხილვები, რომლებიც შევა და მიიღწევა.

შეგიძლიათ მათი ჩართული იყოს {app_name}-ის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការទាក់ទងគេហទំព័រដែលភ្ជាប់ដើម្បីបង្កើតការមើលជាមុននៃតំណភ្ជាប់ដែលអ្នកផ្ញើ និងទទួល។

អ្នកអាចបើក​បាននៅក្នុងការកំណត់​របស់ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನಿಮಗೆ ಕಳುಹಿಸಿದ ಮತ್ತು ಸ್ವೀಕರಿಸಿದ ಲಿಂಕ್‌ಗಳ ಪೂರ್ವವೀಕ್ಷಣೆಯನ್ನು ಜನರೇಟ್ ಮಾಡಲು ಸಂಪರ್ಕಿತ ವೆಬ್‌ಸೈಟ್‌ಗಳನ್ನು ಸಂಪರ್ಕಿಸಬೇಕು.

ನೀವು ಅವುಗಳನ್ನು {app_name} ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಆನ್ ಮಾಡಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}는 송수신 링크 프리뷰를 생성하기 위해 연결된 웹사이트에 접속해야 합니다.

{app_name}의 설정에서 이를 켤 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Divê {app_name} bi malperên girêdayî re têkilî dayne da ku pêşdîtinên girêdanên ku hûn dişînin û distînin çêbikin.

Hûn dikarin wan di mîhengên {app_name} de çalak bikin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kikoona ebisibiddwa ku yintaneeti okuba ne preview ebisiba by'otuma n'obifunabyo.

Oyinza bikyusa mu settings za {app_name}'s." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງຕິດຕໍ່ກັບເວັບໄຊທ໌ທີ່ເຊື່ອມໂຍງເພື່ອສ້າງຮູບພາບພາບຢ່າງລະອຽດຂອງການລະດົມທີ່ເຈົ້າສົ່ງແລະຮັບ.

ປິດເຄື່ອງທີ່ຕັ້ງຂອງ {app_name} ໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} privalo susisiekti su susietomis svetainėmis, kad sugeneruotų nuorodų, kurias siunčiate ir gaunate, peržiūras.

Galite jas įjungti {app_name} nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} jāsaņem piekļuve saistītajām tīmekļa vietnēm, lai izveidotu priekšskatījumus saitēm, ko jūs sūtāt un saņemat.

Jūs varat tās ieslēgt {app_name} iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} мора да контактира поврзани веб-страници за да генерира прегледи на линковите што ги испраќате и примате.

Можете да ги вклучите во поставките на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-д холбоосны урьдчилсан харагдацыг үүсгэхийн тулд холбоотой вэбсайтуудтай холбогдох шаардлагатай.

Та {app_name}-ийн тохиргоонд тэдгээрийг асааж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mesti menghubungi laman web yang berkaitan untuk menjana pratonton pautan yang anda hantar dan terima.

Anda boleh menghidupkannya di tetapan {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ပေးပို့ထားပြီးရရှိထားသောလင့်ခ်များ၏အစမ်းကြည့်ရှုကိုဖန်တီးရန်တစ်ပါတ်သို့ ဆက်သွယ်ရပါမည်။

သင်သည် ၎င်းအား {app_name} ၏ ဆက်တင်တွင်ဖွင့်နိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} må kontakte lenkede nettsteder for å generere forhåndsvisning av lenker du sender og mottar.

Du kan slå dem på i {app_name}s innstillinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ले तपाईंले पठाउने र प्राप्त गर्ने लिङ्कहरूको पूर्वावलोकन उत्पन्न गर्न लिङ्क गरिएका वेबसाइटहरूमा सम्पर्क गर्नुपर्छ।

तिनीहरूलाई {app_name}को सेटिङहरूमा अन गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} moet gelinkte websites contacteren om voorvertoningen te genereren van links die u verzendt en ontvangt.

U kunt deze inschakelen in {app_name} instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} må kontakte lenkede nettsider for å generere forhåndsvisninger av lenker du sender og mottar.

Du kan slå dem på i {app_name}'s innstillinger." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kulankhula ndi mawebusayiti ophatikiza kuti ipange ma preview a maulalo omwe mumatumiza komanso kulandira.

Mutha kuwaonetsetsa mu zokonda za {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਉਹ ਲਿੰਕ ਪੇਵਿਊ ਬਣਾਉਣ ਲਈ ਤਕ ਦਿਤਾ ਜਾਣਾ ਚਾਹੀਦਾ ਹੈ ਜੋ ਤੁਸੀਂ ਭੇਜਦੇ ਅਤੇ ਪ੍ਰਾਪਤ ਕਰਦੇ ਹੋ।

ਤੁਸੀਂ ਇਹਨਾਂ ਨੂੰ {app_name} ਦੀ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby generować podgląd wysłanych i odbieranych linków, aplikacja {app_name} musi połączyć się z powiązanymi stronami.

Możesz włączyć tę funkcję w ustawieniach aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} باید د لینک شویو ویب پاڼو سره اړیکه ونیسي ترڅو تاسو او ترلاسه شوی لینکونو ته مخکتنه تولید کړي.

تاسو کولی شئ دا په {app_name} تنظیماتو کې روښانه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} deve contatar sites vinculados para gerar pré-visualizações dos links que você envia e recebe.

Você pode ativá-los nas configurações do {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de se ligar aos respectivos sites para gerar pré-visualizações de links que envia e recebe.

Pode ativá-los nas configurações do {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trebuie să contacteze site-urile web asociate prin link pentru a genera previzualizări ale linkurilor pe care le trimiteți și le primiți.

Puteți activa funcția aceasta în setările {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} необходимо посетить сайты, на которые даются отправляемые и получаемые ссылки, чтобы создать для них превью.

Вы можете включить эту функцию в настройках {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mora kontaktirati povezane web stranice kako bi generirao preglede linkova koje šaljete i primate.

Možete ih uključiti u postavkama {app_name}-a." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඔබ යවන සහ ලබන සබැඳි පෙරදසුන් උත්පාදනය කිරීමට සම්බන්ධිත වෙබ් අඩවි සම්බන්ධ කළ යුතුය.

ඔබට ඒවා {app_name}ගේ සැකසීම් තුළ සබල කළ හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} musí kontaktovať prepojené webové stránky na generovanie náhľadov odkazov ktoré posielate a prijímate.

Môžete ich zapnúť v nastaveniach {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mora vzpostaviti stik s povezanimi spletnimi mesti, da ustvari predogled povezav, ki jih pošljete in prejmete.

Lahko jih omogočite v nastavitvah {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} duhet të kontaktojë faqet e lidhura për të gjeneruar parashikime të lidhjeve që dërgoni dhe merrni.

Ju mund t'i aktivizoni ato në rregullimet e {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} мора контактирати повезане вебсајтове да би генерисао прегледе линкова које шаљете и примате.

Можете их укључити у подешавањима {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mora kontaktirati povezane web stranice da generiše preglede linkova koje šaljete i primate.

Možete ih uključiti u podešavanjima {app_name}-a." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} måste kontakta länkade webbplatser för att generera förhandsvisningar av länkar du skickar och tar emot.

Du kan slå på dem i {app_name}s inställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} lazima iwasiliane na tovuti zilizounganishwa ili kuzalisha mwonekano wa viungo unavyotuma na kupokea.

Unaweza kuwawasha kwenye mipangilio ya {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இணைக்கப்பட்ட வலைத்தளங்களை தொடர்பு கொண்டு, நீங்கள் அனுப்பும் மற்றும் பெறும் இணைப்பின் முன்னோட்டத்தை உருவாக்க வேண்டும்.

நீங்கள் {app_name} இன் அமைப்புகளில் முன்போக்குகளை இயக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లింక్స్‌ను మీరు పంపిన మరియు స్వీకరించినట్లు జనరేట్ చేయడానికి {app_name} అనుసంధానించిన వెబ్‌సైట్లు సంప్రదించవలసి ఉంటుంది.

మీరు {app_name} యొక్క అమరికలలో అవి ఆన్ చేస్తాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องติดต่อเว็บไซต์ที่เชื่อมโยงเพื่อสร้างตัวอย่างลิงก์ที่คุณส่งและรับ

คุณสามารถเปิดใช้งานได้ในการตั้งค่าของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gönderdiğiniz ve aldığınız bağlantıların önizlemelerini oluşturmak için bağlantılı web siteleriyle iletişime geçmelidir.

Onları {app_name} ayarlarından açabilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} повинен зв'язуватися з підключеними веб-сайтами, щоб створити попередній перегляд посилань, що ви надсилаєте і отримуєте.

Ви можете увімкнути їх у налаштуваннях {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لنک پیش نظارہ بنانے کے لئے {app_name} کو منسلک ویب سائٹوں سے رابطہ کرنا ہوگا۔

آپ انہیں {app_name} کی ترتیبات میں آن کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} siz yuborgan va qabul qilgan havolalarning oldindan ko'rinishlarini yaratish uchun bog'langan veb-saytlar bilan bog'lanishi kerak.

Ularni {app_name} sozlamalarida yoqishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} phải liên hệ với các trang web liên kết để tạo ra bản xem trước của các liên kết bạn gửi và nhận.

Bạn có thể bật chúng trong cài đặt của {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kufuneka iqhagamshelane newebhusayithi ezidibeneyo ukwenza iintlobo zamanqaku ozithumelayo nozifumanayo.

Unokuzenza kwii-settings zika {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}必须访问链接的网站以生成您发送和接收的链接预览。

您可以在{app_name}的设置中启用该功能。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 必須連接已連結的網站以生成您傳送和接收的鏈接預覽。

您可以在 {app_name} 的設定中啟用此功能。" + } + } + } + }, + "loadAccount" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Rekening" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحميل الحساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabı yüklə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Load Account" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аднавіць уліковы запіс" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на акаунт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট লোড করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar Compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho Cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæs konto" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account laden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση Λογαριασμού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Load Account" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargi Konton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargar cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargar cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadi konto" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontua kargatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارگذاری حساب" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa tili" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-load ang Account" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Charger le compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargar conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loda Asusu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טען חשבון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अकाउंट लोड करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitaj račun" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó betöltése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնել հաշիվը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat Akun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carica account" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントを読み込み" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიშის ჩატვირთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ទុក​គណនី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆಯನ್ನು ಲೋಡ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 불러오기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی ئەکاونت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka Lipoota" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkelti paskyrą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādēt kontu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитај профил" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Данс ачаалах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muatkan Akaun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့်တင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last inn konto" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता लोड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account laden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last inn konto" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanipo akaunti" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ਲੋਡ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب بار کړی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Încarcă contul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузить аккаунт" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitaj račun" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගිණුම පූරණය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítavanie konta" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naloži račun" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngarko llogarinë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитај налог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitaj nalog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladda konto" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakua Akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கை ஏற்றுக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అకౌంట్ లోడ్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหลดบัญชี" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Yükle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантажити обліковий запис" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ لوڈ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akkauntni yuklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tải Tài Khoản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Layisha iAkhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加载账户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "載入帳號" + } + } + } + }, + "loadAccountProgressMessage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai jou rekening" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاري تحميل حسابك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınız yüklənir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading your account" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка вашага ўліковага запісу" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на вашия акаунт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার একাউন্ট লোড হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregant el teu compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání vašeho účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho eich cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser din konto" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dein Account wird geladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση του λογαριασμού σας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading your account" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante vian konton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando su cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando su cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadin sinu kontot" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure kontua kargatzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری حساب شما" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan tiliäsi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niloload ang iyong account" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement de votre compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando a túa conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana loda asusunka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען את חשבונך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका अकाउंट लोड हो रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje vašeg računa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó betöltése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում է ձեր հաշիվը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat akun Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento del tuo account" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントを読み込み中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება თქვენი ანგარიში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកគណនីរបស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 불러오는 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بارکردنی ئەکاونت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikka lipoota yo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama jūsų paskyra" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē jūsu kontu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување на вашиот профил" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны акаунтыг ачаалж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan akaun anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကောင့်အား အသစ်တင်နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn kontoen din" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको खाता लोड हुँदैछ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je account laden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lastar inn kontoen din" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo akaunti yanu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਖਾਤਾ ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو حساب بارول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando a sua conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A carregar a sua conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă contul tău" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка вашего аккаунта" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje vašeg računa" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ගිණුම පූරණය වෙමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítavanie vášho konta" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje vašega računa" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duke ngarkuar llogarinë tuaj" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање вашег налога" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje vašeg naloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar ditt konto" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inafunguka akaunti yako" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கை ஏற்றுகின்றன" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ అకౌంట్ ను లోడ్ చేస్తున్నాము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดบัญชีของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabın yükleniyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження облікового запису" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا اکاؤنٹ لوڈ ہو رہا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akkauntingiz yuklanmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải tài khoản của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha iakhawunti yakho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载您的账户" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在載入您的帳戶..." + } + } + } + }, + "loading" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ التحميل..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'està carregant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítání..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird geladen..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Φόρτωση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando ..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laadimine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال بارگذاری..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naglo-loading..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana loda..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लोड हो रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Betöltés..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնվում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "読み込み中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុក..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲೋಡ್‌ ಆಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "불러오는 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "...بارکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nga N’tikka..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вчитување..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ачаалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လုပ်ဆောင်ဆဲ..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लोड हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan het laden..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lastar..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lekanimo..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بار شوی..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A carregar..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පූරණය වෙමින්…" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítava sa..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalagam ..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohet..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inafunguka..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஏற்றப்பட்டுள்ளன..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లోడింగ్..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลด..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوڈ ہو رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在加载..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "載入中…" + } + } + } + }, + "lockApp" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sluit Toep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قفل التطبيق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tətbiqi kilidlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock App" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Замкнуцца Session" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заключване на приложението" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাপ লক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquejar l'aplicació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzamknout aplikaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clôi Ap" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lås app" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "App sperren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλείδωμα εφαρμογής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock App" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝlosi Apon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear aplicación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear aplicación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukusta rakendus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikazioa blokeatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "قفل کردن برنامه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukitse sovellus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-lock ang App" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verrouiller l'application" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear aplicación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rufe Manhaja" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעל אפליקציה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एप्लिकेशन लॉक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaključaj aplikaciju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "App lezárása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կողպել հավելվածը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunci Aplikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blocca l'app" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アプリをロック" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აპლიკაციის ბლოკირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាក់សោកម្មវិធី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಪ್ ಲಾಕ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "앱 잠금" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داگ بخەوى" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siba App" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užrakinti programėlę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēt lietotni" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заклучи апликација" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аппликэйшнийг түгжих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunci Aplikasi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "App ကို လုံးဝလုပ်ဆောင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lås app" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुप्रयोग लक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "App vergrendelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lås app" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pati Lakatizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਪ ਲੌਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zablokuj aplikację" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایپ قفل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear Aplicativo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear aplicação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blochează Aplicația" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокировать приложение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaključaj aplikaciju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යෙදුම අනාරක්ෂිත කරනවා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzamknúť aplikáciu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakleni aplikacijo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyç Aplikacionin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закључај апликацију" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaključaj aplikaciju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lås app" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funga Programu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பயன்பாட்டு பூட்டு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "యాప్ ను లాక్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ล็อคแอป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uygulamayı Kilitle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заблокувати додаток" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایپ لاک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilovani qulfga olish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khoá Ứng Dụng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qinisa iApp" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "锁定应用" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "鎖定應用程式" + } + } + } + }, + "lockAppDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vereis vingerafdruk, PIN, patroon of wagwoord om {app_name} oop te maak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتطلب بصمة الإصبع، رَقَم التعريف الشخصي، النقش أو كلمة المرور لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmaq üçün barmaq izi, PIN, naxış və ya parol istifadəsini məcburi et." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انگوٹی، PIN، نمون یاں سکرین پامولی پرانہ کاتتء {app_name} وا بندنت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для разблакіроўкі {app_name} неабходны адбітак пальца, PIN-код, малюнак ці пароль." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изисквайте пръстов отпечатък, ПИН, шаблон или парола за отключване на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করতে ফিঙ্গারপ্রিন্ট, পিন, প্যাটার্ন বা পাসওয়ার্ড প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requeriu empremta digital, PIN, patró o contrasenya per a desbloquejar {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadovat otisk prstu, PIN, vzor nebo heslo k odemknutí {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angen olion bysedd, PIN, patrwm neu gyfrinair i ddatgloi {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kræv fingeraftryk, PIN, mønster eller adgangskode for at låse {app_name} op." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erfordert Fingerabdruck, PIN, Muster oder Passwort zum Entsperren von {app_name}." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Να απαιτείται δακτυλικό αποτύπωμα, PIN, μοτίβο ή κωδικός πρόσβασης για το ξεκλείδωμα του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Require fingerprint, PIN, pattern or password to unlock {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postuli fingrospuron, PIN-kodon, ŝablonon aŭ pasvorton por malŝlosi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar huella, PIN, patrón o contraseña para desbloquear {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar huella, PIN, patrón o contraseña para desbloquear {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nõutav sõrmejälg, PIN-kood, muster või parool {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskatu hatz-marka, PINa, patroi edo pasahitza {app_name} desblokeatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لازم داشتن اثرانگشت، پین، الگو یا گذرواژه برای بازگشایی {app_name}." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaadi {app_name}in avaukseen sormenjälki, PIN, kuvio tai salasana." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng fingerprint, PIN, pattern o password para i-unlock ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nécessite une empreinte digitale, un code PIN, un motif ou un mot de passe pour déverrouiller {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requirir pegada dixital, PIN, patrón ou contrasinal para desbloquear {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buƙatar alamar yatsa, PIN, tsari ko kalmar sirri don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרוש טביעת אצבע, PIN, דגם או סיסמה לביטול נעילת {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फिंगरप्रिंट, पिन, पैटर्न या पासवर्ड की आवश्यकता {app_name} को अनलॉक करने के लिए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtijevaj otisak prsta, PIN, uzorak ili lozinku za otključavanje {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujjlenyomat, PIN-kód, minta vagy jelszó szükséges {app_name} feloldásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահանջել մատնահետք, PIN, նախշ կամ գաղտնաբառ՝ {app_name}-ը բացելու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan sidik jari, PIN, pola, atau kata sandi untuk membuka kunci {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per sbloccare {app_name} viene richiesta un'impronta, un PIN, una sequenza o una password." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} のロックを解除するには、指紋、PIN、パターン、またはパスワードが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოთხოვნა თითის ანაბეჭდის, PIN-ის, ნიმუშის ან პაროლის აპლიკაციის განბლოკვისათვის {app_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាមទារក្រយ៉ៅដៃ, កូដ PIN, លំនាំ ឬពាក្យសម្ងាត់ ដើម្បីដោះសោ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ಫಿಂಗರ್‌ಪ್ರಿಂಟ್, ಪಿನ್, ಪ್ಯಾಟರ್ನ್ ಅಥವಾ ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 을 열때마다 지문, PIN, 패턴 또는 비밀번호를 요구합니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێویستە چەشنە یان PIN یان ڕووتە یان تێپەڕەوشەیەک بکرێتە کار {app_name} کە بەردەبەكەرەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegeka Touch ID, Face ID oba code kuja okukwata {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums reikės piršto antspaudo, PIN kodo, modelio ar slaptažodžio, kad atrakintumėte {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepieciešams pirkstu nospiedums, PIN kods, raksts vai parole, lai atbloķētu {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бара отпечаток од прст, PIN, шема или лозинка за отклучување на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ыг нээхийн тулд хурууны хээ, PIN, загвар эсвэл нууц үг шаардана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan cap jari, PIN, corak atau kata laluan untuk membuka kunci {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုလော့ခ်ဖွင့်ရန် လက်ဗွေ၊ PIN၊ ပုံစံ သို့မဟုတ် စကားဝှက် လိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev fingeravtrykk, PIN-kode, mønster eller passord for å låse opp {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गर्न फिंगरप्रिन्ट, पिन, ढाँच वा पासवर्ड आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vingerafdruk, PIN, patroon of wachtwoord vereisen om {app_name} te ontgrendelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev fingeravtrykk, PIN, mønster eller passord for å låsa opp {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu wa fingerprint, PIN, chitsanzo kapena achinsinsi kuti mutsegule {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਣਲੌਕ ਕਰਨ ਲਈ ਫਿੰਗਰਪ੍ਰਿੰਟ, PIN, ਪੈਟਰਨ ਜਾਂ ਪਾਸਵਰਡ ਦੀ ਲੋੜ ਹੁੰਦੀ ਹੈ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagaj odcisku palca, kodu PIN, wzoru lub hasła, aby odblokować aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ګوتو نښه، PIN، نمونه یا پاسورډ لازمي وي ترڅو {app_name} لاک کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir impressão digital, PIN, padrão ou senha para desbloquear {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar impressão digital, PIN, padrão ou palavra-passe para desbloquear {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este necesară o amprentă digitală, un cod PIN, un model sau o parolă pentru a debloca {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Требовать отпечаток пальца, PIN-код, секретную фразу или пароль для разблокировки {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj otisak prsta, PIN, šablon ili lozinku za otključavanje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු විවෘත කිරීමට අතපෑත අනුවඳක්, PIN, රටාවක් හෝ මුරපදයක් අවශ්‍ය වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na odomknutie {app_name} sa vyžaduje odtlačok prsta, PIN kód, vzor alebo heslo." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj prstni odtis, PIN, vzorec ali geslo za odklepanje {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko gjurmën e gishtit, PIN-in, modelin ose fjalëkalimin për të zhbllokuar {app_name}-in." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтевај отисак прста, ПИН, шаблон или лозинку за откључавање {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebno je otisak prsta, PIN, obrazac ili lozinka da otključate {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kräv fingeravtryck, PIN-kod, mönster eller lösenord för att låsa upp {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "omba alama ya kidole, PIN, muundo au nywila ili kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}யை திறக்க { ஒப்பந்த இனிய சக்தையுடன்} உடன் அடைவுகளிருந்து வேண்டுகின்றேன்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ని అన్లాక్ చేయడానికి ఫింగర్‌ప్రింట్, PIN, ప్యాటర్న్ లేదా పాస్వర్డ్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ต้องใช้ลายนิ้วมือ, PIN, รูปแบบ หรือรหัสผ่านในการปลดล็อก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının kilidini açmak için parmak izi, PIN, desen veya şifre kullanılmasını zorunlu kılın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимагати відбиток пальця, PIN-код, графічний ключ або пароль для розблокування {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لیے فنگر پرنٹ، پن، پیٹرن یا پاس ورڈ درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ni ochish uchun barmoq izi, PIN, naqsh yoki parolni talab qilish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu vân tay, PIN, mẫu hình hoặc mật khẩu để mở khóa {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifuna isisiseko somnwe, iPIN, ipateni okanye ipaswedi ukuvula {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要指纹、PIN、图案或密码以解锁{app_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定指紋、PIN、圖案、或密碼解鎖 {app_name}。" + } + } + } + }, + "lockAppDescriptionIos" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vereis Touch ID, Face ID of jou wagwoord om {app_name} oop te maak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتطلب التعرف على الوجه، بصمة الإصبع أو كلمة المرور الخاصة بك لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmaq üçün Touch ID, Face ID və ya parol istifadəsini məcburi et." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹچ ID، فیس ID یا پاسورڈ درکار و بند را {app_name}." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Патрабаваць Touch ID, Face ID або код доступу, каб разблакіраваць {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изисквайте Touch ID, Face ID или вашия парола за отключване на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করতে টাচ আইডি, ফেস আইডি বা আপনার পাসকোড প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requereix Touch ID, Face ID o el teu codi per a desbloquejar {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadovat Touch ID, Face ID nebo kód k odemknutí {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angen Touch ID, Face ID neu eich cod mynediad i ddatgloi {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kræv Touch ID, Face ID eller din adgangskode for at låse {app_name} op." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Entsperren von {app_name} ist Touch ID, Face ID oder Passcode erforderlich." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απαιτείται Touch ID, Face ID ή ο κωδικός πρόσβασης για να ξεκλειδώσετε το {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Require Touch ID, Face ID or your passcode to unlock {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postuli Tuŝ-ID, Vizaĝ-ID aŭ via pasenkodon por malŝlosi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir Touch ID, Face ID o tu clave para desbloquear {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir Touch ID, Face ID o tu clave para desbloquear {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nõutav Touch ID, Face ID või pääsukood {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskatu Touch ID, Face ID edo zure pasakodea {app_name} desblokeatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای باز کردن قفل {app_name} به شناسه لمسی، شناسه صورت و یا رمز عبوری ضرورت است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaadi {app_name}in avaukseen Touch ID, Face ID tai pääsykoodi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng Touch ID, Face ID o ang iyong passcode para i-unlock ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exiger Touch ID, Face ID ou votre code d'accès pour déverrouiller {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requirir Touch ID, Face ID ou o seu código de acceso para desbloquear {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buƙatar ID na Fuska, ID na Fuska ko password ɗinku don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרוש Touch ID, Face ID או את קוד הסיסמה שלך לביטול נעילת {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Touch ID, Face ID या अपने पासकोड की आवश्यकता है {app_name} को अनलॉक करने के लिए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtijevaj Touch ID, Face ID ili vašu šifru za otključavanje {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Face ID, Touch ID vagy jelszó szükséges {app_name} feloldásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահանջեք Touch ID, Face ID կամ ձեր գաղտնաբառ՝ {app_name}-ը բացելու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan Touch ID, Face ID, atau kode sandi Anda untuk membuka kunci {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Richiede Touch ID, Face ID o il tuo codice di accesso per sbloccare {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} のロックを解除するには、Touch ID、Face ID、またはパスコードが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოთხოვნათა Touch ID, Face ID ან პასქოდის აპლიკაციის განბლოკვისათვის {app_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តម្រូវឲ្យមាន Touch ID, Face ID ឬលេខកូដសម្ងាត់របស់អ្នក ដើម្បីដោះសោ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ಟಚ್ ಐಡಿ, ಫೇಸ್ ಐಡಿ ಅಥವಾ ನಿಮ್ಮ ಪಾಸ್‌ಕೋಡ್ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 잠금 해제를 위해 Touch ID, Face ID 또는 비밀번호가 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پێویستە Touch ID ، Face ID یان تێپەڕەوشە بکرێتە کار {app_name}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegeka Touch ID, Face ID oba code kuja okukwata {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų piršto antspaudas, veido ID arba praeinamasis kodas reikalingi norint atrakinti {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepieciešams Touch ID, Face ID vai paroles kods, lai atbloķētu {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бара Touch ID, Face ID или вашата лозинка за отклучување на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нээхийн тулд Touch ID, Face ID эсвэл таны нууц үг шаардагдана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan Touch ID, Face ID atau kod laluan anda untuk membuka kunci {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုလော့ခ်ဖွင့်ရန် Touch ID, Face ID သို့မဟုတ် သင့် passcode လိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev Touch ID, Face ID eller passkode for å låse opp {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गर्न टच आईडी, फेस आईडी वा तपाईंको पासकोड आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Touch ID, Face ID of uw toegangscode vereisen om {app_name} te ontgrendelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev Touch ID, Face ID eller passkoden din for å låsa opp {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemphani kuti, Face ID kapena passcode anu kuti mutsegule {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਣਲੌਕ ਕਰਨ ਲਈ ਟੱਚ ID, ਫੇਸ ID ਜਾਂ ਤੁਹਾਡਾ ਪਾਸਕੋਡ ਲੋੜੀਦਾ ਹੈ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagaj Touch ID, Face ID lub kodu dostępu, aby odblokować aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Touch ID، Face ID یا ستاسو پاسکوډ لازمي ده ترڅو {app_name} لاک کړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir Touch ID, Face ID ou sua senha para desbloquear {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requer Touch ID, Face ID ou palavra-passe para desbloquear o {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este necesar Touch ID, Face ID sau codul de acces pentru a debloca {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Требовать Touch ID, Face ID или ваш пароль для разблокировки {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj Touch ID, Face ID ili vašu šifru za otključavanje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු විවෘත කිරීම සඳහා Touch ID, Face ID හෝ ඔබගේ passcode අවශ්‍ය වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na odomknutie {app_name} je potrebné Touch ID, Face ID alebo prístupový kód." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj Touch ID, Face ID ali svojo geslo za odklepanje {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko Touch ID, Face ID ose kodit tënd për të zhbllokuar {app_name}-in." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтевај Touch ID, Face ID или ваш приступни код за откључавање {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebna je Touch ID, Face ID ili vaša šifra da otključate {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kräv Touch ID, Face ID eller din lösenkod för att låsa upp {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "omba Touch ID, Face ID au nywila yako kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}க்கு திறிட { குறியீடு } பதுக்குகடைதிறன் ஒப்புகக வேண்டும்.." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ని అన్లాక్ చేయడానికి టచ్ ID, ఫేస్ ID లేదా మీ పాస్ కోడ్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ต้องใช้ Touch ID, Face ID หรือรหัสผ่านในการปลดล็อก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının kilidini açmak için Touch ID'yi, Face ID'yi veya şifrenizi zorunlu kılın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимагати Touch ID, Face ID або код доступу для розблокування {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لئے ٹچ آئی ڈی، فیس آئی ڈی یا آپ کا پاس کوڈ درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ni ochish uchun Touch ID, Face ID yoki parolni talab qilish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu Touch ID, Face ID hoặc mật mã của bạn để mở khóa {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifuna iTouch ID, iFace ID okanye ipaswedi yakho ukuvula {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要Touch ID、Face ID或您的密码以解锁 {app_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要Touch ID, Face ID或者您的密碼解鎖 {app_name}。" + } + } + } + }, + "lockAppEnablePasscode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy moet 'n wagwoord in jou iOS-instellings aanskakel om Skermsluiter te gebruik." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يجب تمكين رمز المرور في إعدادات iOS الخاصة بك لاستخدام قفل الشاشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran Kilidini istifadə etmək üçün iOS Ayarlarınızda bir parol fəallaşdırmalısınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تا پاسکوڈ انہا iOS تنظیماتاں فعال کتن کہ چیزیں سکرین قلف کر." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для выкарыстання блакіроўкі экрана неабходна ўключыць пароль у наладах iOS." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Трябва да активирате парола в настройките на iOS, за да използвате блокировката на екрана." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্ক্রীন লক ব্যবহার করতে হলে আপনাকে আপনার iOS সেটিংসে একটি পাসকোড সক্ষম করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu d’habilitar una contrasenya a la configuració d’iOS per poder utilitzar el bloqueig de pantalla." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abyste mohli použít zamykání obrazovky, musíte v nastavení iOS povolit přístupový kód." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhaid i chi alluogi cyfuniad mewnosod yn eich Gosodiadau iOS er mwyn defnyddio Clo Sgrin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du skal aktivere en adgangskode i dine iOS-indstillinger for at bruge Skærmlås." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Um die Bildschirmsperre zu verwenden, musst du einen Passcode in den iOS-Einstellungen festlegen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρέπει να ορίσετε έναν κωδικό πρόσβασης στις Ρυθμίσεις του iOS σας για να χρησιμοποιήσετε το Κλείδωμα Οθόνης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You must enable a passcode in your iOS Settings in order to use Screen Lock." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi devas ebligi pasvorton en viaj iOS-agordoj por uzi la Ekranan Ŝlosilon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes habilitar un PIN en tus configuraciones de iOS para poder usar el bloqueo de pantalla." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes habilitar un PIN en tus configuraciones de iOS para poder usar el bloqueo de pantalla." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekraaniluku kasutamiseks peate oma iOS-i seadetes lubama pääsukoodi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Screen Lock\"-a erabiltzeko, iOS Ezarpenetan pasakode bat gaitzea derrigorrezkoa da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "باید ابتدا رمز عبور را در تنظیمات دستگاه فعال کنید تا بتوانید از قفل صفحه استفاده کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pääsykoodi on otettava iOS:n asetuksista käyttöön näytön lukituksen käyttämiseksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dapat mong paganahin ang passcode sa iyong iOS Settings upang magamit ang Screen Lock." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous devez activer un code dans vos réglages iOS pour utiliser le verrouillage de l’écran." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes activar un código de acceso nas Túa Configuracións de iOS para usar o Bloqueo de Pantalla." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dole ne ku kunna lambobin sirri a cikin Saitunan iOS ɗinku domin amfani da Kulle allo." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עליך להפעיל קוד סודי בהגדרות iOS שלך כדי להשתמש בנעילת מסך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रीन लॉक का उपयोग करने के लिए आपको iOS सेटिंग्स में पासकोड सक्षम करना होगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morate omogućiti lozinku u postavkama vašeg iOS-a kako biste koristili zaključavanje zaslona." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be kell állítanod egy jelszót az iOS Beállításokban, hogy használni tudd az alkalmazás zárolási funkcióját." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք պետք է գնեք գաղտնաբառ ձեր iOS կարգավորումներում, որպեսզի օգտագործեք Էկրանների արգելափակում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda harus mengaktifkan kode sandi di Pengaturan iOS untuk menggunakan Kunci Layar." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Devi abilitare il codice nelle impostazioni di iOS per poter usare il blocco schermo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "画面ロックを使うにはiOSでパスコードを設定してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ უნდა ჩართოთ პასკოდი iOS-ის პარამეტრებში ეკრანის დაბლოკვის გამოყენებისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​ត្រូវតែ​បើកលេខសម្ងាត់​ក្នុងការកំណត់ iOS របស់​អ្នក ដើម្បីប្រើ Screen Lock។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಕ್ರೀನ್ ಲಾಕ್ ಅನ್ನು ಬಳಸಲು ನೀವು ನಿಮ್ಮ iOS ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಪಾಸ್ಕೋಡ್ ಅನ್ನು ಕಾರ್ಯಕ್ರಮಗೊಳಿಸಬೇಕು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "화면 잠금을 사용하기 위해 iOS 설정에서 암호를 활성화해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەبێت تێپەڕەوە تایپ بەکاربەیت لە ڕێکخستنی iOS بۆ بەکاربردنی ناوی خەڕەپاکە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ofunokwo kutema e Passcode mu iOS Settings yo okusobola mu kuyunga ku Screen Lock." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norėdami naudoti ekrano užraktą, turite įjungti slaptažodį savo iOS nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lai izmantotu ekrāna bloķēšanu, jums jāpievieno piekļuves kodu savos iOS iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мора да овозможите шифра во вашите iOS Поставки за да го користите Заклучувањето на екранот." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хаалт экран ашиглахын тулд та iOS Тохиргоонд нууц үг идэвхжүүлэх ёстой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mesti mengaktifkan kod laluan dalam Tetapan iOS anda untuk menggunakan Kunci Skrin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screen Lock ကို အသုံးပြုရန်အတွက် iOS Settings မှာ passcode ကို ဖွင့်ထားရမည်ဖြစ်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du må aktivere en kode i dine iOS-innstillinger for å kunne bruke låseskjermen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रीन लक प्रयोग गर्नको लागि तपाईले आफ्नो iOS सेटिङ्समा पासकोड सक्षम गर्नै पर्नेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw moet een toegangscode inschakelen in uw iOS-instellingen om Schermvergrendeling te gebruiken." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du må aktivere ein kode i iOS-innstillingane dine for å kunne bruke skermlåsen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muyenera kuthandiza passcode mu Zokonda za iOS anu kuti mugwiritse ntchito Screen Lock." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਚੀਨ ਲਾਕ ਲਾਗੂ ਕਰਨ ਲਈ ਆਪਣੇ iOS ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਪਾਸਕੋਡ ਐਕਟੀਵੇਟ ਕਰਨਾ ਜਰੂਰੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby korzystać z blokady ekranu, należy włączyć kod dostępu w ustawieniach systemu iOS." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو باید د خپلو iOS تنظیماتو کې یو پاس کوډ فعال کړئ ترڅو د پردې قفل وکاروئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você deve ativar um código nos Ajustes do iOS para usar o Bloqueio de Tela." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deve ativar a sua palavra-passe nas configurações do seu iOS de modo a usar o Screen Lock." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trebuie să activați un cod de acces în setările iOS pentru a putea utiliza blocarea ecranului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы должны включить код доступа в настройках iOS, чтобы использовать Блокировку экрана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moraš omogućiti šifru u svojim iOS postavkama da bi koristio Zaključavanje Ekrana." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screen Lock භාවිතයෙන් ඔබ iOS සැකසුම් වල පසුකෝඩයක් සක්‍රීය කළ යුතුය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ak chcete používať zámok obrazovky, musíte v nastaveniach iOS povoliť prístupový kód." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za uporabo zaklepa zaslona morate v nastavitvah iOS omogočiti geslo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duhet të aktivizoni një fjalëkalim në Cilësimet e iOS tuaj për të përdorur Kyçjen e Ekranit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Морате омогућити приступну шифру у иОС Подешавањима да би користили Закључавање Екрана." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morate omogućiti lozinku u iOS Podešavanjima da biste koristili Zaključavanje Ekrana." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du måste aktivera en lösenkod i dina iOS-inställningar för att använda Skärmlås." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lazima uwezeshe nenosiri katika Mipangilio yako ya iOS ili kutumia Screen Lock." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஸ்க்ரீன் லாக்கைப் பயன்படுத்த iOS அமைப்புகளில் கடவுச்சொல் வைப்பது தேவை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్క్రీన్ లాక్ ఉపయోగించాలంటే, మీ iOS సెట్టింగ్స్‌లో పాస్‌కోడ్‌ను ఎనేబుల్ చేయాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องเปิดใช้งานรหัสผ่านในการตั้งค่า iOS ของคุณเพื่อใช้ล็อคหน้าจอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran Kilidini kullanmak için iOS Ayarlarında bir parola etkinleştirmeniz gerekiyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви повинні увімкнути пароль в налаштуваннях iOS, щоб використовувати блокування екрана." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو iOS سیٹنگز میں پاس کوڈ کو فعال کرنا ضروری ہے تاکہ اسکرین لاک استعمال کی جا سکے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran qulfidan foydalanish uchun iOS sozlamalarida parolni yoqishingiz kerak." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn phải kích hoạt mật mã trong Cài đặt iOS của mình để sử dụng Khóa màn hình." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kufuneka uvule ikhowudi yokungena kweSeto se-iOS yakho ukuze usebenzise i-Lokhi yeSikrini." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您需要在iOS设置中启用密码才能使用屏幕锁定功能。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您必須在 iOS 設定中啟用密碼才能使用屏幕鎖定。" + } + } + } + }, + "lockAppLocked" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is gesluit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مُقفل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidlidir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تخت ہے زمین لپ کردی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} заблакаваны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е заключен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} লক করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} està bloquejat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zamčena" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} wedi'i gloi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er låst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ist gesperrt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} είναι κλειδωμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is locked" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} estas ŝlosita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está bloqueado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está bloqueado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on lukustatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} blokeatuta dago" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} قفل است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on lukittu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naka-lock ang {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} est verrouillé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está bloqueado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ya kulle" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} נעול" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लॉक है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zaključan" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zárolva van" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը կողպված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} terkunci" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} è bloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はロックされています" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} დაბლოკილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវបានចាក់សោរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಲಾಕ್ ಮಾಡಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}가 잠겼습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} داخستەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekikugiddwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຖືກລ໋ອກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} užrakinta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir bloķēta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е заклучен" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} түгжээтэй байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dikunci" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကို လော့ခ်ချထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er låst" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लक गरिएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is vergrendeld" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er låst" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yatsekedwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਲੌਕ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikacja {app_name} jest zablokowana" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} قفل دی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está bloqueado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está bloqueado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} este blocată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приложение {app_name} блокировано" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zaključan" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු දැමූ වේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zamknutý" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zaklenjen" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} është kyçur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} је закључан" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zaključan" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} är låst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imefungiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} பாதுகாத்து உள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} లాక్ చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ถูกล็อก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilitlendi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} заблоковано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مقفل ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qulflangan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} đã bị khoá" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ivaliwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}已锁定" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 已上鎖" + } + } + } + }, + "lockAppQuickResponse" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vinnige reaksie nie beskikbaar wanneer {app_name} gesluit is nie!" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الردود السريعة غير متاحة عند قفل {app_name}!" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidli olduqda cəld cavab əlçatmazdır!" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "جُت منع انے چُت مہتُد کنت انے کہ {app_name} بند است نہ!" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуткі адказ недаступны калі {app_name} заблакіраваны!" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бърз отговор не е възможен, когато {app_name} е заключен!" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} লক থাকা অবস্থায় দ্রুত প্রতিক্রিয়া প্রদান করা যাবে না!" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La resposta ràpida no és disponible si {app_name} està blocat!" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rychlá odpověď není dostupná, pokud je {app_name} uzamčena!" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw ymateb cyflym ar gael pan fydd {app_name} wedi'i gloi!" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurtig svar utilgængelig når {app_name} er låst!" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schnellantwort nicht verfügbar, solange {app_name} gesperrt ist!" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η γρήγορη απάντηση δεν είναι διαθέσιμη όταν το {app_name} είναι κλειδωμένο!" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quick response unavailable when {app_name} is locked!" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapida respondo ne eblas, kiam {app_name} estas ŝlosita!" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡La respuesta rápida no está disponible cuando {app_name} se encuentra bloqueado!" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡La respuesta rápida no está disponible cuando {app_name} se encuentra bloqueado!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiirvastus pole saadaval, kui {app_name} on lukustatud!" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erantzun bizkorra ez dago erabilgarri {app_name} blokeatuta dagoenean!" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسخگوی سریع هنگامی که {app_name} قفل باشد غیرفعال می‌شود!" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pikavastaus ei ole käytettävissä {app_name}in ollessa lukittu!" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi available ang mabilis na pagsagot kapag naka-lock ang {app_name}!" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La réponse rapide n’est pas proposée quand {app_name} est verrouillée !" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resposta rápida non está dispoñible cando {app_name} está bloqueado!" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kawo ƙarancin amsa mai sauri lokacin da {app_name} aka kulle!" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תגובה מהירה אינה זמינה כאשר {app_name} נעול!" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जब {app_name} लॉक हो तो त्वरित प्रतिक्रिया अनुपलब्ध है!" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brzi odgovor nije dostupan kada je {app_name} zaključana!" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A gyors válasz nem érhető el, ha {app_name} zárolva van!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կարճ պատասխանը անհնար է, երբ {app_name}-ը կողպված է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respon cepat tidak tersedia saat {app_name} terkunci!" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La risposta rapida non è disponibile quando {app_name} è bloccato!" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} がロックされているとクイックレスポンスが利用できません!" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სწრაფი პასუხი მიუწვდომელია, როდესაც {app_name} დაბლოკილია!" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនមានការឆ្លើយតបភ្លាមៗ នៅពេល {app_name} ត្រូវបានចាក់សោរ!" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಲಾಕ್ ಆಗಿರುವಾಗ ತ್ವರಿತ ಪ್ರತಿಕ್ರಿಯೆ ಲಭ್ಯವಿಲ್ಲ!" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 이 잠겨 있어 빠른 답변을 사용할 수 없습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وەلامی خێرا نییە کاتێک {app_name} داخراوە!" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kitunzi tekisoboka nga {app_name} ekutte!" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spartusis atsakymas neprieinamas, kai {app_name} yra užrakinta!" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ātrā atbilde nav pieejama, kad {app_name} ir aizslēgta!" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Брзиот одговор не е достапен кога {app_name} е заклучен!" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түргэн хариу өгөх боломжгүй байна, {app_name} түгжигдсэн!" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respon cepat tidak tersedia apabila {app_name} dikunci!" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ကို လော့ခ်ချထားသောအခါ အမြန်တုံ့ပြန်မှု မရရှိနိုင်ပါ!" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurtigsvar er utilgjengelig når {app_name} er låst!" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लक गरिएको छ!" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Snel reageren niet beschikbaar wanneer {app_name} vergrendeld is!" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurtigsvar er utilgjengeleg når {app_name} er låst!" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yankho losavuta silikupezeka pamene {app_name} yatsekedwa!" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਦੋਂ {app_name} ਲਾਕ ਹੋਵੇ ਤਾਂ ਤੇਜ਼ ਜਵਾਬ ਉਪਲਬਧ ਨਹੀਂ!" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szybka odpowiedź jest niedostępna, gdy aplikacja {app_name} jest zablokowana!" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "چټک ځواب د {app_name} قفل په حالت کې نشي فعال کیدی!" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resposta rápida indisponível quando {app_name} está trancado!" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resposta rápida encontra-se indisponível enquanto o {app_name} estiver bloqueado!" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Răspunsul rapid nu este disponibil când {app_name} este blocată!" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Быстрые ответы недоступны, когда {app_name} заблокирован!" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brzi odgovor nije dostupan kada je {app_name} zaključan!" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quick response unavailable when {app_name} is locked!" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rýchla odpoveď nie je dostupná, keď je {app_name} zamknutý!" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitri odgovor ni na voljo, ko je {app_name} zaklenjen!" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'bëhet dot përgjigje e shpejtë, kur {app_name}-i është i kyçur!" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Брзи одговор није доступан ако је {app_name} закључан!" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brz odgovor nije dostupan kada je {app_name} zaključan!" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Snabbsvar är ej tillgängligt när {app_name} är låst!" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jibu la haraka halipatikani wakati {app_name} imefungwa!" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quick response unavailable when {app_name} is locked!" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తక్షణ స్పందన అందుబాటులో లేదు {app_name} లాక్ చేయబడినప్పుడు!" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตอบด่วนใช้ไม่ได้ถ้า {app_name} ถูกล็อกอยู่!" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilitliyken hızlı cevap kullanılamaz!" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Швидка відповідь неможлива, коли {app_name} заблоковано!" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جب {app_name} لاک ہو تو جلدی جواب دستیاب نہیں!" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tez javob {app_name} qulflanganda mavjud emas!" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trả lời nhanh không khả thi khi {app_name} bị khóa!" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impendulo ekhawulezayo ayifumaneki xa {app_name} ivaliwe!" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "当{app_name}处于锁定状态时,快速回复不可用!" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 鎖定時無法使用快速回覆!" + } + } + } + }, + "lockAppStatus" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sluit status" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالة القفل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilid statusu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock status" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стан блакавання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Статус на заключване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "লক স্ট্যাটাস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estat del bloqueig" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stav zámku" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Statws y clo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Låse status" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sperrstatus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κατάσταση κλειδώματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock status" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝlosostato" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado de bloqueo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado de bloqueo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luku olek" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blokeatzeko egoera" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "وضعیت قفل" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukituksen tila" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katayuan ng lock" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "État de verrouillage" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloquear estado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matsayin Rufe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מעמד נעילה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "लॉक स्थिति" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status zaključavanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zár státusza" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կողպեքի վիճակը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status kunci" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attualmente bloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ロック状態" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ბლოკირების სტატუსი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្ថានភាពចាក់សោរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಲಾಕ್ ಸ್ಥಿತಿಯ ಪ್ರಕಟಣೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잠금 상태" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status قفل" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Embeera yakusiba" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užrakinimo būsena" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloķēšanas statuss" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Статус на заклучување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгжээний байдал" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status Kunci" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လော့ခ်အခြေအနေ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lås status" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "लक स्थिति" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vergrendelingstoestand" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Låsestatus" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mkhalidwe latizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਲੌਕ ਸਥਿਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status blokady" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "قفل وضعیت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status de tranca" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado do bloqueio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stare blocare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Статус блокировки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status zaključavanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අගුලු තත්ත්වය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status uzamknutia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status zaklepanja" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjendje kyçjeje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закључај статус" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status zaključavanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Låsstatus" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hali ya kufunga" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பூட்டல் நிலை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్థితి లాక్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สถานะล็อค" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilit durumu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Статус блокування" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "لاک اسٹیٹس" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qulflanish holati" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trạng thái khoá" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeko yokuQinisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "锁定状态" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "鎖定狀態" + } + } + } + }, + "lockAppUnlock" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik om te ontsluit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انقر للفتح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilidi açmaq üçün toxunun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹنگ دگلوو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даткніцеся каб адамкнуць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Докосни, за да отключиш" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনলক করতে ট্যাপ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca per a desblocar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klepněte pro odemčení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapio i ddatgloi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryk for at låse op" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tippe zum Entsperren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πατήστε για Ξεκλείδωμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap to unlock" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuŝetu por Malŝlosi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para desbloquear" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para Desbloquear" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avamiseks puudutage" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desblokeatzeko ukitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بازگشایی ضربه بزنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avaa napauttamalla" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-tap para I-unlock" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appuyez pour déverrouiller" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca para desbloquear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matsa ka buɗe" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הקש כדי לבטל את הנעילה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनलॉक करने के लिए टैप करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite za otključavanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppintson a feloldáshoz" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հպեք՝ ապակողպելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ketuk untuk Membuka Kunci" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocca per sbloccare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "タッチしてロック解錠" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააჭირეთ გასახსნელად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប៉ះដោះសោ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್‌ಲಾಕ್ ಮಾಡಲು ಟ್ಯಾಪ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "탭하여 잠금 해제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بخە بۆ کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kanikako okukyusa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bakstelėkite norėdami atrakinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieskaries, lai atbloķētu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Допрете за отклучување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгжээг тайлахын тулд товш" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ketuk untuk buka kunci" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နှိပ်ပြီး လမ်းခွင့်ပြုမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk for å låse opp" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनलक गर्न थिच्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik om te ontgrendelen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk for å låse opp" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dinani kuti mutsegule" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਲਾਕ ਕਰਨ ਲਈ ਟੈਪ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naciśnij, aby odblokować" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټک وکړئ ترڅو خلاص کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toque para destrancar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toque para desbloquear" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atingeți pentru a debloca" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разблокировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirni za otključavanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අනවහිරයට තට්ටු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stlačte pre odomknutie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tapnite za odklepanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kliko për të zhbllokuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додирните да откључате" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite za otključavanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryck om du vill låsa upp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusa Kufungua" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விட்டு எடுத்தால் திறக்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్లాక్ చేయడానికి టాప్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แตะเพื่อปลดล็อก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Açmak için dokun" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Торкніться, щоб розблокувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ان لاک کرنے کیلئے ٹیپ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qulflashni ochish uchun bosing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bấm để mở khóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap to unlock" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "点击解锁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輕觸即可解鎖" + } + } + } + }, + "lockAppUnlocked" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is oopgesluit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مفتوح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidi açıldı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تخت ہے زمین لپ کردی نہیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} разблакаваны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е отключен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করা হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} està desbloquejat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je odemčena" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} wedi'i ddad-gloi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er ulåst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ist entsperrt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} είναι ξεκλείδωτο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is unlocked" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} estas malŝlosita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está desbloqueado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está desbloqueado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on avatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} desblokeatuta dago" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} باز است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on avattu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naka-unlock ang {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} est déverrouillé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está desbloqueado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} amsa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} לא נעול" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलॉक है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je otključan" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} feloldva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը բացված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tidak terkunci" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} è sbloccato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はロック解除されています" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} გახსნილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវបានដោះសោរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಅನ್‌ಲಾಕ್ ಮಾಡಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}의 잠금을 해제했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کردەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekimugiddwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ໄດ້ຖືກປົດລ໋ອກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} atrakinta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir atbloķēta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е отклучен" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} түгжээ тайлсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dibuka kunci" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကို ဖွင့်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er ulåst" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गरिएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is ontgrendeld" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er ulåst" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yatsekulidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਅਨਲੌਕ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} jest odblokowany" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} خلاص دی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está desbloqueado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está desbloqueado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} este deblocată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приложение {app_name} разблокировано" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je otključan" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අනවහිර වී ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je odomknutý" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je odklenjen" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} është çkyçur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} је откључан" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je otključan" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} är upplåst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imefunguliwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} திறக்கப்பட்டுள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} అన్‌లాక్ చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ถูกปลดล็อก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidi açıldı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} розблоковано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} غیر مقفل ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qulfi ochiq" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} đã mở khóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ivuliwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}已解锁" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 已解鎖" + } + } + } + }, + "max" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الأقصى" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimum" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максімальны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимално" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সর্বোচ্চ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Màxima" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximum" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwyaf" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximal" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μέγιστο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimuma" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máximo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máximo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimaalne" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حداکثر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximale" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máxima" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מרבי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अधिकतम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximum" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մաքսիմում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Massimo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "最大" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მაქს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អតិបរិមា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗರಿಷ್ಟ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimali" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Макс" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Макс" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အများဆုံး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अधिकतम" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximaal" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਧਿਕਤਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máxima" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximum" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимальный" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපරිම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximálna" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maksimalno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maks." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Највиши" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwisho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గరిష్టం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สูงสุด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En Yüksek" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимум" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "زیادہ سے زیادہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eng yuqori" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Max" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubungakanani obukhulu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "最大" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "最大" + } + } + } + }, + "media" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الوسائط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медия" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মিডিয়া" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mèdia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Média" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfryngau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medie" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medien" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πολυμέσα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭdvidaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meedium" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسانه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Médias" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kafofin watsa labarai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מדיה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मीडिया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medija" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Média" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մեդիա" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenuti multimediali" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メディア" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მედია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មេឌៀ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾಧ್ಯಮ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "미디어" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "میدیا" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byuma" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medija" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multivide" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиуми" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မီဒီယာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मिडिया" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੀਡੀਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimedia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "میډیا" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mídia" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multimédia" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медиа" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medij" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාධ්‍යය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Médiá" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медији" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mediji" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyombo vya habari" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீடியா" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీడియా" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สื่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Medya" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медіа" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میڈیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Media" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đa phương tiện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Midhiya" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "媒体" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "媒體" + } + } + } + }, + "members" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld lid" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld lede" + } + } + } + } + }, + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضوًا" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld أعضاء" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld من الأعضاء" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld üzv" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld üzv" + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld رکن" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld رکناں" + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld удзельнікі" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld удзельнікаў" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld удзельнік" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld удзельнікаў" + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld член" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld члена" + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld জন সদস্য" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld জন সদস্য" + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membre" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membres" + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členové" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členů" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členů" + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelod gweithgar" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelod" + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlemmer" + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Mitglied" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Mitglieder" + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld μέλος" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld μέλη" + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld member" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld members" + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membroj" + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembros" + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembros" + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld liige" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld liiget" + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld kide" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld kide" + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld jäsen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld jäsentä" + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miyembro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld (na) miyembro" + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membre" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membres" + } + } + } + } + }, + "gl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros" + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mamba" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mambobi" + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברי קבוצה" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חבר קבוצה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברי קבוצה" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברי קבוצה" + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सदस्य" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lldसदस्य" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člana" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld članova" + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld tag" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld tag" + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld անդամ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld անդամներ" + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anggota" + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri" + } + } + } + } + }, + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 人のメンバー" + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld წევრი" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld წევრი" + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមាជិក %lld" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಸದಸ್ಯ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಸದಸ್ಯರು" + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld명의 멤버" + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ئەندام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ئەندامەکان" + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mema" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld bammemba" + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld nariai" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld narių" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld narys" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld nariai" + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld biedrs" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld biedri" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld biedri" + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld член" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld членови" + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld гишүүн" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld гишүүд" + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ahli" + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ဝင် %lld ဦး" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlemmer" + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सदस्य" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सदस्यहरू" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld lid" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld leden" + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlemmer" + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membala" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ambala" + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ਮੈਂਬਰ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ਮੈਂਬਰ" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld członków" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld członków" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld członek" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld członków" + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld غړی" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld غړي" + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros" + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros" + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membru" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri" + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld участника" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld участников" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld участник" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld участников" + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člana" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld članova" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld članova" + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld සාමාජික" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "සාමාජිකයින් %lld" + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členovia" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členov" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld členov" + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člani" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld članov" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld člana" + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anëtar" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anëtarë" + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld члана" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld члан" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld чланова" + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld korisnika" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld korisnik" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld korisnika" + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld medlemmar" + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "wanakundi %lld" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "wanakundi %lld" + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld உறுப்பினர்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld உறுப்பினர்கள்" + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld సభ్యుడు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld సభ్యులు" + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld สมาชิก" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld üye" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld üye" + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld учасники" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld учасників" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld учасник" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld учасників" + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld رکن" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld اراکین" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ta aʼzo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ta aʼzo" + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld thành viên" + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ilungu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld amalungu" + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld位成员" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 位成員" + } + } + } + } + } + } + }, + "membersActive" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiewe lid" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiewe lede" + } + } + } + } + }, + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو نشط" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld عضو" + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiv üzv" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiv üzv" + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعال رکن" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعال رکناں" + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld актыўныя ўдзельнікі" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld актыўных удзельнікаў" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld актыўны ўдзельнік" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld актыўных удзельнікаў" + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активни участници" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активни члена" + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld active member" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anggota aktif420" + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membre actiu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membres actius" + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivní členové" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivních členů" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivní člen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivních členů" + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aelodau gweithgar" + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivt medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktive medlemmer" + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktives Mitglied" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktive Mitglieder" + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ενεργά μέλη" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ενεργά μέλη" + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld active member" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld active members" + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiva membro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivaj membroj" + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembro activo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembros activos" + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembro activo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld miembros activos" + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiivne liige" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiivset liiget" + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld kide aktibo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld kide aktibo" + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld کاربر فعال" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld کاربر فعال" + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiivinen jäsen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiivista jäsentä" + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld (na) aktibong miyembro" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld (na) aktibong miyembro" + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membre actif" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membres actifs" + } + } + } + } + }, + "gl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro activo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros activos" + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mamba mai aiki" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mambobi masu aiki" + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברים פעילים" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חבר פעיל" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברים פעילים" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld חברים פעילים" + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सक्रिय सदस्य" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सक्रिय सदस्य" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivna člana" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivan član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivnih članova" + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktív tag" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktív tag" + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ակտիվ անդամ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ակտիվ անդամներ" + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anggota aktif" + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro attivo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri attivi" + } + } + } + } + }, + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 人のアクティブなメンバー" + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld აქტიური წევრი" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld აქტიური წევრი" + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមាជិកសកម្ម %lld" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಸಕ್ರೀಯ ಸದಸ್ಯ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ಸಕ್ರೀಯ ಸದಸ್ಯರು" + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld인 온라인" + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ئەندامی چالاک" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ئەندامانی چالاک" + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mema akola" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld bammemba abakola" + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktyvūs nariai" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktyvūs nariai" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktyvus narys" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktyvūs nariai" + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktīvs biedrs" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktīvi biedri" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktīvi biedri" + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активен член" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активни членови" + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld идэвхтэй гишүүн" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld идэвхтэй гишүүд" + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ahli aktif" + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသုံးပြုဆဲ အဖွဲ့ဝင် %lld ဦး" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivt medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktive medlemmer" + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सक्रिय सदस्य" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld सक्रिय सदस्यहरू" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld actief lid" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld actieve leden" + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivt medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktive medlemmer" + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membala yogwira ntchito" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ambala omwe akugwira ntchito" + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ਸੱਕਰੀਅ ਮੈਂਬਰ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ਸੱਕਰੀਅ ਮੈਂਬਰ" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktywnych członków" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktywnych członków" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktywny członek" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktywnych członków" + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعاله غړی" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعال غړي" + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro ativo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros ativos" + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membro ativo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membros ativos" + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri activi" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membru activ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld membri activi" + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активных участника" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активных участников" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активный участник" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активных участников" + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivna člana" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivnih članova" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivni član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivnih članova" + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld සක්‍රිය සාමාජිකයෙකු" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld සක්‍රිය සාමාජිකයින්" + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktívni členovia" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktívnych členov" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktívny člen" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktívnych členov" + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivni člani" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivni član" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivnih članov" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivna člana" + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anëtar aktiv" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld anëtarë aktivë" + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активна члана" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активан члан" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активних чланова" + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivna korisnika" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivan korisnik" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktivnih korisnika" + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiv medlem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiva medlemmar" + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mwanachama hai" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld wanachama hai" + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld செயலில் உள்ள உறுப்பினர்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld செயலில் உள்ள உறுப்பினர்கள்" + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld చురుకైన సభ్యుడు" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld చురుకైన సభ్యులు" + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld สมาชิกที่ใช้งาน" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktif üye" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktif üyeler" + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активних учасники" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активних учасників" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активний учасник" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld активних учасників" + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعال رکن" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld فعال اراکین" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ta aʼzo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld aktiv aʼzo" + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld thành viên hoạt động" + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ilungu lisebenzayo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld amalungu asebenzayo" + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld名活跃成员" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 位線上成員" + } + } + } + } + } + } + }, + "membersAddAccountIdOrOns" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voeg Account ID of ONS by" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أضف معرف الحساب أو ONS" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab Kimliyi və ya ONS əlavə et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ آی ڈی یا او این ایس زیاد کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дадаць Account ID або ONS" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавяне на Account ID или ONS" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট আইডি অথবা ONS যোগ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afegir Account ID o ONS" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přidat ID účtu nebo ONS" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ychwanegu ID Cyfrif neu ONS" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilføj kontoid eller ONS" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID oder ONS hinzufügen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσθήκη Account ID ή ONS" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add Account ID or ONS" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aldoni Konto ID aŭ ONS" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir Account ID o ONS" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Añadir Account ID o ONS" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisa konto ID või ONS" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gehitu Kontu ID edo ONS" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "افزودن شناسه کاربر یا ONS" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lisää Account ID tai ONS" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magdagdag ng Account ID o ONS" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouter un ID de compte ou ONS" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engadir Identificador de Conta ou ONS" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙara Account ID ko ONS" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הוסף מזהה חשבון או ONS" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता आईडी या ONS जोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj Account ID ili ONS" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felhasználó ID vagy ONS hozzáadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելացնել Account ID կամ ONS" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah Account ID atau ONS" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiungi ID utente o ONS" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID または ONS を追加" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიშის ID ან ONS-ის დამატება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បន្ថែម Account ID ឬ ONS" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ID ಅಥವಾ ONS ಸೇರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add Account ID or ONS" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "زیادکردنی ناسنامەی ئەژمار یان ONS" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongera Akawunti ID oba ONS" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເພີ່ມອາທິການ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridėti paskyros ID arba ONS" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pievienot konta ID vai ONS" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај Account ID или ONS" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэлийн ID эсвэл ONS нэмэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambah Account ID atau ONS" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID သို့မဟုတ် ONS ထည့်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til Account ID eller ONS" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID वा ONS थप्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account-ID of ONS toevoegen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legg til Account ID eller ONS" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjezerani Account ID kapena ONS" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ID ਜਾਂ ONS ਸ਼ਾਮਿਲ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj ID konta lub ONS" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنټ ID یا ONS اضافه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar ID de Conta ou ONS" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adicionar ID da Conta ou ONS" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adaugă ID-ul contului sau ONS" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добавить Account ID или ONS" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj Account ID ili ONS" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID එකතු කරන්න හෝ ONS" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pridať Account ID alebo ONS" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj ID računa ali ONS" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shto ID të Llogarisë ose ONS" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додај Account ID или ONS" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodaj Account ID ili ONS" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lägg till Account ID eller ONS" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeza Account ID au ONS" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உள்ளியல் ஐடி அல்லது ONS ஐ சேர்க்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఖాతా ID లేదా ONS జోడించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพิ่ม Account ID หรือ ONS" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID veya ONS Ekle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Додати ID облікового запису або ONS" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account ID یا ONS شامل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akkaunt ID yoki ONS qo'shish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thêm Account ID hoặc ONS" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yongeza Isazisi seAkhawunti okanye ONS" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "添加账户ID或ONS" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "新增帳號 ID 或 ONS" + } + } + } + }, + "membersInvite" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi Kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوة المتصلين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktları dəvət et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطے دعوت دیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрасіць кантакты" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покани приятели" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কন্টাক্ট আমন্ত্রণ জানান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convida contactes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvat kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahodd Cysylltiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitér venner" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte einladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόσκληση Επαφών" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite Contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviti Kontaktpersonojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar Contactos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar Amigos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu sõpru" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktuak gonbidatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت مخاطبین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu yhteystietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mag-imbita ng Mga Contact" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter des amis" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar amizades" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka gayyaci Kira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמן חברים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मित्रों को आमंत्रित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi kontakte" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktok meghívása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրել կոնտակներին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undang Teman" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita contatti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先を招待" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კონტაქტების მოწვევა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញទំនាក់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕಗಳನ್ನು ಆಮಂತ್ರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처에서 초대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانێ تیپی پەیوەندیکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita enjuuyi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakviesti draugus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaicināt kontaktus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканете контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцагчдыг урь" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemput Kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဆက်အသွယ်များကိုဖိတ်ကြားရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Innby kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पर्कहरूलाई निमन्त्रणा गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contactpersonen uitnodigen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter kontaktar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina Mawu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਪਰਕ ਸੱਦੇ ਬਟਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproś znajomych" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اړیکو بلنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar Contatos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar contactos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invită contacte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пригласить друзей в Session" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi prijatelje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබඳතාවන්ට ආරාධනා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvať kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabi stike" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftoni shokë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позовите контакте" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite kontakte" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bjud in kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alika marafiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சம்பந்தப்படைப்பு அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్నేహితులను ఆహ్వానించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญเพื่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişileri Davet Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросити з контактів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطے مدعو کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktlarni taklif qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời bạn bè" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mema abafowunelwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請聯絡人" + } + } + } + }, + "membersInviteSend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur Uitnodiging" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur Uitnodigings" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوات" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوات" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوة" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوات" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوات" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال دعوات" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvət göndər" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvətləri göndər" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج دعوت" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج دعوتیں" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць запрашэнні" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць запрашэнні" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць запрашэнне" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць запрашэнні" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане на покана" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане на покани" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণ পাঠান" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণগুলি পাঠান" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envia la invitació" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envia les invitacions" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat pozvánky" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat pozvánky" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat pozvánku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat pozvánky" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiadau" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiadau" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiad" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiadau" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiadau" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon Gwahoddiadau" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invitation" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invitationer" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladung senden" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladungen senden" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή Πρόσκλησης" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή Προσκλήσεων" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invite" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invites" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi Invitilon" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi Invitilojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar invitación" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar invitaciones" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar invitación" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar invitaciones" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada kutse" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada kutsed" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidapena Bidali" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidapenak Bidali" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامه را ارسال کنید" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامه ها را ارسال کنید" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä kutsu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä kutsut" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invite" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invites" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer l'invitation" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer les invitations" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika Gayyata" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika Gayyatuwan" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח הזמנות" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח הזמנה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח הזמנות" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח הזמנות" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "आमंत्रण सेंड करें" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "आमंत्रण सेंड करें" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnicu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívás küldése" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívók küldése" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել հրավերը" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել հրավերներ" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim Undangan" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita utente" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita utenti" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "招待状を送信" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოაგზავნეთ მოწვევა" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოაგზავნეთ მოწვევები" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើការអញ្ជើញច្រើន" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಿನ್ನೆಲೆ ಬಳಸಿ ಆಮಂತ್ರಣ ಕಳುಹಿಸಿ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಮಂತ್ರಣಗಳನ್ನು ಕಳುಹಿಸಿ" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "초대 전송" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردنی بانگ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردنی بانگهکان" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikira envitto" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikira envitto" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti pakvietimus" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti pakvietimus" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti pakvietimą" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti pakvietimus" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати покана" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати покани" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урилга илгээх" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урилгуудыг илгээх" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar Jemputan" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားစာများ ပို့မည်" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send innbydelse" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send innbydelser" + } + } + } + } + } + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमन्त्रणा पठाउनुहोस्" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "निमन्त्रणाहरू पठाउनुहोस्" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodiging verzenden" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodigingen verzenden" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send invitasjon" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send invitasjonar" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invite" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send Invites" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਿਯੋਤਾ ਭੇਜੋ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਿਯੋਤੇ ਭੇਜੋ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij zaproszenia" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij zaproszenia" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij zaproszenie" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij zaproszenia" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنه ولیږئ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنې ولیږئ" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar convite" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar convites" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar Convite" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar Convites" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite invitațiile" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite invitația" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite invitațiile" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить приглашения" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить приглашения" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить приглашение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить приглашения" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnicu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනය යවන්න" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනාවන් යවන්න" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať pozvánky" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať pozvánky" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať pozvánku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať pozvánky" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji povabila" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji povabilo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji povabila" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji povabili" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgo Ftesën" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgoni Ftesat" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи позивнице" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи позивницу" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи позивнице" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnicu" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji pozivnice" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka inbjudan" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka inbjudningar" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma Mwaliko" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma Mialiko" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பை அனுப்பவும்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்புகள் அனுப்பவும்" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానాన్ని పంపుము" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానాలు పంపుము" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งคำเชิญ" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet Et" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet Et" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати запрошення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати запрошення" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати запрошення" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати запрошення" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامہ بھیجیں" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت نامے بھیجیں" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taklif yuborish" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takliflarni yuborish" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi lời mời" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela isimemo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela izimemo" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送邀请" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送邀請" + } + } + } + } + } + } + } + } + }, + "membersInviteShareDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy groep boodskapgeskiedenis deel met {name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود مشاركة تاريخ الرسائل بالمجموعة مع {name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup mesajlarının tarixçəsini {name} ilə paylaşmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شمے بیتھہ {name}؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце падзяліцца гісторыяй паведамленняў групы з {name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да споделите историята на съобщенията в групата с {name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu compartir l'historial de missatges del grup amb {name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete sdílet historii zpráv skupiny s {name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi rannu hanes neges grŵp gyda {name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppebeskedhistorik med {name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du den Nachrichtenverlauf der Gruppe mit {name} teilen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να μοιραστείτε το ιστορικό μηνυμάτων ομάδας με τον/την {name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus dividi grupan mesaĝan historion kun {name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite jagada grupisõnumite ajalugu koos {name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeko mezuen historia partekatu nahi duzu {name}ekin?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید تاریخچه پیام‌های گروه را با {name} به اشتراک بگذارید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko jakaa ryhmien viestihistorian {name} kanssa?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang ibahagi ang kasaysayan ng mensahe ng grupo kay {name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous partager l'historique des messages de groupe avec {name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés compartir o historial de mensaxes do grupo con {name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a raba tarihi na saƙon tattaunawa tare da {name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך לשתף את היסטוריית ההודעות של הקבוצה עם {name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} के साथ समूह संदेश इतिहास साझा करना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li podijeliti povijest grupa s porukama sa {name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meg szeretnéd osztani a csoport korábbi üzeneteit vele: {name}?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք կիսել խմբի հաղորդագրությունների պատմությունը {name}-ի հետ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin berbagi riwayat pesan grup dengan {name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi condividere la cronologia dei messaggi di gruppo con {name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}にグループメッセージ履歴を共有しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ გაუზიაროთ ჯგუფის გზავნილების ისტორია {name}-ს?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ចែករំលែកប្រវត្តិសារក្រុមជាមួយ {name} មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ಜೊತೆ ಗುಂಪಿನ ಸಂದೇಶದ ಇತಿಹಾಸವನ್ನು ಹಂಚಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님에게 그룹 메시지 기록을 공유하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت مێژووی گروپ شکێنەوە {name}؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okwebekaniza ebyafaayo by'olukungaana okuva e {name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pasidalinti grupės žinučių istorija su {name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties dalīties grupas ziņojumu vēsturē ar {name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да ја споделите историјата на групните пораки со {name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн мессежний түүхийг {name}-тай хуваалцахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin berkongsi sejarah mesej kumpulan dengan {name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppehistorikken med {name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं साझेदारी गर्न चाहनुहुन्छ समूह सन्देश इतिहासको साथ {name}?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u de groepsberichtgeschiedenis delen met {name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppemeldingshistorikk med {name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kugawana mbiriyakale ya mauthenga a gulu ndi {name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਨਾਲ ਗਰੁੱਪ ਸੰਦੇਸ਼ ਇਤਿਹਾਸ ਨੂੰ ਸਾਂਝਾ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz udostępnić historię wiadomości grupy użytkownikowi {name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ د {name} سره د ګروپ پیغام تاریخ شریک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de compartilhar o histórico de mensagens do grupo com {name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de partilhar o histórico de mensagens do grupo com {name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să partajați istoricul mesajelor de grup cu {name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите поделиться историей сообщений группы с {name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සමඟ සමූහ පණිවිඩ ඉතිහාසය බෙදාගැනීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete zdieľať históriu skupinových správ s {name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite deliti zgodovino sporočil skupine z {name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të ndani historinë e mesazheve të grupit me {name} ?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите делити историју порука групе са {name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du dela gruppmeddelandehistorik med {name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kushiriki historia ya ujumbe wa kundi na {name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} உடன் குழு செய்தி வரலாற்றை பகிர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name}తో గ్రూప్ సందేశాల చరిత్రను షేర్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการแบ่งปันประวัติการสนทนากลุ่มกับ {name} หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ile grup mesaj geçmişini paylaşmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте поділитися історією повідомлень групи з {name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {name} کے ساتھ گروپ پیغام کی تاریخ شیئر کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bilan guruh xabarlari tarixini bo'lishmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn chia sẻ lịch sử tin nhắn nhóm với {name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukwabelana ngembali yemiyalezo yeqela kunye no{name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望与{name}共享群组消息历史吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要與 {name} 分享群組訊息歷史?" + } + } + } + }, + "membersInviteShareDescriptionMultiple" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy groep boodskapgeskiedenis deel met {name} en {count} ander?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود مشاركة تاريخ الرسائل بالمجموعة مع {name} و{count} آخرين؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup mesajlarının tarixçəsini {name}digər {count} nəfərlə paylaşmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چُک تُ شکئے کہ گرُپ اِنتی شاعری کہانیءَ شیئر کُنے بئی {name} اَور بئی {count} دوبران ساتھی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце падзяліцца гісторыяй паведамленняў групы з {name} і {count} іншымі?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да споделите историята на съобщенията в групата с {name} и {count} други?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {count} others?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu compartir l'historial de missatges del grup amb {name} i {count} altres?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete sdílet historii zpráv skupiny s {name} a {count} dalšími?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi rannu hanes neges grŵp gyda {name} a {count} eraill?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppebeskedhistorik med {name} og {count} andre?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du den Nachrichtenverlauf der Gruppe mit {name} und {count} anderen teilen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να μοιραστείτε το ιστορικό μηνυμάτων ομάδας με τον/την {name} και άλλους {count};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {count} others?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus dividi grupan mesaĝan historion kun {name} kaj {count} aliaj?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name} y {count} otros?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name} y {count} otros?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite jagada grupisõnumite ajalugu koos {name} ja {count} teistega?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeko mezuen historia partekatu nahi duzu {name} eta {count} beste batzuk-ekin?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید تاریخچه پیام‌های گروه را با {name} و {count} نفر دیگر به اشتراک بگذارید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko jakaa ryhmien viestihistorian {name} ja {count} muun kanssa?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang ibahagi ang kasaysayan ng mensahe ng grupo kay {name} at {count} iba pa?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous partager l'historique des messages de groupe avec {name} et {count} autres?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés compartir o historial de mensaxes do grupo con {name} e outros {count}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a raba tarihi na saƙon tattaunawa tare da {name} da {count} wasu?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך לשתף את היסטוריית ההודעות של הקבוצה עם {name} ו-{count} אחרים?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} और {count} अन्य के साथ समूह संदेश इतिहास साझा करना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li podijeliti povijest grupa s porukama sa {name} i {count} drugih?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meg szeretnéd osztani a csoport korábbi üzeneteit velük: {name} és {count} másik személy?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք կիսել խմբի հաղորդագրությունների պատմությունը {name}-ի և {count} այլ անձանց-ի հետ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin berbagi riwayat pesan grup dengan {name} dan {count} lainnya?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi condividere la cronologia dei messaggi di gruppo con {name} e altri {count}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{count}人にグループメッセージ履歴を共有しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ გაუზიაროთ ჯგუფის გზავნილების ისტორია {name}-ს და {count} სხვებს?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ចែករំលែកប្រវត្តិសារក្រុមជាមួយ {name} និង {count} អ្នកផ្សេងទៀត មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗುಂಪಿನ ಸಂದೇಶದ ಹಳೆ ಇತಿಹಾಸವನ್ನು {name} ಮತ್ತು {count} ಇತರರಿಗೆ ಹಂಚಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {count}명에게 그룹 메시지 기록을 공유하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت مێژووی نامەکانی گروپیشە هەلبەرەوە {name} و {count} یەکی تر؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okwebekaniza ebyafaayo by'olukungaana okuva e {name} ne bawalala {count}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pasidalinti grupės žinučių istorija su {name} ir {count} kitais?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties dalīties grupas ziņojumu vēsturē ar {name} un {count} citiem?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да ја споделите историјата на групните пораки со {name} и {count} други?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн мессежний түүхийг {name}-тай болон {count} бусдаас хуваалцахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin berkongsi sejarah mesej kumpulan dengan {name} dan {count} yang lain?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {count} others?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppehistorikken med {name} og {count} andre?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं साझेदारी गर्न चाहनुहुन्छ समूह सन्देश इतिहासको साथ {name}{count} अन्यहरू?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u de groepsberichtgeschiedenis delen met {name} en {count} anderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppemeldingshistorikk med {name} og {count} andre?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kugawana mbiriyakale ya mauthenga a gulu ndi {name} ndi {count} ena?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਅਤੇ {count} ਹੋਰ ਨਾਲ ਗਰੁੱਪ ਸੰਦੇਸ਼ ਇਤਿਹਾਸ ਨੂੰ ਸਾਂਝਾ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz udostępnić historię wiadomości grupy użytkownikowi {name} i {count} innym użytkownikom?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ د {name} او {count} نورو سره د ګروپ پیغام تاریخ شریک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de compartilhar o histórico de mensagens do grupo com {name} e {count} outros?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de partilhar o histórico de mensagens do grupo com {name} e {count} outros?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să partajați istoricul mesajelor de grup cu {name} și alți {count}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите поделиться историей сообщений группы с {name} и {count} другими?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name} i {count} drugih?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ {count} මිලේනියමු සමඟ සමූහ පණිවිඩ ඉතිහාසය බෙදාගැනීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete zdieľať históriu skupinových správ s {name} a {count} ďalšími?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite deliti zgodovino sporočil skupine z {name} in {count} drugimi?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të ndani historinë e mesazheve të grupit me {name} dhe {count} të tjerë?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите да делите историју порука групе са {name} и {count} других?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name} i {count} drugih?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du dela gruppmeddelandehistorik med {name} och {count} andra?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kushiriki historia ya ujumbe wa kundi na {name} na {count} wengine?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} மற்றும் {count} மற்றவர்களுடன் குழு செய்தி வரலாற்றை பகிர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {count} ఇతరులతో గ్రూప్ సందేశాల చరిత్రను షేర్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการแบ่งปันประวัติการสนทนากลุ่มกับ {name} และอีก {count} คน หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {count} diğerleri ile grup mesaj geçmişini paylaşmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте поділитися історією повідомлень групи з {name} і {count} іншими?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {name} اور {count} دیگر کے ساتھ گروپ پیغام کی تاریخ شیئر کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {count} boshqalarni bilan guruh xabarlari tarixini bo'lishmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn chia sẻ lịch sử tin nhắn nhóm với {name}{count} người khác không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukwabelana ngembali yemiyalezo yeqela kunye no{name} kunye nabanye {count}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望与{name}和其他{count}人共享群组消息历史吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要與 {name}{count} 名其他成員 分享群組訊息歷史?" + } + } + } + }, + "membersInviteShareDescriptionTwo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wil jy groep boodskapgeskiedenis deel met {name} en {other_name}?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل تود مشاركة تاريخ الرسائل بالمجموعة مع {name} و{other_name}؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qrup mesajlarının tarixçəsini {name}{other_name} ilə paylaşmaq istəyirsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ھشتوجیءَ چاہاں تا گروپءِ پیغامانی شمار سیدءَ {name} ه {other_name} باشارتءَ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы жадаеце падзяліцца гісторыяй паведамленняў групы з {name} і {other_name}?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искате ли да споделите историята на съобщенията в групата с {name} и {other_name}?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {other_name}?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voleu compartir l'historial de missatges del grup amb {name} i {other_name}?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete sdílet historii zpráv skupiny s {name} a {other_name}?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoffech chi rannu hanes neges grŵp gyda {name} a {other_name}?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppebeskedhistorik med {name} og {other_name}?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Möchtest du den Nachrichtenverlauf der Gruppe mit {name} und {other_name} teilen?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα θέλατε να μοιραστείτε το ιστορικό μηνυμάτων ομάδας με τον/την {name} και τον/την {other_name};" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {other_name}?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi ŝatus dividi grupan mesaĝan historion kun {name} kaj {other_name}?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name} y {other_name}?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Te gustaría compartir el historial de mensajes del grupo con {name} y {other_name}?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite jagada grupisõnumite ajalugu koos {name} ja {other_name}?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taldeko mezuen historia partekatu nahi duzu {name} eta {other_name}-ekin?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا می‌خواهید تاریخچه پیام‌های گروه را با {name} و {other_name} به اشتراک بگذارید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko jakaa ryhmien viestihistorian {name} ja {other_name} kanssa?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gusto mo bang ibahagi ang kasaysayan ng mensaheng grupo kina {name} at {other_name}?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voulez-vous partager l'historique des messages de groupe avec {name} et {other_name}?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Querés compartir o historial de mensaxes do grupo con {name} e {other_name}?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku so a raba tarihi na saƙon tattaunawa tare da {name} da {other_name}?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם ברצונך לשתף את היסטוריית ההודעות של הקבוצה עם {name} ו-{other_name}?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप {name} और {other_name} के साथ समूह संदेश इतिहास साझा करना चाहेंगे?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Želite li podijeliti povijest grupa s porukama sa {name} i {other_name}?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meg szeretnéd osztani a csoport korábbi üzeneteit velük: {name} és {other_name}?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցանկանո՞ւմ եք կիսել խմբի հաղորդագրությունների պատմությունը {name}-ի և {other_name}-ի հետ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda ingin berbagi riwayat pesan grup dengan {name} dan {other_name}?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vuoi condividere la cronologia dei messaggi di gruppo con {name} e {other_name}?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}{other_name}にグループメッセージ履歴を共有しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გსურთ გაუზიაროთ ჯგუფის გზავნილების ისტორია {name}-ს და {other_name}?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកចង់ចែករំលែកប្រវត្តិសារក្រុមជាមួយ {name} និង {other_name} មែនទេ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗುಂಪಿನ ಸಂದೇಶದ ಇತಿಹಾಸವನ್ನು {name} ಮತ್ತು {other_name} ನೊಂದಿಗೆ ಹಂಚಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님과 {other_name}님에게 그룹 메시지 기록을 공유하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئایا دەتەوێت مێژووی نامەکانی گروپی شکێنەوە {name} و {other_name}؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyagala okwebekaniza ebyafaayo by'olukungaana okuva e {name} ne {other_name}?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar norėtumėte pasidalinti grupės žinučių istorija su {name} ir {other_name}?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai vēlaties dalīties grupas ziņojumu vēsturē ar {name} un {other_name}?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сакате да ја споделите историјата на групните пораки со {name} и {other_name}?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүлгийн мессежний түүхийг {name}-тай болон {other_name} -тай хуваалцахыг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda ingin berkongsi sejarah mesej kumpulan dengan {name} dan {other_name}?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to share group message history with {name} and {other_name}?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppehistorikken med {name} og {other_name}?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं साझेदारी गर्न चाहनुहुन्छ समूह सन्देश इतिहासको साथ {name}{other_name}?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wilt u de groepsberichtgeschiedenis delen met {name} en {other_name}?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vil du dele gruppemeldingshistorikk med {name} og {other_name}?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodi mukufuna kugawana mbiriyakale ya mauthenga a gulu ndi {name} ndi {other_name}?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ {name} ਅਤੇ {other_name} ਨਾਲ ਗਰੁੱਪ ਸੰਦੇਸ਼ ਇਤਿਹਾਸ ਨੂੰ ਸਾਂਝਾ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy chcesz udostępnić historię wiadomości grupy użytkownikom {name} i {other_name}?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا تاسو غواړئ د {name} او {other_name} سره د ګروپ پیغام تاریخ شریک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de compartilhar o histórico de mensagens do grupo com {name} e {other_name}?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gostaria de partilhar o histórico de mensagens do grupo com {name} e {other_name}?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doriți să partajați istoricul mesajelor de grup cu {name} și {other_name}?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хотите поделиться историей сообщений группы с {name} и {other_name}?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name} i {other_name}?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {name} සහ {other_name} සමඟ සමූහ පණිවිඩ ඉතිහාසය බෙදාගැනීමට අවශ්‍යද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chcete zdieľať históriu skupinových správ s {name} a {other_name}?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali želite deliti zgodovino sporočil skupine z {name} in {other_name}?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A dëshironi të ndani historinë e mesazheve të grupit me {name} dhe {other_name}?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли желите делити историју порука групе са {name} и {other_name}?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li želite da podelite istoriju grupnih poruka sa {name} i {other_name}?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vill du dela gruppmeddelandehistorik med {name} och {other_name}?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungependa kushiriki historia ya ujumbe wa kundi na {name} na {other_name}?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} மற்றும் {other_name} உடன் குழு செய்தி வரலாற்றை பகிர விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} మరియు {other_name}తో గ్రూప్ సందేశాల చరిత్రను షేర్ చేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องการแบ่งปันประวัติการสนทนากลุ่มกับ {name} และ {other_name} หรือไม่?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ve {other_name} ile grup mesaj geçmişini paylaşmak ister misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бажаєте поділитися історією повідомлень групи з {name} і {other_name}?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ {name}اور {other_name} کے ساتھ گروپ پیغام کی تاریخ شیئر کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} va {other_name} bilan guruh xabarlari tarixini bo'lishmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có muốn chia sẻ lịch sử tin nhắn nhóm với {name}{other_name} không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungathanda ukwabelana ngembali yemiyalezo yeqela kunye no{name} kunye no{other_name}?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您希望与{name}{other_name}共享群组消息历史吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您是否想要與 {name}{other_name} 分享群組訊息歷史?" + } + } + } + }, + "membersInviteShareMessageHistory" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel boodskap geskiedenis" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مشاركة سجل الرسائل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj tarixçəsini paylaş" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاریخچٱ پیاماں ونڈ کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абагуліць гісторыю паведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Споделяне на история на съобщенията" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা ইতিহাস শেয়ার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartiu l'historial de missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílet historii zpráv" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhannu hanes negeseuon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del beskedhistorik" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenverlauf teilen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κοινοποίηση ιστορικού μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share message history" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigi mesaĝhistorion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir historial de mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir historial de mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga sõnumi ajalugu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu historia partekatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اشتراک گذاری تاریخچه پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa viestihistoria" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-share ang kasaysayan ng mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partager l'historique des messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partillar historial de mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raba tarihin saƙonni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שתף היסטוריית הודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश इतिहास साझा करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli povijest poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenettörténet megosztása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվել հաղորդագրությունների պատմությամբ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan riwayat pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi cronologia messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share message history" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების ისტორიის გაზიარება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែកប្រវត្តិសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಇತಿಹಾಸವನ್ನು ಹಂಚಿಕೊಳ್ಳಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 기록 공유" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوبەشی مێژووی پارەگەڕەکانی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana ebyafaayo by'obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendrinti žinučių istoriją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koplietot ziņojuma vēsturi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели ја историјата на пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежний түүхийг хуваалцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi sejarah mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ခ်ျသမိုင်းကိုမျှဝေမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del meldingshistorikk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश इतिहास साझेदारी गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtgeschiedenis delen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del meldingshistorikken" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share message history" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਰਿਕਾਰਡ ਸਾਂਝਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępnij historię wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پیغام تاریخچه شریکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhar histórico de mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhar histórico de mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Distribuie istoricul mesajelor" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделиться историей сообщений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dijeli historiju poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවුඩ ඉතිහාසයක් බෙදාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdieľať históriu správ" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deli zgodovino sporočil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndani historikun e mesazheve" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дели историју порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeli istoriju poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela meddelandehistorik" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki historia ya ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி வரலாற்றைப் பகிர்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశ చరిత్రను పంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบ่งปันประวัติการส่งข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj geçmişini paylaş" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поділитися історією повідомлень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی تاریخ کا اشتراک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlar tarixini bo'lishish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chia sẻ lịch sử tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share message history" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "共享消息历史" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享舊訊息記錄" + } + } + } + }, + "membersInviteShareNewMessagesOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel net nuwe boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مشاركة الرسائل الجديدة فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız yeni mesajları paylaş" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوکین پیاماں پھریبندوگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абагуліць толькі новыя паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели само нови съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধু নতুন মেসেজ শেয়ার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desa només nous missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílet pouze nové zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhannu negeseuon newydd yn unig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del kun nye beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur neue Nachrichten teilen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κοινοποίηση μόνο νέων μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share new messages only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigi nur novajn mesaĝojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir solo mensajes nuevos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir solo nuevos mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga ainult uusi sõnumeid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu berriak bakarrik partekatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اشتراک گذاری فقط پیام های جدید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa vain uudet viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-share ang mga bagong mensahe lamang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partager seulement les nouveaux messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partillar só mensaxes novas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raba sabbin saƙonni kawai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שתף הודעות חדשות בלבד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल नए संदेश साझा करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli samo nove poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csak új üzenetek megosztása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվել միայն նոր հաղորդագրություններով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan pesan baru saja" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi solo nuovi messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share new messages only" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ ახალი შეტყობინებების გაზიარება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែកតែការផ្ញើសារថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಸಂದೇಶಗಳನ್ನು ಮಾತ್ರ ಹಂಚಿಕೊಳ್ಳಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 메시지만 공유" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوبەش کی نووسە بۆ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana obubaka bupi bwokka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendrinti tik naujas žinutes" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koplietot tikai jaunos ziņojumus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели само нови пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн шинэ мессежүүдийг хуваалцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi mesej baru sahaja" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သစ်သော စာများကိုမျှဝေပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del kun nye meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल नयाँ सन्देशहरू साझेदारी गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen nieuwe berichten delen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dele berre nye meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share new messages only" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੇਂ ਸੁਨੇਹੇ ਸਿਰਫ ਸਾਂਝਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępniaj tylko nowe wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې نوي پیغامونه شریکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhar apenas novas mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhar apenas novas mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Distribuie doar mesajele noi" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделиться только новыми сообщениями" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dijeli samo nove poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව පණිවිඩ පමණක් බෙදාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdieľať iba nové správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deli samo nova sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndani vetëm mesazhet e reja" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дели само нове поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeli samo nove poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela endast nya meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki jumbe mpya pekee" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய செய்திகளை மட்டும் பகிர்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కేవలం కొత్త సందేశాలను పంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบ่งปันเฉพาะข้อความใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnızca yeni mesajları paylaş" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ділитися тільки новими повідомленнями" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف نئے پیغامات شیئر کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat yangi xabarlarni bo'lishing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ chia sẻ tin nhắn mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share new messages only" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅共享新消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "僅共享新訊息" + } + } + } + }, + "membersInviteTitle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəvət et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрасіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покани" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমন্ত্রণ জানান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convida" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahodd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitér kontakt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρόσκληση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbidatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbitahin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vexwîne" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמן" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आमंत्रण" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meghívás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "招待" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვევა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಮಂತ್ರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "초대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بانێ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakviesti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielūgt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покана" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemput" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖိတ်ကြားစာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uitnodigen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨੂੰ ਸੱਦੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproś" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invită" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пригласить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරාධනා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fto" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи позивницу" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bjud in" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அழைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆహ్వానించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davet et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدعو کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taklif" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuyitibwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請" + } + } + } + }, + "message" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μήνυμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙon" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ဂျ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Melding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息" + } + } + } + }, + "messageEmpty" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie boodskap is leeg." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذه الرسالة فارغة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj boşdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام خالی ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэтае паведамленне пустое." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това съобщение е празно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই মেসেজটি ফাঁকা।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest missatge és buit." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tato zpráva je prázdná." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r neges hon yn wag." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeden er tom." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Nachricht ist leer." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το μήνυμα είναι κενό." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message is empty." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝo malplenas." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje está vacío." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este mensaje está vacío." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See sõnum on tühi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu hau hutsik dago." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این پیام خالی است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti on tyhjä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang laman ang mensaheng ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce message est vide." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensaxe está baleira." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan saƙon ya yi fanko." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה זו ריקה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह संदेश खाली है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je prazna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez az üzenet üres." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունը դատարկ է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan ini kosong." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il messaggio è vuoto." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このメッセージは空です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს შეტყობინება ცარიელია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This message is empty." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸಂದೇಶ ಖಾಲಿಯಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 메시지는 비어 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەم پەیامە تێنەکەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka mono buno obutuuffu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ši žinutė tuščia." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šī ziņa ir tukša." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оваа порака е празна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ мессеж хоосон байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej ini kosong." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ခ်ျ အကြောင်း မရှိပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne meldingen er tom." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो सन्देश खाली छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit bericht is leeg." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldinga er tom." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthengawu ndi wopanda kanthu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਸੁਨੇਹਾ ਖਾਲੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość jest pusta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا پیغام تش دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensagem está vazia." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta mensagem está vazia." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajul este gol." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это сообщение пустое." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruka je prazna." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම පණිවිඩය හිස් ය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Táto správa je prázdna." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To sporočilo je prazno." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhi është i zbrazët." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова порука је празна." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ova poruka je prazna." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandet är tomt." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe huu ni mtupu." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தி வெறுமையாக உள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం ఖాళీగా ఉంది!" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความนี้ว่างเปล่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj boş." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це повідомлення порожнє." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ پیغام خالی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu xabar bo'sh." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn này trống không." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lo myalezo uyaphalala." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此消息内容为空。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息內容是空的。" + } + } + } + }, + "messageErrorDelivery" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap aflewering het misluk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل توصيل الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj çatdırılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message delivery failed" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося даставіць паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доставката на съобщението неуспешна" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা ডেলিভারি ব্যর্থ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en el lliurament del missatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selhalo doručení zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methodd trosglwyddo neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Levering af besked mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenübermittlung gescheitert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η παράδοση του μηνύματος απέτυχε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message delivery failed" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝa livero malsukcesis" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al entregar el mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al entregar el mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi kohaletoimetamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuaren entrega huts egin du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحویل پیام شکست خورد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin toimitus epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang pagpapadala ng mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La transmission du message a échoué" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro na entrega da mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa aikawa saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מסירת ההודעה נכשלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश प्रेषण असफल हुआ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno dostavljanje poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet kézbesítése sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության առաքումը ձախողվեց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengiriman pesan gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'invio del messaggio non è riuscito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージの配信に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების მიწოდება ვერ განხორციელდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការចែកសារប្រើវិញដោយម្ចាស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ವಿತರಣೆಗೆ ವೈಫಲ್ಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 전송 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "فیر خالةنامە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutuusibwa okw’obubaka kugalindwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės pristatymas nepavyko" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojuma piegāde neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно испраќање порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж хүргэлт амжилтгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Penghantaran mesej gagal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ် ပို့ခြင်း မအောင်မြင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Levering av melding mislyktes" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश वितरण असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtaflevering mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil ved meldingslevering" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kulephera kwachukulidwako chikalata" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਡਿਲਿਵਰੀ ਅਸਫਲ ਹੋਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się dostarczyć wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام تحویل ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envio de mensagem falhou" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha na entrega de mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la livrarea mesajului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сбой доставки сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješna isporuka poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය අසමත් වීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doručenie správy zlyhalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostava sporočila ni uspela" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgimi i mesazhit dështoi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испорука поруке није успела" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostava poruke nije uspela" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandet kunde inte levereras" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe haujatumwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி விநியோகம் தோல்வியுற்றது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం పంపుట విఫలమైనది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งข้อความล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti teslimi başarısız oldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збій доставки повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی ترسیل ناکام ہوگئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar yetkazib berishda xato" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phân phối tin nhắn bị thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuleyisa komyalezo kuyasilela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息发送失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息傳送失敗" + } + } + } + }, + "messageErrorLimit" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap limiet bereik" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم بلوغ حد الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj limitinə çatıldı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message limit reached" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дасягнуты ліміт паведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това е пределът на едно съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা আকারের সীমায় পৌঁছে গেছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Límit del missatge assolit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosažen limit zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyrhaeddwyd terfyn neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskedgrænse nået" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenlimit erreicht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συμπληρώθηκε το όριο μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message limit reached" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝa limito atingite" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Límite de texto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Límite de texto." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi piirang saavutatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuaren muga lortu da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به محدودیت پیام رسیدید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin suurin sallittu pituus saavutettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naabot na ang limitasyon ng mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La taille maximale de message est atteinte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Límite de mensaxes alcanzado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kai iyakar saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגעת למגבלת ההודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश सीमा तक पहुंच गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosegnuto ograničenje poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenethossz-korlát elérve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունների սահմանաչափը գերազանցված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batas pesan tercapai." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limite messaggio raggiunto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージの上限に達しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების ლიმიტი მიღწეულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទេក...ៃចាំហ្នឹង!" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಮಿತಿ ಮುಟ್ಟಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "글자 수 제한을 초과했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵتووڕەی پەیام با کە دەگە مەدەرنارە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Embeera yazimba obubaka ekikoma kubw’otwegongera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasiektas žinučių limitas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sasniegts ziņojuma garuma ierobežojums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постигнат е лимитот за пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежийн хязгаар хүрсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Had mesej dicapai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ဂျ် ကန့်သတ်ချက် ပြည့်သွားပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsgrense nådd" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश साइज सीमा पुग्यो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximale berichtlengte bereikt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsgrensen er nådd" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata mwalangizidwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਸੀਮਾ ਪਹੁੰਚ ਗਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osiągnięto limit wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام محدوده رسیده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limite de mensagens atingido." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atingido o limite de mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limita de mesaje a fost atinsă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Достигнут предел сообщений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostignut limit poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ සීමාව ළඟා විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosiahnutý limit správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosežena največja velikost sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U arrit kufiri i mesazhit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Максимална величина поруке је достигнута" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostignut je limit poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandegränsen har uppnåtts" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kikomo cha ujumbe kimefikiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி வரம்பு சென்றடைந்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశ పరిమితి చేరుకుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ถึงขีดจำกัดการข้อความแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj sınırı aşıldı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Досягнуто ліміту повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی حد پہنچ گئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar cheklovi yetdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã đạt đến mức giới hạn ký tự" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo uthintelwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息字数已满" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息長度已達限制" + } + } + } + }, + "messageErrorOld" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het 'n boodskap ontvang wat geënkripteer is deur gebruik te maak van 'n ou weergawe van {app_name} wat nie meer ondersteun word nie. Vra asseblief die sender om op te dateer na die heel nuutste weergawe en stuur die boodskap weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تلقينا رسالة مشفرة باستخدام إصدار قديم من {app_name} لم يعد مدعومًا. يرجى مطالبة المرسل بتحديث إلى أحدث إصدار وإعادة إرسال الرسالة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqinin artıq dəstəklənməyən köhnə bir versiyası istifadə edilərək şifrələnmiş bir mesaj alındı. Lütfən göndərən şəxsdən tətbiqi ən son versiyaya güncəlləməsini və mesajı təkrar göndərməsini xahiş edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیستان پیغام منع آنی کُہ پرانا ورژن اے سیکرت کتے کنۃ {app_name} ۔ مہربانیئی بلو چہجوکھ بندا تازہ ترین ورژن پھلی پابندیت و بیوت بپیغام دوبارہ روانہ کنت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Атрымана паведамленне, зашыфраванае старой версіяй {app_name}, якая больш не падтрымліваецца. Калі ласка, папрасіце адпраўніка абнавіцца да найноўшай версіі і перадаслаць паведамленне." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получихте съобщение криптирано със стара версия на {app_name}, която вече не се поддържа. Моля, помолете изпращача да обнови версията си и да препрати съобщението." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুরোনো সংস্করণের {app_name} দ্বারা এনক্রিপ্ট করা একটি মেসেজ পেয়েছেন যা আর সমর্থিত নয়। অনুগ্রহ করে প্রেরককে সর্বশেষ সংস্করণে আপডেট করতে বলুন এবং মেসেজ পুনরায় পাঠান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha rebut un missatge encriptat amb una versió antiga del {app_name} que ja no s'admet. Digueu-li a l'emissor que l'actualitzi a la versió més recent i torni a enviar el missatge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přijata zpráva šifrovaná starou verzí {app_name}, která již není podporována. Prosím požádejte odesílatele, aby si aktualizoval aplikaci na nejnovější verzi a poslal zprávu znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi derbyn neges wedi'i hamgryptio gan ddefnyddio hen fersiwn o {app_name} nad yw bellach yn cael ei gefnogi. Gofynnwch i'r anfonwr ddiweddaru i'r fersiwn ddiweddaraf ac ail-anfon y neges." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modtog en besked krypteret med en ældre version af {app_name}, der ikke længere understøttes. Bed venligst afsenderen om at opdatere til den nyeste version og sende beskeden igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine Nachricht verschlüsselt mit einer alten Version von {app_name} erhalten, die nicht mehr unterstützt wird. Bitte fragen Sie den Absender, auf die neueste Version zu aktualisieren und die Nachricht erneut zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λήφθηκε ένα μήνυμα που είναι κρυπτογραφημένο με μια παλιά έκδοση του {app_name} που πλέον δεν υποστηρίζεται. Παρακαλώ ζητήστε από τον αποστολέα να αναβαθμίσει στην πιο πρόσφατη έκδοση και να ξαναστείλει το μήνυμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Received a message encrypted using an old version of {app_name} that is no longer supported. Please ask the sender to update to the most recent version and resend the message." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ricevis mesaĝon ĉifritan per malnova {app_name}-a versio, kiu ne plu estas subtenata. Bonvolu peti la sendinton ĝisdatigi al la plej freŝa versio, kaj resendi la mesaĝon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se ha recibido un mensaje cifrado usando una versión de {app_name} antigua que ya no está soportada. Por favor, avisa al que te lo ha enviado para que se actualice a la versión más reciente y reenvíe el mensaje." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se ha recibido un mensaje cifrado usando una versión de {app_name} antigua que ya no está soportada. Por favor, avisa a el que te lo ha enviado para que se actualice a la versión más reciente y reenvíe el mensaje." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastuvõetud sõnum, mis on krüptitud kasutades vana, mittetoetatud {app_name} versiooni. Palun palu saatjal uuendada uusimale versioonile ja siis sõnum uuesti saata." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua jaso da, {app_name} bertsio zahar bat erabiliz enkriptatua dagoenez, ez da onartua. Mesedez, eguneratu bidaltzailea azken bertsiora eta berriro bidali mezua." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک پیام دریافت کردید که با استفاده از یک نسخهٔ قدیمی {app_name} که دیگر پشتیبانی نمی‌شود رمزگذاری شده است. لطفاً از فرستنده بخواهید به آخرین نسخه بروزرسانی کنند و پیام را دوباره بفرستند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastaanotettiin viesti, joka on salattu vanhalla {app_name}-versiolla, jota ei enää tueta. Pyydä lähettäjää päivittämään uusimpaan versioon ja lähettämään viesti sen jälkeen uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakatanggap ng mensaheng naka-encrypt gamit ang lumang bersyon ng {app_name} na hindi na suportado. Pakihiling sa nag-send na mag-update sa pinakabagong bersyon at muling ipadala ang mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez reçu un message chiffré avec une ancienne version de {app_name} qui n’est plus prise en charge. Veuillez demander à l’expéditeur de mettre à jour vers la version la plus récente et de renvoyer son message." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibiuse unha mensaxe cifrada a través dunha versión antiga de {app_name} que xa non ten soporte. Por favor, pídelle ao remitente que actualice a súa versión e volva enviar a mensaxe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An karɓi saƙo mai ɓoyewa ta amfani da tsohuwar sigar {app_name} da bata samun goyon baya. Don Allah ka tambayi mai aika saƙo da ya sabunta zuwa sigar zamani kuma aika saƙon a karo na biyu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התקבלה הודעה מוצפנת ע\"י שימוש בגרסה ישנה של {app_name} שאינה נתמכת יותר. אנא בקש מהשולח לעדכן אל הגרסה העדכנית ביותר ולשלוח מחדש את ההודעה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} के पुराने संस्करण का उपयोग करके एन्क्रिप्ट किया गया एक संदेश प्राप्त हुआ जो अब समर्थित नहीं है। कृपया प्रेषक से नवीनतम संस्करण में अपडेट करने और संदेश भेजने के लिए कहें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primili ste poruku šifriranu starom verzijom {app_name} koja više nije podržana. Molimo pošaljitelja da ažurira na najnoviju verziju i ponovno pošalje poruku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egy olyan üzenet érkezett, amely a {app_name} egy régebbi, már nem támogatott verziójával lett titkosítva. Kérd meg a feladót, hogy frissítsen a legfrissebb verzióra, majd küldje el újra az üzenetet!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրությունը չի ուղարկվել, քանի որ {app_name}-ի տվյալ տարբերակը հնացել է, խնդրում ենք թարմացնել այն, և ուղարկեք հաղորդագրությունը նորից." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menerima pesan yang dienkripsi menggunakan versi lama dari {app_name} yang tidak lagi didukung. Harap minta pengirim untuk memperbarui ke versi terbaru dan mengirim ulang pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai ricevuto dal mittente un messaggio cifrato proveniente da una vecchia versione di {app_name} che non è più supportata. Ti preghiamo di chiedere al mittente di aggiornare l'app e rimandare il messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "古いバージョンの {app_name} で暗号化されたメッセージを受信しました。このメッセージはサポートされなくなりました。 送信者に最新のバージョンに更新するように依頼し、メッセージを再送信してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინება მიღებულია ძველი ვერსიით {app_name}, რომელიც აღარ არის მხარდაჭერილი. გთხოვთ, მიაწოდონ გაგზავნით ახალ ვერსიას და თავიდან გაგზავნონ შეტყობინება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទទួលបានសារដែលមានកាណាល់កូដសម្ងាត់ តែជាជំនាន់ចាស់របស់ {app_name} ដែលគេលែងប្រើហើយ។ សូមប្រាប់អ្នកផ្ញើ ឲ្យធ្វើបច្ចុប្បន្នភាពទៅជំនាន់ចុងក្រោយបង្អស់ និងផ្ញើសារម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನ ಹಳೆಯ ಆವೃತ್ತಿಯ ಬಳಸಿ ಎನ್‌ಕ್ರಿಪ್ಟ್ ಮಾಡಿದ ಸಂದೇಶವನ್ನು ಸ್ವೀಕರಿಸಲಾಗಿದೆ, ಇದು ಇನೀಗ ಪ್ರಾತಿನಿಧ್ಯದಿಂದ ಪರಿಶೀಲಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಕಳುಹಿಸುವವನಲ್ಲಿ ನವೀನ ಆವೃತ್ತಿಗೆ ನವೀಕರಿಸಲು ಮತ್ತು ಮತ್ತೊಮ್ಮೆ ಕಳುಹಿಸಲು ಕೋರಿಕೊಳ್ಳಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "지원하지 않는 {app_name} 버전의 암호화된 메시지를 받았습니다. 상대방에게 최신 버전으로 업데이트 하고 다시 보내기를 요청해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەیەکی ژمارەی نەهێننەوە لمە کەفتوەیە بۆ {app_name} یەبی فڕەیانەیەود نەو ئەود وەرداینە بێکراوی هەڵ ژمارەیەک راوە یەبە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutumibwa kwa bbaluwa nga eyasimikiddwa mu ngeri etakyatagiddwa {app_name} era eyeesimbibwako eyade. Nsaba omukubirizza ayongerase ku lupya n'addeeyo okuddamu okutunda ekitundu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gauta žinutė buvo užšifruota, naudojant seną {app_name} versiją, kuri daugiau nebepalaikoma. Paprašykite siuntėjo atnaujinti savo programėlę į naujausią versiją ir iš naujo išsiųsti žinutę." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saņēma ziņu, kas ir šifrēta ar vecāku {app_name} versiju, kuru vairs neatbalstām. Lūdzu, palūdziet sūtītājam atjaunināt uz jaunāko versiju un nosūtīt ziņu vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примена е порака шифрирана со стара верзија на {app_name} која повеќе не се поддржува. Ве молиме побарајте од испраќачот да ја ажурира на најновата верзија и повторно да ја испрати пораката." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ийн хуучирсан хувилбараар шифрлэгдсэн мессеж хүлээн авсан байна. Зурвас илгээгчээс хамгийн сүүлийн хувилбар руу шинэчлэж, дахин илгээхийг хүснэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menerima mesej yang disulitkan menggunakan versi lama {app_name} yang tidak lagi disokong. Sila minta penghantar untuk kemas kini ke versi terkini dan hantar semula mesej." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပံ့ပိုးပေးထားမှု မရှိတော့သော {app_name} အဟောင်းဗားရှင်းကို အသုံးပြု၍ encrypt လုပ်ထားသော မက်ဆေ့ချ်ကို လက်ခံရရှိပါသည်။ ကျေးဇူးပြု၍ ပေးပို့သူအား နောက်ဆုံးဗားရှင်းကို အပ်ဒိတ်လုပ်ပြီး မက်ဆေ့ချ်ကို ပြန်ပို့ရန် တောင်းဆိုပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mottatt en melding som er kryptert med en gammel versjon av {app_name} som ikke lenger støttes. Be avsenderen om å oppdatere til nyeste versjon og sende meldinga på nytt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को पुरानो संस्करण प्रयोग गरी एन्क्रिप्ट गरिएको सन्देश प्राप्त भएको। यसलाई समर्थन गरिएको छैन। कृपया प्रेषकलाई अद्यावधिक गर्न भन्नुहोस् र सन्देश पुन: पठाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit bericht gebruikt verouderde versleuteling van een oude versie van {app_name} die niet langer ondersteund wordt. Vraag de afzender om te updaten naar de meest recente versie en het bericht opnieuw te verzenden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mottok ei melding som er kryptert med ein gammal versjon av {app_name} som ikkje lenger vert støtta. Be avsendaren om å oppdatera til nyaste versjon og senda meldinga på nytt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talandira uthenga womwe watetezedwa pogwiritsa ntchito {app_name} yachikale yomwe siyathandizidwanso. Chonde pemphani wotumizayo kuti akonzenso mtundu waposachedwa ndikutumizanso uthengawo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇੱਕ ਸੁਨੇਹਾ ਪ੍ਰਾਪਤ ਹੋਇਆ ਜੋ {app_name} ਦੇ ਪੁਰਾਣੇ ਵਰਜਨ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸੰਸ਼ੋਧਿਤ ਕੀਤਾ ਗਿਆ ਸੀ ਜੋ ਹੁਣ ਸਪੋਰਟਡ ਨਹੀਂ। ਕਿਰਪਾ ਕਰਕੇ ਭੇਜਨ ਵਾਲੇ ਨੂੰ ਸਭ ਤੋਂ ਨਵੇਂ ਵਰਜਨ ਤੇ ਅੱਪਡੇਟ ਕਰਨ ਅਤੇ ਸੁਨੇਹੇ ਨੂੰ ਦੁਬਾਰਾ ਭੇਜਣ ਲਈ ਕਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otrzymano wiadomość zaszyfrowaną przy użyciu starej wersji aplikacji {app_name}, która nie jest już obsługiwana. Poproś nadawcę o aktualizację do najnowszej wersji i ponowne wysłanie wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام ترلاسه کړل شوی چې پخوانۍ نسخه یې کاروي د {app_name} چې نور ملاتړ نشته. مهرباني وکړئ د پیغام لیږوونکي څخه وپوښتئ چې وروستي نسخه ته نوي کړي او پیغام بیا واستوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recebida uma mensagem encriptada usando uma versão antiga de {app_name} que não é mais suportada. Por favor peça o(a) enviador(a) que atualize para a versão mais recente e reenvie a mensagem." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recebeu uma mensagem encriptada com uma versão antiga do {app_name}, que já não é suportada. Por favor, peça ao remetente para atualizar para a versão mais recente e reenviar a mensagem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai primit un mesaj care a fost criptat cu o versiune mai veche de {app_name} care nu mai este suportată. Roagă-l pe expeditor să-și actualizeze aplicația la ultima versiune și să retrimită mesajul." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Полученное сообщение зашифровано в старой версии {app_name}, которая больше не поддерживается. Пожалуйста, попросите отправителя обновиться до последней версии и отправить сообщение заново." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primljena je poruka kriptirana starom verzijom {app_name} koja više nije podržana. Molimo zamolite pošiljaoca da ažurira na najnoviju verziju i ponovo pošalje poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තවදුරටත් සහාය නොදක්වන {app_name} හි පැරණි අනුවාදයක් භාවිතයෙන් සංකේතනය කළ පණිවිඩයක් ලැබී ඇත. කරුණාකර යවන්නාගෙන් නවතම අනුවාදයට යාවත්කාලීන කර පණිවිඩය යවන ලෙස ඉල්ලා සිටින්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijatá správa je šifrovaná starou verziou {app_name}, ktorá už nie je podporovaná. Prosím požiadajte odosielateľa o aktualizáciu na najnovšiu verziu a opätovné odoslanie správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prejeli ste sporočilo, ki je bilo šifrirano s staro različico aplikacije {app_name}, ki ni več podprta. Prosimo pošljite pošiljatelju, naj posodobi na najnovejšo različico in ponovno pošlje sporočilo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morët një mesazh të fshehtëzuar duke përdorur një version të vjetër të {app_name}-it, që nuk mirëmbahet më. Ju lutemi, kërkojini dërguesit ta përditësojë me versionin më të ri dhe ta ridërgojë mesazhin." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примљена је порука шифрована старим издањем {app_name}-a које више није подржано. Замолите пошиљаоца да надогради на најновије издање и поново пошаље поруку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primio/la ste poruku šifrovanu korišćenjem stare verzije {app_name} koja više nije podržana. Molimo pošaljiteocu da ažurira na najnoviju verziju i ponovo pošalje poruku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tog emot ett meddelande som krypterats med en tidigare version av {app_name} som inte längre stöds. Be avsändaren uppdatera till senaste versionen och skicka om meddelandet." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imepokea ujumbe uliofichwa kwa kutumia toleo la zamani la {app_name} ambayo haitumiki tena. Tafadhali kumwomba mtumaji kuwasasishe kwa toleo la hivi karibuni na kurejesha ujumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இன் பழைய பதிப்பைப் பயன்படுத்தி குறியாக்கப் பெற்ற செய்தி பெறப்பட்டது மேலும் இந்தப் பதிப்பு இனி ஆதரிக்கப்படாது. அனுப்புவரிடம் அண்மைய பதிப்புக்கு புதுப்பிக்கவும், செய்தியை மீள அனுப்பும்படி கேட்டுக்கொள்ளவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇకపై మద్దతు అందని {app_name} యొక్క పాత సంస్కరణను ఉపయోగించి ఎన్క్రిప్ట్ చేసిన సందేశాన్ని అందుకుంది. దయచేసి ఇటీవల సంస్కరణకు అప్డేట్ చేయమని పంపినవారు అడగండి మరియు సందేశాన్ని మళ్లీ పంపించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ได้รับข้อความที่เข้ารหัสด้วย {app_name} รุ่นเก่าที่ไม่รองรับอีกต่อไปแล้ว โปรดขอให้ผู้ส่งอัพเดตแอปเป็นเวอร์ชันล่าสุดและส่งข้อความอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının artık desteklenmeyen eski bir sürümü kullanılarak şifrelenmiş bir mesaj alındı. Lütfen gönderenden en son sürüme güncelleme yapmasını ve mesajı yeniden göndermesini isteyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отримано повідомлення, яке зашифроване старою версією {app_name}, яка вже не підтримується. Попросіть відправника оновити до останньої версії та надіслати повідомлення знову." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک پیغام موصول ہوا جو {app_name} کے پرانے ورژن کا استعمال کرتے ہوئے انکرپٹ کیا گیا تھا جو اب تعاون یافتہ نہیں ہے۔ براہ کرم بھیجنے والے سے درخواست کریں کہ وہ تازہ ترین ورژن میں اپ ڈیٹ کریں اور پیغام دوبارہ بھیجیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi versiyasi endi qo'llab-quvvatlanmaydigan eskirgan {app_name} versiyasidan shifrlangan xabar qabul qilindi. Iltimos, jo'natuvchidan eng yangi versiyaga yangilab, xabarni qayta yuborishni so'rang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã nhận một tin nhắn được mã khóa bởi phiên bản {app_name} cũ và không còn được hỗ trợ. Hãy yêu cầu người gửi cập nhật phiên bản mới nhất và gửi lại tin nhắn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sifumene umyalezo oqulethe umyalelo oguqulweyo usebenzisa inguqulelo endala ye-{app_name} engasekho ixhaswayo. Nceda ubuze umthumeli ukuba aguqulele kuhlobo olutsha aze aphinda athumele umyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已收到的信息使用了旧版本的{app_name}进行加密,发送者使用的版本已经不再被支持。请联系发送者升级到最新版本然后再次发送该消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "收到一則來自舊版本 {app_name} 的加密訊息,其版本已不再支援。請讓傳送者升級到 Session 的最新版本再傳送訊息。" + } + } + } + }, + "messageErrorOriginal" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oorspronklike boodskap nie gevind nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم يتم العثور على الرسالة الأصلية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Orijinal mesaj tapılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلانی پیام پر پیدا نبو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося знайсці арыгінальнае паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригиналното съобщение не е открито" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মূল বার্তাটি পাওয়া যায়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha trobat el missatge original" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Původní zpráva nebyla nalezena" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heb ganfod y neges wreiddiol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original besked ikke fundet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalnachricht nicht gefunden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το αρχικό μήνυμα δε βρέθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Original message not found" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origina mesaĝo ne troveblas" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontró el mensaje original" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontró el mensaje original" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originaalsõnumit ei leitud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jatorrizko mezua ez da aurkitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام اصلی پیدا نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alkuperäistä viestiä ei löytynyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi nakita ang orihinal na mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le message original est introuvable." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se atopou a mensaxe orixinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakon na asali ba a samu ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה מקורית לא נמצאה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मूल संदेश नहीं मिला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvorna poruka nije pronađena" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az eredeti üzenet nem található" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մեջբերված հաղորդագրությունը չի գտնվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan asli tidak ditemukan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio originale non trovato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "元のメッセージが見つかりません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირველი შეტყობინება ვერ მოიძებნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រកមិនឃើញសារដើម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೂಲ ಸಂದೇಶ ಕಂಡುಬಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "원본 메시지를 찾을 수 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیەمی دڵنیایەتی نادیارە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebigambo ebyasooka tebyazuuliddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradinė žinutė nerasta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sākotnējo ziņojumu nav atrasts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не е пронајдена оригиналната порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эхний мессеж олдсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej asal tidak dijumpai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မူရင်းမက်ဆေ့ဂျ်ကို ရှာမတွေ့ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprinnelig melding ikke funnet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मूल सन्देश फेला परेन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oorspronkelijk bericht niet gevonden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fann ikkje den opphavlege meldinga" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthenga woyambirira sunapezeke" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੂਲ ਸੁਨੇਹਾ ਨਹੀਂ ਮਿਲਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie znaleziono oryginalnej wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصلي پیغام ونه موندل شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem original não encontrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi encontrada a mensagem original" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajul original nu a fost găsit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исходное сообщение не найдено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalna poruka nije pronađena" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුල් පණිවිඩය හමු නොවීය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pôvodná správa sa nenašla" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvorno sporočilo ni bilo najdeno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u gjet mesazhi origjinal" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригинална порука није нађена" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Originalna poruka nije nađena" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hittade inte ursprungligt meddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meseji halisi haipatikani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அசல் செய்தி கிடைக்கவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అసలు సందేశం కనుగొనబడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบข้อความดั้งเดิม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İletinin aslı bulunamadı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оригінал повідомлення не знайдено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اصل پیغام نہیں ملا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asli maktub yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy tin nhắn gốc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umthunywa wokuqala awufumaneki" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到原消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到原始訊息" + } + } + } + }, + "messageInfo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskapinligting" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj məlumatları" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Info" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інфармацыя аб паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация за съобщението" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তার তথ্য" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informació del Missatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informace o zprávě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwybodaeth am y Neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Besked Info" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten-Info" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πληροφορίες Μηνύματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Info" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝa Informo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información del mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información del mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi andmed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuaren informazioa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin tiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impormasyon ng Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informations sur le message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información da mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanin Saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרטי הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश जानकारी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije o poruci" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet adatai" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության մանրամասները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informasi Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ詳細" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების ინფორმაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មានសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಮಾಹಿತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 정보" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیام موڵ مەڵ_AES" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eby’obubaka okuteekateeka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės informacija" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņas informācija" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информации за порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж мэдээлэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maklumat Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ဂျ် အချက်အလက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsinfo" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश जानकारी" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtinformatie" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsdetaljer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chikalata chabwino" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਜਾਣਕਾਰੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacje o wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام معلومات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informação da mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informações da mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Despre mesaj" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация о сообщении" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije o poruci" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ පිළිබඳ තොරතුරු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informácie o správe" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije o sporočilu" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Info Mesazhi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Порука Прочитај више" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije o poruci" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelande info" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taarifa ya Ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி தகவல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశం సమాచారం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti Bilgisi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інформація про повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی معلومات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar haqida ma'lumot" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông tin Tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulwazi ngomyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息详情" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息資訊" + } + } + } + }, + "messageMarkRead" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk gelees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعتبرها مقروءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxundu olaraq işarələ" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark read" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пазначыць як прачытанае" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочетено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়া হিসেবে চিহ্নিত করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar com a llegit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označit jako přečtené" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcio wedi'i ddarllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marker som læst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Als gelesen markieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σήμανση ως αναγνωσμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark read" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marki legita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como leído" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como leído" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Märgi loetuks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurriak markatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "علامت خوانده شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merkitse luetuksi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markahan bilang nabasa na" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marquer comme lu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como lida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alamar Karantawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סמן כנקרא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढ़ा हुआ चिह्नित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kao pročitano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelölés olvasottként" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նշել որպես ընթերցված" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandai dibaca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segna come letto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "既読にする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონიშვნა, როგორც წაკითხული" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សម្គាល់ថាបានអាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದಿದ ಎಂದು ಗುರುತು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽음으로 표시" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark ئیبیننیشت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaka somesa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žymėti kaip skaitytą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atzīmēt kā izlasītu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Означи како прочитано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншсан тэмдэглэгээ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandakan Dibaca" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ပြီးပြီ ဟု မှတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk som lest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढिएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markeren als gelezen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk lesen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thambitsani werenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੜ੍ਹਿਆ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oznacz jako przeczytane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوستل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como lida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como lida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marchează ca citit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пометить как прочитанное" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi pročitano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මග කියනවා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označiť ako prečítané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kot prebrano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vëri shenjë si të lexuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Означи прочитаним" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kao pročitano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markera som läst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soma nakili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசிப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదివినట్టు గుర్తుపెట్టు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ทำเครื่องหมายว่าอ่านแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okundu işaretle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позначити як прочитане" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھا ہوا مارک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'qilgan deb belgilash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đánh dấu đã đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marka ukufundwayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "标记为已读" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "標示已讀" + } + } + } + }, + "messageMarkUnread" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk ongelees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجعله/ها غير مقروءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxunmadı olaraq işarələ" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark unread" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пазначыць непрачытаным" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "непрочетено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অপঠিত হিসেবে চিহ্নিত করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar com a no llegit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označit jako nepřečtené" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcio heb ei ddarllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marker som ulæst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Als ungelesen markieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σήμανση ως μη αναγνωσμένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark unread" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marki legiton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como no leído" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como no leído" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Märgi lugemata" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurri gabeak markatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "علامت خوانده نشده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merkitse lukemattomaksi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markahan bilang hindi pa nababasa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marquer comme non lu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como non lida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alamar Ba a Karanta ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סמן כלא נקרא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपठित चिह्नित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kao nepročitano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelölés olvasatlanul" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նշել որպես չընթերցված" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandai belum dibaca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segna come non letto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "未読にする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონიშვნა, როგორც წაუკითხავი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សម្គាល់ថាមិនទាន់អាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದಿಸದ ಎಂದು ಗುರುತು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽지 않음으로 표시" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark ئیبیننیشریت مەدەریت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaka somesa oba tosomako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žymėti kaip neskaitytą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atzīmēt kā nelasītu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Означи како непрочитано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншаагүй тэмдэглэгээ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandakan Belum Dibaca" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မဖတ်ရသေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk som ulest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नपढिएको चिन्ह लगाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markeren als ongelezen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Merk ulest" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pempha ÿakuwéléka ÿakwéŵala" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਪੜ੍ਹਿਆ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oznacz jako nieprzeczytane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نا لوستل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como não lida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcar como não lida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marchează ca necitit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пометить как непрочитанное" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kao nepročitano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මග නොවූ බවට යොදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označiť ako neprečítané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kot neprebrano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vëri shenjë si të palexuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Означи непрочитаним" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Označi kao nepročitano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markera som oläst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alamisha haijasomwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசிக்கப்படமாட்டாதது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదవకుండా గుర్తుపెట్టు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ทำเครื่องหมายว่ายังไม่ได้อ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunmadı Olarak İşaretle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позначити як непрочитане" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ان پڑھ مارک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'qilmagan deb belgilash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đánh dấu chưa đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marka Okungafundwanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "标记为未读" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "標示為未讀" + } + } + } + }, + "messageNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuwe boodskap" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuwe boodskappe" + } + } + } + } + } + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل جديدة" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل جديدة" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسالة جديدة" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل جديدة" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل جديدة" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسائل جديدة" + } + } + } + } + } + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni mesaj" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni mesajlar" + } + } + } + } + } + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پد ءِ پیام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پد ءِ پیامانی" + } + } + } + } + } + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новыя паведамленні" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новыя паведамленні" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новае паведамленне" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новыя паведамленні" + } + } + } + } + } + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ново съобщение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нови съобщения" + } + } + } + } + } + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন মেসেজ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন মেসেজ" + } + } + } + } + } + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nou missatge" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous missatges" + } + } + } + } + } + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové zprávy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové zprávy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nová zpráva" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové zprávy" + } + } + } + } + } + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Newydd" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Newydd" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges Newydd" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Newydd" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Newydd" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon Newydd" + } + } + } + } + } + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny besked" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nye beskeder" + } + } + } + } + } + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neue Nachricht" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neue Nachrichten" + } + } + } + } + } + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Νέο Μήνυμα" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Νέα Μηνύματα" + } + } + } + } + } + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Messages" + } + } + } + } + } + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova Mesaĝo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novajn mesaĝojn" + } + } + } + } + } + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuevo Mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuevos Mensajes" + } + } + } + } + } + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuevo mensaje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuevos mensajes" + } + } + } + } + } + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uus sõnum" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uued sõnumid" + } + } + } + } + } + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu Berria" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu Berriak" + } + } + } + } + } + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام جدید" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام های جدید" + } + } + } + } + } + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusi viesti" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uudet viestit" + } + } + } + } + } + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagong Mensahe" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagong mga Mensahe" + } + } + } + } + } + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nouveau message" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nouveaux messages" + } + } + } + } + } + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabon Saƙo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabbin Saƙonni" + } + } + } + } + } + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות חדשות" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה חדשה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות חדשות" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות חדשות" + } + } + } + } + } + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "नया संदेश" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "नए संदेश" + } + } + } + } + } + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova poruka" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + } + } + } + } + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új üzenet" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új üzenetek" + } + } + } + } + } + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նոր հաղորդագրություն" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նոր հաղորդագրություններ" + } + } + } + } + } + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan Baru" + } + } + } + } + } + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuovo Messaggio" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuovi Messaggi" + } + } + } + } + } + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しいメッセージ" + } + } + } + } + } + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ახალი შეტყობინება" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ახალი შეტყობინებები" + } + } + } + } + } + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារថ្មី" + } + } + } + } + } + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಸಂದೇಶ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೊಸ ಸಂದೇಶಗಳು" + } + } + } + } + } + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "새로운 메시지" + } + } + } + } + } + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەی نوێ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامە نوێکان" + } + } + } + } + } + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka obupya" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka obupya" + } + } + } + } + } + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naujos žinutės" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naujos žinutės" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nauja žinutė" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naujos žinutės" + } + } + } + } + } + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова порака" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нови пораки" + } + } + } + } + } + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ зурвас" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ зурвасууд" + } + } + } + } + } + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej-Mesej Baru" + } + } + } + } + } + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ် အသစ်များ" + } + } + } + } + } + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny melding" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nye meldinger" + } + } + } + } + } + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuw bericht" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuwe berichten" + } + } + } + } + } + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ny melding" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nye meldingar" + } + } + } + } + } + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mushuk chaski" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mushuk mauthenga" + } + } + } + } + } + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੀਂ ਸੁਨੇਹਾ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੇਂ ਸੁਨੇਹੇ" + } + } + } + } + } + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nowe wiadomości" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nowe wiadomości" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nowa wiadomość" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nowe wiadomości" + } + } + } + } + } + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوې پیغام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوې پیغامونه" + } + } + } + } + } + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novas mensagens" + } + } + } + } + } + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova Mensagem" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novas Mensagens" + } + } + } + } + } + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje noi" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj nou" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje noi" + } + } + } + } + } + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новые сообщения" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новые сообщения" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новое сообщение" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новые сообщения" + } + } + } + } + } + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova poruka" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + } + } + } + } + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව පණිවිඩය" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව පණිවිඩ" + } + } + } + } + } + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové správy" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové správy" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nová správa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nové správy" + } + } + } + } + } + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova sporočila" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novo sporočilo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova sporočila" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Novi sporočili" + } + } + } + } + } + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazh i Ri" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhi të Rinj" + } + } + } + } + } + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нове поруке" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова порука" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нове поруке" + } + } + } + } + } + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova poruka" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nove poruke" + } + } + } + } + } + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nytt meddelande" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nya meddelanden" + } + } + } + } + } + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe Mpya" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe Mpya" + } + } + } + } + } + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய செய்தி" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதிய செய்திகள்" + } + } + } + } + } + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త సందేశం" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త సందేశాలు" + } + } + } + } + } + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความใหม่" + } + } + } + } + } + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni Mesaj" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni Mesajlar" + } + } + } + } + } + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нові повідомлення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нові повідомлення" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нове повідомлення" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нові повідомлення" + } + } + } + } + } + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "نیا پیغام" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "نئے پیغامات" + } + } + } + } + } + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi xabar" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi xabarlar" + } + } + } + } + } + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tin nhắn mới" + } + } + } + } + } + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo Omtsha" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo Emitsha" + } + } + } + } + } + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "新消息" + } + } + } + } + } + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "%#@arg1@" + }, + "substitutions" : { + "arg1" : { + "argNum" : 1, + "formatSpecifier" : "lld", + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "新訊息" + } + } + } + } + } + } + } + } + }, + "messageNewDescriptionDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begin 'n nuwe gesprek deur jou vriend se Rekening ID of ONS in te voer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابدأ محادثة جديدة عن طريق إدخال معرف حساب صديقك أو ONS." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir danışıq başlatmaq üçün dostunuzun Hesab Kimliyini və ya ONS-sini daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوکو گپی ڑاندھ کـــــــن وی نبری اے نیات یا اونس کی عکسی بنن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пачніце новую гутарку, увёўшы ID акаўнта, ONS вашага сябра." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започнете нов разговор, като въведете ID на акаунта или ONS на приятеля си." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বন্ধুর অ্যাকাউন্ট আইডি বা ONS প্রবেশ করিয়ে একটি নতুন কথোপকথন শুরু করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comença una conversa nova introduint la ID del compte o el ONS del teu amic." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahajte novou konverzaci zadáním ID účtu vašeho přítele nebo ONS." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dechrau sgwrs newydd trwy nodi ID Cyfrif neu ONS eich ffrind." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start en ny samtale ved at indtaste din vens Account ID eller ONS." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beginne eine neue Unterhaltung durch Eingabe der Account-ID oder des ONS deines Kontakts." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ξεκινήστε μια νέα συνομιλία εισάγοντας το ID λογαριασμού του φίλου σας ή το ONS." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID or ONS." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komencu novan konversacion enigi la Konton ID aŭ ONS de via amiko." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comenzar una nueva conversación ingresando el Account ID o ONS de tu amigo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comienza una nueva conversación ingresando el ID de la cuenta o el ONS de tu amigo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alustage uut vestlust, sisestades oma sõbra Account ID või ONS." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasi elkarrizketa berri bat zure lagunaren Kontu IDa edo ONS sartuz." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با ورود شناسه حساب کاربری دوست خود یا ONS یک گفتگوی جدید شروع کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aloita uusi keskustelu syöttämällä ystäväsi Tilin ID tai ONS." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magsimula ng bagong pag-uusap sa pamamagitan ng pagpasok ng Account ID o ONS ng iyong kaibigan." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Démarrez une nouvelle conversation en entrant l'ID de compte ou l'ONS de votre ami." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inicia unha nova conversa introducindo o Account ID do teu amigo, ou o ONS." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fara sabon tattaunawa ta hanyar shigar da ID na Account na abokin ka ko ONS." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התחל שיחה חדשה על ידי הזנת מזהה החשבון או ה־ONS של חברך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने मित्र के खाता आईडी या ओएनएस दर्ज करके नई वार्तालाप शुरू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započnite novi razgovor unosom ID-a računa vašeg prijatelja ili ONS-a." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új beszélgetés indítása az ismerősöd Felhasználó ID-jának megadásával." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկսեք նոր զրույց՝ մուտքագրելով ձեր ընկերոջ Account ID կամ ONS-ը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulai percakapan baru dengan memasukkan ID Akun teman Anda atau ONS." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inizia una nuova chat inserendo l'ID utente oppure l'ONS del tuo amico." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントIDまたはONSを入力して新しい会話を開始します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააბინავეთ ახალი საუბარი თქვენს მეგობრის Account ID- ის ან ONS შეყვანით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាប់ផ្តើមការសន្ទនាថ្មីតាមរយៈបញ្ចូល Account ID របស់មិត្តភក្តិរបស់អ្នកឬ ONS។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಸ್ನೇಹಿತನ Account ID ಅಥವಾ ONS ನ್ನು ನಮೂದಿಸುವ ಮೂಲಕ ಹೊಸ ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구의 Account ID 또는 ONS를 입력하여 새로운 대화를 시작하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتوگۆیەکی نوێ دەستپێبکە بە ناردنی ناسنامەی هەژمارەکەی هاوڕێکەت یان ONS." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika okusengereka empalana nga tonnginayo Account ID ey'omukwano gwo oba ONS." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradėkite naują pokalbį įvesdami savo draugo Account ID arba ONS." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sāc jaunu sarunu, ievadot drauga Konta ID vai ONS." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни нова конверзација со внесување на Account ID на твојот пријател или ONS." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзынхаа Бүртгэлийн ID эсвэл ONS-ийг оруулж, шинэ яриа эхлүүлээрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulakan perbualan baru dengan memasukkan ID Akaun atau ONS rakan anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်မိတ်ဆွေ၏ အကောင့် ID သို့မဟုတ် ONS ထည့်သွင်းခြင်းဖြင့် စစ်ကားပြောရန် စတင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start en ny samtale ved å skrive inn din venns Konto ID eller ONS." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंका साथीको अकाउन्ट ID वा ONS प्रविष्ट गर्दै नयाँ कुराकानी सुरु गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start een nieuw gesprek door het invoeren van de Account-ID van uw vriend of ONS." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start ein ny samtale ved å skrive inn kontonummeret eller ONS-en til vennen din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID or ONS." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣੇ ਦੋਸਤ ਦੇ ਖਾਤਾ ID ਜਾਂ ONS ਦੀ ਦਾਖਿਲ ਕਰਕੇ ਨਵੀ ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozpocznij nową rozmowę, wprowadzając identyfikator konta lub ONS znajomego." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له خپل ملګري سره خبرې اترې پیل کړئ د هغه د حساب ID یا ONS دننه کولو په واسطه." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comece uma nova conversa digitando o ID da conta ou ONS do seu amigo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inicie uma nova conversa inserindo o ID da Conta ou ONS do seu amigo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Începe o conversație nouă introducând ID-ul de cont sau ONS al prietenului tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Начните новую беседу, введя ID аккаунта вашего друга или ONS." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni novi razgovor unosom ID-a računa ili ONS prijatelja." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මිතුරන්ගේ Account ID හෝ ONS ඇතුළත් කර නව සංවාදයක් ආරම්භ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začnite novú konverzáciu zadaním niekoho ID konta alebo ONS." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začnite nov pogovor z vnosom ID-ja računa ali ONS vašega prijatelja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filloni një bisedë të re duke futur ID e llogarisë së shokut tuaj ose ONS." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни нови разговор уношењем ID-а налога или ONS-а свог пријатеља." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započnite novi razgovor unosom Account ID vašeg prijatelja ili ONS." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starta en ny konversation genom att ange din väns Account ID eller ONS." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anza mazungumzo mapya kwa kuingiza Kitambulisho cha Akaunti ya rafiki yako au ONS." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் நண்பரின் கணக்கு ஐடியை அல்லது ONS ஐ பதிவு செய்து புதிய உரையாடலைத் தொடங்குக." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ స్నేహితుడి అక్కోవండ్ ID లేదా ONS ఇవ్వడం ద్వారా కంపెనీ పరిక్షణను ప్రారంభించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เริ่มการสนทนาใหม่โดยป้อนรหัสบัญชีหรือ ONS ของเพื่อนของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir sohbet başlatmak için arkadaşınızın Hesap Kimliğini veya ONS'yi girin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розпочніть нову розмову, ввівши Account ID або ONS вашого друга." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے دوست کے اکاؤنٹ آئی ڈی یا ONS درج کرکے نئی گفتگو شروع کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do'stingizning hisob ID yoki ONS ni kiriting va yangi suhbatni boshlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bắt đầu một cuộc trò chuyện mới bằng cách nhập Mã Tài Khoản hoặc ONS của bạn bè bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID or ONS." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通过输入朋友的账户ID或ONS来开始新的对话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通過輸入你朋友的帳號 ID 或 ONS 開始一個新的對話。" + } + } + } + }, + "messageNewDescriptionMobile" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Begin 'n nuwe gesprek deur jou vriend se Rekening ID, ONS of QR-kode in te voer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابدأ محادثة جديدة عن طريق إدخال معرف حساب صديقك، ONS أو مسح رمزه QR." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir danışıq başlatmaq üçün dostunuzun Hesab Kimliyini, ONS-sini daxil edin və ya onun QR kodunu skan edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوکو گپی ڑاندھ کـــــــن وی نبری اے نیات یا اونس چکانی کوڈا بنن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пачніце новую гутарку, увёўшы ID акаўнта, ONS вашага сябра ці адсканаваўшы яго QR-код." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започнете нов разговор, като въведете ID на акаунта, ONS на приятеля си или сканирате неговия QR код." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বন্ধুর অ্যাকাউন্ট আইডি, ONS বা তাদের QR কোড স্ক্যান করে একটি নতুন কথোপকথন শুরু করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comença una conversa nova introduint la ID del compte, el ONS o escanejant el seu codi QR." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahajte novou konverzaci zadáním ID účtu vašeho přítele, ONS nebo naskenováním jejich QR kódu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dechrau sgwrs newydd trwy nodi ID eich ffrind, ONS neu sganio eu cod QR." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start en ny samtale ved at indtaste din vens Account ID, ONS eller ved at scanne deres QR-kode." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beginne eine neue Unterhaltung durch Eingabe der Account-ID, des ONS oder Scannen des QR-Codes deines Kontakts." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ξεκινήστε μια νέα συνομιλία εισάγοντας το ID λογαριασμού του φίλου σας, το ONS ή σκανάροντας τον κώδικα QR τους." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komencu novan konversacion enigi la Konton ID, ONS aŭ skanado de ilia QR-kodo de via amiko." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comenzar una nueva conversación ingresando el Account ID, ONS o escaneando el código QR de tu amigo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comienza una nueva conversación ingresando el ID de la cuenta, ONS o escaneando su código QR." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alustage uut vestlust, sisestades oma sõbra Account ID, ONS või skannides nende QR-koodi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasi elkarrizketa berri bat zure lagunaren Kontu IDa, ONS edo haien QR kodea eskaneatuz." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با ورود شناسه حساب کاربری، ONS یا اسکن کد QR دوست خود یک گفتگوی جدید شروع کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aloita uusi keskustelu syöttämällä ystäväsi Tilin ID, ONS tai skannaamalla heidän QR-koodinsa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magsimula ng bagong pag-uusap sa pamamagitan ng pagpasok ng Account ID, ONS o pag-scan ng QR code ng iyong kaibigan." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Démarrez une nouvelle conversation en entrant l'ID de compte, l'ONS de votre ami ou en scannant leur code QR." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inicia unha nova conversa introducindo o Account ID, ONS ou escaneando o código QR do teu amigo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fara sabon tattaunawa ta hanyar shigar da ID na Account na abokin ka, ONS ko kuma duba QR code dinka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התחל שיחה חדשה על ידי הזנת מזהה החשבון, ה־ONS או סריקת קוד ה־QR של חברך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने मित्र के खाता आईडी, ओएनएस या उनके QR कोड को स्कैन करके नई वार्तालाप शुरू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započnite novi razgovor unosom ID-a računa vašeg prijatelja, ONS-a ili skeniranjem njihovog QR koda." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új beszélgetés indítása úgy, hogy beírja ismerősöd Felhasználó ID-ját, ONS-t vagy beolvassa a QR kódját." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկսեք նոր զրույց՝ մուտքագրելով ձեր ընկերոջ Account ID, ONS կամ սկանավորելով նրանց QR կոդը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulai percakapan baru dengan memasukkan ID Akun teman Anda, ONS atau memindai kode QR mereka." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inizia una nuova chat inserendo l'ID utente, l'ONS del tuo amico o scansionando il loro codice QR." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントID、ONSまたはQRコードをスキャンして新しい会話を開始します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააწყეთ ახალი საუბარი თქვენს მეგობრის Account ID- ის, ONS ან სკანირების მისი QR კოდის შეყვანით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាប់ផ្តើមការសន្ទនាថ្មីដោយបញ្ចូល Account ID របស់មិត្តភក្តិរបស់អ្នក, ONS ឬស្កេនកូដ QR របស់ពួកគេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಸ್ನೇಹಿತರ ಅಕೌಂಟ್ ಐಡಿ, ONS ಅಥವಾ ಅವರ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡುವ ಮೂಲಕ ಹೊಸ ಸಂಭಾಷಣೆಯನ್ನು ಪ್ರಾರಂಭಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구의 Account ID, ONS를 입력하거나 QR 코드를 스캔하여 새 대화를 시작하십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتوگۆیەکی نوێ دەستپێبکە بە ناردنی ناسنامەی هەژمارەکەی هاوڕێکەت، ONS یان سکانکردنی ڕاستەقینەی QRی ئەوان." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tandika okusensaggeka empalana nga tonnginayo Account ID ey'omukwano gwo, ONS oba okusooka ku QR code ye." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pradėkite naują pokalbį įvesdami savo draugo Account ID, ONS arba nuskenuodami jų QR kodą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sāc jaunu sarunu, ievadot drauga Konta ID, ONS vai skenējot viņu QR kodu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни нова конверзација со внесување на Account ID на твојот пријател, ONS или скенирање на нивниот QR код." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзынхаа Бүртгэлийн ID, ONS эсвэл QR кодыг нь сканнердаж, шинэ яриа эхлүүлээрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulakan perbualan baru dengan memasukkan ID Akaun, ONS atau mengimbas kod QR mereka." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်မိတ်ဆွေ၏ အကောင့် ID၊ ONS သို့မဟုတ် ၎င်းတို့၏ QR Code ကို SCAN ဖတ်ခြင်းဖြင့် စစ်ကားပြောရန် စတင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start en ny samtale ved å skrive inn din venns Konto ID, ONS eller ved å skanne deres QR-kode." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंका साथीको अकाउन्ट ID, ONS प्रविष्ट गरेर वा तिनीहरूको QR कोड स्क्यान गरेर नयाँ कुराकानी सुरु गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start een nieuw gesprek door de Account-ID van uw vriend, ONS in te voeren of door zijn/haar/hen QR-code te scannen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start ein ny samtale ved å skrive inn kontonummeret, ONS-en eller skanne QR-koden til vennen din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਵੀਂ ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰੋ ਆਪਣੇ ਦੋਸਤ ਦੇ ਖਾਤੇ ID, ONS ਜਾਂ ਉਹਨਾਂ ਦੇ QR ਕੋਡ ਨੂੰ ਸਕੈਨ ਕਰ ਕੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rozpocznij nową rozmowę, wprowadzając identyfikator konta lub ONS znajomego lub skanując jego kod QR." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خپل ملګري د حساب ID، ONS یا د هغوی QR کوډونه سکین کولو سره نوې خبرو اترو پیل کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comece uma nova conversa digitando o ID da conta do seu amigo, ONS ou escaneando o código QR deles." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inicie uma nova conversa inserindo o ID da Conta, ONS do seu amigo ou verificando o código QR." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Începe o conversație nouă introducând ID-ul de cont sau ONS al prietenului tău, sau scanează codul său QR." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Начните новую беседу, введя ID аккаунта вашего друга, ONS или отсканировав их QR-код." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokreni novi razgovor unosom ID-a računa ili ONS prijatelja, ili skeniranjem QR koda." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මිතුරන්ගේ Account ID, ONS හෝ ඔවුන්ගේ QR කේතය ස්කෑන් කර නව සංවාදයක් ආරම්භ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začnite novú konverzáciu zadaním niekoho ID konta, ONS alebo naskenovaním jeho QR kódu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Začnite nov pogovor z vnosom ID-ja računa, ONS ali skeniranjem njihove QR kode." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filloni një bisedë të re duke futur ID e llogarisë së shokut tuaj, ONS ose duke skanuar kodin e tyre QR." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Започни нови разговор уношењем ID-а налога, ONS-а или скенирањем QR кода свог пријатеља." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Započnite novi razgovor unosom Account ID vašeg prijatelja, ONS ili skeniranjem njihovog QR koda." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starta en ny konversation genom att ange din väns Account ID, ONS eller skanna deras QR-kod." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anza mazungumzo mapya kwa kuingiza Kitambulisho cha Akaunti ya rafiki yako, ONS au kuchanganua msimbo wao wa QR." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் நண்பரின் கணக்கு ஐடி, ONS அல்லது அவர்களுடைய QR குறியீட்டை பதிவு செய்து புதிய உரையாடலை தொடங்குக." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ స్నేహితుడి అక్కోవండ్ ID, ONS లేదా వారి QR కోడ్‌ని స్కాన్ చేయడం ద్వారా నూతన సంభాషణ ప్రారంభించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เริ่มการสนทนาใหม่โดยป้อนรหัสบัญชี, ONS หรือสแกน QR code ของเพื่อนของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir sohbet başlatmak için arkadaşınızın Hesap Kimliğini, ONS'yi girin veya onların QR kodunu tarayın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розпочніть нову розмову, ввівши Account ID, ONS вашого друга або скануючи їх QR-код." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے دوست کے اکاؤنٹ آئی ڈی، ONS درج کرکے یا ان کا QR کوڈ اسکین کرکے نئی گفتگو شروع کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do'stingizning hisob ID, ONS ni kiriting yoki QR kodini skanerla va yangi suhbatni boshlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bắt đầu một cuộc trò chuyện mới bằng cách nhập Mã Tài Khoản, ONS hoặc quét mã QR của bạn bè bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通过输入朋友的账户ID、ONS或扫描他们的二维码来开始新的对话。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通過輸入你朋友的帳號 ID、ONS 或掃描他們的 QR 碼開始一個新的對話。" + } + } + } + }, + "messageNewYouveGot" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het 'n nuwe boodskap." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het %lld nuwe boodskappe." + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir mesajınız var." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld yeni mesajınız var." + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "تئیهءَ یک نویان پیغام اِت." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "تئیهءَ %lld جدید پیغامانی اِت." + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых паведамленні." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых паведамленняў." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы атрымалі новае паведамленне." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых паведамленняў." + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате ново съобщение." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате %lld нови съобщения." + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've got a new message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've got %lld new messages." + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tens un missatge nou." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tens %lld missatges nous." + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nové zprávy." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nových zpráv." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte novou zprávu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nových zpráv." + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych %lld negeseuon newydd." + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har en ny besked." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har %lld nye beskeder." + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast eine neue Nachricht." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast %lld neue Nachrichten." + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έχετε νέο μήνυμα." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έχετε %lld νέα μηνύματα." + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've got a new message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've got %lld new messages." + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ricevis novan mesaĝon." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ricevis %lld novajn mesaĝojn." + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes un mensaje nuevo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes %lld mensajes nuevos." + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes un mensaje nuevo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes %lld mensajes nuevos." + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sul on uus sõnum." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sul on %lld uut sõnumit." + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu berria duzu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld mezu berri dituzu." + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما یک پیام جدید دریافت کردید." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما %lld پیام جدید دارید." + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla on uusi viesti." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla on %lld uutta viestiä." + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayroon kang bagong mensahe." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayroon kang %lld (na) bagong mensahe." + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez un nouveau message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez %lld nouveaux messages." + } + } + } + } + }, + "gl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes unha nova mensaxe." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes %lld novas mensaxes." + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka samu sabuwar saƙo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka samu %lld sabbin saƙonni." + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לך %lld הודעות חדשות." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לך הודעה חדשה." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לך %lld הודעות חדשות." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לך %lld הודעות חדשות." + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको एक नया संदेश मिला है।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको %lld नए संदेश मिले हैं।" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih poruka!" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novu poruku!" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih poruka!" + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új üzeneted érkezett." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld új üzeneted érkezett." + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ունեք նոր հաղորդագրություն:" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ունեք %lld նոր հաղորդագրություններ:" + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda menerima pesan baru %lld." + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai ricevuto un nuovo messaggio." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai ricevuto %lld nuovi messaggi." + } + } + } + } + }, + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 件の新規メッセージがあります" + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ გაქვთ ახალი შეტყობინება." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ გაქვთ %lld ახალი შეტყობინება." + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមានសារថ្មី %lld សារ។" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮಗೆ ಹೊಸ ಸಂದೇಶವಿದೆ." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮಗೆ %lld ಹೊಸ ಸಂದೇಶಗಳು." + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld 님에게 새 메시지가 도착했습니다." + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامێکی نوێت هەیە." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld پەیامی نوێت هەیە." + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ofunye obubaka obupya." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ofunye %lld obubaka obupya." + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gavote %lld naujas žinutes." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gavote %lld naujas žinutes." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gavote naują žinutę." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gavote %lld naujas žinutes." + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums ir %lld jaunas ziņas." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums ir %lld jaunas ziņas." + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums ir %lld jaunas ziņas." + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате нова порака." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате %lld нови пораки." + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд шинэ мессеж ирлээ." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд %lld шинэ мессеж ирлээ." + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda telah menerima %lld mesej baru." + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင် %lld ခု သစ်သော မက်ဆေ့ချ်များ ရရှိလျှက်ရှိသည်။" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har fått en ny melding." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har %lld nye meldinger." + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको नयाँ सन्देश आएको छ।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई %lld नयाँ सन्देशहरू आएकाछन्।" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je hebt een nieuw bericht." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je hebt %lld nieuwe berichten." + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har fått ei ny melding." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har %lld nye meldingar." + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwatenga uthenga watsopano." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muli ndi uthenga watsopano %lld." + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਇੱਕ ਨਵਾਂ ਸੁਨੇਹਾ ਮਿਲਿਆ ਹੈ।" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ %lld ਨਵੇਂ ਸੁਨੇਹੇ ਮਿਲੇ ਹਨ।" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masz %lld nowe wiadomości." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masz %lld nowych wiadomości." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masz nową wiadomość." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masz %lld nowych wiadomości." + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو یو نوې پیغام ترلاسه کړی." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو %lld نوې پیغامونه ترلاسه کړي." + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você recebeu uma nova mensagem." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem %lld novas mensagens." + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem uma nova mensagem." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem %lld novas mensagens." + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai %lld mesaje noi." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai primit un mesaj nou." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai %lld mesaje noi." + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых сообщения." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых сообщений." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас новое сообщение." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас %lld новых сообщений." + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld nove poruke." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih poruka." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novu poruku." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih poruka." + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට නව පණිවිඩයක් ලැබී ඇත." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට නව පණිවිඩ %lld ක් ඇත." + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nové správy." + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nových správ." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte novú správu." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte %lld nových správ." + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld nova sporočila." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novo sporočilo." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih sporočil." + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novi sporočili." + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ke një mesazh të ri." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ke %lld mesazhe të reja." + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате %lld нове поруке." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате нову поруку." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате %lld нових порука." + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld nove poruke." + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novu poruku." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate %lld novih poruka." + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ett nytt meddelande." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har %lld nya meddelanden." + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umepewa ujumbe mpya." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umepewa jumbe mpya %lld." + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களுக்கு ஒரு புதிய செய்தி வந்துள்ளது." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களுக்கு %lld புதிய செய்திகள் வந்துள்ளன." + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've got a new message." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీకు %lld కొత్త సందేశాలు అందాయి." + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณมี %lld ข้อความใหม่" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir mesajın var." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld Adet Yeni Mesajınız Var." + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримали %lld нових повідомлення" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримали %lld нових повідомлень" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримали нове повідомлення." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримали %lld нових повідомлень" + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو ایک نیا پیغام موصول ہوا ہے۔" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو %lld نئے پیغامات موصول ہوئے ہیں۔" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizga yangi xabar keldi." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizga %lld yangi xabar keldi." + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có %lld tin nhắn mới." + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unomyalezo omtsha." + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unomyalezo omtsha %lld." + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "您有%lld条新消息。" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "你有 %lld 則新訊息。" + } + } + } + } + } + } + }, + "messageReplyingTo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antwoord op" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرد على" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cavab verilir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "جوابی لکھنت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адказваючы на" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отговор до" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "উত্তর দিচ্ছেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responent a" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpovědět na" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn ateb i" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svar til" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antwort auf" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απάντηση σε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replying to" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondi al" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondiendo a" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondiendo a" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastamine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erantzuten ari zara" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسخ به" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastataan viestiin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinasagot si" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Réponse à" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondendo a" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuna amsawa zuwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מענה אל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "को जवाब दे रहे हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovor na" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válasz erre" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ի պատասխան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membalas ke" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rispondendo a" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "返信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Პასუხობთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឆ្លើយតបទៅកាន់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗೆ ಉತ್ತರಿಸುತ್ತಿದೆ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "답장 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "وەلامدەدات بۆ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuddamu eri" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsakymas į" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbildot uz" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одговарате на" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хариулж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membalas kepada" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်လည်ဖြေကြားမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svarer på" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "को जवाफ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antwoord naar" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svarer på" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyankha kwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉੱਤਰ ਦੇ ਰਿਹਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpowiadanie do" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "څخه ځواب ورکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondendo para" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A responder a" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Răspunde la" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ответить на" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovaranje na" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිළිතුරු දෙමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpovedať na" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovarja na" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po i përgjigjet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одговараш на" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovara na" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svarar på" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kujibu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதில்:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్పందిస్తున్నారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังตอบกลับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adlı kişiye yanıt olarak" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відповідь на" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جواب دے رہا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bunga javob" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trả lời đến" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uphendula ku" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "回复" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回覆至" + } + } + } + }, + "messageRequestGroupInvite" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het jou uitgenooi om by {group_name} aan te sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دعاك للانضمام إلى {group_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizi {group_name} qrupuna qoşulmağa dəvət etdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} šumār ke group {group_name} bejoined." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} запрашае вас далучыцца да {group_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ви покани да се присъедините към {group_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} আপনাকে {group_name} যোগ দেওয়ার জন্য আমন্ত্রণ জানিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} t'ha convidat a unir-te a {group_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vás pozval(a) do skupiny {group_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y wedi eich gwahodd i ymuno â {group_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} inviterede dig til at deltage i {group_name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat Sie eingeladen, der Gruppe {group_name} beizutreten." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} σας προσκάλεσε να συμμετάσχετε στην ομάδα {group_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} invited you to join {group_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} invitis vin aniĝi al {group_name} ." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te invitó a unirte a {group_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te ha invitado a unirte a {group_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kutsus teid liituma grupiga {group_name}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} gonbidatu zaitu {group_name} taldera joateak." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} شما را برای پیوستن به {group_name} دعوت کرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kutsui sinut ryhmään {group_name}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay inimbitahan kang sumali sa {group_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vous a invité à rejoindre {group_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} convidoute a unirte ao grupo {group_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya gayyace ku ku shiga {group_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ הזמין/ה אותך להצטרף ל{group_name}‏." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने आपको {group_name} से जुड़ने के लिए आमंत्रित किया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je pozvao/la da se pridružite grupi {group_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} meghívott a {group_name} csoportba." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը ձեզ հրավիրել է միանալու {group_name}֊ին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mengundang Anda untuk bergabung dengan {group_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ti ha invitato a unirti a {group_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} があなたを {group_name} に招待しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს მოპატიჟა {group_name}-ში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍អញ្ជើញអ្នកឱ្យចូល {group_name}‍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ನಿಮ್ಮನ್ನು {group_name} ಗೆ ಸೇರ್ಪಡೆಗೆ ಆಹ್ವಾನಿಸಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님{group_name}에 참여하도록 초대했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} داوات کردەوە بۆ پەیوەندیکردن بە {group_name}." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yakuteyereza okuyingira mu {group_name}." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} invited you to join {group_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pakvietė jus prisijungti prie {group_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} aicināja jūs pievienoties {group_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ве покани да се придружите на {group_name} ." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} таныг {group_name} бүлэгт нэгдэхийг урив." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menjemput anda untuk menyertai {group_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် {group_name} ကို ပူးပေါင်းလာဖို့ ဖိတ်ကြားလိုက်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} inviterte deg til å bli med i {group_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले तपाईंलाई {group_name} मा सामेल हुन आग्रह गरेका छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft je uitgenodigd om lid te worden van {group_name}." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} inviterte deg til å bli med i {group_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wakukuitanani kuti mulowe {group_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਤੁਹਾਨੂੰ {group_name}ਗਰੁੱਪ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਸੱਦਾ ਦਿੱਤਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} zaprasza Cię do grupy{group_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} تاسو ته بلنه ورکړه چې د {group_name} سره یوځای شئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} convidou você para se juntar a {group_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} convidou-o a juntar-se a {group_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te-a invitat să te alături grupului {group_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} пригласил(а) вас присоединиться к {group_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je pozvao da se pridružite {group_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ඔබට සමූහයට{group_name} එකතු වීමට ආරාධනා කරන ලදී." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vás pozval/a, aby ste sa pridali do {group_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je povabil_a v skupino {group_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ju ftoi të bashkoheni me {group_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} вас је позвао да се придружите {group_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} vas je pozvao/la da se pridružite {group_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} bjöd in dig att gå med i {group_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amekualika ujiunge na {group_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} உங்களை {group_name} குழுவில் சேர அழைத்துள்ளார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} మీకు {group_name} లో చేరడానికి ఆహ్వానించారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} เชิญคุณเข้าร่วม {group_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizi {group_name} grubuna katılmaya davet etti." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} запросив(ла) Вас приєднатися до {group_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے آپ کو {group_name} میں شامل ہونے کی دعوت دی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} sizni {group_name} ga qo'shilishga taklif qildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã mời bạn tham gia {group_name} ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ukumemelela ukuba ujoyine {group_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}邀请您加入{group_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 邀請你加入 {group_name}。" + } + } + } + }, + "messageRequestGroupInviteDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "As jy 'n boodskap aan hierdie groep stuur, sal jy outomaties die groepuitnodiging aanvaar." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال رسالة إلى هذه المجموعة سوف يقبل تلقائيًا دعوة المجموعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu qrupa mesaj göndərdikdə, qrup dəvəti avtomatik qəbul ediləcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے سے یہ اکائونٹ کو منظوم کر دے گا." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пры адпраўцы паведамлення гэтай групе запрашэнне ў групу будзе аўтаматычна прынята." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращането на съобщение до тази група автоматично ще приеме поканата за група." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই গ্রুপে একটি বার্তা পাঠালে গ্রুপ আমন্ত্রণ স্বয়ংক্রিয়ভাবে গ্রহণ করা হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviant un missatge a aquest grup acceptarà automàticament la invitació al grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesláním zprávy do této skupiny automaticky přijmete pozvánku do skupiny." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon neges i'r grŵp hwn yn awtomatig yn derbyn y gwahoddiad grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved at sende en besked til denne gruppe, accepterer du automatisk gruppeinvitationen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Senden einer Nachricht an diese Gruppe bestätigt automatisch die Gruppeneinladung." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η αποστολή μηνύματος σε αυτή την ομάδα θα αποδεχτεί αυτόματα την πρόσκληση της ομάδας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending a message to this group will automatically accept the group invite." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi mesaĝon al ĉi tiu grupo aŭtomate akceptos la grupinvitaĵon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "El envío de un mensaje a este grupo aceptará automáticamente la invitación al grupo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar un mensaje a este grupo aceptará automáticamente la invitación al grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi saatmine sellele grupile aktsepteerib automaatselt grupikutse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talde honi mezu bat bidaltzeak gonbidapena automatikoki onartuko du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال پیام به این گروه به صورت خودکار دعوت گروه را پذیرفته می‌کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin lähetys tähän ryhmään hyväksyy ryhmäkutsun automaattisesti." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang pag-send ng mensahe sa grupong ito ay awtomatikong tatanggapin ang invite ng grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer un message à ce groupe acceptera automatiquement l'invitation." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar unha mensaxe a este grupo aceptará automaticamente o convite do grupo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aiko da saƙo ga wannan rukuni zai ɗauki gayyatar rukuni kai tsaye." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שליחת הודעה לקבוצה זו תגרום לקבלת הזמנת הקבוצה באופן אוטומטי." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस समूह को संदेश भेजना स्वचालित रूप से समूह निमंत्रण को स्वीकार करेगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje poruke ovoj grupi automatski će prihvatiti pozivnicu grupe." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet küldése ebbe a csoportba automatikusan elfogadja a csoportmeghívást." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս խմբին հաղորդագրություն ուղարկելը ինքնաբերաբար կընդունի խմբի հրավերը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengirim pesan ke grup ini akan secara otomatis menerima undangan grup." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviando un messaggio a questo gruppo accetterai automaticamente l'invito." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このグループにメッセージを送ると、グループ招待が自動的に受け入れられます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუგზავნეთ ამ ჯგუფს შეტყობინება, რაც ავტომატურად დაადასტურებს ჯგუფის მოწვევას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការផ្ញើសារទៅក្រុមនេះនឹងទទួលយកការអញ្ជើញក្រុមដោយស្វ័យប្រវត្តិ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಗುಂಪಿಗೆ ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುವ ಮೂಲಕ ಗುಂಪಿನ ಆಹ್ವಾನವನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ಸ್ವೀಕರಿಸಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 그룹에 메시지를 보내면 초대가 자동으로 수락됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامێک ناردن بۆ ئەم گروپە خۆکارانە بانگکردنەکە دەبەسترێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusindikidde ekibinja kino obubaka kijja kukkiriza envitto lwakyo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiant žinutę šiai grupei, automatiškai priimsite grupės kvietimą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtot ziņojumu šai grupai, automātiski tiks pieņemts grupas ielūgums." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испраќањето на порака до оваа група автоматски ќе ја прифати поканата за група." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ бүлгүүд илгээсэн мессеж таныг бүлгийн урилгыг автоматаар хүлээн зөвшөөрөх болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghantar mesej kepada kumpulan ini akan secara automatik menerima jemputan kumpulan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤအဖွဲ့သို့ မက်ဆေ့၀့်ချ်ပို့ခြင်းသည် အဖွဲ့ဖိတ်ကြားမှုကို အလိုအလျောက်လက်ခံပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å sende en melding til denne gruppen medfører det at du automatisk godtar gruppeinnbydelsen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो समूहमा सन्देश पठाउँदा स्वचालित रूपमा समूह निमन्त्रणा स्वीकार हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Door een bericht te versturen naar deze groep accepteert u automatisch de groepsuitnodiging." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Å senda ei melding til denne gruppa vil automatisk akseptera gruppeinvitasjonen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending a message to this group will automatically accept the group invite." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਸਮੂਹ ਨੂੰ ਸੁਨੇਹਾ ਭੇਜਣ 'ਤੇ ਸਵੈ-ਕਾਰਜਕਾਸ਼ੀਕ ਤੌਰ 'ਤੇ ਸਮੂਹ ਦਾ ਨਿਮੰਤ੍ਰਣ ਸਵੀਕਾਰ ਕੀਤਾ ਜਾਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysłanie wiadomości do tej grupy automatycznie zaakceptuje zaproszenie do grupy." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دې ګروپ ته د پیغام لیږل به په اوتومات ډول د ګروپ بلنه ومني." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar uma mensagem para este grupo aceitará automaticamente o convite do grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar uma mensagem para este grupo automaticamente aceitará o convite do grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimiterea unui mesaj către acest grup va accepta automat invitația în grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Если вы отправите сообщение в эту группу, приглашение будет автоматически принято." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje poruke ovoj grupi će automatski prihvatiti grupni poziv." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සමූහයට පණිවිඩයක් යැවීම සමූහ ආරාධනය ස්වයංක්‍රීයව පිළිගනියි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odoslaním správy tejto skupine automaticky prijmete pozvánku do skupiny." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošiljanje sporočila tej skupini bo samodejno sprejelo povabilo v skupino." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgimi i një mesazhi te ky grup do të pranojë automatikisht ftesën e grupit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слање поруке овој групи ће аутоматски прихватити позивницу за групу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanjem poruke ovoj grupi, automatski prihvatate pozivnicu za grupu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Att skicka ett meddelande till den här gruppen godkänner automatiskt gruppinbjudan." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukituma ujumbe kwa kundi hili, mwaliko wa kundi utakubaliwa kiotomatiki." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இக்குழுவிற்கு செய்தி அனுப்புவது குழு அழைப்பை தானாக ஏற்றுக்கொள்வதாக இருக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ గ్రూప్కి సందేశం పంపడం ద్వారా మీ గ్రూప్ ఆహ్వానాన్ని స్వీకరించబడుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งข้อความไปยังกลุ่มนี้จะเป็นการยอมรับคำเชิญเข้ากลุ่มโดยอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu gruba mesaj göndermek otomatik olarak grup davetini kabul edecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилання повідомлення до цієї групи автоматично прийме запрошення до групи." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس گروپ کو پیغام بھیجنا خودبخود گروپ کی دعوت قبول کرے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu guruhga xabar yuborish avtomatik ravishda guruh taklifini qabul qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi một tin nhắn đến nhóm này sẽ tự động chấp nhận lời mời vào nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuthumela umyalezo kweli qela kuya kwamkela isimemo seqela ngokuzenzekelayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "向此群组发送消息将会自动接受群组邀请。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送訊息給這個群組將自動接受邀請群組。" + } + } + } + }, + "messageRequestPending" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou boodskapaansoek is tans hangende." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "طلب رسالتك قيد الانتظار." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hazırda mesaj tələbiniz gözləmədədir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی گپ درخواست مہال بے جاری." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запыт на паведамленне зараз чакае разгляду." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето искане за съобщение е в момента на изчакване." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার মেসেজ অনুরোধ বর্তমানে মুলতুবি রয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La teva sol·licitud de missatge està pendent actualment." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše žádost o komunikaci teď čeká na vyřízení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar hyn o bryd mae eich cais neges wedi'i ddal." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din beskedanmodning afventer i øjeblikket." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deine Nachrichtenanfrage ist derzeit ausstehend." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το αίτημα μηνύματός σας βρίσκεται σε εκκρεμότητα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your message request is currently pending." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via mesaĝa peto estas nuntempe dispoziciita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu solicitud de mensaje está actualmente pendiente." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu solicitud de mensaje está actualmente pendiente." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie sõnumitaotlus on praegu ootel." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure mezua une honetan itxaroten ari da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست پیام شما در حال انتظار است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestipyyntösi odottaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasalukuyang nakabinbin ang iyong kahilingan sa pagmemensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre demande de message est actuellement en attente." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A túa solicitude de mensaxe está pendente." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tambayar sakonku a halin yanzu tana jiran amincewa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בקשתך להודעה ממתינה כעת." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका संदेश अनुरोध वर्तमान में लंबित है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš zahtjev za poruku je trenutno na čekanju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenetkérésed jelenleg függőben van." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հաղորդագրության հարցումն այժմ առկախ է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan pesan Anda saat ini sedang ditunda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua richiesta di messaggio è attualmente in attesa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ・リクエストは現在承認待ちです。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი მესიჯ ითხოვა მოკლე პერიოდია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំណើសុំសាររបស់អ្នក​នឹង​កំពុងរង់ចាំថ្មីៗនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಘೋಷಣೆ ವಿನಂತಿ ಪ್ರಸ್ತುತ ನಿರೀಕ್ಷಿಸುತ್ತಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신의 메시지 요청이 현재 보류 중입니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دەوامە دایواکراوی پەیامەکەت هەڵە ئەنجامی دەپێتەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocabaasizza obubaka bwo akasera w'sambwe." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų žinutės prašymas šiuo metu laukia." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu ziņojuma pieprasījums patlaban ir gaidīšanas režīmā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето барање за порака е во чекалиште." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны мессеж хүсэлт одоогоор хүлээгдэж байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan mesej anda sedang menunggu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် စာတောင်းဆိုမှု လက်ရှိတွင် စောင့်ဆိုင်းလျက်ရှိသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meldingsforespørsel står for øyeblikket på vent." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको सन्देश अनुरोध हाल पर्खिरहेका छन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw berichtverzoek is momenteel in behandeling." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meldingsforespørsel står for øyeblikket på vent." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pempho lanu la uthenga likudikirira." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਮੈਸਜ ਰਿਕਵੇਸਟ ਹਾਲਾਂਕਿ ਬਕਾਇਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twoja prośba o wiadomość czeka na akceptację." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د پیغام غوښتنه همدا اوس په انتظار کې ده." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua solicitação de mensagem está pendente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sua solicitação de mensagem está atualmente pendente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitarea ta de mesaj este în așteptare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запрос на переписку пока не получил ответа." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoj zahtjev za poruku trenutno je na čekanju." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ පණිවිඩ ඉල්ලීම දැනට ඉතිරිව ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša požiadavka na správu je momentálne v štádiu vybavovania." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša zahteva za sporočilo je trenutno v obdelavi." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa juaj për mesazh është aktualisht në pritje." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш захтев за поруку је тренутно на чекању." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš zahtev za poruku trenutno čeka." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meddelandeförfrågan inväntar svar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ombi lako la ujumbe linasubiri kwa sasa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் செய்தித்தொகுப்பு தற்போது நிலுவையில் உள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ సందేశ్ అభ్యర్థన ప్రస్తుతం పెండింగ్‌లో ఉంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอข้อความของคุณกำลังรอผู้รับอนุมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj isteğiniz şu an bekletiliyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запит на повідомлення зараз очікує на розгляд." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کی پیغام درخواست زیر التواء ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizning xabar so'rovingiz qabul qilindi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu tin nhắn của bạn hiện đang chờ xử lý." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isicelo sakho somyalezo sisalindile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的消息请求正在等待回复。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的訊息請求目前正在等待中。" + } + } + } + }, + "messageRequestPendingDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy sal stemboodskappe en aanhegsels kan stuur sodra die ontvanger hierdie boodskapaansoek goedgekeur het." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستتمكن من إرسال الرسائل الصوتية والمرفقات بمجرد موافقة المستلم على طلب الرسالة هذا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alıcı bu mesaj tələbini təsdiqlədikdən sonra səsli mesaj və qoşma göndərə biləcəksiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما قادر خواهید بود پیام های صوتی و پیوست ها را پس از تایید این درخواست پیام توسط گیرنده ارسال کنید." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы зможаце адпраўляць галасавыя паведамленні і ўкладанні пасля таго, як атрымальнік ухваліць гэты запыт на паведамленне." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ще можете да изпращате гласови съобщения и прикачени файлове, след като получателят одобри това искане за съобщение." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রাপক এই মেসেজ অনুরোধ অনুমোদন করার পরে আপনি ভয়েস মেসেজ এবং সংযুক্তি পাঠাতে সক্ষম হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podreu enviar missatges i adjunts un cop el receptor hagi aprovat aquesta sol·licitud de missatge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Budete moci posílat hlasové zprávy a přílohy, jakmile příjemce schválí tuto žádost o komunikaci." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byddwch yn gallu anfon negeseuon llais a hofryngau unwaith y bydd derbynnydd wedi cymeradwyo cais neges hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil kunne sende stemmebeskeder og vedhæftede filer, når modtageren har godkendt denne beskedanmodning." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst Sprachnachrichten und Anhänge senden, sobald der Empfänger diese Nachrichtenanfrage genehmigt hat." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα μπορείτε να στείλετε ηχητικά μηνύματα και συνημμένα μόλις ο παραλήπτης εγκρίνει αυτό το αίτημα μηνύματος." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You will be able to send voice messages and attachments once the recipient has approved this message request." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi povos sendi voĉmesaĝojn kaj aldonaĵojn post kiam la ricevanto aprobos ĉi tiun mesaĝan peton." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrás enviar mensajes de voz y archivos adjuntos cuando el destinatario haya aprobado esta solicitud de mensaje." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrás enviar mensajes de voz y archivos adjuntos cuando el destinatario haya aprobado esta solicitud de mensaje." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saate häälsõnumeid ja manuseid saata, kui adressaat on selle sõnumitaotluse heaks kiitnud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahots-mezuak eta eranskinak bidaltzeko aukera izango duzu hartzaileak mezu-eskaera hau onartu bezain pronto." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما قادر به ارسال پیام‌های صوتی و پیوست‌ها خواهید بود پس از اینکه دریافت‌کننده این درخواست پیام را تایید کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voit lähettää ääniviestejä ja liitteitä vastaanottajan hyväksyttyä viestipyynnön." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magagawa mong magpadala ng mga voice message at attachment kapag naaprubahan ng tatanggap ang kahilingang pagmemensahe na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous pourrez envoyer des messages vocaux et des pièces jointes une fois que le destinataire aura approuvé cette demande de message." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poderás enviar mensaxes de voz e adxuntos unha vez que o destinatario aprobe esta solicitude de mensaxe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku iya aika saƙon murya da ƙarin fayiloli idan mai karɓa ya amince da tambayar saƙon." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תוכל לשלוח הודעות קוליות וצירופים ברגע שהנמען יאשר את בקשת ההודעה הזו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप इस संदेश अनुरोध को स्वीकृत होने के बाद वॉयस संदेश और संलग्नक भेज पाएंगे।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moći ćete slati glasovne poruke i privitke nakon što primatelj odobri ovaj zahtjev za poruku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miután a fogadó fél jóváhagyja az üzenetkérelmedet, képes leszel hangüzeneteket és mellékleteket küldeni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք կկարողանաք ուղարկել ձայնային հաղորդագրություններ և կցաթղթերը, երբ ստացողը հաստատի այս հաղորդագրության հարցումը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan dapat mengirim pesan suara dan lampiran setelah penerima menyetujui permintaan pesan ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sarai in grado di inviare messaggi vocali e allegati quando il destinatario accetterà questa richiesta di messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "受信者がこのメッセージリクエストを承認すると、音声メッセージと添付ファイルを送信できます." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ შეგიძლიათ გააგზავნოთ ხმოვანი მესიჯები და ფაილები მას შემდეგ, რაც მიღებულ იქნება მესიჯის მოთხოვნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​នឹង​អាច​ផ្ញើសារសំឡេង និងឯកសារភ្ជាប់ បន្ទាប់ពី​អ្នក​ទទួល បាន​យល់ព្រមលើសំណើសារនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಘೋಷಣೆ ವಿನಂತಿಯನ್ನು ಅನುಮೋದಿಸಿದ ನಂತರ ನೀವು ವಾಯ್ಸ್ ಸಂದೇಶಗಳ ಮತ್ತು ಜೊತೆಯುಡುಕಳನ್ನು ಕಳುಹಿಸಲು ಅಗತ್ಯವಿರುವಿರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "수신자가 이 메시지 요청을 승인하면 음성 메시지 및 첨부 파일을 보낼 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەتوانی نامەو پەیوەندی دەنگ بەنێریت هەروەها وەرپێدەوشن لە دوای پەسندی پەیوەندی دەنگییەکە لە ڕیسەپین." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okeesi okukozesa obubaka bwa Kyesi amande ebyokunyumiza okw'ona nga ansaba y'obubaka eno ekozeza omulimo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai tik gavėjas patvirtins šį žinutės prašymą, galėsite siųsti balso žinutes ir priedus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs varēsiet nosūtīt balss ziņojumus un pielikumus, kad saņēmējs ir apstiprinās šo ziņojuma pieprasījumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе можете да испраќате гласовни пораки и прикачувања откако примателот го прифати барањето за порака." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэхүү мессеж хүсэлтийг хүлээн зөвшөөрсний дараа та дуу хоолой мессеж болон хавсралтыг илгээх боломжтой болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan dapat menghantar mesej suara dan lampiran setelah penerima meluluskan permintaan mesej ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်တောင်းဆိုမှုခံထားရသော သူသည် သိပ်လက်ခံရန် မကြာမီ သင့်ဆီအသံမက်ဆေ့ချ်များ ထွက်ဖို့ အခွင့်အလမ်းရှိသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil kunne sende talemeldinger og vedlegg når mottakeren har godkjent meldingsforespørselen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्राप्तकर्ताले यो सन्देश अनुरोध स्वीकृत गरेपछि तपाईले भ्वाइस सन्देशहरू र अट्याचमेन्टहरू पठाउन सक्नुहुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt spraakberichten en bijlagen verzenden zodra de ontvanger dit berichtverzoek heeft goedgekeurd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan senda talemeldingar og vedlegg så snart mottekaren har godkjent denne meldingsforespørselen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mudzatha kutumiza mauthenga amawu ndi zoyikapo mukangovomerezedwa pempho lanu la uthenga." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਦੋਂ ਪ੍ਰਾਪਤੀਕਰਤਾ ਨੇ ਇਸ ਮੈਸਜ ਰਿਕਵੇਸਟ ਨੂੰ ਮਨਜ਼ੂਰ ਕਰ ਲਿਆ ਹੋਵੇਗਾ ਤਾਂ ਤੁਸੀਂ ਆਵਾਜ਼ ਸੰਦੇਸ਼ ਅਤੇ ਅਟੈਕਮੈਂਟ ਭੇਜ ਸਕੋਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomości głosowe i załączniki będzie można wysyłać po zatwierdzeniu prośby o wiadomość przez odbiorcę." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو به د دې وړتیا ولرئ چې د غږ پیغامونه او ملحقات د هغه وخت لپاره واستوئ کله چې ترلاسه کوونکي دا پیغام غوښتنه تایید کړي وي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você poderá enviar mensagens de voz e anexos após o destinatário aprovar esta solicitação de mensagem." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poderá enviar mensagens de voz e anexos assim que o destinatário aprovar este pedido de mensagem." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veți putea trimite mesaje vocale și atașamente după ce destinatarul a aprobat această cerere de mesaj." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы можете отправлять голосовые сообщения и файлы после того, как пользователь одобрит ваш запрос." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moći ćeš poslati glasovne poruke i privitke kada primalac odobri ovaj zahtjev za poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට පණිවිඩ ඉල්ලීමක් යවනු ඇත. මේම පණිවීම විභාග කිරීමට පෙර ඔබට හඬ පණිවිඩ සහ ඇමතුම් භාරගත නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Budete môcť posielať hlasové správy a prílohy, keď príjemca schváli túto žiadosť o správu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila v glasovni obliki in priloge boste lahko poslali, ko bo prejemnik odobril to zahtevo za sporočilo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mund të dërgoni mesazhe me zë dhe bashkëngjitje pasi marrësi ka aprovuar këtë kërkesë për mesazh." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моћи ћете да пошаљете гласовне поруке и прилоге када прималац прихвати ваш захтев за поруку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moći ćete da šaljete glasovne poruke i privitke kada primalac odobri ovaj zahtev za poruku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kommer att kunna skicka röstmeddelanden och bilagor när mottagaren har godkänt denna meddelandeförfrågan." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utaweza kutuma jumbe za sauti na viambatanisho mara baada ya mpokeaji kuidhinisha ombi hili la ujumbe." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "என்ரக் செய்தித்தொகுப்பு ஏற்கப்படத்தக்கவரை நீங்கள் குரல் செய்திகளை மற்றும் இணைப்புகளைச் சரி செய்ய முடியும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సంక్షిప్తసం లో మీ సంక్షిప్తం అభ్యర్థనను అంగీకరించిన తర్వాత మీరు వాయిస్ సందేశాలు మరియు ఫైర్‌లు పంపగలరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณจะสามารถส่งข้อความเสียงและไฟล์แนบได้เมื่อผู้รับได้อนุมัติคำขอข้อความนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj isteği onaylandıktan sonra sesli mesajlar ve ekler gönderebileceksiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви зможете надсилати голосові повідомлення і вкладення, після того як одержувач схвалить цей запит на повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جب وصول کنندہ نے اس پیغام درخواست کو منظور کیا، آپ کو وائس پیغامات اور فائلیں بھیجنے کی اجازت ہوگی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qabul qiluvchi ushbu xabar so'rovini ma'qullaganidan keyin siz ovozli xabarlar va qo'shimchalarni yuborishingiz mumkin bo'ladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn sẽ có thể gửi tin nhắn thoại và tệp đính kèm khi người nhận đã chấp nhận yêu cầu tin nhắn này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uya kukwazi ukuthumela imiyalezo yelizwi kunye nezinto ezihambelanayo xa umamkeli eveleli isicelo somyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "对方同意消息请求后,您将可以发送语音信息及附件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "收件人批准此訊息請求後,你將會能夠發送語音訊息和附件。" + } + } + } + }, + "messageRequestsAcceptDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "As jy 'n boodskap aan hierdie gebruiker stuur, sal jy outomaties hul boodskapversoek aanvaar en jou Rekening ID onthul." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال رسالة إلى هذا المستخدم سوف يقبل تلقائيًا طلب الرسالة الخاص به ويكشف عن معرف حسابك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu istifadəçiyə mesaj göndərdikdə, onun mesaj tələbi avtomatik qəbul ediləcək və Hesab Kimliyiniz üzə çıxacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے سے یہ اکائونٹ کو منظوم کر دے گا." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адпраўка паведамлення гэтаму карыстальніку аўтаматычна прыме яго запыт на паведамленне і раскрые ваш Account ID." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращането на съобщение до този потребител автоматично ще приеме тяхната заявка за съобщение и ще разкрие вашия идентификатор на акаунт." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই ব্যবহারকারীকে একটি বার্তা পাঠালে তাদের Message request স্বয়ংক্রিয়ভাবে গ্রহণ করা হবে এবং আপনার Account ID প্রকাশ পাবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si envieu un missatge a aquest usuari acceptarà automàticament la seva sol·licitud de missatge i revelarà el vostre Account ID." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesláním zprávy tomuto uživateli automaticky přijmete jejich žádost o komunikaci a odhalíte jim své ID účtu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon neges i'r defnyddiwr hwn yn awtomatig yn derbyn eu cais neges ac yn datgelu eich ID Cyfrif." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hvis du sender en besked til denne bruger, vil du automatisk acceptere deres beskedanmodning og afsløre din Account ID." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Senden einer Nachricht an dieser Person bestätigt automatisch die Nachrichtenanfrage und gibt deine Account-ID bekannt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η αποστολή μηνύματος σε αυτόν τον χρήστη θα αποδεχτεί αυτόματα το αίτημα μηνύματος του και θα αποκαλύψει το Account ID σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending a message to this user will automatically accept their message request and reveal your Account ID." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi mesaĝon al ĉi tiu uzanto aŭtomate akceptos ilian mesaĝpeton kaj montros vian Account ID." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar un mensaje a este usuario aceptará automáticamente su solicitud de mensaje y revelará tu Account ID." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar un mensaje a este usuario aceptará automáticamente su solicitud de mensaje y revelará su ID de cuenta." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumi saatmine sellele kasutajale aktsepteerib automaatselt tema sõnumitaotluse ja paljastab teie Account ID." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabiltzaile honi mezu bat bidaltzeak bere mezu eskaera automatikoki onartuko du eta zure Account ID erakutsiko du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال پیام به این کاربر درخواست پیام او را به صورت خودکار قبول می‌کند و شناسه کاربری شما را برملا می سازد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestin lähettäminen tälle henkilölle hyväksyy heidän viestipyyntönsä automaattisesti ja paljastaa Session ID:si." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang pag-send ng mensahe sa user na ito ay awtomatikong tatanggapin ang kanilang kahilingan sa pagmemensahe at ipapakita ang Account ID mo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer un message à cet utilisateur acceptera automatiquement sa demande de message et révélera votre ID de compte." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar unha mensaxe a este usuario aceptará automaticamente a súa solicitude de mensaxe e revelará o teu Account ID." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aiko da saƙo ga wannan mai amfani zai ɗauki buƙatar saƙo kuma zai bayyana ID ɗin Asusunka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שליחת הודעה למשתמש זה תגרום לקבלת בקשת ההודעה שלו באופן אוטומטי ותגלה את מספר החשבון שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस उपयोगकर्ता को संदेश भेजना स्वचालित रूप से उनके संदेश अनुरोध को स्वीकार करेगा और आपकी खाता आईडी को प्रकट करेगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje poruke ovom korisniku automatski će prihvatiti njihov zahtjev za poruku i otkriti vaš ID računa." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha üzenetet küld ennek a felhasználónak, akkor automatikusan elfogadja az üzenetkérelmét és a Felhasználó ID megosztásra kerül." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս օգտատիրոջը հաղորդագրություն ուղարկելը ավտոմատ կերպով կընդունի նրա հաղորդագրության հարցումը և կբացահայտի ձեր Account ID-ն:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengirim pesan ke pengguna ini akan secara otomatis menerima permintaan pesan mereka dan mengungkapkan ID Akun Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviando un messaggio a questo utente accetterai automaticamente la sua richiesta di messaggio e rivelerai il tuo ID utente." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このユーザーにメッセージを送信すると、自動的にメッセージリクエストが承認され、あなたのAccount IDが公開されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაუგზავნეთ ამ მომხმარებელს შეტყობინება, რაც ავტომატურად დაადასტურებს მისი შეტყობინების მოთხოვნას და გამოაჩენს თქვენს Account ID-ს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការផ្ញើសារទៅកាន់អ្នកប្រើរូបនេះនឹងទទួលយកសំណើសារ និងបង្ហាញ Account ID របស់អ្នកដោយស្វ័យប្រវត្តិ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಬಳಕೆದಾರರಿಗೆ ಸಂದೇಶವನ್ನು ಕಳುಹಿಸುವ ಮೂಲಕ ಅವರ ಸಂದೇಶ ವಿನಂತಿಯನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ಸ್ವೀಕರಿಸಲಾಗುತ್ತದೆ ಮತ್ತು ನಿಮ್ಮ Account ID ಅನ್ನು ಬಿಚ್ಚಿಡಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 사용자에게 메시지를 보내면 메시지 요청이 자동으로 수락되고 귀하의 세션 ID가 공개됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامێک ناردن بۆ ئەم بەکارهێنەرە خۆکارانە بانگکردنی پەیامەکەی بەرز دەکات و IDی هەژمارەکەت نوێدەکرێت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusindikira omukozesa ono obubaka kijja kwetegereza envitto ye n’okulaga Account ID yo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiant žinutę šiam naudotojui, automatiškai priimsite jų žinutės užklausą ir atskleisite savo paskyros ID." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtot ziņu šim lietotājam, automātiski tiks pieņemts viņa ziņojuma pieprasījums un atklāts Jūsu Account ID." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испраќањето на порака до овој корисник автоматски ќе ја прифати нивната порака и ќе го открие твојот Account ID." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ хэрэглэгчид илгээсэн мессеж таны зурвасны хүсэлтийг автоматаар хүлээн зөвшөөрөх бөгөөд таны Account ID-г харуулах болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menghantar mesej kepada pengguna ini akan secara automatik menerima permintaan mesej mereka dan mendedahkan ID Akaun anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤအသုံးပြုသူသို့ မက်ဆေ့ချ်ပို့ခြင်းသည် မက်ဆေ့ခ်ျတောင်းဆိုမှုကို အလိုအလျောက်လက်ခံပြီး သင့်အကောင့်အိုင်ဒီကို ဖော်ပြပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å sende en melding til denne brukeren medfører det at du automatisk godtar deres meldingsforespørsel og avslører din Account ID." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस प्रयोगकर्तालाई सन्देश पठाउँदा स्वचालित रूपमा उनीहरूको सन्देश अनुरोध स्वीकार हुनेछ र तपाईंको खाता आईडी प्रकट हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een bericht versturen naar deze gebruiker accepteert automatisch zijn/haar/hen berichtverzoek en toont daardoor uw Account-ID." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Å senda ei melding til denne brukaren vil automatisk akseptera meldingsforespørselen og avsløra di Account ID." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending a message to this user will automatically accept their message request and reveal your Account ID." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਉਪਭੋਗਤਾ ਨੂੰ ਸੁਨੇਹਾ ਭੇਜਣ 'ਤੇ ਸਵੇ-ਕਾਰਜਕਾਸ਼ੀਕ ਤੌਰ 'ਤੇ ਉਨ੍ਹਾਂ ਦੀ ਸੁਨੇਹਾ ਅਰਜ਼ੀ ਸਵੀਕਾਰ ਕੀਤੀ ਜਾਏਗੀ ਅਤੇ ਤੁਸੀਂ ਆਪਣਾ ਖਾਤਾ ID ਪ੍ਰਦਰਸ਼ਿਤ ਕਰੋਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysłanie wiadomości do tego użytkownika automatycznie zaakceptuje prośbę o wiadomość i ujawni identyfikator konta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دې کارونکي ته د پیغام لیږل به په اوتومات ډول د دوی د پیغام غوښتنه ومني او ستاسو د حساب ID څرګندوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar uma mensagem para este usuário automaticamente aceitará sua solicitação de mensagem e revelará seu ID da Session." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar uma mensagem para este utilizador automaticamente aceitará o seu pedido de mensagem e revelará o seu ID da Conta." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimiterea unui mesaj către acest utilizator va accepta automat solicitarea de mesaje și va dezvălui ID-ul contului tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Если вы отправите сообщение этому пользователю, запрос на сообщение будет автоматически принят, и он(а) увидит ID вашего аккаунта." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje poruke ovaj korisniku će automatski prihvatiti njihov zahtjev za poruku i otkriti vaš Account ID." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම පරිශීලකයාට පණිවිඩයක් යැවීම ඔවුන්ගේ පණිවිඩ ඉල්ලීම ස්වයංක්‍රීයව පිළිගෙන ඔබගේ Account ID හෙළි කරයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odoslaním správy tomuto používateľovi automaticky prijmete jeho žiadosť o správu a odhalíte svoje Account ID." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošiljanje sporočila temu uporabniku bo samodejno sprejelo njegovo zahtevo za sporočilo in razkrilo vaš Account ID." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgimi i një mesazhi për këtë përdorues do të pranojë automatikisht kërkesën për mesazh dhe do të zbulojë ID-në e Llogarisë tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слање поруке овом кориснику ће аутоматски прихватити њихов захтев за поруку и открити ваш Account ID." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanjem poruke ovom korisniku automatski prihvatate njihov message request i otkrivate svoj Account ID." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Att skicka ett meddelande till den här användaren kommer automatiskt att acceptera deras meddelandeförfrågan och avslöja ditt Account ID." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukituma ujumbe kwa mtumiaji huyu, ombi lao la ujumbe litakubaliwa kiotomatiki na ID yako ya akaunti itaonekana." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த பயனருக்கு செய்தியை அனுப்புவது அவர்கள் செய்தித் கோரிக்கையை தானாகவே ஏற்றுக்கொள்ளும் மற்றும் உங்கள் Account ID-ஐ வெளிப்படுத்தும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ యూజర్కి సందేశం పంపడం ద్వారా మీ సందేశ అభ్యర్థనను స్వీకరించబడుతుంది మరియు మీ Account ID బయటపడుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งข้อความไปยังผู้ใช้รายนี้จะเป็นการยอมรับคำขอข้อความและเปิดเผย Account ID ของคุณโดยอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu kullanıcıya mesaj göndermek otomatik olarak mesaj isteğini kabul edecek ve Session ID'nizi ortaya çıkaracaktır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилання повідомлення цьому користувачеві автоматично прийме його запит на повідомлення та розкриє ваш ідентифікатор сеансу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس صارف کو پیغام بھیجنا خودبخود ان کی پیغام درخواست قبول کرے گا اور آپ کے Account ID کو ظاہر کرے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu foydalanuvchiga xabar yuborish avtomatik ravishda ularning xabar so'rovlarini qabul qiladi va hisob ID'ingizni ochib beradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi một tin nhắn đến người dùng này sẽ tự động chấp nhận yêu cầu tin nhắn và tiết lộ ID Tài khoản của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuthumela umyalezo kumsebenzisi oluya kwamkela ngokuzenzekelayo isicelo somyalezo kunye nokutyhila i- ID yakho ye-Akhawunti." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送消息给此用户将自动接受他们的消息请求并显示您的账户ID。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送訊息給使用者將自動接受其訊息要求並顯示您的帳號 ID。" + } + } + } + }, + "messageRequestsAccepted" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou boodskapaansoek is aanvaar." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم قبول طلب الرسائل الخاص بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj tələbiniz qəbul edildi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی گپ درخواست قبول کرتی گئی ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запыт на паведамленне быў прыняты." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето искане за съобщение е прието." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার মেসেজ অনুরোধটি গ্রহণ করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra sol·licitud de missatge ha estat acceptada." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše žádost o komunikaci byla odsouhlasena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cais neges wedi'i dderbyn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din beskedanmodning er blevet accepteret." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deine Nachrichtenanfrage wurde akzeptiert." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το αίτημα μηνύματός σας έγινε δεκτό." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your message request has been accepted." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via mesaĝa peto estas akceptita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu solicitud de mensaje ha sido aceptada." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu solicitud de mensaje ha sido aceptada." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie sõnumitaotlus on vastu võetud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure mezua onartu dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست پیام شما پذیرفته شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestipyyntösi hyväksyttiin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang kahilingan mo sa pagmemensahe ay tinanggap." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre demande de message a été acceptée." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A túa solicitude de mensaxe foi aceptada." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An amince da tambayar sakonninku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בקשת ההודעה שלך התקבלה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका संदेश अनुरोध स्वीकृत कर दिया गया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš zahtjev za poruku je prihvaćen." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az üzenetkérelmedet elfogadták." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հաղորդագրության հարցումն ընդունվել է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan pesan Anda telah diterima." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua richiesta di messaggio è stata accettata." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ・リクエストが承認されました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი მესიჯ ითხოვა დამტკიცდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានទទួលយកការស្នើសុំសាររបស់អ្នករួចហើយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಘೋಷಣೆ ವಿನಂತಿಯನ್ನು ಅನುಮೋದಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신의 메시지 요청이 수락되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دایواکراوی پەیامەکەت قبوول کراوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osabiddwa okusaba kubw'obubaka bwo kutereredde." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų žinutės prašymas buvo priimtas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu ziņojuma pieprasījums tika pieņemts." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашето барање за порака е прифатено." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны мессеж хүсэлтийг хүлээн зөвшөөрсөн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan mesej anda telah diterima." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် စာတောင်းဆိုခြင်းကို လက်ခံပြီးပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meldingsforespørsel har blitt godkjent." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको सन्देश अनुरोधलाई स्वीकृति दिइएको छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw berichtverzoek is geaccepteerd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meldingsforespørsel har blitt godtatt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pempho lanu la uthenga lavomerezedwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਮੈਸਜ ਰਿਕਵੇਸਟ ਮਨਜ਼ੂਰ ਕਰ ਲਿਆ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twoja prośba o wiadomość została zaakceptowana." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د پیغام غوښتنه منل شوې ده." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua solicitação de mensagem foi aceita." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "O seu pedido de mensagem foi aceite." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitarea ta de mesaj a fost acceptată." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запрос на переписку принят." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoj zahtjev za poruku je prihvaćen." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ පණිවිඩ ඉල්ලීම පිළිගෙන ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša žiadosť o správu bola prijatá." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša zahteva za sporočilo je bila sprejeta." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa juaj për mesazh është pranuar." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш захтев за поруку је прихваћен." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaš zahtev za poruku je prihvaćen." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din meddelandeförfrågan har godkänts." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ombi lako la ujumbe limekubaliwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் செய்தித்தொகுப்பு ஏற்கப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ మెసేజ్ అభ్యర్థనను అంగీకరించారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอข้อความของคุณได้รับการยอมรับแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj isteğiniz kabul edildi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш запит на повідомлення прийнято." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کی پیغام درخواست منظور ہو گئی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your IP Oxen Foundation server va qo'ng'iroq qilgan odamga ko'rinadi, beta qo'ng'iroqlarni ishlatgan paytda." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu tin nhắn của bạn đã được chấp nhận." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isicelo sakho somyalezo samkelwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的消息请求已被接受。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的訊息請求已被接受。" + } + } + } + }, + "messageRequestsClearAllExplanation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil alle boodskap versoeke en groepuitnodigings verwyder?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد مسح كافة طلبات الرسائل ودعوات المجموعات؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün mesaj tələblərini və qrup dəvətlərini silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما ہداں یقینا کہ تمام پیغامات و کولھو گودی دعوتگاں کوارجہ ایھ؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць усе запыты на паведамленні і запрашэнні ў групы?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли/ли сте, че искате да изчистите всички заявки за съобщения и покани за група?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি নিশ্চিত যে আপনি সমস্ত বার্তা অনুরোধ এবং গ্রুপ আমন্ত্রণ পরিষ্কার করতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu esborrar totes les sol·licituds de missatges i invitacions de grup?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat všechny žádosti o komunikaci a pozvánky do skupin?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am glirio'r holl geisiadau neges a gwahoddiadau grŵp?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil rydde alle beskedanmodninger og gruppeinvitationer?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sind Sie sich sicher, dass Sie alle Nachrichtenanforderungen und Gruppeneinladungen löschen möchten?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε βέβαιοι ότι θέλετε να διαγράψετε όλα τα αιτήματα μηνυμάτων και τις προσκλήσεις ομάδων;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to clear all message requests and group invites?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉiujn mesaĝpetojn kaj grup-invitojn?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas borrar todas las solicitudes de mensajes e invitaciones a grupos?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Está seguro de que desea borrar todas las solicitudes de mensajes y las invitaciones de grupo?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite kõik sõnumitaotlused ja grupikutseid kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezu eta talde gonbidapen guztiak ezabatu nahi dituzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا مطمین هستید می خواهید همه ی درخواست های پیام رسانی و دعوت به گروه ها را پاک کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti tyhjentää kaikki viestipyynnöt ja ryhmäkutsut?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong burahin lahat ng mga kahilingan sa pagmemensahe at mga paanyaya sa grupo?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous certain de vouloir effacer toutes les demandes de message et d'invitation au groupe?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana tabbata kana so ka share duk neman saƙonni da gayyatar rukunin?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך למחוק את כל בקשות ההודעות והזמנות לקבוצה?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई सभी संदेश अनुरोध और समूह निमंत्रण साफ़ करना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite obrisati sve zahtjeve za porukama i pozive u grupu?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni akarja az összes üzenetkérelmet és csoportmeghívót?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Իսկապե՞ս ուզում եք ջնջել բոլոր հաղորդագրությունների հարցումներն ու խմբի հրավերները:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menghapus semua permintaan pesan dan undangan grup?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler cancellare tutte le richieste messaggio e inviti di gruppo?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に全てのメッセージリクエストとグループ招待を消去しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ყველა შეტყობინებების მოთხოვნის და ჯგუფში მიწვევების წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់ជម្រះសំណើសារទាំងអស់ និងការអញ្ជើញក្រុម?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಎಲ್ಲಾ ಸಂದೇಶ ಮತ್ತು ಗುಂಪು ಆಹ್ವಾನಗಳನ್ನು ತೆರವುಗೊಳಿಸಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 메세지 요청과 그룹 초대를 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت هەموو داواکارییەکان و بانگهێشتی گرووپەکان بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mbanankubye okusula ebubaka bwonna okuva mu Message Requests ne bibaluwa by'ekibiina?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite išvalyti visus žinučių prašymus ir grupių kvietimus?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties dzēst visu ziņu pieprasījumus un grupu uzaicinājumus?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ги исчистите сите пораки и покани за групи?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та бүх зурвас хүсэлтүүд болон бүлгийн урилгуудыг цэвэрлэхийг хүсэж байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda pasti mahu mengosongkan semua permintaan mesej dan jemputan kumpulan?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ပို့လက်ခံမက်ဆေ့ချ်များ နဲ့အဖွဲ့ခေါ်ပို့ချက်များကို ရှင်းချင်တာ သေချာပါသလား?" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil slette alle meldingsforespørsler og gruppeinvitasjoner?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाईं सबै सन्देश अनुरोधहरू र समूह आमन्त्रणहरू हटाउन पक्का हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u alle berichten en groepsuitnodigingen wilt wissen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil sletta alle meldingsforespørsler og gruppeinvitasjonar?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikiza kuti mukufuna kuchotsa mauthenga onse ndi kuitanira kumagulu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਸਾਰੇ ਸੁਨੇਹਾ ਅਨੁਰੋਧ ਅਤੇ ਗਰੁੱਪ ਸੱਦੇ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz wyczyścić wszystkie prośby o wiadomość i zaproszenia do grupy?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې ټول پیغام غوښتنې او ډلې بلنې پاک کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja limpar todos os pedidos de mensagens e convites de grupo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que deseja limpar todos os pedidos de mensagem e convites para grupos?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că vrei să ștergi toate cererile de mesaje și invitațiile de grup?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить все запросы на переписку и приглашения в группы?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš izbrisati sve zahtjeve za porukama i grupne pozivnice?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට සියලු පණිවිඩ ඉල්ලීම් සහ සමූහ ආරාධනා ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ste si istí, že chcete vyčistiť všetky žiadosti o správu a skupinové pozvánky?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite počistiti vse zahteve za sporočila in povabila v skupino?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni t'i fshini të gjitha kërkesat për mesazhe dhe ftesat e grupit?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да очистите све захтеве за поруке и позивнице за групе?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da očistite sve zahteve za poruke i grupne pozive?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill rensa alla meddelandeförfrågningar och gruppinbjudningar?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufuta maombi yote ya ujumbe na mialiko ya kikundi?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் அனைத்து செய்தி கோரிக்கைகளையும் குழு அழைப்புகளை அழிக்க உறுதியாக உள்ளீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు అన్ని సందేశ అభ్యర్ధనలు మరియు గ్రూప్ ఆహ్వానాలను ఖాళీ చేసాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเคลียร์ข้อความร้องขอและคำเชิญกลุ่มทั้งหมด?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm mesaj isteklerini ve grup davetlerini silmek istediğinize emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що бажаєте очистити всі запити на повідомлення та запрошення до груп?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی تمام پیغام کی درخواستیں اور گروپ دعوتیں صاف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha xabar so'rovlari va guruh takliflarini tozalashni xohlaysizmi?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xóa tất cả yêu cầu tin nhắn và lời mời nhóm?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukucima izicelo zonke zemiyalezo kunye nezimemo zeqela?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要清除所有消息请求和群组邀请吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要清除所有訊息要求和群組邀請嗎?" + } + } + } + }, + "messageRequestsCommunities" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemeenskap Boodskap Versoeke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "طلبات رسائل المجتمع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cəmiyyət Mesaj Tələbləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запыты на паведамленні ў супольнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests за Community" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sol·licituds de missatges de la comunitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žádosti o komunikaci z komunit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceisiadau am Negeseuon Cymunedol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fællesskabs Beskedanmodninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community-Nachrichtenanfragen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αιτήματα Μηνύματος Κοινότητας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝaj Petoj de la Komunumo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de mensaje de la comunidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de mensajes de la comunidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kogukonna sõnumitaotlused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitateko mezu eskaerak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست‌های پیام انجمن‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yhteisöjen viestipyynnöt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Kahilingan sa Mensahe ng Komunidad" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demandes de message de communauté" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de mensaxe da Comunidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buƙatun Saƙonnin Al'umma" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בקשות הודעות Community" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सामुदायिक संदेश अनुरोध" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtjevi za porukama u zajednici" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Közösségi üzenetkérelmek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համայնքի հաղորդագրության հարցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan Pesan Komunitas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Richieste di messaggi della Comunità" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティメッセージリクエスト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំណើសារសហគមន៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಮುದಾಯದ ಸಂದೇಶ ವಿನಂತಿಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "커뮤니티 메시지 요청" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "داوواکانی پەیامی Community" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "SitTula Nsonga z’obubaka" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຄືນເພະເດັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendruomenės žinučių užklausos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopienas ziņu pieprasījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барања за пораки од Заедници" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community зурвасын хүсэлтүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan Mesej Komuniti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public Message Requests" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsforespørsler for fellesskap" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests Community" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community berichtverzoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samfunnsmeldingsforespørslar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zopempha zathu za uthenga wogwirizana ndi gulu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਮੇਦਾਰੀ ਸੁਨੇਹਾ ਮੁੜ ਪੁੱਛਣੀਆਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prośby o wiadomość od społeczności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ټولنې یو آر ایل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitações de Mensagens de Comunidades" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pedidos de Mensagens da Comunidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitări de mesaje de la comunitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросы сообщений сообщества" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtjevi poruka zajednice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රජා පණිවිඩ ඉල්ලීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadosti o správu komunity" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahteve za sporočila skupnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesat për mesazhe në bashkësi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтеви за поруке заједнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevi za poruke zajednice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Förfrågningar om communitymeddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maombi ya Ujumbe wa Community" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக செய்தி கோரிக்கைகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కమ్యునిటీ మెసేజ్ రిక్వెస్ట్స్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk Mesaj Talepleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запити на повідомлення зі спільнот" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community Message Requests" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jamiyat Xabar So'rovlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu tin nhắn cộng đồng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izicelo Zemiyalezo YoLuntu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群消息请求" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "社群訊息請求" + } + } + } + }, + "messageRequestsCommunitiesDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laat boodskapversoeke van Gemeenskapsgesprekke toe." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "السماح بطلبات الرسائل من محادثات المجتمع." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcma danışıqlarından gələn mesaj tələblərinə icazə ver." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹی گفتگو سے پیغام کی درخواست کی اجازت دیں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дазволіць запыты паведамленняў ад супольнасцей." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешаване на заявки за съобщения от Community разговори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow message requests from Community conversations." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permeteu sol·licitud de missatges de les converses de la comunitat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povolit žádosti o komunikaci zahájené prostřednictvím komunit." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caniatáu ceisiadau neges gan sgyrsiau Community." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillad beskedanmodninger fra fællesskabs samtaler." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erlaube Nachrichtenanfragen von Community-Unterhaltungen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Να επιτρέπονται αιτήματα μηνυμάτων από συνομιλίες της Κοινότητας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow message requests from Community conversations." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permesi mesaĝajn petojn de Comunitat konversacioj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir solicitudes de mensajes de conversaciones de Comunidades." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir solicitudes de mensajes de conversaciones de Comunidades." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luba sõnumitaotlused kogukonnavestlustest." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komunitateko elkarrizketetatik mezu eskaerak onartu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازه درخواست پیام از گفتگوهای Community." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salli viestipyynnöt yhteisökeskusteluista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pahintulutan ang mga kahilingan sa mensahe mula sa mga pag-uusap sa Komunidad." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoriser les demandes de message des conversations de communautés." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir solicitudes de mensaxes de conversas da Community." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bada damar roƙon saƙonni daga tattaunawar Community." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אפשר בקשות הודעות משיחות בקהילה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "समुदाय वार्तालापों से संदेश अनुरोधों की अनुमति दें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli zahtjeve za porukama iz Community razgovora." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A közösségi beszélgetésekből származó üzenetek engedélyezése." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թույլատրել հաղորդագրության հարցումներ Community զրույցներից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izinkan permintaan pesan dari percakapan Community." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Consenti richieste di messaggi dalle chat di Comunità." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "コミュニティの会話からのメッセージリクエストを許可する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ნებართვისთვის სთხოვეთ შეტყობინებების მიღება Community საუბრებიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អនុញ្ញាតសំណើសារពីការសន្ទនារបស់សហគមន៍។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community ಸಂಭಾಷಣೆಯಿಂದ ಸಂದೇಶ ವಿನಂತಿಗಳನ್ನು ಅನುಮತಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow message requests from Community conversations." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڕێگە بە دەستپێدان بەرپرسپێدە دەی بەرز بکەرەوە." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leka obubaka obufufiire okuva mu miraba gya Community." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໃຫ້ການຮັບຄຳຂໍຂ່ອງການສົ່ງຂໍ້ຄວາມໃນ Community." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leisti žinučių užklausas iš Bendruomenės pokalbių." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atļaut ziņojumu pieprasījumus no Kopienu sarunām." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможи барања за пораки од Community разговори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Коммунити харилцан ярианаас мессеж хүсэлт зөвшөөрөх." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benarkan permintaan mesej daripada perbualan Community." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community စကားပြောခန်းမှ မက်ဆေ့ချ်လာပို့တောင်းဆိုမှုများကို ခွင့်ပြုပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillat meldingsforespørsler fra Community samtaler." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community कुराकानीहरूबाट सन्देश अनुरोधहरू अनुमति दिनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sta berichtverzoeken van Community gesprekken toe." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillat meldingsforespørsler frå Samfunns-samtaler." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lolani zopempha za mameseji kuchokera ku zokambirana za Community." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਮਿਊਨਿਟੀ ਗੱਲਾਂ ਤੋਂ ਸੁਨੇਹਾ ਬੇਨਤੀਆਂ ਦੀ ਇਜਾਜ਼ਤ ਦਿਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zezwalaj na prośby o wiadomość z rozmów społecznościowych." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د کمیونټي څخه د پیغام غوښتنو اجازه ورکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir solicitações de mensagens a partir de conversas de Comunidades." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir pedidos de mensagem de conversas da Community." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permite solicitări de mesaje din conversațiile comunității." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешить возможность отправки приглашений из сообществ." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli zahtjeve za poruke iz Community razgovora." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Community සංවාද වලින් පණිවිඩ ඉල්ලීම් වලට ඉඩ දෙන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povoliť žiadosti o správy z konverzácií v rámci komunity." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dovoli zahteve za sporočila iz pogovorov v Community." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejo kërkesat për mesazhe nga bisedat e Komunitetit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволи захтеве за поруке у заједничким препискама." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli zahteve za porukama iz konverzacija Zajednice." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillåt meddelandeförfrågningar från gruppkonversationer." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruhusu maombi ya ujumbe kutoka kwa Majadiliano ya Jamii." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சமூக உரையாடல்களிலிருந்து செய்தி கோரிக்கைகளை அனுமதிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమూహ సంభాషణల నుండి సందేశ వినతులను అనుమతించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อนุญาตคำร้องขอข้อความจากการสนทนาของ Community" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Topluluk konuşmalarından gelen mesaj isteklerine izin verin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволити запити на повідомлення зі спільнот." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمیونٹی بات چیت سے میسیج کی درخواستوں کی اجازت دیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamjamiyat suhbatlaridan xabar so'rovlariga ruxsat berish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cho phép các yêu cầu tin nhắn từ các cuộc trò chuyện Cộng đồng." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela izicelo zemiyalezo ukusuka kwiincoko zoLuntu." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "允许来自社群的消息请求。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "允許來自社群對話的訊息請求。" + } + } + } + }, + "messageRequestsDelete" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie boodskapversoek skrap?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد حذف طلب الرسالة هذا؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj tələbini silmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی میسج ریکویسٹ ھذب بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўнены, што жадаеце выдаліць гэты запыт на паведамленне?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да изтриеш тази заявка за съобщение?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই বার্তা অনুরোধটি মুছে ফেলতে চান?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu suprimir aquesta sol·licitud de missatge?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete smazat tuto žádost o komunikaci?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am ddileu'r cais neges hwn?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på du vil slette denne beskedanmodning?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du diese Nachrichtenanfrage löschen möchten?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να διαγράψετε αυτό το αίτημα μηνύματος;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to delete this message request?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝpeton?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar esta solicitud de mensaje?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres eliminar esta solicitud de mensaje?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite selle sõnumitaotluse kustutada?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude mezua eskatzea ezabatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید این درخواست پیام را رد کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti poistaa viestipyynnön?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong i-delete ang kahilingan sa pagmemensaheng ito?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir supprimer cette demande de message ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer eliminar esta solicitude de mensaxe?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka goge wannan buƙatar saƙo?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם את/ה בטוח/ה שברצונך למחוק את בקשות ההודעות הזו?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इस संदेश अनुरोध को हटाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite izbrisati ovaj zahtjev za porukom?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy törölni szeretnéd ezt az üzenetkérelmet?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք ջնջել այս հաղորդագրության հարցումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menolak permintaan pesan ini?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler eliminare questa richiesta di messaggio?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのリクエストを削除しますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ შეტყობინების მოთხოვნის წაშლა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លុបសំណើសារនេះ?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಂದೇಶ ವಿನಂತಿಯನ್ನು ಅಳಿಸಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 메시지 요청을 삭제하시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت ئەم داواکاریی پەیامە بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okusazaamu okusaba okuyingira obubaka buno?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບ message request นี้?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite ištrinti šį žinučių prašymą?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai jūs esat pārliecināti ka vēlaties nodzēst šo ziņu?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го избришете ова барање за порака?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэ зурвас хүсэлтийг устгахдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu memadamkan permintaan mesej ini?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤမက်ဆေ့ခ်ျလာပို့တောင်းဆိုမှုကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønsker å slette denne meldingsforespørselen?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं यो सन्देश अनुरोध मेटाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u dit berichtverzoek wilt verwijderen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å slette denne meldingsforespørselen?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kufufuta pempho la uthenga umenewu?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਸੁਨੇਹਾ ਅਨੁਰੋਧ(mesage request) ਨੂੰ ਮਿਟਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz usunąć tę prośbę o wiadomość?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې د دې پیغام غوښتنې حذف کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja excluir esta solicitação de mensagem?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja apagar este pedido de mensagem?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să ștergi această solicitare de mesaj?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите удалить этот запрос на сообщение?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš obrisati ovaj message request?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම පණිවිඩ ඉල්ලීම මැකීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete vymazať túto žiadosť o správu?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite izbrisati to zahtevo za sporočilo?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni të fshini këtë kërkesë për mesazh?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да обришете овај захтев за поруку?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da izbrišete ovaj zahtev za poruku?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill radera denna meddelandeförfrågan?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kufuta hii Message request?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த செய்தியைக் கோரிக்கையை நீக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు ఈ మెసేజ్ రిక్వెస్ట్‌ను తీసివేయాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการลบคำขอข้อความนี้?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu mesaj isteğini silmek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви дійсно бажаєте видалити цей запит?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اس پیغام کی درخواست کو حذف کرنا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham bu xabar so'rovini o'chirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn xoá yêu cầu tin nhắn này không?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukususa esi sicelo somyalezo?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要删除此消息请求吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要刪除此訊息請求嗎?" + } + } + } + }, + "messageRequestsNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het 'n nuwe boodskapversoek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لديك طلب مراسلة جديدة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir mesaj tələbiniz var" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما تہارا دیا پیغام ہور۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас ёсць запыт на новае паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате ново искане за съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার কাছে একটি নতুন মেসেজ অনুরোধ এসেছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teniu una sol·licitud de missatge nova" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte novou žádost o komunikaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gennych geisiad negeseuon newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har en ny beskedanmodning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast eine neue Nachrichtenanfrage" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έχετε ένα νέο αίτημα μηνύματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You have a new message request" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi havas novan mesaĝan peton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes una nueva solicitud de mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tienes una solicitud de mensaje nueva" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil on uus sõnumitaotlus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu-eskaera berri bat daukazu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما درخواست پیام جدیدی دارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinulla on uusi viestipyyntö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayroon kang bagong kahilingan sa pagmemensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez une nouvelle demande de message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes unha nova solicitude de mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kana da sabon tambayar saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לך בקשת הודעה חדשה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पास एक नया संदेश अनुरोध है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novi zahtjev za poruku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Új üzeneted érkezett" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ունեք նոր հաղորդագրության հարցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mendapatkan permintaan pesan baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai una nuova richiesta di messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しいリクエストがあります" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ გაქვთ ახალი მესიჯ ითხოვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​មាន​ការស្នើសុំ​សារ​ថ្មី​មួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮಲ್ಲಿ ಹೊಸ ಸಂದೇಶ ವಿನંતಿಯಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새로운 메시지 요청이 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ داواکاری نامەی نوێیەکتان هەیە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olinayo obubaka obujja obusabiddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs turite naują žinučių užklausą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums ir jauns ziņojuma pieprasījums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате ново барање за порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд шинэ мессеж хүсэлт ирсэн байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mempunyai permintaan mesej baru" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်တို့အတွက် အသစ်သော စာတောင်းဆိုခြင်း ရှိပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har en ny meldingsforespørsel" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको एउटा नयाँ सन्देश अनुरोध आएको छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft een nieuw berichtverzoek" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har en ny meldingsforespørsel" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muli ndi pempho latsopano la uthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਇੱਕ ਨਵਾਂ ਮੈਸਜ ਰਿਕਵੇਸਟ ਮਿਲਿਆ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masz nową prośbę o wiadomość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو یوه نوې د پیغام غوښتنه لرئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem uma nova solicitação de mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem um novo pedido de mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai o cerere de mesaj nouă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас новый запрос на переписку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imaš novi zahtjev za poruku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට නව පණිවිඩ ඉල්ලීමක් ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máte novú žiadosť o správu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novo zahtevo za sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju keni një kërkesë të re për mesazh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имате нови захтев за поруку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imate novi zahtev za poruku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har en ny meddelandeförfrågan" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una ombi jipya la ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களுக்கு புதிய செய்தித்தொகுப்பு உள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీకు ఒక కొత్త మెసేజ్ అభ్యర్థన వచ్చింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณมีคำขอข้อความใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni bir mesaj isteğiniz var" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас є новий запит на повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پاس ایک نیا پیغام درخواست ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda yangi xabar so'rovi bor" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có yêu cầu tin nhắn mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesicelo esitsha somyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您有一个新的消息请求" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您有一個新的訊息請求" + } + } + } + }, + "messageRequestsNonePending" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen boodskapversoeke hangend nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا توجد طلبات رسالة معلقة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gözləyən mesaj tələbi yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ گُدار کتگانی پیام شتگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма чаканых запытаў паведамленняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма чакащи заявки за съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো মেসেজ রিকোয়েস্ট অপেক্ষায় নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha sol·licituds de missatges pendents" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žádné nevyřízené žádosti o komunikaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ceisiadau negeseuon yn yr arfaeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen afventende beskedanmodninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine ausstehenden Nachrichtenanfragen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν υπάρχουν αιτήματα μηνυμάτων σε εκκρεμότητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pending message requests" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniuj pendaj message requests" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay solicitudes de mensajes pendientes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hay solicitudes de mensajes pendientes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ootel sõnumitaotlused puuduvad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago mezu eskaera zainik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ درخواست پیامی وجود ندارد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei odottavia viestipyyntöjä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang nakabinbing mga kahilingan sa pagmemensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucune demande de message en attente" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai solicitudes de mensaxe pendentes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu roƙon saƙo da ake jiran amsa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין בקשות הודעה בהמתנה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई लंबित संदेश अनुरोध नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema zahtjeva za poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek függőben lévő üzenetkérelmek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սպասող հաղորդագրությունների հարցումներ չկան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada permintaan pesan tertunda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessuna richiesta di messaggi in sospeso" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保留中のメッセージリクエストはありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არ არის მომდგომი შეტყობინებების მოთხოვნები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មានការស្នើសុំដែលកំពុងរង់ចាំ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಯಾವುದೇ ಸಂದೇಶ ವಿನಂತಿಗಳು ಬಾಕಿಯಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보류중인 메세지 요청이 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ داواکاری نامەیەکی بنەماوە نییە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolyewo kululuno" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra laukiantys žinučių užklausų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav gaidošu ziņojumu pieprasījumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема непотврдени барања за пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хүлээгдэж буй зурвасын хүсэлт байхгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada permintaan mesej tertunggak" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မေးဆေကာ မေးဘတ်စ်မရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen ventende meldingsforespørsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "विभिन्न सन्देश अनुरोध छैनन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen openstaande berichtverzoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen ventande meldingsforespørsler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Zopempha Mauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਬਕਾਇਆ ਸੁਨੇਹਾ ਅਰਜ਼ੀਆਂ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak oczekujących próśb o wiadomość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ پیغام غوښتنې ځواب نه دي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuma solicitação de mensagem pendente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum pedido de mensagem pendente" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fără solicitări de mesaje în așteptare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет ожидающих запросов на переписку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema na čekanju zahtjeva za poruku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පොරොත්තු පණිවිඩ ඉල්ලීම් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadne prebiehajúce žiadosti o správu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni čakajočih prošenj za sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk ka kërkesa për mesazhe në pritje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема захтева за поруку на чекању" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema zahteva za poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga väntande meddelandeförfrågningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna maombi ya ujumbe yanayosubiri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காத்திருக்கும் செய்தி கோரிக்கைகள் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పెండింగ్ సందేశం డిమాండ్లు లేవు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีคำร้องขอข้อความที่ค้างอยู่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekleyen mesaj isteği yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немає запитів на повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی زیر التواء پیغام کی درخواست نہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hech qanday xabar so'rovlari yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có yêu cầu tin nhắn đang chờ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho zicelo zomyalezo ezigqityiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有待处理的消息请求" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "沒有擱置中的訊息要求" + } + } + } + }, + "messageRequestsTurnedOff" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het boodskapversoeke van Gemeenskapsgesprekke afgedraai, so jy kan nie vir hulle 'n boodskap stuur nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم إيقاف طلبات الرسائل من محادثات المجتمع من طرف {name}، لذا لا يمكنك إرسال الرسالة إليه." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, İcma danışıqlarından gələn mesaj tələblərini söndürdüyü üçün ona mesaj göndərə bilməzsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Community goftukā Message request motejān shutān, dar nābāt wandag bē da." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} заблакіраваў запыты паведамленняў ад суполак, таму вы не можаце адпраўляць яму паведамленні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} е изключил заявките за съобщения от Комюнити разговори, така че не можете да им изпращате съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Community কথোপকথন থেকে মেসেজ অনুরোধ বন্ধ করেছে, তাই আপনি তাদের মেসেজ পাঠাতে পারবেন না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} té apagades les sol·licituds de missatges de converses de la comunitat, per tant no podeu enviar-los un missatge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} má vypnuté žádosti o komunikaci pocházející z komunit. Odeslání zprávy tedy není možné." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} y wedi troi ceisiadau neges oddi wrth sgwrsiau Cymunedol, felly ni allwch anfon neges atynt." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har beskedanmodninger fra Community-samtaler slået fra, så du kan ikke sende dem en besked." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat Nachrichtenanfragen von Community-Unterhaltungen deaktiviert, daher kannst du keine Nachricht senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} έχει απενεργοποιημένα τα αιτήματα μηνυμάτων από κοινοτικές συνομιλίες, οπότε δεν μπορείτε να τους στείλετε μήνυμα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has message requests from Community conversations turned off, so you cannot send them a message." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} malaktivigis mesaĝpetojn de komunumo, do vi ne povas sendi al ili mesaĝon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tiene desactivadas las solicitudes de mensajes de conversaciones de Comunidad, por lo que no puedes enviarles un mensaje." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tiene desactivadas las solicitudes de mensajes de conversaciones de Comunidad, por lo que no puedes enviarles un mensaje." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on kogukonna vestluste sõnumitaotlused välja lülitanud, te ei saa neile sõnumit saata." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has message requests from Community conversations turned off, so you cannot send them a message." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} درخواست‌های پیام از مکالمات Community را غیرفعال کرده است، بنابراین شما نمی‌توانید برای او پیامی ارسال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} on poistanut yhteisökeskustelujen viestipyynnöt käytöstä, joten et voi lähettää hänelle viestiä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ay may mga hinihinging mensahe mula sa mga pag-uusap ng Community na naka-off, kaya hindi mo sila masesendan ng mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a désactivé les demandes de message des conversations de communautés, vous ne pouvez donc pas lui envoyer de message." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ten as mensaxes de solicitude desde conversas en Community desactivadas, polo que non lle podes enviar unha mensaxe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yana da buƙatun saƙonni daga tattaunawa na al'umma kashe, saboda haka ba za ku iya aika musu da saƙo ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ ביטל/ה בקשות הודעה משיחות בקהילה, ולכן אינך יכול לשלוח לה/ו הודעה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने Community वार्ताओं से संदेश अनुरोध बंद कर दिया है, इसलिए आप उन्हें संदेश नहीं भेज सकते।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ima onemogućene zahtjeve za porukama iz Community razgovora, pa im ne možete poslati poruku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kikapcsolta a Közösségi üzenetkérelmek funkciót, így nem küldhetsz neki üzenetet." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}֊ը անջատել է հաղորդագրության հարցումները Community զրույցներից, հետևաբար դուք նրան հաղորդագրությամբ չեք կարող հասնել:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} menonaktifkan permintaan pesan dari Percakapan Komunitas, sehingga Anda tidak dapat mengirim mereka pesan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha disattivato le richieste di messaggi dalla Comunità, quindi non puoi inviargli un messaggio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} はコミュニティの会話からのメッセージリクエストをオフにしています。メッセージを送信できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-ს აქვს გამორთული შეტყობინების მოთხოვნები საზოგადოების საუბრებიდან, ასე რომ თქვენ არ შეგიძლიათ მათთვის შეტყობინების გაგზავნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍បានបិទសំណើសំរាប់សរ ពីការតន្រនារប់ Community ដូច្នេះអន កមិអនាច្ញើសរ ទៅពក គេបន ទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರಲ್ಲಿ Community ಸಂಭಾಷಣೆಗಳಿಂದ ಸಂದೇಶ ವಿನಂತಿಗಳನ್ನು ಆಫ್ ಮಾಡಲಾಗಿದೆ, ಆದ್ದರಿಂದ ನೀವು ಅವರಿಗೆ ಸಂದೇಶ ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}의 커뮤니티 대화에서 메시지 요청이 꺼져 있어 메시지를 보낼 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} دواوی پەیوەندی پەیامەکانیشی ئەکاونتەکانیان لە گفتوگۆیەکانە چالاک نییە، بۆیە ناتوانیت پەیام بۆیان بنێریت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} alina Message requests okuva mu nsisinkano za Community ziggyiddwaawo, era toyinza kumuweereza message." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} has message requests from Community conversations turned off, so you cannot send them a message." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} išjungė žinučių užklausas iš Community pokalbių, todėl negalite jam išsiųsti pranešimo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ir izslēdzis ziņu pieprasījumus no Kopienas sarunām, tāpēc jūs nevarat viņam nosūtīt ziņu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ги има исклучено барањата за пораки од Community разговорите, така што не можете да му испратите порака." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} нь Community ярианууд дахь мессеж хүсэлтүүдийг унтраасан тул та түүнд мессеж илгээж чадахгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} telah mematikan message requests daripada perbualan Community, jadi anda tidak boleh menghantar mesej kepada mereka." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် Community ပြောဆိုမှုများထံမှ မက်ဆေ့ခ်ျ်လာယူခြင်း ပိတ်ထားသောကြောင့် မက်ဆေ့ခ်ျ်အား ပို့၍မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har meldingsforespørsler fra Community-samtaler skrudd av, så du kan ikke sende dem en melding." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले Community कुराकानीहरूबाट सन्देश अनुरोधहरू बन्द गरेका छन्, त्यसैले तपाईंले उनलाई सन्देश पठाउन सक्नुहुने छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft berichtverzoeken van communitygesprekken uitgeschakeld, dus u kunt hen geen bericht sturen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har meldingsforespørsler frå Community-samtalar deaktivert, så du kan ikkje sende dei ei melding." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ali ndi zofunsa za uthenga zochokera ku zokambirana za Community zotsekeredwa, choncho simungathe kutumiza uthenga kwa iwo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ Community ਗੱਲਬਾਤਾਂ ਲਈ ਸੁਨੇਹਾ ਅਰਜ਼ੀਆਂ ਬੰਦ ਕਰ ਦਿੱਤੀ ਹੈ, ਇਸ ਲਈ ਤੁਸੀਂ ਉਨ੍ਹਾਂ ਨੂੰ ਸੁਨੇਹਾ ਨਹੀਂ ਭੇਜ ਸਕਦੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ma wyłączone prośby o wiadomość, więc nie możesz wysłać temu użytkownikowi wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} د ټولنې د خبرو اترو څخه د پیغام غوښتنې بندې دي، نو تاسو نشئ کولی دوی ته پیغام واستوئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tem solicitações de mensagens de Comunidades desabilitadas, portanto, você não pode enviar mensagens para esta pessoa." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} desativou as mensagens de solicitação de conversas da Comunidade, então não lhe pode enviar uma mensage." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} are solicitările de mesaje dezactivate pentru conversațiile din comunitate, așa că nu îi poți trimite un mesaj." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У {name} отключены запросы сообщений от сообщества, поэтому вы не можете отправить ему(ей) сообщение." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ima isključene zahtjeve za poruke iz razgovora Zajednice, stoga ne možete poslati poruku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Community සංවාද වලින් පණිවිඩ ඉල්ලීම් අක්‍රිය කර තිබේ, එබැවින් ඔබට ඔවුන්ට පණිවිඩයක් යවන්නට නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} má vypnuté požiadavky na správy z komunita konverzácií, takže mu/jej nemôžete poslať správu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ima izklopljene zahteve sporočil iz pogovorov Community, zato jim ne morete poslati sporočila." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ka çaktivizuar kërkesat për mesazhe nga bisedat e Komunitetit, kështu që nuk mund t'i dërgoni një mesazh." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} има искључене захтеве за поруке из Community разговора, тако да им не можете послати поруку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je isključio/la poruke sa zahtevima iz Community razgovora, tako da ne možete da mu/joj pošaljete poruku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} har meddelandeförfrågningar från Community-konversationer inaktiverade, så du kan inte sända dem ett meddelande." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amezima maombi ya ujumbe kutoka kwenye Mazungumzo ya Community, hivyo huwezi kutuma ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} சுய இடுகைகளில் செய்தி கோரிக்கைகளை முடக்கியுள்ளார், அதனால் நீங்கள் அவருக்கு செய்தி அனுப்ப முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} వద్ద కమ్యూనిటీ సంభాషణల నుండి మెసేజ్ రిక్వెస్ట్లను ఆపివేసినందున, మీరు వారికి సందేశం పంపలేరు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ไม่ยอมรับคำขอข้อความจากการสนทนาของ Community ดังนั้นคุณไม่สามารถส่งข้อความถึงเขาได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kullanıcısının, Topluluk sohbetlerindeki mesaj istekleri kapalı olduğu için kendisine mesaj gönderemezsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} заборонив запити на повідомлення зі спільнот, тому ви не можете надіслати йому повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے کمیونٹی کی گفتگو سے پیغام کی درخواستیں بند کر رکھی ہیں، اس لیے آپ انہیں پیغام نہیں بھیج سکتے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hamjamiyat suhbatlaridan xabar so'rovlarini o'chirib qo'ygan, shuning uchun ularga xabar yubora olmaysiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã tắt yêu cầu tin nhắn từ các cuộc trò chuyện Community, do đó bạn không thể gửi tin nhắn cho họ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ibekhubekile kwiimfuno zemiyalezo ivela kwiingxoxo ze-Community, ke awukwazi ukumthumelela umyalezo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已关闭来自社群的对话请求,消息发送失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 已關閉來自社群對話的訊息請求,因此你無法向他們發送訊息。" + } + } + } + }, + "messageRequestYouHaveAccepted" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het die boodskapaansoek aanvaar van {name}." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقد وافقتَ على طلب الرسالة من {name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} göndərən mesaj tələbini qəbul etdiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {name} سے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы прынялі запыт на паведамленне ад {name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приели сте искането за съобщение от {name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি {name} এর মেসেজ অনুরোধ গ্রহণ করেছেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu acceptat la sol·licitud de missatge de {name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přijali jste žádost o komunikaci od {name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mewngofnodwyd cais neges gan {name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har accepteret besked-anmodningen fra {name}." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast die Nachrichtenanfrage von {name} angenommen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποδεχτήκατε το αίτημα μηνύματος από {name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You have accepted the message request from {name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi akceptis la mesaĝan peton de {name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha aceptado la solicitud de mensaje de {name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has aceptado la solicitud de mensaje de {name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olete sõnumitaotluse {name} vastu võtnud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-(r)en mezua onartu duzu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما درخواست پیام را از {name} قبول کردید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyväksyit viestipyynnön käyttäjältä {name}." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinanggap mo ang kahilingang pagmemensahe mula kay {name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez accepté la demande de message de {name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A túa solicitude de mensaxe de {name} foi aceptada." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka amince da tambayar saƙo daga {name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קיבלת את בקשת ההודעה מ{name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपने {name} से संदेश अनुरोध स्वीकार कर लिया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvatili ste zahtjev za poruku od {name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elfogadtad {name} üzenetkérését." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք ընդունել եք հաղորդագրության հարցումը {name}֊ից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda telah menerima permintaan pesan dari {name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai accettato la richiesta di messaggio da {name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}さんのメッセージリクエストを承認しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ {name} მესიჯ ითხოვა დამტკიცეთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកបានទទួលយកការស្នើសុំសារពី {name} ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {name} ನಿಂದ ಸಂದೇಶ ವಿನಂತಿಯನ್ನು ಸ್ವೀಕರಿಸಿದ್ದೀರಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}의 메시지 요청을 수락했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ داواکاری نامەکانت لە {name} پەسند کرد." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okirizza okusaba okw'obubaka okuva {name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sutikote žinučių užklausą iš {name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs esat pieņēmuši ziņojuma pieprasījumu no {name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Го прифативте барањето за порака од {name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {name} илгээсэн мессеж хүсэлт хүлээн зөвшөөрсөн байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda telah menerima permintaan mesej daripada {name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် {name} ၏ စာတောင်းဆိုခြင်းကို လက်ခံလိုက်ပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har godtatt meldingsforespørselen fra {name}.." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले {name} बाट सन्देश अनुरोध स्वीकृत गर्नुभएको छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft het berichtverzoek van {name} geaccepteerd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har godtatt meldingsforespørselen frå {name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwavomereza pempho la uthenga kuchokera kwa {name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {name} ਦਾ ਮੈਸਜ ਰਿਕਵੇਸਟ ਮਨਜ਼ੂਰ ਕਰ ਲਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaakceptowano prośbę o wiadomość od: {name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو د {name} څخه پیغام غوښتنه منلې ده." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você aceitou o pedido de mensagem de {name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceitou o pedido de mensagem de {name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ai acceptat cererea de mesaj de la {name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы приняли запрос на переписку от {name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvatio si zahtjev za poruku od {name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ {name}ගේ පණිවිඩ ඉල්ලීම පිළිගෙන ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijali ste žiadosť o správu od {name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprejeli ste zahtevo za sporočilo od {name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju keni pranuar kërkesën për mesazh nga {name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прихватили сте захтев за поруку од {name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prihvatili ste zahtev za poruku od {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har godkänt meddelandeförfrågan från {name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umeidhinisha ombi la ujumbe kutoka kwa {name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {name} -ன் செய்தித்தொகுப்பை ஏற்றுக்கொண்டீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {name} నుండి మెసేజ్ అభ్యర్థనను అంగీకరించారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณได้ยอมรับคำขอข้อความจาก {name}​ แล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kullanıcısının mesaj isteğini kabul ettiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви прийняли запит на повідомлення від {name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ نے {name} کی پیغام درخواست کو قبول کیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz {name} dan xabar so'rovini qabul qildingiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn đã chấp nhận yêu cầu tin nhắn từ {name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uwamkele isicelo somyalezo esivela ku {name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已接受来自{name}的消息请求。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您已接受來自 {name} 的訊息請求。" + } + } + } + }, + "messages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মেসেজ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žinutės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhe" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்திகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İletiler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息" + } + } + } + }, + "messageSelect" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies boodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدد الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesajı seç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب مسیج" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбраць паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecciona el missatge" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrat zprávu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewis Neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg Besked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht auswählen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλογή μηνύματος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elekti Mesaĝon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar mensaje" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vali sõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezua Hautatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse viesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piliin Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sélectionner le message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar mensaxe" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi Saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश चुनें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi poruku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet kiválasztása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրել հաղորդագրությունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleziona messaggio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージを選択" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების მონიშვნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសសារ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶವನ್ನು ಆಯ್ಕೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 선택" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیام هەڵبژێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa Obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkti žinutę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlēties ziņojumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери Порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежийг сонгох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ဂျ်ရွေးမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg beskjed" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश छान्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bericht selecteren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg beskjed" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Message" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਦੇਸ਼ ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz wiadomość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د پیغام انتخاب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar Mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selectează mesaj" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбрать сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi poruku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩය තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrať správu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberi sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përzgjedh Mesazhin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изабери поруку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberite poruku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markera meddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua Ujumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தியைத் தேர்ந்தெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశాన్ని ఎంచుకో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleti seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вибрати повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabarni tanlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha umyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選取訊息" + } + } + } + }, + "messageSnippetGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}:{message_snippet}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {message_snippet}" + } + } + } + }, + "messageStatusFailedToSend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie stuur nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل الإرسال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася адправіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно изпращане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠাতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut enviar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se odeslat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd anfon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke sende" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachricht konnte nicht gesendet werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία αποστολής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to send" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesa sendo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo enviar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo enviar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saatmine nurjus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidaltzea huts egin da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetys epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong magpadala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec d’envoi" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido enviar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekarî bê şandin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לשלוח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց ուղարկել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal terkirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invio fallito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានបរាជ័យក្នុងការផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "전송 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەیتوانرا بنێردرێت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teesobose kuwereza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko išsiųsti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīšana neizdevās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно испраќање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээхэд алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိုစ့်မပို့မှုမအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending feilet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाउन असफल भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzenden mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending mislukkast" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mana kacharirkachu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się wysłać" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لیږل کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha no envio" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao enviar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la trimitere" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось отправить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno slanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යැවීමට අසාර්ථක විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odosielanie zlyhalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo poslati" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi dërgimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех слања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo slanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades att skicka" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kutuma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்புவதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపించడం విఫలమైనది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การส่งล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderilemedi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося надіслати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجنے میں ناکامی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuborish amalga oshmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi đi không được" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuthumela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法傳送" + } + } + } + }, + "messageStatusFailedToSync" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie sinkroniseer nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشلت المزامنة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinxronlaşdırma uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم آہنگی کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма выканаць сінхранізацыю" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешна синхронизация" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সিঙ্ক করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat en sincronitzar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se synchronizovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd cysoni" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke synkronisere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronisation fehlgeschlagen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία συγχρονισμού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to sync" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis sinkronigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo sincronizar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo sincronizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sünkroonimine nurjus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkronizatzea huts egin da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "همگام‌سازی ناموفق" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkronointi epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigong i-sync" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de synchronisation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao sincronizar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa hada" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בסנכרון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिंक करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspjelo sinkroniziranje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szinkronizálás sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց համաժամացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menyinkronkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizzazione fallita" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "同期に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვითვისა ვერ მოხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានបរាជ័យធ្វើសមកាលកម្ម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಿಂಕ್ ಮಾಡಲಾಗಲಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동기화 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵە لە هاوکێشیکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kyalemye okukwatagana" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko sinchronizuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās sinhronizēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не успеа да се синхронизира" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тохируулахад амжилтгүй боллоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal untuk segerak" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မအောင်မြင်နိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkronisering feilet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फाइलहरु १०MB भन्दा कम हुनुपर्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronisatie mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å synkronisera" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mana kacharirkachu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿੰਕ ਕਰਨ ਵਿੱਚ ਫੇਲ੍ਹ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd synchronizacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync کې پاتې راغی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao sincronizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao sincronizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la sincronizare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка синхронизации" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija nije uspjela" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමහර ජාලක Nodes එකක සම්බන්ද කර ගැනීම අසාර්ථක විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronizácia zlyhala" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija ni uspela" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi sinkronizimi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешна синхронизација" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija nije uspela" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte synkronisera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kulandanisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒத்திசைத்து முடிக்கவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సింక్ చేయడం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การซิงค์ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senkronizasyon başarısız oldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося синхронізувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم آہنگی ناکام ہوگئی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinxronlashda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể đồng bộ hóa" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuvumelanisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "同步失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "同步失敗" + } + } + } + }, + "messageStatusSyncing" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinchroniseer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ المزامنة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinxronlaşdırılır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملاقات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ідзе сінхранізацыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронизация" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সিঙ্কিং" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronitzant" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronizace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cysoni" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkroniserer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird synchronisiert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συγχρονισμός" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syncing" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkroniganta" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizando" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizando" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sünkroonimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkronizatzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال همگام سازی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkronoidaan" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nag-sysync" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronisation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizando" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synching" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מסנכרן" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिंक हो रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkronizacija" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szinkronizálás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համաժամեցում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyinkronkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizzazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "同期中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სინქრონიზაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងសមកាល" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಿಂಕ್ ಮಾಡಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동기화 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هاوبەشی کردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwannateeka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinchronizuojama" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizācija" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронизирање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тааруулж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Penyelarasan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ချိတ်ဆက်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkroniserer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समकालन गर्दै छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchroniseren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkroniserer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syncing" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿੰਕ ਕਰ ਰਹੇ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronizowanie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "همغږي کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizando" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sincronizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронизация" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සම්මුහ සංක්රමණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronizácia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkronizohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронизација" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizacija" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkroniserar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inasawazisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிங்கிங்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సింక్ అవుతోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังซิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senkronize Ediliyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронізація" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم آہنگی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinxronlashtirilmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang đồng bộ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syncing" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在同步" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "同步中" + } + } + } + }, + "messageUnread" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongeleesde boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل غير المقروءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxunmamış mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناپڑھے گئے پیغامات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непрачытаныя паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непрочетени съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অপঠিত মেসেজ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges sense llegir" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepřečtené zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges heb eu darllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulæste beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungelesene Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μη αναγνωσμένα μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unread messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelegitaj mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes sin leer" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes no leídos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lugemata sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurri gabeko mezuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام ناخوانده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukemattomia viestejä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Hindi Nabasang Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages non lus" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes sen ler" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonnin da ba a karanta" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות שלא נקראו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपठित संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepročitanih poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olvasatlan üzenetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չընթերցված հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan belum dibaca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggi non letti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "未読のメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაუკითხავი შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារមិនទាន់អាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದದ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽지 않은 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "پەیامە نەخوێندراوەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka Bungatebenge" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neskaitytų žinučių" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelasīti ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непрочитани пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншаагүй мессежүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej belum dibaca" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ရန် မက်ဆေ့ချ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uleste meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नपढिएका सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongelezen berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulesne meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uthenga Wosawerengwa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਾ ਹੋਈਆਂ ਪੜ੍ਹੀਆਂ ਸੁਨੇਹੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprzeczytane wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوستل شوي پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens não lidas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens por ler" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje necitite" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непрочитанные сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepročitanih poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොකියවූ පණිවිඩ යි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neprečítané správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neprebrana sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhe të palexuara" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "непрочитаних порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepročitane poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olästa meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe usiosomwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசிக்கப்படாத தகவல்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదవని సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความที่ยังไม่ได้อ่าน." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunmamış iletiler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непрочитані повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر پڑھے گئے پیغامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oʻqilmagan xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tin nhắn chưa đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo engaqhelekanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未读消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未讀訊息" + } + } + } + }, + "messageVoice" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stemboodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسالة صوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli mesaj" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس پیغام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Галасавое паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласово съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভয়েস বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatge de veu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasová zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neges Llais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talebesked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprachnachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ηχητικό μήνυμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voice Message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voĉmesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje de voz" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaje de voz" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Häälsõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahots-mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääniviesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensahe ng Boses" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message vocal" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxe de voz" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙon Murya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה קולית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वॉइस संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovna poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangüzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնային հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggio vocale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვანი შეტყობინება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಾಯ್ಸ್ ಸಂದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامەی دەنگی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka Obw'eddoboozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balso žinutė" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balss ziņojums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовна порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуу Хүсэлт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej Suara" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံမက်ဆေ့ခ်ျ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talemelding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आवाज सन्देश" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spraakbericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Talemelding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chakwera Chumbe Chokwama" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਵਾਜ਼ ਸੰਦੇਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiadomość głosowa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غږ پېغام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem de Voz" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagem de voz" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj vocal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосовое сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovna poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හඬ පණිවිඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hlasová správa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovno sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazh Zanor" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гласовна порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glasovna poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Röstmeddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ujumbe-Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குரல் செய்தி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాయిస్ సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli Mesaj" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Голосове повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس پیغام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli xabar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tin nhắn thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umyalezo weSandi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "語音訊息" + } + } + } + }, + "messageVoiceErrorShort" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hou in om 'n stemboodskap op te neem" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اضغط باستمرار لتسجيل رسالة صوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli mesaj yazmaq üçün basılı tutun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس میسج ریکارڈ کرنے لئے ہولڈ کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Утрымлівайце, каб запісаць галасавое паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натиснете и задръжте за запис" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি ভয়েস বার্তা রেকর্ড করতে ধরে রাখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prem sense deixar anar per enviar un missatge de veu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podržte pro nahrání hlasové zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dal i recordio neges lais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hold for at optage en talebesked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antippen und Halten zum Aufnehmen einer Sprachnachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πατήστε παρατεταμένα για να ηχογραφήσετε ένα φωνητικό μήνυμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hold to record a voice message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tenu premite por registri voĉmesaĝon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mantener pulsado para grabar un mensaje de voz" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toca y mantén pulsado el icono del micrófono para grabar una nota de voz corta. Toca, arrastra hacia arriba y suelta para grabar notas de voz más largas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoidke vajutatuna, et salvestada häälsõnumit" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eutsi ahots mezu bat grabatzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای ضبط پیام صوتی نگه دارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paina ja pidä painettuna äänittääksesi ääniviestin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pindutin at hawakan para mag-record ng voice message" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maintenez pour enregistrer un message vocal" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter para gravar unha mensaxe de voz" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riƙe don yin rikodin saƙon murya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החזק כדי להקליט הודעה קולית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ध्वनि संदेश रिकॉर्ड करने के लिए दबाएं और रखें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dodirnite i držite za snimanje glasovne poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangüzenet rögzítéséhez tartsd a gombot lenyomva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հպեք ու պահեք ձայնային հաղորդագրություն ձայնագրելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tahan untuk merekam pesan suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tieni premuto per registrare un messaggio vocale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "押し続けて音声メッセージを録音" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმოვანი შეტყობინების ჩასაწერად დააჭირეთ და გააჩერეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាំដើម្បីថតសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವಾಯ್ಸ್ ಸಂದೇಶವನ್ನು ದಾಖಲಿಸಲು ಹಿಡಿದಿಟ್ಟುಕೊಳ್ಳಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음성 메시지를 녹음하려면 꾹 누르세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بگرە بۆ تۆمارکردنی پەیامی دەنگی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kikume okuyita okubala okukuwa obubaka bw'amaloboozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laikykite, kad įrašytumėte balso žinutę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Turiet, lai ierakstītu balss ziņojumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задржете за да снимите гласовна порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дууны мессеж бичиж авахын тулд бариад байгаарай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekan dan tahan untuk merakam mesej suara" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံသွင်းရန် ဖိထားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hold for å spille inn en talemelding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आवाज सन्देश रेकर्ड गर्न थिच्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingedrukt houden om een spraakbericht op te nemen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hold for å spille inn en talemelding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwilira kuti muzule uthenga wa mawu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਾਇਸ ਮੇਸੇਜ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਰੋਕੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przytrzymaj, aby nagrać wiadomość głosową" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ویډیو پیغام ثبتولو لپاره ونیسئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toque e segure para gravar uma mensagem de voz" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pressione e segure para gravar uma mensagem de voz" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apasă și menține apăsat pentru a înregistra un mesaj vocal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нажмите и удерживайте для записи голосового сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Držite da snimite glasovnu poruku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හඬ පණිවිඩයක් පටිගත කිරීමට අල්ලාගෙන සිටින්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ťuknutím a podržaním nahráte hlasovú správu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritisnite in držite za snemanje glasovnega sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbaj për të regjistruar një mesazh zanor" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Држите за снимање гласовне поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Držite da snimite glasovnu poruku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryck och håll ned för att spela in ett röstmeddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shikilia kurekodi ujumbe wa sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குரல் செய்தியை பதிவு செய்ய தாங்கி பிடிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వాయిస్ సందేశాన్ని రికార్డ్ చేయడానికి పట్టుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กดค้างเพื่อบันทึกข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli mesaj kaydetmek için basılı tutun" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Утримуйте для запису голосового повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائس میسج ریکارڈ کرنے کے لیے دبائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli xabar yozish uchun ushlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giữ để ghi lại tin nhắn thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bamba ukurekhoda umyalezo welizwi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "长按来录制语音消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "按住錄製語音消息" + } + } + } + }, + "messageVoiceSlideToCancel" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skuif om te kanselleer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسحب للإلغاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İmtina etmək üçün sürüşdür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لغــــــــو کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Правядзіце каб скасаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Плъзнете за отказ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বাতিল করার জন্য স্লাইড করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llisca per cancel·lar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pro zrušení přejeďte" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llithro i ddiddymu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Swipe for at afbryde" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Abbrechen wischen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σύρετε για Ακύρωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slide to Cancel" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deŝovu por nuligi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desliza para cancelar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desliza para cancelar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Libista tühistamiseks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bertan behera uzteko irristatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای لغو بکشید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liu'uta peruuttaaksesi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-slide para ikansela" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glisser pour annuler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desliza para cancelar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motsawa don Soke" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "החלק כדי לבטל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "रद्द करने के लिए स्लाइड करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomakni za odustajanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megszakításhoz csúsztasd" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահեցրե՛ք չեղարկման համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geser untuk Batal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scorri per annullare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スライドして取り消す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სლაიდით გაუქმება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អូសដើម្បីបោះបង់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರದ್ದು ಮಾಡಲು ಸ್ವೈಪ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "취소하려면 슬라이드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "سلاید بکە بۆ باەتڵکردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembera ku kya kufuuna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perbraukite, norėdami atsisakyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velc, lai atceltu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лизгај за Откажување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цуцлахын тулд гулсуулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geser untuk Membatalkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပယ်ဖျက်ရန် ဆလိုက်ကို ပွတ်ဆွဲလိုက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dra for å avbryte" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रद्द गर्न स्लाइड गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veeg om te annuleren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dra for å avbryte" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slide to Cancel" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੱਦ ਕਰਨ ਲਈ ਸਲਾਈਡ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przesuń, aby anulować" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کنسل ته سلایډ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deslize para cancelar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deslize para cancelar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glisează pentru a renunța" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проведите для отмены" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomeri za otkazivanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවලංගු කිරීමට ස්ලයිඩ් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potiahnite pre zrušenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potegnite, da prekličete" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rrëshqiteni që të anulohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Клизни за отказивање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prevucite za otkazivanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svep för att avbryta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telezesha ili Kughairi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ரத்து செய்ய சுருகவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రద్దు చేయడానికి సరిపు చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลื่อนเพื่อยกเลิก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İptal etmek için kaydırın" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проведіть, щоб скасувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منسوخ کرنے کے لیے سلائیڈ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekor qilish uchun suring" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "TRƯỢT ĐỂ HUỶ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slide to Cancel" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "滑动以取消" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "滑動以取消" + } + } + } + }, + "messageVoiceSnippet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Stemboodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} رسالة صوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Səsyazmalı mesaj" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} وائس پیغام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Галасавое паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Гласово съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ভয়েস বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Missatge de veu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} hlasová zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Neges Llais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Talebesked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Sprachnachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ηχητικό μήνυμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Voice Message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Voĉmesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mensaje de voz" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mensaje de Voz" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Häälsõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ahots-mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} پیام صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ääniviesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mensahe ng Boses" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Message Vocal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Saƙon Murya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} הודעה קולית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} स्वर संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Glasovna poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Hangüzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ձայնային հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Pesan Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Messaggio Vocale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 音声メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Voice Message" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} សារជាសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ವಾಯ್ಸ್ ಸಂದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 음성 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} نامەی دەنگی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Obubaka Obw'eddoboozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} balso žinutė" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Гласовна порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Дуу Хүсэлт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mesej Suara" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} အသံမက်ဆေ့ခ်ျ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Talemelding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} आवाज सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Gesproken Bericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Talemelding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Chakwera Chumbe Chokwama" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ਆਵਾਜ਼ ਸੰਦੇਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Wiadomość głosowa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} غږ پېغام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mensagem de voz" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mensagem de Voz" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mesaj vocal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Голосовое сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Glasovna poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} හඬ පණිවිඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Hlasová správa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Glasovno sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Mesazh Zanor" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Гласовна порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Glasovna poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Röstmeddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ujumbe-Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} குரல் செய்தி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} వాయిస్ సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} ข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Sesli Mesaj" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Голосове повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} وائس پیغام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Ovozli xabar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Tin nhắn thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} Umyalezo weSandi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{emoji} 語音訊息" + } + } + } + }, + "messageVoiceSnippetGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Stemboodskap" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} رسالة صوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Səsyazmalı mesaj" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} وائس پیغام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Галасавое паведамленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Гласово съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ভয়েস বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Missatge de veu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} hlasová zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Neges Llais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Talebesked" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Sprachnachricht" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ηχητικό μήνυμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Voice Message" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Voĉmesaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mensaje de voz" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mensaje de Voz" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Häälsõnum" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ahots-mezua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} پیام صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ääniviesti" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mensahe ng Boses" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Message Vocal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Saƙon Murya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} הודעה קולית" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}:{emoji} स्वर संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Glasovna poruka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Hangüzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ձայնային հաղորդագրություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Pesan Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Messaggio Vocale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 音声メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Voice Message" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} សារជាសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ವಾಯ್ಸ್ ಸಂದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 음성 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} نامەی دەنگی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Obubaka Obw'eddoboozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} balso žinutė" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Гласовна порака" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Дуу Хүсэлт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mesej Suara" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} အသံမက်ဆေ့ခ်ျ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Talemelding" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} आवाज सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Gesproken Bericht" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Talemelding" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Chakwera Chumbe Chokwama" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ਆਵਾਜ਼ ਸੰਦੇਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Wiadomość głosowa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} غږ پېغام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mensagem de voz" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mensagem de Voz" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mesaj vocal" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Голосовое сообщение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Glasovna poruka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} හඬ පණිවිඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Hlasová správa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Glasovno sporočilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Mesazh Zanor" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Гласовна порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Glasovna poruka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Röstmeddelande" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ujumbe-Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} குரல் செய்தி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} వాయిస్ సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} ข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Sesli Mesaj" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Голосове повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Voice Message" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Ovozli xabar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Tin nhắn thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} Umyalezo weSandi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 语音消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{author}: {emoji} 語音訊息" + } + } + } + }, + "minimize" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صغِّر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiçilt" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimize" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згарнуць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Минимизиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সর্বনিম্ন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimitza" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimalizovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lleihau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimér" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ελαχιστοποίηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimize" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plejetigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimeeri" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مینیمایز" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pienennä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paliitin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Réduire" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimiza" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מזער" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोटा करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimiziraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimalizálás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փոքրացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kecilkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizza" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "最小化する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩაკეცვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្រួមតូច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡಿಮೆ ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최소화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بچووککردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyeendazo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suskleisti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Минимизирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Багасгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kecilkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စားဝိုင်းမှနေပါတယ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सानो गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimaliseren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katsini" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਘਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimalizuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوچنی کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Свернуть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizuj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හකුළන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimalizovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomanjšaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Минимизуј" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimizuj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimize" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிறிதாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కనిష్ఠ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ย่อลง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küçült" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згорнути в трей" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منیمائز کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ihchamlahstirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thu nhỏ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minimize" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "最小化" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "最小化" + } + } + } + }, + "next" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volgende" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التالي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Növbəti" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گُدام" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далей" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следващ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পরবর্তী" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Següent" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Další" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesaf" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Næste" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weiter" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επόμενο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Next" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sekva" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siguiente" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siguiente" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järgmine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurrengoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعدی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seuraava" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susunod" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suivant" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguinte" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na Gaba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הבא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अगला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sljedeće" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tovább" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաջորդը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selanjutnya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avanti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "次" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შემდეგი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បន្ទាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಂದಿನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دواتر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ojikulembaza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nākamais" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следно" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дараагийн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seterusnya" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရှေ့သို့" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neste" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अर्को" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volgende" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neste" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ena" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਗਲਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Następne" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avançar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguinte" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Următorul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далее" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sledeći" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඊළඟ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ďalej" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naslednje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Следеће" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dalje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nästa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inayofuata" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அடுத்தது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తర్వాత" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ถัดไป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Далі" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اگلا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keyingi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiếp" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okulandelayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "下一步" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "下一步" + } + } + } + }, + "nicknameDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies 'n bynaam vir {name}. Dit sal vir jou verskyn in jou een-tot-een en groepe gesprekke." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر اسم مستعار لـ {name}. سيظهر لك في محادثاتك الفردية والجماعية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} üçün bir ləqəb seçin. Bu, təkbətək və qrup danışıqlarınızda sizə görünəcək." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای {name} یک کُرنا نام انتخاب کنے. ایں شما میں آپ ءَ یک به یک ءَ گروهیتی گفتگوئیں ظاہر ببت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абярыце мянушку для {name}. Гэтую мянушку будзеце бачыць толькі вы ў асабістых і групавых размовах." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете прякор за {name}. Това ще се появи при вас в личните и груповите разговори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এর জন্য একটি ডাকনাম নির্বাচন করুন। এটি আপনাকে আপনার এক-তার-এক এবং গ্রুপ কথোপকথনে প্রদর্শিত হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trieu un sobrenom per a {name}. Això us apareixerà a les vostres converses individuals i de grup." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte přezdívku pro {name}. Tato přezdívka se vám zobrazí ve vašich 1-1 a skupinových konverzacích." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch lysenw ar gyfer {name}. Bydd hyn yn ymddangos ichi yn eich sgyrsiau un-i-un a grŵp." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg et kælenavn for {name}. Dette vil blive vist for dig i din en-til-en samtaler og gruppekonversationer." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wähle einen Spitznamen für {name}. Dieser wird dir in deinen Einzel- und Gruppengesprächen angezeigt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλέξτε ένα ψευδώνυμο για {name}. Αυτό θα εμφανιστεί σε εσάς στις προσωπικές και ομαδικές συνομιλίες σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose a nickname for {name}. This will appear to you in your one-to-one and group conversations." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elektu kromnomon por {name}. Ĉi tio aperos al vi en viaj unu-kontraŭ-unu kaj grupaj konversacioj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elige un nombre para {name}. Este aparecerá en tus conversaciones uno a uno y en grupos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elija un apodo para {name}. Esto aparecerá para ti en tus conversaciones individuales y de grupo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valige {name} jaoks hüüdnimi. See kuvatakse teile nii ühe-kahe kui ka grupivestlustes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose a nickname for {name}. This will appear to you in your one-to-one and group conversations." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک اسم مستعار برای {name} انتخاب کنید. این اسم در بخش همتا به همتای شما و مکالمه های گروهی شما ظاهر خواهد شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse lempinimi käyttäjälle {name}. Tämä näkyy sinulle kahdenkeskisissä ja ryhmäkeskusteluissa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumili ng palayaw para kay {name}. Ito ay lalabas sa one-to-one at mga pag-uusap sa grupo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choisissez un pseudo pour {name}. Il apparaîtra dans vos conversations individuelles et de groupe." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi sunan karya wa {name}. Wannan zai bayyana muku a cikin tattaunawar tattaunawarka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר כינוי עבור {name}. זה יופיע בשיחות אחד-על-אחד ובקבוצה שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} के लिए एक उपनाम चुनें। यह आपके एक-से-एक और समूह वार्तालापों में आपको दिखाई देगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite nadimak za {name}. Ovo će vam se prikazati u razgovorima jedan-na-jedan i grupnim razgovorima." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válasszon becenevet {name} számára. Ez fog megjelenni az egyéni és csoportos beszélgetésekben." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրեք մի մականուն {name}-ի համար: Սա ծրագրում ցուցադրված կլինի ձեր զրույցներում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama panggilan untuk {name}. Ini akan muncul untuk Anda dalam percakapan satu-satu dan grup Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli un soprannome per {name}. Apparirà nelle tue conversazioni private e chat di gruppo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}のニックネームを選んでください。これが1対1およびグループ会話で表示されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აირჩიე ზედმეტსახელი {name}-თვის. ეს გამოგიჩნდება შენს ერთ-ერთ და ჯგუფის საუბრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើសឈ្មោះហៅក្រៅសម្រាប់ {name}។ វានឹងបង្ហាញទៅលើការសន្ទនារបស់អ្នកក្នុងការចែកចាយនិងក្រុម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಗಾಗಿ ಮರುಹೆಸರು ಆಯ್ಕೆಮಾಡಿ. ಇದು ನಿಮ್ಮ ಒಬ್ಬೊಬ್ಬ ಅವಧಿಗಳಲ್ಲಿ ಮತ್ತು ಗುಂಪು ಸಂಭಾಷಣೆಯಲ್ಲಿ ಕಾಣಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}의 닉네임을 선택하십시오. 일대일 및 그룹 채팅에서 표시됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نازناوەیەکی هەڵبژاردە بۆ {name}. ئەمە دەربادە بۆ کەسەکانی تاکە و گروپەکانت." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa nickname eri {name}. Eno ejja okulabika mu kukozesa emboozi emwenna." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite slapyvardį {name}. Jis bus matomas jums pokalbiuose vienas prieš vieną ir grupinėse diskusijose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izvēlieties segvārdu {name}. Tas parādīsies jums vienā pret vienu un grupu sarunās." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изберете прекар за {name}. Овој ќе се појавува во едностраните и групните разговори." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}-д зориулж хоч сонгоно уу. Энэ нь таны нэг ба бүлгийн ярианд харагдах болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih nama panggilan untuk {name}. Ini akan muncul kepada anda dalam perbualan satu-satu dan kumpulan anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} အတွက် အမည်ဖြစ်စေမည် ထည့်ပါ။ ဤအမည်သည် သင်၏ တစ်ဦးနှင့်တစ်ဦးနှင့် အဖွဲ့စကားပြောမှုများတွင် ပြသမည်ဖြစ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg et kallenavn for {name}. Dette vil vises for deg i dine en-til-en og gruppekonversasjoner." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}को लागी उपनाम छान्नुहोस्। यो तपाईंका एक-देखि-एक र समूह कुराकानीहरूमा तपाइँलाई देखिनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies een bijnaam voor {name}. Dit zal verschijnen in uw één-op-één en groepsgesprekken." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel eit kallenamn for {name}. Dette vil visast for deg i dine 1-1 og gruppe-samtalar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose a nickname for {name}. This will appear to you in your one-to-one and group conversations." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਲਈ ਇੱਕ ਉਪਨਾਮ ਚੁਣੋ। ਇਹ ਤੁਹਾਡੀਆਂ ਇੱਕ ਤੋਂ ਇੱਕ ਅਤੇ ਸਮੂਹ ਚਰਚਾਵਾਂ ਵਿੱਚ ਤੁਹਾਨੂੰ ਦਿਸੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz pseudonim dla użytkownika {name}. Będzie on widoczny dla Ciebie w rozmowach prywatnych i grupowych." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {name} لپاره یوه نوم وټاکئ. دا به تاسو ته په یو په یو او ډله ایزو خبرو اترو کې څرګند شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um apelido para {name}. Isso aparecerá para você em suas conversas individuais e em grupo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha o nome de utilizador para {name}. Isto vai-lhe aparecer no seu um-para-um e conversas de grupo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alege un pseudonim pentru {name}. Acesta va apărea în conversațiile individuale și de grup." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выберите псевдоним для {name}. Он будет отображаться в индивидуальных и групповых беседах." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite nadimak za {name}. Ovo će se prikazati u vašim jedan na jedan i grupnim razgovorima." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} සඳහා අන්වර්ථ නාමයක් තෝරන්න. මෙය ඔබට ඔබේ එක් එක් හා කාමි සංවාද අතර දක්වනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyberte prezývku pre {name}. Zobrazí sa vám v individuálnych a skupinových konverzáciách." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberite vzdevek za {name}. To se bo prikazalo v vaših pogovorih ena-na-ena in skupinskih pogovorih." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zgjidhni një nofkë për {name}. Kjo do të shfaqet për ju në bisedat një-me-një dhe në grup." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изаберите надимак за {name}. Ово ће вам се појавити у један-на-један и групним конверзацијама." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberite nadimak za {name}. Ovo će vam se pojaviti u vašim razgovorima jedan na jedan i grupnim razgovorima." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj ett smeknamn för {name}. Detta kommer att visas för dig i dina en-till-en- och gruppkonversationer." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua jina la utani kwa {name}. Hii itaonekana kwako katika mazungumzo ya moja kwa moja na ya kikundi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} க்கு ஒரு பெயரைத் தேர்ந்தெடுக்கவும். இது உங்கள் ஒரே நோக்கத்தில் மற்றும் குழு உரையாடலில் நீங்கள் பார்க்கப்படும் பெயராக இருக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} కోసం ఒక నిక్‌నేమ్ ఎంచుకోండి. ఇది మీకి మీ ఒకటి-టికొకటి మరియు గ్రూప్ సంభాషణల్లో చూపబడుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกชื่อเล่นสำหรับ {name} จะปรากฏในการสนทนาหนึ่งต่อหนึ่งและกลุ่ม" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} için bir takma ad seçin. Bu, bire bir ve grup sohbetlerinizde size görünecektir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виберіть псевдонім для {name}. Він з'являтиметься в особистих та групових розмовах." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} کے لئے ایک عرفی نام منتخب کریں۔ یہ آپ کو آپ کی ایک سے ایک اور گروپ گفتگو میں ظاہر ہوگا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} uchun bir taxallus tanlang. Bu, sizning bir-birli va guruh suhbatlaringizda ko'rinadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn một biệt danh cho {name}. Điều này sẽ xuất hiện với bạn trong các cuộc trò chuyện một-một và nhóm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha igama lesidlaliso ku {name}. Oku kuya kubonakala kuwe kwiincoko zakho zijongene nezimbini." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "为 {name}选择一个昵称。该昵称将在您的一对一和群组对话中显示。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "為 {name} 選擇一個暱稱。這將在您的一對一和群組對話中顯示。" + } + } + } + }, + "nicknameEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer bynaam in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل اسم مستعار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ləqəb daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نک نیم درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце псеўданім" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете псевдоним" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাকনাম লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix una sobrenom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte přezdívku" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch lysenw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast et kaldenavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spitzname eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε ένα ψευδώνυμο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter nickname" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entajpu alnomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escriba un apodo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escriba un apodo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestage hüüdnimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu ezizena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام مستعار وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä lempinimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglagay ng nickname" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saisissez un surnom" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza un alcume" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sunan yabo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן כינוי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपनाम दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite nadimak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a becenevet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրե՛ք կեղծանունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci soprannome" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ニックネームを入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ მეტსახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូលឈ្មោះហៅក្រៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡು ಕಂಪನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "닉네임을 입력하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوی باوکەل بنووسە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza erinnya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນຊື່ທີ່ໃຊ້ເທບ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite slapyvardį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet segvārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете прекар" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэр оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan nama samaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်ပြကွက် မျက်နှာပြင်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn et kallenavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "निकनेम प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijnaam invoeren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn eit kallenamn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani dzina lotsogola" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਨਾਮ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź pseudonim" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خلا کوي ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira um apelido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza uma alcunha" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți pseudonimul dorit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите ник" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi nadimak" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අන්වර්ථ නාමයක් ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prezývku" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite vzdevek" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni pseudonimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите надимак" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite nadimak" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange smeknamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka jina la utani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புனைப்பெயரை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మారుపేరును ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนชื่อเล่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir kullanıcı adı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть псевдонім" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرفیت درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taxallusni kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập biệt danh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-nickname" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入昵称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入暱稱" + } + } + } + }, + "nicknameRemove" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder bynaam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة الاسم المستعار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ləqəbi sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقب برس ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць мянушку" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на прякор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাকনাম সরান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina sobrenom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit přezdívku" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu llysenw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern brugernavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spitzname entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Ψευδώνυμου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Nickname" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi alnomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar apodo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar apodo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda hüüdnimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goitizena kendu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف نام مستعار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista lempinimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanggalin ang palayaw" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer le surnom" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar nome" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire sunan barkwanci" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר כינוי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपनाम हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni nadimak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Becenév eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել մականունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "hapus nama panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi soprannome" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ニックネームを削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მეტსახელის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកឈ្មោះហៅក្រៅចោល" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮರೆಯಲು ಲೆಕ್ಕಹೆಸರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "닉네임 제거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "لابردنی ناوی مستعار" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo Elinya ery'omuweereza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti slapyvardį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt iesauku" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани прекар" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэр устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar nama samaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နာမည်ခေါ်အား ဖယ်ရှားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern kallenavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपनाम हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder bijnaam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern kallenavn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani dzina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਨਾਮ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń pseudonim" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تخلص لرې کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover apelido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover alcunha" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină pseudonimul" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить имя пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni nadimak" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපනාමය ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť prezývku" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani vzdevek" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe pseudonimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони надимак" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni nadimak" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort smeknamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa jina la utani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெயரடை அகற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మారుపేరు తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบชื่อเล่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takma adı kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити нікнейм" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرفیت حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taxallusni olib tashlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa biệt danh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa igama lesidlaliso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除昵称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除暱稱" + } + } + } + }, + "nicknameSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel bynaam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين الاسم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ləqəb təyin et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لقب مقرر کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Новая мянушка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на прякор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাকনাম সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir sobrenom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit přezdívku" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Llysenw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil brugernavn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spitzname festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Ψευδώνυμου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Nickname" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Kromnomon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Apodo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir apodo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra hüüdnimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezizen bat ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم نام مستعار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta lempinimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang Nickname" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir un surnom" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Alcume" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Lakanin Suna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר כינוי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "उपनाम सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi nadimak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Becenév beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել մականուն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Nama Panggilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta soprannome" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Nickname" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მეტსახელის მითითება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់ឈ្មោះហៅក្រៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಡುಹೆಸರನ್ನು ಸೆಟ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "닉네임 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانانی ناوی نووسی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Erinnya Eddogo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti pravardę" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Lietotājvārdu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Прекар" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хочоо тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Nama Panggilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နာမည်သတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett kallenavn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "निकनेम सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bijnaam instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Nickname" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Nickname" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਉਪਨਾਮ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw pseudonim" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوم مستعار تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Apelido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurar Alcunha" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează pseudonim" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задать имя пользователя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi nadimak" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපනාමය සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť prezývku" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi vzdevek" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Pseudonimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави надимак" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi nadimak" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange smeknamn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Jina la Utani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புனைப்பெயரை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మారుపేరు సెట్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งชื่อเล่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takma Ad Belirle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Встановити псевдонім" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرفیت سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taxallus belgilang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập Biệt Danh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Nickname" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置昵称" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定暱稱" + } + } + } + }, + "no" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nee" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xeyr" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "না" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nej" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όχι" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خیر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "A'a" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ոչ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "いいえ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "No" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "아니요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "نەخێر" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedda" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nē" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မဟုတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nei" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "होइन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nee" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nei" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැහැ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nej" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hayır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ні" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hayi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "否" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "否" + } + } + } + }, + "none" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا شيء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heç biri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нищо" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনটি নয়" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cap" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nic" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κανένα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "None" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ninguno" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ninguno" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puudub" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bat ere ez" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ‌کدام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei mitään" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ningunha" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ללא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुछ नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ništa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չկա" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "なし" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არაფერი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಯಾವುದೂ ಇಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neviens" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ништо" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Байхгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै पनि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimaykan" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuma" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fără" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niti jedna" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කිසිවක් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiaden" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brez" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asnjë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ништа" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ništa" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எதுவுமில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఏదీ కాదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มี" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiçbiri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Жодного" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی نہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無" + } + } + } + }, + "noSuggestions" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen Voorstelle" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا اقتراحات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təklif yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچں کہاون نا یافت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма прапаноў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма предложения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো প্রস্তাব নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sense suggeriments" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žádné návrhy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim Awgrymiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen forslag" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Vorschläge" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χωρίς Προτάσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No Suggestions" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniaj proponoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sin sugerencias" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sin sugerencias" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soovitusi pole" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago iradokizunik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بدون پیشنهاد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei ehdotuksia" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang Mga Mungkahi" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pas de suggestions" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen suxestións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu Shawarwari" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין הצעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई सुझाव नहीं हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema prijedloga" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincsenek javaslatok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Առաջարկներ չկան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ada sugesti" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun suggerimento" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "候補はありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შემოთავაზებები არაა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនមានយោបល់កែប្រែទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಯಾವುದೇ ಸಲಹೆಗಳು ಇಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "제안 사항 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ پێشنیاری نییە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali bisuubizo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "No Suggestions" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav ieteikumu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема предлози" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Санал байхгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada Cadangan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကြံဉာ၊ မရှိဘူး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen forslag" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै सुझाव छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen suggesties" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen forslag" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Zotsiriza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਸੁਝਾਅ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak sugestii" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ وړاندیزونه نشته" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem Sugestões" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem Sugestões" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fără sugestii" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет предложений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema prijedloga" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යෝජනා නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadne návrhy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni predlogov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk ka sugjerime" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема предлога" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema predloga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga förslag" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna Mapendekezo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பரிந்துரைகள் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సూచనలు ఏమి వద్దు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีคำแนะนำ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öneri Yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немає припущень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی تجاویز نہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takliflar yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có đề xuất" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho zithaziso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有拼写建议" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "沒有建議" + } + } + } + }, + "noteToSelf" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nota aan jouself" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملاحظة لنفسي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Özümə qeyd" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خشوا کارئی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаванае" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бележка за Мен" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নিজেকে নোট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifica-m'ho" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poznámka sobě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodyn i Fi Fy Hun" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egen note" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notiz an mich" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Να μην Ξεχάσω" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noto al Mi mem" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notas personales" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notas personales" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Märkus endale" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oharra Neure buruari" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یادداشت برای خود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestit itselleni" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paalala sa Sarili" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note à mon intention" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificarmo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nassi ga Kaina" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הערה לעצמי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खुद पर ध्यान दें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilješka sebi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privát feljegyzés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նշում ինքս ինձ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Catatan Pribadi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note personali" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "自分用メモ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Პირადი Ჩანაწერი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់ចំណាំ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನನಗಾಗಿ ಟಿಪ್ಪಣಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인용 메모" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تێبینی بۆ خۆت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekika nki nkyekyamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastabos sau" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojums man" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Белешка до себе" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өөртөө зурвас" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nota Kepada Diri" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မိမိအတွက် မှတ်စု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notat til meg selv" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफ्नो लागि नोट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notitie aan mezelf" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notat til meg sjølv" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gawo Langa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣੇ ਆਪ ਨੋਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moje notatki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل ځان ته یادداشت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recado para mim" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nota para mim" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notă personală" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заметки для Себя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osobna bilješka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්වයං සටහන්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poznámka pre seba" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osebna zabeležka" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shënim për Veten" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напомена за себе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napomena za sebe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Påminnelse till mig själv" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumbuka kwake" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுய குறிப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sviya gamanika" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความให้ตังเองจำไว้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendime Not" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нотатка для себе" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خود کو نوٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'zizga eslatma" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi lời nhắc cho chính mình" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umbhalo kuZihlandlo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "备忘录" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "小筆記" + } + } + } + }, + "noteToSelfEmpty" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het geen boodskappe in Nota aan Myself nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ليس لديك أي رسائل في ملاحظة لنفسي أو بمعنى آخر في الرسائل المحفوظة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Özümə qeyd\"də heç bir mesajınız yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی نوٹ تُ خود." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас няма паведамленняў у Захаваных для сябе." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нямате съобщения в Бележка до себе си." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নোট টু সেলফে কোনো মেসেজ নেই।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Encara no teniu missatges a Els meus missatges." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemáte žádné zprávy v Poznámka sobě." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes gennych negeseuon yn Note to Self." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen beskeder i Note to Self." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast keine Nachrichten in »Notiz an mich«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν έχετε μηνύματα στο Σημείωμα για Εμένα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You have no messages in Note to Self." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne havas mesaĝojn en Note to Self." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes mensajes en Nota personal." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No tienes mensajes en Nota personal." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil ei ole sõnumeid kaustas Märkus endale." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez daukazu mezurik Note to Self-n." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما در «یادداشت به خود» هیچ پیامی ندارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omissa muistiinpanoissasi ei ole viestejä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wala kang mga mensahe sa Note to Self." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez aucun message dans Note à mon intention." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non tes mensaxes en Nota a Min Mesmx." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba ku da saƙonni a Note to Self." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אין לך הודעות בהערה לעצמי." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पास Note to Self में कोई संदेश नहीं हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate poruka u Note to Self." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Privát feljegyzésed üres." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք չունեք հաղորդագրություններ Ինքն իր հետ բաժնում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak memiliki pesan di Catatan Sendiri." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai messaggi nelle note personali." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Selfにはメッセージがありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენს დამოკიდებულებებზე არ გაქვთ მესიჯები." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនមានសារណាទេនៅក្នុងចំណាំឲ្យខ្លួនឯង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೋಟ್ ಟು ಸೆಲ್ಫ್‌ನಲ್ಲಿ ನಿಮ್ಮ ಬಳಿ ಯಾವುದೇ ಸಂದೇಶಗಳಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인용 메모에 메시지가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ هیچ پەیامێکت نییە لە \"Note to Self\"." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolina bubaka wona mu Note to Self." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neturite žinučių skiltyje „Pastaba sau“." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs vēl neesat nosūtījis nevienu ziņojumu pati sev." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате пораки во Забелешка за себе." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны Note to Self-д мессэж байхгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tiada mesej dalam Note to Self." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self တွင် မက်ဆေ့ချ် မရှိသေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har ingen meldinger i Egne notater." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंसँग स्वयम्-नोटमा कुनै सन्देशहरू छैनन्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft geen berichten in Notitie naar Mijzelf." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga meldingar i Note to Self." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simulayambe kutumiza mauthenga m'zilembo zanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਕੋਲ 'Note to Self' ਵਿੱਚ ਕੋਈ ਮੈਸਜ ਨਹੀਂ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie masz żadnych wiadomości w swoich notatkach." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو په \"Note to Self\" کې هېڅ پیغامونه نلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não tem mensagens em Notas para si Mesmo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não possui mensagens em Nota Pessoais." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu ai mesaje în Notă personală." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас нет сообщений в Заметках для Себя." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemaš poruke u Bilješkama za Sebe." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self යේ ඔබට කිසිදු පණිවිඩයක් නැත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "V Poznámkach pre seba nemáte žiadne správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimate nobenih sporočil v Zapiski zase." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk keni mesazhe në Noto për Vete." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немате порука у Белешци за Себе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemate nijednu poruku u Beleške sebi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har inga meddelanden i Note to Self." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hauna jumbe katika Note to Self." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களின் \"சுய குறிப்பில் (Note to Self)\" எதுவும் இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు Note to Self లో సందేశాలు లేవు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่มีข้อความในบันทึกถึงตัวเอง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self'de mesajınız yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "У вас немає повідомлень в Нотатках для себе." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے پاس Note to Self میں کوئی پیغامات نہیں ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không có tin nhắn nào trong Ghi chú cho bản thân." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akunamiyalezo ku Qaphele kuZimeleyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在备忘录中没有消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您在「小筆記」中沒有任何訊息。" + } + } + } + }, + "noteToSelfHide" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verskuil Nota aan Jouself" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء ملاحظة لنفسي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Özümə Qeyd\"i gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خدایء ورپڑانی چیزاں پاہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаванае" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрий Лична бележка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নিজেকে নোট করুন লুকান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga Nota Personal" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrýt Poznámku sobě" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio Nodyn i Mi Fy Hun" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Note til Egen Note" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "»Notiz an mich« ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη Σημείωμα για Εμένα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Note to Self" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi Noton al Mi mem" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Notas personales" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar notas personales" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida Märkus endale" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezkutatu Note to Self" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پنهان کردن یادداشت برای خود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota Oma muistiinpano" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago ang Note to Self" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacher la Note à soi-même" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agochar Notificarmo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boye Nóta zuwa Ga Kaina" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר הערה לעצמי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने लिए नोट छुपाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij Bilješka sebi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privát feljegyzés elrejtése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թաքցնել Նշում ինքս ինձ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Note to Self" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi note personali" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "自分用メモを隠す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირადი ჩანაწერის დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់កំណត់ចំណាំខ្លួនឯង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನನಗಾಗಿ ಟಿಪ್ಪಣಿ ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인용 메모 숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارەوەی نووسین بۆ خۆت" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka Katonda amuka nenze" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slėpti Pastabą sau" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slēpt Piezīmi sev" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сокриј Забелешка за Себе" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note to Self-ийг нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Nota kepada Diri" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Note to Self" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Notat til meg selv" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफैलाई नोट लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notitie aan mezelf verbergen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Notat til meg sjølv" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa Note to Self" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨੋਟ ਨੂੰ ਖੁਦ ਥੱਲੇ ਖਿਸਕਾਉ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj swoje notatki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ځانګړي یادښتونه پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Nota para Si" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Nota Pessoal" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde Notă personală" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Заметки для Себя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij osobnu bilješku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්වයං සටහනක් සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť poznámku pre seba" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij osebno zabeležko" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi Shënimin për Veten" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакријте Напомена за себе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij Napomena za sebe" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göm Notera till mig själv" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha Kumbuka kwake" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுய குறிப்பு மறைக்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sviya gamanika మోహార్పించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อนข้อความให้ตัวเองจำไว้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendime Notu Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приховати нотатку для себе" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خود کو نوٹ کریں چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'zizga eslatma ni yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn Ghi chú bản thân" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla Qaphela kwi-Self" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐藏备忘录" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱藏小筆記" + } + } + } + }, + "noteToSelfHideDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil Nota aan jouself versteek?" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد إخفاء الملاحظة لنفسي؟" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Özümə Qeydi\"i gizlətmək istədiyinizə əminsiniz?" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی موزی 'Note to Self' چھپ بکنی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце схаваць Захаванае?" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да скриеш Лична бележка?" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি \"Note to Self\" গোপন করতে নিশ্চিত?" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu amagar Nota Personal?" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jste si jisti, že chcete skrýt Poznámku sobě?" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am guddio Nodyn i Fi Fy Hun?" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil skjule Note til dig selv?" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du »Notiz an mich« ausblenden möchtest?" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να αποκρύψετε το Να μην Ξεχάσω;" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to hide Note to Self?" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas kaŝi Noton al Mi mem?" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas ocultar Nota Personal?" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres ocultar Nota personal?" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite Märkust endale peita?" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude Norbere kontura ezkutatu nahi duzula?" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید یادداشت برای خود را پنهان کنید؟" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti piilottaa Oma muistiinpano?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong itago ang Paalala sa Sarili?" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir masquer Note à moi-même ?" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer ocultar Notificarmo?" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka ɓoye Note to Self?" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך להסתיר את ההערה לעצמי?" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई Note to Self को छिपाना चाहते हैं?" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite sakriti Bilješka?" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy el akarod rejteni a Privát feljegyzést?" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք թաքցնել «Նշում ինքս ինձ»:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menyembunyikan Catatan untuk Diri Sendiri?" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler nascondere le Note personali?" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当に「自分用メモ」を非表示にしますか?" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ Პირადი Ჩანაწერის დამალვა?" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់លាក់កំណត់ចំណាំខ្លួនឯង?" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು Note to Self ಅನ್ನು ಮರೆಮಾಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ?" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 개인용 메모를 숨기시겠습니까?" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "دڵنیایت دەتەوێت یادداشتی بۆ خوێندن بسڕیتەوە؟" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okuwandiika Note to Self?" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການລຶບ Note to Self?" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite paslėpti Pastabą sau?" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties slēpt piezīmi sev?" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да го сокриете \"Note to Self\"?" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та Note to Self-ийг нуухдаа итгэлтэй байна уу?" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyembunyikan Note to Self?" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မိမိအတွက် မှတ်စုကို ဖျောက်လိုသည်မှာ သေချာပါသလား။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil skjule Notat til meg selv?" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं Note to Self लुकाउन निश्चित हुनुहुन्छ?" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u Notitie aan jezelf wilt verbergen?" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å skjule Note to Self?" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kubisa Chidziwitso kwa Ineyo?" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ 'ਨੋਟ ਟੂ ਸੈਲਫ' ਨੂੰ ਛੁਪਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ?" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz ukryć swoją notatkę?" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ Note to Self پټ کړئ؟" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você tem certeza que deseja ocultar a Nota para Si Mesmo?" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza que pretende ocultar a Nota pessoal?" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești ascunderea Notei personale?" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите скрыть Заметки для Себя?" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš sakriti Note to Self?" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට Note to Self සඟවීමට අවශ්‍ය බව විශ්වාසද?" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete skryť Poznámku pre seba?" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite skriti Osebno zabeležko?" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshihni Shënimin për Veten?" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да сакријете Напомену за себе?" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da sakrijete Napomenu za sebe?" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill dölja Påminnelse till mig själv?" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuficha Note to Self?" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுய குறிப்பு மறைக்க விரும்புகிறீர்களா?" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు Note to Self ను దాచాలనుకుంటున్నారా?" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการซ่อนข้อความ Note to Self?" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendime Not'u gizlemek istediğinizden emin misiniz?" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви справді бажаєте приховати Нотатку для себе?" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی نوٹ ٹو سیلف کو چھپانا چاہتے ہیں؟" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham O'zizga eslatma yashirmoqchimisiz?" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn ẩn Ghi chú bản thân?" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukufihla amanqaku oKwazisa?" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要隐藏备忘录吗?" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要隱藏小筆記嗎?" + } + } + } + }, + "notificationsAllMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جميع الرسائل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bütün mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام پیغامات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усе паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Всички съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "All Messages" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tots els missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všechny zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pob Neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όλα τα μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "All Messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉiuj Mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todos los mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todos los mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kõik sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu guztiak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام پیام‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaikki viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lahat ng Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tous les messages" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todas as Mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dukan Saƙonni" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כל ההודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sve poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minden üzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բոլոր Հաղորդագրությունները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Semua pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tutti i messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべてのメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველა შეტყობინება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "All Messages" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەموو نامەکان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebubaka Byonna" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຂໍ້ຄວາມທັງໝົດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visos žinutės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visi ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сите пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүх мессежүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Semua Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မက်ဆေ့ချ်များ အားလုံး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै सन्देशहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle meldingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mauthenga Onse" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰੇ ਸੁਨੇਹੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wszystkie wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولې پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todas as Mensagens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Todas as Mensagens" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toate mesajele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Все сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sve poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියලු පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Všetky správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vsa sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krejt Mesazhet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Све поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sve poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alla meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe Zote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனைத்து தகவல்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tüm Mesajlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Всі повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام پیغامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barcha Xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tất cả tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zonke Imiyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "所有信息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "所有訊息" + } + } + } + }, + "notificationsContent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewings Inhoud" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "محتوى الإشعارات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildiriş məzmunu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پد ءِ مضمون" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Змест апавяшчэння" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съдържание на известието" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বিজ্ঞপ্তি বিষয়বস্তু" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contingut de notificacions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obsah upozornění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cynnwys Hysbysiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationsindhold" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungsinhalt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Περιεχόμενο Ειδοποιήσεων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notification Content" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciiga Enhavo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenido de las notificaciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenido de notificaciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teatiste sisu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenen Edukia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "محتوی اعلان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoituksen sisältö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Content ng Notipikasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenu de la notification" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contido da notificación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abunda ke Cikin Sanarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תוכן התראה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचना सामग्री" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadržaj obavijesti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések tartalma" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումների բովանդակություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isi Notifikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contenuto notifiche" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知内容" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების შინაარსი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្លឹមសារនៃការជូនដំណឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆ ವಿಷಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 내용" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناوەڕۆکی ئاگادارکردنەوە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebiraga Omukutu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimų turinys" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojuma saturs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Содржина на известувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдлийн агуулга" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kandungan Pemberitahuan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက် အကြောင်းအရာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsling innhold" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचना सामग्री" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificatie Inhoud" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varslingsinnhold" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zili Zotsatsira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾ ਸਮੱਗਰੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Treść powiadomień" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان منځپانګه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conteúdo da notificação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conteúdo da notificação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conținut notificări" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Содержимое уведомления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadržaj notifikacija" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීමේ අන්තර්ගතය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obsah upozornenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vsebina obvestil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përmbajtja e Njoftimeve" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Садржај обавештења" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadržaj notifikacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviseringsinnehåll" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maudhui ya Arifa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்பு உள்ளடக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనల విషయం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลการแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirim İçeriği" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вміст сповіщення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاع مواد" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnoma mazmuni" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nội dung thông báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso zoMyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知内容" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知內容" + } + } + } + }, + "notificationsContentDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die inligting wat in kennisgewings getoon word." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المعلومات معروضة في الإشعارات." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirişlərdə göstərilən məlumatlar." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوٹس میں دیکھاتل وط معلومات." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інфармацыя, якая адлюстроўваецца ў апавяшчэннях." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информацията, показана в известията." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নোটিফিকেশনে প্রদর্শিত তথ্য।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La informació que es mostra a les notificacions." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informace uvedené v upozorněních." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y wybodaeth a ddangosir mewn hysbysiadau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informationen vist i notifikationer." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Inhalt, der in den Benachrichtigungen angezeigt wird." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι πληροφορίες που εμφανίζονται στις ειδοποιήσεις." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The information shown in notifications." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "La informoj kiuj montritas ensciige." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "La información mostrada en las notificaciones." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La información que se muestra en las notificaciones." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teavitustes kuvatav teave." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenetan erakutsitako informazioa." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات نشان داده شده در اعلان ها." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoituksissa näytettävät tiedot." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang impormasyong ipinapakita sa mga notipikasyon." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les informations affichées dans les notifications." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A información amosada nas notificacións." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanin da aka nuna a cikin sanarwa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "המידע המוצג בהתראות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाओं में दिखाई गई जानकारी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije prikazane u obavijestima." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az értesítésekben megjelenő információ." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումներում ցուցադրված տեղեկատվությունը." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informasi yang ditampilkan dalam notifikasi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le informazioni mostrate nelle notifiche." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知に表示される情報" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ინფორმაცია ნოტიფიკაციებში ნაჩვენებია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មានដែលបានបង្ហាញនៅក្នុងការជូនដំណឹង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆಗಳಲ್ಲಿ ತೋರಿಸಲಾದ ಮಾಹಿತಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림에서 표시되는 정보" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئەو زانیارییەکانەی کە لە ئاگانامەکان دا پیدانی دەکرێ." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebyokubuliza ebiweebwa mu bubaka obwaweebwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacija rodoma pranešimuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņojumu saturs, kas tiek rādīts paziņojumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информациите покажани во известувањата." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдэлд харуулсан мэдээлэл." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maklumat yang ditunjukkan di dalam pemberitahuan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များတွင် ပြထားသော အချက်အလက်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informasjonen som vises i varslinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाहरूमा देखाइएको जानकारी।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "De informatie getoond in meldingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informasjonen som vises i varslinger." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri zomwe zimawonetsedwa m'mazindikiridwe." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾਵਾਂ ਵਿੱਚ ਦਿਖਾਈ ਗਈ ਜਾਣਕਾਰੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacje wyświetlane w powiadomieniach." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په خبرتیاوو کې ښودل شوې معلومات." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "As informações exibidas nas notificações." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A informação exibida nas notificações." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informaţiile prezentate în notificări." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация, отображаемая в уведомлениях." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije prikazane u obavijestima." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීමන්වල පෙන්වන තොරතුරු." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informácie zobrazené v notifikáciach." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije, prikazane v obvestilih." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacioni i shfaqur në njoftime." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информација приказана у обавештењима." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije prikazane u obaveštenjima." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informationen som visas i aviseringar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taarifa iliyoonyeshwa kwenye arifa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்புகளில் காணப்படும் தகவல்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నోటిఫికేషన్లలో చూపే సమాచారం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลที่แสดงในการแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirimlerde gösterilen bilgiler." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інформація, що показується в сповіщеннях." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات میں دکھائی جانے والی معلومات۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar bildirishnomalarda ko'rsatilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông tin hiển thị trong thông báo." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulwazi olubonisiwe kwizaziso." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在通知中显示的信息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在通知面板中展示的資訊。" + } + } + } + }, + "notificationsContentShowNameAndContent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naam en Inhoud" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاسم والمحتوى" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ad və məzmun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام ءَء مضمونی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Імя і змест" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Име на изпращача и съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নাম এবং বিষয়বস্তু" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom i contingut" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jméno a obsah" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enw a Chynnwys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navn og Indhold" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name und Inhalt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όνομα και Περιεχόμενο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name and Content" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nomo kaj Enhavo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remitente y contenido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre y contenido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimi ja sisu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izena eta Edukia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام و محتوا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimi ja sisältö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangalan at Content" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom et contenu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome e Contido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunnah da Abinda Ya Kunshi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שם השולח והודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "नाम और सामग्री" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime i sadržaj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feladó neve és az üzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անուն և բովանդակություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama dan Isi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome e contenuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "名前とメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სახელი და შინაარსი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈ្មោះ និងមាតិកា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೆಸರು ಮತ್ತು ವಿಷಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이름 및 내용" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناو و ناوەڕۆکی" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinnya n’Omulembe" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vardą ir turinį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vārds un saturs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Име и содржина" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэр ба агуулга" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama dan Kandungan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်နှင့် အကြောင်းအရာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navn og innhold" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नाम र सामग्री" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naam en inhoud" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navn og innhald" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzina ndi Zili" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਨਾਂਅ ਅਤੇ ਸਮੱਗਰੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nazwa i zawartość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوم او منځپانګه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome e conteúdo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome e conteúdo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nume și conținut" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имя и содержимое" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime i sadržaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නම සහ අන්තර්ගතය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meno a obsah" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime in vsebina" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emrin e dërguesit dhe mesazhin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Име и садржај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ime i sadržaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Namn och innehåll" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jina na Maudhui" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெயர் மற்றும் உள்ளடக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పేరు మరియు విషయము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อและข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ad ve İçerik" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ім'я та вміст" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام اور مواد" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ism va Mazmun" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tên và Nội dung" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igama kunye neziqulatho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送者和信息内容" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "名稱與內容" + } + } + } + }, + "notificationsContentShowNameOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slegs Naam" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاسم فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız ad" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نام تےءِ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Толькі імя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само име на изпращача" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধু নাম" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Només Nom" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pouze jméno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enw yn unig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun Navn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur Name" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μόνο Όνομα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name Only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nura Nomo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo nombre de contacto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo nombre" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainult nimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izena bakarrik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط نام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vain nimi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangalan Lamang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nom uniquement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Só o nome" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunnah Kadai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "רק את שם השולח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल नाम" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo ime" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csak a feladó neve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միայն անունը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama Saja" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo nome" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "名前のみ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ სახელი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឈ្មោះតែប៉ុណ្ណោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೆಸರು ಮಾತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이름만" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تەنها ناو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erinnya kyokka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik vardą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tikai vārds" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само име" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн нэр" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nama Sahaja" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်သာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun navn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल नाम" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen naam" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun navn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shutilla" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੇਵਲ ਨਾਮ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tylko nazwa" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې نوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome somente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas o nome" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doar numele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Только имя" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo ime" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නම පමණි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iba meno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo ime" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vetëm emër dërguesi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само име" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo ime" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endast namn" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "jina tu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெயர் மட்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పేరు మాత్రమే" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เฉพาะชื่อผู้ส่ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadece İsim" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тільки ім'я" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف نام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat ism" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ tên người gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igama Lodwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅显示发送者" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "僅名稱" + } + } + } + }, + "notificationsContentShowNoNameOrContent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen Naam of Inhoud" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بدون اسم او محتوى" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ad və ya məzmun yoxdur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نه نام نه مضمون" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без імя або змесціва" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нито име, нито съобщение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো নাম বা বিষয়বস্তু নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sense nom ni contingut" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ani jméno ani zpráva" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim Enw neu Gynnwys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Intet Navn eller Indhold" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kein Name oder Inhalt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χωρίς Όνομα ή Περιεχόμενο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No Name or Content" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nek Nomo nek Enhavo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sin nombre ni contenido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni remitente ni contenido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nimi või sisu puudub" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez Izena eta Edukia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نه نام و نه متن پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei nimeä tai sisältöä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang Pangalan o Content" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun nom ni contenu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen Nome ou Contido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu Sunnah Ko Abinda Yake Kunshi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא שם ולא הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई नाम या सामग्री नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez imena ili sadržaja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se név, se üzenet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Առանց անվան կամ բովանդակության" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanpa Nama atau Isi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun nome o contenuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "名前もメッセージも無し" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არც სახელი, არც შინაარსი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មានឈ្មោះ ឬមាតិកា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೆಸರು ಅಥವಾ ವಿಷಯವಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이름 또는 내용 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بێ ناو یان ناوەڕۆک" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewali Erinnya oba omulembe" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jokio vardo ar turinio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne vārds, ne saturs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без име или содржина" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэр ба агуулга байхгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada Nama atau Kandungan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည် သို့မဟုတ် အကြောင်းအရာ မရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uten navn eller innhold" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "नाम वा सामग्री छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen naam of inhoud" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verken navn eller innhold" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Dzina Kapena Zili" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਨਾਮ ਜਾਂ ਸਮੱਗਰੀ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak nazwy lub zawartości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نه نوم او نه منځپانګه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem nome ou conteúdo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem nome nem conteúdo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fără nume sau conținut" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет имени или сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema imena i sadržaja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නමක් හෝ අන්තර්ගතයක් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ani meno ani obsah" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brez imena ali vsebine" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "As emrin, as mesazhin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скривено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez imena i poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inget namn eller innehåll" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna Jina wala Maudhui" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெயர் அல்லது உள்ளடக்கம் கிடையாது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పేరు మరియు విషయం లేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่แสดงข้อมูลเลย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ad veya İçerik Yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без імен або вмісту" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نہ نام نہ مواد" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nomi yoki mazmuni yo'q" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không hiện tên cũng như tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho gama okanye iziqulatho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "不显示发送者和信息内容" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "沒有名稱或內容" + } + } + } + }, + "notificationsFastMode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الوضع السريع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sürətli rejim" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуткі рэжым" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode ràpid" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rychlý režim" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hurtig Tilstand" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schnellmodus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γρήγορη Λειτουργία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rapida Reĝimo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Rápido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Rápido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiire režiim" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالت سریع" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode rapide" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מצב מהיר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "तीव्र विधा |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brzi način" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gyors mód" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արագ ռեժիմ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modalità rapida" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "高速モード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មុខងាររហ័ស" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast 모드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greita veiksena" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ātrais režīms" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rask modus" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खानेकुरा र पिउने कदरहरु" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Snelle modus" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryb szybki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Rápido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Rápido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mod rapid" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Быстрый Режим" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brzi režim" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වේගවත් මාදිලිය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rýchly režim" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitri način" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Snabbläge" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtindo wa Kiharaka" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหมดเร็ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hızlı Mod" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Швидкий режим" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast Mode" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "高速模式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "快速模式" + } + } + } + }, + "notificationsFastModeDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy sal onmiddellik en betroubaar in kennis gestel word van nuwe boodskappe deur Google's kennisgewingbedieners te gebruik." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستتم إعلامك بالرسائل الجديدة بشكل موثوق وفوري باستخدام خوادم إشعارات جوجل." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google-un bildiriş serverlərini istifadə edərək yeni mesajlardan güvənli və dərhal xəbərdar olacaqsınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی نیا پیغاماتاں بی اعتدالے خطہ گوگلے کہ نوٹفیکشن سروسس." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы будзеце атрымліваць апавяшчэнні аб новых паведамленнях надзейна і адразу ж з дапамогай сервераў апавяшчэнняў Google." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ще бъдете уведомявани за нови съобщения надеждно и незабавно, като използвате сървърите за известия на Google." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গুগোল এর নোটিফিকেশন সার্ভার ব্যবহার করে আপনি নতুন মেসেজগুলি দ্রুত এবং নির্ভরযোগ্য ভাবে প্রাপ্ত হবেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rebreu una notificació dels missatges nous de manera fiable i immediata mitjançant els servidors de notificacions de Google." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na nové zprávy budete spolehlivě a okamžitě upozorněni pomocí serverů Google." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byddwch yn cael hysbysu am negeseuon newydd yn ddibynadwy ac yn syth gan ddefnyddio Gwasanaethau Hysbysiad Google." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du får besked om nye meddelelser pålideligt og straks ved hjælp af Googles notifikationsservere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Über die Benachrichtigungsserver von Google wirst du sofort und zuverlässig über neue Nachrichten benachrichtigt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα ειδοποιηθείτε για νέα μηνύματα αξιόπιστα και άμεσα χρησιμοποιώντας τους διακομιστές ειδοποιήσεων της Google." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You'll be notified of new messages reliably and immediately using Google's notification Servers." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estos sciigita pri novaj mesaĝoj fidinde kaj tuj uzante la sciigajn servilojn de Google." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se te notificará de nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Google." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se te notificará de nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Google." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google'i teavitusserverite abil teavitatakse teid uutest sõnumitest kohe ja usaldusväärselt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu berriak fidel eta berehalakoan jasoko dituzu Google-ren jakinarazpen-zerbitzuak erabiliz." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما با استفاده از سرورهای اطلاع‌رسانی گوگل به صورت سریع و مطمئن از پیام‌های جدید مطلع خواهید شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusista viesteistä ilmoitetaan luotettavasti ja viiveettä Googlen ilmoituspalvelinten avulla." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maaabisuhan ka tungkol sa mga bagong mensahe nang maaasahan at kaagad gamit ang mga server ng notipikasyon ng Google." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous serez averti de nouveaux messages de manière fiable et immédiate en utilisant les serveurs de notification de Google." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibirás notificacións de novas mensaxes de forma fiable e inmediata utilizando os Servidores de notificacións de Google." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku sami sanarwar sabbin sakonni cikin sauri da inganci ta amfani da sabar sanarwa ta Google." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תקבל התראה על הודעות חדשות באופן מהימן ומיידי באמצעות שרתי ההתראות של Google." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको नई सूचनाओं के बारे में Google के नोटीफिकेशन servers से तत्काल सूचित किया जाएगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "O novim ćete porukama biti obaviješteni odmah i pouzdano pomoću Googleovih poslužitelja za obavijesti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Google értesítési szerverein keresztül megbízhatóan és azonnal értesítést kapsz az új üzenetekről." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նոր հաղորդագրությունների մասին դուք անպայման և անմիջապես կտեղեկացվեք Google-ի ծանուցումների սերվերների միջոցով։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan menerima pesan baru dengan andal dan cepat menggunakan server notifikasi Google." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riceverai notifiche di nuovi messaggi in modo affidabile e immediato utilizzando i server di notifica di Google." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Googleの通知サーバーを使用して、新しいメッセージが確実かつ即座に通知されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენში შეტყობინებები აღიქმება საიმედოდ და დაუყოვნებლივ Google-ის შეტყობინებების სერვერების გამოყენებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​នឹង​ទទួលបានការជូនដំណឹង​អំពី​សារថ្មី ដែលជឿជាក់បាន និង​រហ័ស ដោយប្រើម៉ាស៊ីនមេនៃការជូនដំណឹងរបស់ Google។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಗೂಗಲ್ ನ ಘೋಷಣೆ ಸರ್ವರ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹೊಸ ಸಂದೇಶಗಳ ಬಗ್ಗೆ ನಿಖರವಾಗಿ ಮತ್ತು ತಕ್ಷಣಗಾಗಿಯೇ ತಿಳಿಸಲಾಗುವುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google의 알림 서버를 사용하여 새 메시지를 확실하고 즉각적으로 알려드립니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەتوانی پەیامە نوێکان پشتگیری بکەی بێگومان و بەخێری ییەیە بە بەکاربردنی خانووەکان گوگڵ" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ojakufuna obubaka obujja mu gihe n'amaanyi nga usinga Google's notification Servers." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums bus nedelsiant ir patikimai pranešama apie naujas žinutes, naudojant „Google“ pranešimų serverius." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs saņemsiet paziņojumus par jauniem ziņojumiem droši un nekavējoties, izmantojot Google paziņojumu serverus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе бидете известени за нови пораки доверливо и веднаш користејќи ги Google-овите сервери за известување." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google-ийн мэдэгдлийн серверээр дамжуулан та шинэ мессежүүдийг найдвартай, шууд мэдээлэл авна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan diberitahu tentang mesej baru dengan segera menggunakan Pelayan pemberitahuan Google." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်အသစ်ရရှိသော မက်ဆေ့ချ်များကို Google's notification Servers အသုံးပြုပြီး ယုံကြည်စိတ်ချရပြီး ချက်ချင်းရမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil bli varslet om nye meldinger, pålitelighet og med en gang ved hjelp av Googles varslingsservere." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई गुगलको सूचना सर्वरमार्फत नयाँ सन्देशहरूको विश्वसनीय रूपमा र तुरुन्तै सूचित गरिनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U wordt op een betrouwbare en directe manier op de hoogte gebracht van nieuwe berichten via Googles notificatieservers." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil bli varsla om nye meldingar på ein pålitelig måte, og umiddelbart ved hjelp av Googles varslingsservere." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mudzasinthidwa mosatsimikizika ndi mwachangu ndi ma seva a zidziwitso a Google." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਨਵੇਂ ਸੰਦੇਸ਼ਾਂ ਦੀ ਸੂਚਨਾ Google ਦੇ ਨੋਟੀਫਿਕੇਸ਼ਨ ਸਰਵਰਾਂ ਰਾਹੀਂ ਵਿਸ਼ਵਾਸਯੋਗ ਅਤੇ ਤੁਰੰਤ ਮਿਲੇਗੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dzięki serwerom powiadomień Google będziesz zawsze i natychmiast otrzymywać powiadomienia o nowych wiadomościach." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو به په اعتماد سره او سمدستي نوي پیغامونه د ګوګل د خبرتیا سرورونو په کارولو ترلاسه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você será notificado de forma confiável e imediata sobre novas mensagens usando os servidores de notificação da Google." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Será notificado sobre novas mensagens de forma consistente e imediata usando os servidores de notificação do Google." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veți fi notificat de mesaje noi imediat și în siguranță folosind serverele de notificare Google." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы будете получать новые сообщения надежно и мгновенно через серверы уведомлений Google." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bit ćeš obaviješten o novim porukama pouzdano i odmah pomoću Google-ovih servera za obavijesti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google අනාවැකිය සේවාදායකයන් භාවිතයෙන් ඔබට විශ්වාසවන්තව සහ වහාම නව පණිවිඩ ගැන දැනුම් දෙනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Budete upozornený/á na nové správy spoľahlivo a okamžite použitím serverov Google." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O novih sporočilih boste obveščeni hitro in zanesljivo s strežniki za obveščanje Google." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do të njoftoheni për mesazhe të reja menjëherë dhe me besueshmëri duke përdorur Serverët e njoftimeve të Google." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бићете обавештени о новим порукама поуздано и одмах користећи Гуглове нотификационе сервере." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bićete obavešteni o novim porukama pouzdano i odmah koristeći Google-ove servere za obaveštavanje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kommer att meddelas om nya meddelanden på ett tillförlitligt sätt och omedelbart genom att använda Googles aviseringsservrar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utaarifiwa kuhusu ujumbe mpya kwa uhakika na mara moja kwa kutumia seva za arifa za Google." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google சர்வர்களின் அறிவிப்பு (notification Servers) மூலம் புதிய செய்திகளின் அறிக்கையை பெறுவீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు కొత్త సందేశాలకు నమ్మదగిన మరియు తక్షణంగా Google యొక్క నోటిఫికేషన్ సర్వర్లను ఉపయోగించి నెరేవులబాటు పొందుతారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณจะได้รับการแจ้งเตือนเมื่อมีข้อความใหม่ที่เชื่อถือได้และทันทีโดยใช้เซิร์ฟเวอร์การแจ้งเตือนของ Google" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google'ın bildirim sunucularını kullanarak yeni iletilerden güvenilir ve anında haberdar olacaksınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримуватимете сповіщення про нові повідомлення надійно та одразу за допомогою серверів сповіщень Google." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو نئے پیغامات کی Google کے نوٹیفیکیشن سرورز کے ذریعے بلا تاخیر اور مستند طریقے سے اطلاع ہو گی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi xabarlar Apple ning notification servers orqali toʻgʻri va darhol bildiriladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn sẽ nhận được thông báo về tin nhắn mới đáng tin cậy và ngay lập tức bằng cách sử dụng Máy chủ thông báo của Google." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uya kwaziswa ngokukhawuleza nangokuthembekile kwimiyalezo emitsha usebenzisa iiSefva ze-Google ezaziswayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您将会收到由Google的通知服务器发出的即时可靠的新消息通知。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您將會透過 Google 的通知服務可靠且迅速的收到通知。" + } + } + } + }, + "notificationsFastModeDescriptionIos" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy sal onmiddellik en betroubaar in kennis gestel word van nuwe boodskappe deur Apple's kennisgewingbedieners te gebruik." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سوف يتم إعلامك برسائل جديدة بشكل موثوق وفوري باستخدام خوادم إشعارات Apple." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple-ın bildiriş serverlərini istifadə edərək yeni mesajlardan güvənli və dərhal xəbərdar olacaqsınız." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی نیا پیغاماتاں بی اعتدالے خطہ اپل کہ نوٹفیکشن سروسس." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы будзеце атрымліваць апавяшчэнні аб новых паведамленнях надзейна і адразу ж з дапамогай сервераў апавяшчэнняў Apple." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ще бъдете уведомявани за нови съобщения надеждно и незабавно, като използвате сървърите за известия на Apple." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপেল এর নোটিফিকেশন সার্ভার ব্যবহার করে আপনি নতুন মেসেজগুলি দ্রুত এবং নির্ভরযোগ্য ভাবে প্রাপ্ত হবেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rebreu una notificació dels missatges nous de manera fiable i immediata mitjançant els servidors de notificacions d'Apple." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na nové zprávy budete spolehlivě a okamžitě upozorněni pomocí serverů Apple." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Byddwch yn cael hysbysu am negeseuon newydd yn ddibynadwy ac yn syth gan ddefnyddio Gwasanaethau Hysbysiad Apple." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil få notifikationer om nye beskeder øjeblikkeligt ved hjælp af Apples notifikations servere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Über Apples Push-Mitteilungsdienst wirst du sofort und zuverlässig über neue Nachrichten benachrichtigt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Θα ειδοποιηθείτε για νέα μηνύματα αξιόπιστα και άμεσα χρησιμοποιώντας τους διακομιστές ειδοποιήσεων της Apple." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You'll be notified of new messages reliably and immediately using Apple's notification Servers." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi estos sciigita pri novaj mesaĝoj fidinde kaj tuj uzante la sciigajn servilojn de Apple." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se le notificará de los nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Apple." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se te notificará de nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Apple." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple'i teavitusserverite abil teavitatakse teid uutest sõnumitest kohe ja usaldusväärselt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu berriak fidel eta berehalakoan jasoko dituzu Apple-ren jakinarazpen-zerbitzuak erabiliz." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با استفاده از سرورهای اطلاع رسانی اپل، شما به صورت سریع و مطمئن از پیام‌های جدید مطلع می‌شوید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusista viesteistä ilmoitetaan luotettavasti ja viiveettä Applen ilmoituspalvelinten avulla." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maaabisuhan ka tungkol sa mga bagong mensahe nang maaasahan at kaagad gamit ang mga server ng notipikasyon ng Apple." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous serez averti de nouveaux messages de manière fiable et immédiate en utilisant les serveurs de notification d'Apple." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibirás notificacións de novas mensaxes de forma fiable e inmediata utilizando os Servidores de notificacións de Apple." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku sami sanarwar sabbin sakonni cikin sauri da inganci ta amfani da sabar sanarwa ta Apple." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תקבל התראה על הודעות חדשות באופן מהימן ומיידי באמצעות שרתי ההתראות של Apple." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको नई सूचनाओं के बारे में Apple के नोटीफिकेशन servers से तत्काल सूचित किया जाएगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "O novim ćete porukama biti obaviješteni odmah i pouzdano pomoću Appleovih poslužitelja za obavijesti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az Apple értesítési szerverein keresztül megbízhatóan és azonnal értesítést kapsz az új üzenetekről." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք մշտապես և անմիջապես կտեղեկացվեք նոր հաղորդագրությունների մասին օգտագործելով Apple's ծանուցումների սերվերները։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan menerima pesan baru dengan andal dan cepat menggunakan server notifikasi Apple." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riceverai notifiche di nuovi messaggi in modo affidabile e immediato utilizzando i server di notifica di Apple." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appleの通知サーバーの利用で、すぐかつ確実に新しいメッセージの受信を通知されます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენში შეტყობინებები აღიქმება საიმედოდ და დაუყოვნებლივ Apple-ის შეტყობინებების სერვერების გამოყენებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​នឹង​ទទួលបានការជូនដំណឹង​អំពី​សារថ្មី ដែលជឿជាក់បាន និង​រហ័ស ដោយប្រើម៉ាស៊ីនមេនៃការជូនដំណឹងរបស់ Apple។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು Apple ನ ಘೋಷಣೆ ಸರ್ವರ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹೊಸ ಸಂದೇಶಗಳ ಬಗ್ಗೆ ನಿಖರವಾಗಿ ಮತ್ತು ತಕ್ಷಣಗಾಗಿಯೇ ತಿಳಿಸಲಾಗುವುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple의 알림 서버를 사용하여 새 메시지를 확실하고 즉각적으로 알려드립니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "تۆ دەتوانی پەیامە نوێکان پشتگیری بکەی بێگومان و بەخێری ییەیە بە بەکاربردنی خانووەکانی ناوتۆماسیانەی ئەپل" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ojakufuna obubaka obujja mu gihe n’amaanyi nga usinga Apple's notification Servers." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums bus nedelsiant ir patikimai pranešama apie naujas žinutes, naudojant „Apple“ pranešimų serverius." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs saņemsi paziņojumus par jauniem ziņojumiem droši un nekavējoties, izmantojot Apple paziņojumu pakalpojumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ќе бидете известени за нови пораки доверливо и веднаш користејќи ги Apple-овите сервери за известување." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple-ийн мэдэгдлийн серверээр дамжуулан та шинэ мессежүүдийг найдвартай, шууд мэдээлэл авна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda akan diberitahu tentang mesej baru dengan segera menggunakan Pelayan pemberitahuan Apple." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်အသစ်ရရှိသော မက်ဆေ့ချ်များကို Apple's notification Servers အသုံးပြုပြီး ယုံကြည်စိတ်ချရပြီး ချက်ချင်းရမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil bli varslet om nye meldinger, pålitelighet og med en gang ved hjelp av Apple's varslingsserver." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंलाई एप्पलको सूचना सर्वरमार्फत नयाँ सन्देशहरूको विश्वसनीय रूपमा र तुरुन्तै सूचित गरिनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U wordt op een betrouwbare en directe manier op de hoogte gebracht van nieuwe berichten via Apple's notificatieservers." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du vil bli varsla om nye meldingar på pålitelig og umiddelbar ved hjelp av Apple's varslingsservere." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mudzasinthidwa mosatsimikizika ndi mwachangu ndi ma seva a zidziwitso a Apple." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਨਵੇਂ ਸੰਦੇਸ਼ਾਂ ਦੀ ਸੂਚਨਾ Apple ਦੇ ਨੋਟੀਫਿਕੇਸ਼ਨ ਸਰਵਰਾਂ ਰਾਹੀਂ ਵਿਸ਼ਵਾਸਯੋਗ ਅਤੇ ਤੁਰੰਤ ਮਿਲੇਗੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se te notificará de nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Apple." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو به په اعتماد سره او سمدستي نوي پیغامونه د اپل د خبرتیا سرورونو په کارولو ترلاسه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você será notificado de forma confiável e imediata sobre novas mensagens usando os servidores de notificação da Apple." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ao usar os servidores de notificação da Apple, será notificado de novas mensagens de forma consistente e imediata." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veți fi notificat de mesaje noi imediat și în siguranță folosind serverele de notificare Apple." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы будете получать новые сообщения надежно и мгновенно через серверы уведомлений Apple." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bit ćeš obaviješten o novim porukama pouzdano i odmah pomoću Apple-ovih servera za obavijesti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple හෝ දැනුම්දීම් සේවාදායකයන් භාවිතයෙන් ඔබට විශ්වාසවන්තව සහ වහාම නව පණිවිඩ ගැන දැනුම් දෙනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Budete upozornený/á na nové správy spoľahlivo a okamžite použitím serverov Apple." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O novih sporočilih boste obveščeni hitro in zanesljivo s strežniki za obveščanje Apple." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do të njoftoheni për mesazhe të reja menjëherë dhe me besueshmëri duke përdorur Serverët e njoftimeve të Apple." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бићете обавештени о новим порукама поуздано и одмах користећи Апл нотификационе сервере." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bićete obavešteni o novim porukama pouzdano i odmah koristeći Apple-ove servere za obaveštavanje." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kommer att meddelas om nya meddelanden på ett tillförlitligt sätt och omedelbart använda Apples meddelandeservrar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utaarifiwa kuhusu ujumbe mpya kwa uhakika na mara moja kwa kutumia seva za arifa za Apple." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple வழிப்பறியில் (notification Servers) மூலம் விநோதமான நேரத்தில் புதிய செய்திகளின் அறிக்கையை பெறுவீர்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు కొత్త సందేశాలకు నమ్మదగిన మరియు తక్షణంగా Apple యొక్క నోటిఫికేషన్ సర్వర్లను ఉపయోగించి నెరేవులబాటు పొందుతారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณจะได้รับการแจ้งเตือนเมื่อมีข้อความใหม่ที่เชื่อถือได้และทันทีโดยใช้เซิร์ฟเวอร์การแจ้งเตือนของ Apple" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple'ın bildirim sunucularını kullanarak yeni iletilerden güvenilir ve anında haberdar olacaksınız." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви отримуватимете сповіщення про нові повідомлення надійно та одразу за допомогою серверів сповіщень Apple." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو نئے پیغامات کی Apple کے نوٹیفیکیشن سرورز کے ذریعے بلا تاخیر اور مستند طریقے سے اطلاع ہو گی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi xabarlar Apple ning notification servers orqali toʻgʻri va darhol bildiriladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn sẽ nhận được thông báo về tin nhắn mới đáng tin cậy và ngay lập tức bằng cách sử dụng Máy chủ thông báo của Apple." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uya kwaziswa ngokukhawuleza nangokuthembekile kwimiyalezo emitsha usebenzisa iiSefva ze-Apple ezaziswayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您将会收到由Apple的通知服务器发出的即时可靠的新消息通知。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您將會透過 Apple 的通知服務可靠且迅速的收到通知。" + } + } + } + }, + "notificationsGoToDevice" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan na toestel kennisgewing-instellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اذهب إلى إعدادات تنبيهات الجهاز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazın bildiriş ayarlarına get" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیوائس نوٹیفکیشن سٹینگزءَ آگبات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перайсці ў сістэмныя налады апавяшчэнняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отидете на настройките за известия на устройството" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডিভাইস নোটিফিকেশন সেটিংসে যান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aneu a la configuració de notificacions del dispositiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přejít do nastavení upozornění pro toto zařízení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ewch i osodiadau hysbysiadau'r ddyfais" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til indstillinger for enhedsnotifikationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu den Benachrichtigungseinstellungen des Geräts gehen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μεταβείτε στις ρυθμίσεις ειδοποιήσεων της συσκευής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Go to device notification settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iru al agordoj de sciigoj de aparato" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a la configuración de notificaciones del dispositivo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a la configuración de notificaciones del dispositivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ava seadme teatiste sätted" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joan gailuaren jakinarazpen ezarpenetara" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رفتن به تنظیمات اعلان دستگاه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järjestelmän ilmoitusasetukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumunta sa settings ng notipikasyon ng device" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accédez aux paramètres de notifications de l'appareil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir aos axustes de notificación do dispositivo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je zuwa saitunan sanarwa na na'ura" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לך אל הגדרות ההתראות של המכשיר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिवाइस अधिसूचना सेटिंग्स पर जाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi na postavke obavijesti uređaja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rendszerbeállítások megnyitása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գնացեք սարքի ծանուցման կարգավորումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka pengaturan notifikasi perangkat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai alle impostazioni di notifica del dispositivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "端末の通知設定に移動" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გადადით მოწყობილობის შეტყობინების პარამეტრებში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចូលទៅកាន់ការកំណត់ការជូនដំណឹងរបស់ឧបករណ៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಯಂತ್ರದ ಅಧಿಸೂಚನೆ ಸಂಯೋಜನೆಗಳಿಗೆ ಹೋಗಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기기 알림 설정으로 이동" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "بڕۆ بۆ ڕێکەوتکردنی ئاگادکردنەکانی ئامراز" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genda mu setingi z'okuweereza ku kyuma" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eiti į įrenginio pranešimų nustatymus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iet uz ierīces paziņojumu iestatījumiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оди до поставувања за известувања на уредот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Төхөөрөмжийн мэдэгдлийн тохиргоонд очих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pergi ke tetapan notifikasi peranti" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ကိရိယာအသိပေးချက်ဆက်တင်များသို့သွားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til enhetens varslingsinnstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिभाइस सूचना सेटिङ्हरू तिर जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ga naar de meldingsinstellingen van apparaat" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til enhetens varslingsinnstillinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pitani ku zoikamo za zidziwitso za chipangizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਵਾਈਸ ਨੋਟੀਫਿਕੇਸ਼ਨ ਸੈਟਿੰਗਾਂ ਤੇ ਜਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przejdź do ustawień powiadomień urządzenia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د وسیلې خبرتیا تنظیماتو ته لاړ شئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para configurações de notificação do dispositivo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para as definições de notificações do dispositivo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mergi la setările de notificare ale dispozitivului" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти в системные настройки уведомлений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi u postavke obavještenja za uređaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උපාංගයේ දැනුම්දීම් සැකසුම් වෙත යන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prejsť na nastavenia upozornení zariadenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pojdite na nastavitve obvestil naprave" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shko te cilësimet e njoftimeve për pajisje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идите на подешавања обавештења уређаја" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idite na podešavanja notifikacija uređaja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå till enhetens aviseringsinställningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenda kwenye mipangilio ya arifa ya kifaa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சாதன அறிவிப்பு அமைப்புகளை செல்லவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరికర నోటిఫికేషన్ సెట్టింగ్‌లకు వెళ్లండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไปที่การตั้งค่าการแจ้งเตือนของอุปกรณ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihaz bildirim ayarlarına git" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти до налаштувань сповіщень пристрою" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیوائس نوٹیفکیشن سیٹنگز پر جائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qurilma bildirishnomalar sozlamalariga o‘tish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đi đến cài đặt thông báo trên thiết bị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yiya kuseti lwezaziso zesixhobo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "跳转到设备通知设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "打開設備通知設定" + } + } + } + }, + "notificationsHeaderAllMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewings - Alles" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التنبيهات - الكل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirişlər - Hamısı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوابما - سار" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні - Усе" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия - Всички" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - All" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions - Tot" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění - vše" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau - Pob Un" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationer - Alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungen - Alle" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις - Όλα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - All" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - All" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Todas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Todas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teated - Kõik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenak - Guztiak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان - همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoitukset - Kaikki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Notipikasyon - Lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Toutes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwa - Duka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות - הכל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाएं - सभी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések - Összes" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումներ - Բոլորը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi - Semua" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche - Tutte" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 全部" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - All" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការជូនដំណឹង - ទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆಗಳು - ಎಲ್ಲವೂ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 - 전체" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئاگادارکردنەوەکان - هەموو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutegeera - Byonna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai - Visi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања - Сите" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдэл - Бүгд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan - Semua" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များ - အားလုံး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाहरू - सबै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingen - Alle" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Zonse" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾਵਾਂ - ਸਾਰੀਆਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia – wszystkie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلانونه - ټول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Todas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Todas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări - Toate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления - Все" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීම් - සියලු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia - Všetky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila - Vsa" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime - Të gjitha" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења - Све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikacije - Sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifieringar – Alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa - Zote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்புகள் - அனைத்தும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనలు - అన్నీ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือน - ทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirimler - Tümü" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення — Всі" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات - سب" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnomalar - Barchasi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo - Tất cả" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso - Zonke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 所有" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 全部" + } + } + } + }, + "notificationsHeaderMentionsOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewings - Slegs vermeldings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التنبيهات - الإشعارات فقط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirişlər - Yalnız adçəkmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوابما - ساب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні - Толькі згадкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия - Само споменавания" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Mentions Only" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions - Només mencions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění - jen zmínky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau - Dim ond Cyfeiriadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationer - Kun Omtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungen - Nur für Erwähnungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις - Μόνο για Αναφορές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Mentions Only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Mentions Only" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Solo Menciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Solo Menciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teated - Ainult mainimised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenak - Aipamenak bakarrik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعیه ها - فقط اشاره ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoitukset - Vain maininnat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Notipikasyon - Mga Mentions Lamang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Mentions seulement" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwa - Mentions Kadai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות - רק אזכורים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाएं - केवल उल्लेख" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Samo spominjanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések - Csak említések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումներ - Միայն հիշատակումների համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi - Hanya Mention" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche - Solo se menzionato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知設定 メンションのみ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Mentions Only" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការជូនដំណឹង - បញ្ញញ្ចាំតែបវេនเดียว" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆಗಳು - ಉಲ್ಲೇಖಗಳು ಮಾತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 - 멘션만" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئاگادارکردنەوەکان - نیشاندانەکان تەنها" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutegeera - Ekikankanyiza byoka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai - Tik paminėjimai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања - Само спомнувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн дурсамжуудын талаар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan hanya untuk Sebutan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များ - ဟောင့်ချက်များသာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Kun nevnte" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाहरू - उल्लेखहरू मात्र" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingen - Alleen bij vermeldingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Kun omtaler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Zotchula Nokha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾਵਾਂ - ਕੇਵਲ ਜ਼ਿਕਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia – tylko wzmianki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلانونه - یوازې یادونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Somente menções" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Apenas Menções" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări - Doar mențiuni" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления - Только упоминания" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Samo spomene" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීම් - සඳහන් කිරීම් පමණයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia - Iba zmienky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila - samo omembe" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime - Vetëm përmendjet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења - Само поменути" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikacije - Samo spominjanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifierings - endast omnämnanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa - Waliotajwa Tu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்புகள் - குறிப்புகள் மட்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనలు - కేవలం పేర్లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือน - เฉพาะการกล่าวถึง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirimler - Yalnızca Bahsedildiğinde" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення - Лише згадки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف تذکرات کے لئے اطلاعات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnomalar - Faqat Tilashlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo - Chỉ để ý đến" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso - Ukubiza Kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 仅提及我的消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 僅提及" + } + } + } + }, + "notificationsHeaderMute" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewings - Gedemp" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التنبيهات - مكتومة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirişlər - Səsi kəsildi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوابما - Šumār" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні - Заглушаны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия - Без звук" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Muted" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions - Silenciades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění - nic" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau - Wedi'u Dympio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationer - Lydløs" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungen - Stummgeschaltet" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις - Μη ενημερωμένες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Muted" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Muted" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Silenciadas" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones - Silenciadas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teated - Vaigistatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenak - Isilduta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان - بی‌صدا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoitukset - Mykistetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Notipikasyon - Muted" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - en sourdine" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwa - An kashe sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות - מושתקות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाएं - बंद" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Isključeno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések - Némítva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումներ - Լռված" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi - Dibungkam" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche - Silenziate" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - ミュート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Muted" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការជូនដំណឹង - ពិការណ៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆಗಳು - ಮ್ಯೂಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 - 음소거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ئاگادارکردنەوەکان - داخستراو" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutegeera - Kuno" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai - Nutildyti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања - Пригушени" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдэлүүд - Чимээгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan - Dilenyapkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များ - ပိတ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Dempet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाहरू - म्यूट गरिएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingen - Gedempt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler - Slått av" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications - Zatseka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾਵਾਂ - ਮਿਉਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia – wyciszone" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلانونه - خاموش" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Muted" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações - Silenciadas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări - Dezactivate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления - Отключены" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti - Isključene" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීම් - නිහතමානී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia - Stlmené" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila - Utišano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime - Heshtur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења - Искључено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikacije - Isključeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifieringar – Mutade" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa - Zilizozimwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்புகள் - இசை இருக்கின்றது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనలు - మూమ్ముట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือน - ปิดเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirimler - Sessize Alındı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення — Стишені" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات - خاموش" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnomalar - O'chirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo - Tắt tiếng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso - Zutshi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 免打扰" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知 - 靜音" + } + } + } + }, + "notificationsIosGroup" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {conversation_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} إلى {conversation_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {conversation_name} üçün" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ہون {conversation_name}دا فانڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} да {conversation_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} до {conversation_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} থেকে {conversation_name}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {conversation_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} na {conversation_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} i {conversation_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} til {conversation_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} an {conversation_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} σε {conversation_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} to {conversation_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} al {conversation_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {conversation_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {conversation_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} saatis sõnumi gruppi {conversation_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, {conversation_name}ri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} به {conversation_name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} to {conversation_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kay {conversation_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} à {conversation_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {conversation_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} zuwa {conversation_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ל {conversation_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने {conversation_name} को" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} do {conversation_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} - {conversation_name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {conversation_name}-ին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ke {conversation_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a {conversation_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}から{conversation_name}へ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {conversation_name}-ში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ទៅ {conversation_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} ಗೆ {name}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}이(가) {conversation_name}에 보냈습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} بۆ {conversation_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} eri {conversation_name}" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ເຖິງ {conversation_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} į {conversation_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} uz {conversation_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} во {conversation_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} харилцан ярианд {name}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kepada {conversation_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} သည် {conversation_name} သို့ပို့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} til {conversation_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} मा {name}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} naar {conversation_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} til {conversation_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kwa {conversation_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਨੂੰ {conversation_name} ਭੇਜਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} w konwersacji {conversation_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ته {conversation_name} باندې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} para {conversation_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} para {conversation_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} către {conversation_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} для {conversation_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u {conversation_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} {conversation_name} වෙත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} do {conversation_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} v {conversation_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} te {conversation_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} у {conversation_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} u {conversation_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} till {conversation_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kwa {conversation_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} to {conversation_name}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_name} కు {name} పంపిన సందేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ไปที่ {conversation_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tarafından {conversation_name}'ya" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} до {conversation_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے {conversation_name} کو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}, {conversation_name} ga" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đến {conversation_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ukuya {conversation_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}向{conversation_name}发送了消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 至 {conversation_name}" + } + } + } + }, + "notificationsIosRestart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy mag boodskappe ontvang het terwyl jou {device} herbegin het." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ربما تلقيت رسائل أثناء إعادة تشغيل {device} الخاص بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{device} yenidən başladığı zaman mesaj almış ola bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {device} شروعین ڪار کتن." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы маглі атрымаць паведамленні, пакуль ваш {device} перазагружаўся." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възможно е да сте получили съобщения докато сте рестартирали вашият {device}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার {device} পুনঃসূচনা করার সময় আপনি বার্তাগুলি পেয়ে থাকতে পারেন." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "És possible que hagis rebut missatges mentre es reiniciava {device}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možná jste obdrželi zprávy během restartování zařízení {device}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Efallai eich bod wedi derbyn negeseuon tra'r oedd eich {device} yn ailgychwyn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du har kan modtaget beskeder, mens din {device} genstartede." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du hast eventuell Nachrichten erhalten, während dein {device} neu gestartet wurde." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μπορεί να έχετε λάβει μηνύματα κατά την επανεκκίνηση του {device}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You may have received messages while your {device} was restarting." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi eble ricevis mesaĝojn dum via {device} rekomenciĝis." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puede que hayas recibido mensajes mientras se reiniciaba tu {device}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puede que hayas recibido mensajes mientras se reiniciaba tu {device}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teil võis olla sõnumeid ajal, mil teie {device} taaskäivitati." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baliteke mezuren bat jasotzea zure {device} berrabiarazten ari zen bitartean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ممکن است شما زمانی که {device} در حال ری استارت بود پیام‌هایی دریافت کرده باشید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olet saattanut saada viesteja laitteesi {device} käynnistyessä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maaaring nakatanggap ka ng mga mensahe habang muling nagsisimula ang {device} mo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous avez peut-être reçu des messages alors que votre {device} redémarrait." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poderías ter recibido mensaxes mentres o teu {device} se reiniciaba." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuna iya samun saƙonni yayin da {device} dinka ke farawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אולי קיבלת הודעות בזמן שהמכשיר שלך ({device}) הופעל מחדש." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हो सकता है कि आपका {device} पुनरारंभ होने के दौरान आपको संदेश प्राप्त हुए हों।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možda ste primili poruke dok se {device} ponovno pokretao." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Előfordulhat, hogy üzeneteket kaptál, miközben a {device} újraindult." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք կարող եք ստանալ հաղորդագրություններ, երբ ձեր {device} վերագործարկվում էր։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mungkin telah menerima pesan ketika {device} Anda sedang memulai ulang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potresti aver ricevuto messaggi mentre il tuo {device} si riavviava." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{device}の再起動中にメッセージが届いたかもしれません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ შესაძლოა მიიღეთ მესიჯები როდესაც თქვენი {device} გადერჩარჯება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​អាច​ដែល​បាន​ទទួលសារក្នុង​ពេល​ដែលឧបករណ៍ {device} របស់អ្នកកំពុងធ្វើ​ឡើង​វិញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ {device} ನ ಪುನರ್ಆರಂಭದ ಸಮಯದಲ್ಲಿ ನೀವು ಸಂದೇಶಗಳನ್ನು ಪಡೆದಿರಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{device}가 재시동되는 동안 메시지를 수신했을 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gava ku {device}ê te vedigere, tu pêvajo hildîsti." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyinza okuba ng'owulidde obubaka mu biseera by'onookuzzeemu {device}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs galite būti gavę žinučių, kol {device} iš naujo paleido sistemą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu varētu būt saņēmis ziņojumus, kamēr {device} pārstartējās." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можеби имате примено пораки додека вашето {device} беше повторно започнато." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны {device} дахин эхлүүлэх үед танд мессэж ирсэн байж магадгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mungkin telah menerima mesej semasa {device} anda dimulakan semula." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်၏ {device} မပြန်စလည့်နေစဉ်ကာလ အတွင်း မက်ဆေ့ချ်များ လက်ခံရရှိနိုင်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er mulig du har mottatt meldinger mens din {device} startet på nytt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको {device} पुनः सुरु हुँदा तपाईंले सन्देशहरू प्राप्त गर्नुभएको हुन सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft mogelijk berichten ontvangen terwijl uw {device} opnieuw aan het opstarten was." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er mogleg du har motteke meldingar mens din {device} starta på nytt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwina munalandira zolemba pamene {device} ikukonzanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਸੰਦੇਸ਼ ਮਿਲਣ ਦੀ ਸੰਭਾਵਨਾ ਹੈ ਜਦੋਂ ਤੁਹਾਡਾ {device} ਦੁਬਾਰਾ ਚਾਲੂ ਹੋ ਰਿਹਾ ਸੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Możliwe, że podczas ponownego uruchamiania urządzenia {device} otrzymano wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو کیدای شی په هغه وخت کې پیغامونه ترلاسه کړي وي کله چې ستاسو {device} بیا پیل کیدو." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ser que você tenha recebido mensagens enquanto seu {device} reiniciava." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poderá ter recebido mensagens enquanto o seu {device} reiniciava." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este posibil să fi primit mesaje în timp ce {device} a fost repornit." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Возможно, вы получили сообщения во время перезапуска вашего {device}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možda si primio poruke dok se {device} restartirao." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ {device} නැවත ආරම්භ කරන අතරතුර ඔබට පණිවිඩ ලැබී තිබිය හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je možné, že ste dostali správy kým sa váš {device} reštartoval." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morda ste prejeli sporočila med ponovnim zagonom vaše {device}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju mund të keni marrë mesazhe ndërsa pajisja juaj {device} po rifillohej." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можда сте примили поруке док се ваш {device} рестартовао." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možda ste primili poruke dok se vaš {device} ponovo pokretao." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ha fått meddelanden medan din {device} startades om." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huenda umepokea jumbe wakati {device} yako ilikuwa inarestart." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் {device} இன் மீண்டும் தொடக்கத்தின் போது செய்தி கடவுள் விவரங்கள் உங்களுக்கு வந்து இருக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ {device} రీస్టార్ట్ అవుతున్నప్పుడు మీరు సందేశాలను స్వీకరించి ఉండవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อาจจะได้รับข้อความตอน {device} รีสตาร์ทมา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{device} yeniden başlatılırken mesajlar almış olabilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можливо, під час перезавантаження вашого {device} ви отримали повідомлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جب آپ کا {device} دوبارہ شروع ہو رہا تھا تو آپ کو پیغامات موصول ہو سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{device} qayta ishga tushirilayotgan bo'lsa, siz xabarlarni olgan bo'lishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có thể nhận được tin nhắn trong khi {device} của bạn đang được khởi động lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unokufumana imiyalezo ngexesha ngelixa {device} sibuya ukuqala." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您可能在{device}重启时收到了新消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的設備 {device} 在重新啟動時可能接收到了訊息。" + } + } + } + }, + "notificationsLedColor" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED kleur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لون ضوء التنبيه LED" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED rəngi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED color" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Колер LED" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED цвят" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED রঙ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color del LED" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barva LED" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lliw'r LED" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED farve" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED-Farbe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χρώμα του LED" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED color" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED-a koloro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color del LED" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color del LED" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "LEDi värv" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED kolorea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رنگ LED" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED:in väri" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kulay ng LED" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couleur de la DEL" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor LED" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED launi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צבע LED" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED रंग" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boja LED" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED színe" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED-ի գույն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warna LED" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colore del LED" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED色" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED ფერი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពណ៌​LED" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲಿಡಿ ಬಣ್ಣ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림등 색상" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rengê LED" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langi ya LED" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šviesos diodo spalva" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED krāsa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED боја" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED өнгө" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warna LED" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED အရောင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED-farge" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एलईडी रंग" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED kleur" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED-farge" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulukule led" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਲਈਡੀ ਰੰਗ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kolor LED" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED رنګ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor do LED" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cor do LED" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Culoare LED" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цвет индикатора" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED boja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED වර්ණය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED farba" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barva LED" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngjyrë LED-i" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Боја ЛЕД светла" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boja LED" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Färg på ljusindikator" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rangi za LED" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மின்னொளி நிறம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎల్ఈడి రంగు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สี LED" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED rengi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Колір LED" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایل ای ڈی رنگ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED rangi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Màu LED" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umbala we-LED" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED颜色" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "LED 顏色" + } + } + } + }, + "notificationsMentionsOnly" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slegs Vermelding" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط عندما يتم ذكر اسم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yalnız ad çəkildikdə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentions Only" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згадкі анлі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само споменавания" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শুধুমাত্র উল্লেখ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Només mencions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pouze zmínky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ond Cyfeiriadau'n unig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun omtaler" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur Erwähnungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μόνο αναφορές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentions Only" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur mencioj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo menciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo menciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainult mainimised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aipuak soilik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فقط منشن شده‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vain maininnat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentions lang" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentions seulement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Só mencións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ambaton Kadai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "איזכורים בלבד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल उल्लेख" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo spominjanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Csak említések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միայն հիշատակումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sebutan saja" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solo menzioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メンションのみ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მხოლოდ ხსენებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការលើកឡើងតែប៉ុណ្ណោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಲ್ಲೇಖಗಳು ಮಾತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "언급만 알림" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tenê behskirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekyokubusukiza okusinga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik paminėjimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieminējumu gadījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само спомнувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвхөн дурьдалтууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanya sebutan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမှတ်အသားနီမာ်သီး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun omtaler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "केवल उल्लेखहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alleen vermeldingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kun omtaler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maimomo ma Notification" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੇਵਲ ਉਲਲੇਖ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tylko wzmianki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوازې یادونې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas menções" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas menções" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doar mențiuni" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Только упоминания" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo spomenuti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සඳහන් කිරීම් පමණි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iba zmienky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo omembe" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vetëm Përmendje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спомињања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo pominjanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endast omnämnd" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tajo Tu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mention Only" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కేవలం ప్రస్తావనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แจ้งเตือนเมื่อถูกเอ่ยถึงเท่านั้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sadece bahsetmeler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тільки згадки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "صرف ذکر کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqat tilga olishlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ Đề Cập" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izikhumbuzo kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "仅当被提及时" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "僅限「被提及」" + } + } + } + }, + "notificationsMessage" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap kennisgewings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إشعارات الرسالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj bildirişləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message notifications" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні пра паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съобщения за известия" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা বিজ্ঞপ্তি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions de missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění na zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau neges" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskednotifikationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungen für Mitteilungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message notifications" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciigoj pri Mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de mensajes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumiteatised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezuen jakinarazpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان‌های پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viesti-ilmoitukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga paalaala sa Mensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications de message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacións de mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwar aika saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश सूचनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti o poruci" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenet értesítések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության ծանուցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche messaggi" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការជូនដំណឹងអំពីសារ​" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂದೇಶ ಅಧಿಸೂಚನೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 알림" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahdarîyên Peyamê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuteecho ekikomezza obubaka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai apie žinutes" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojumi par ziņojumiem" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања за пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессежийн мэдэгдэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောနန်းများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsvarsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश सूचनाहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtmeldingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsvarsel" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zindikirani chikalata" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਸੂਚਨਾਵਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia o wiadomościach" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام خبرتیاوې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificação de Mensangens" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações de mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări mesaje" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления о сообщениях" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti o porukama" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ දැනුම්දීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia na správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila o sporočilih" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime mesazhesh" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења порука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obaveštenja o porukama" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandeaviseringar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa za Jumbe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செய்தி அறிவிப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశ ప్రకటనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แจ้งเตือนข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj Bildirimleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення про повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی اطلاعات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar bildirishnomalari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso zomyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息通知" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息通知" + } + } + } + }, + "notificationsMostRecent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mees onlangse van {name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الأحدث من: {name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ən son: {name}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Most recent from {name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апошняе ад {name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Най-скорошно от {name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} এর সর্বশেষ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Més recent de: {name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslední od: {name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Y diweddaraf gan: {name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seneste fra {name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neueste von: {name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πιο πρόσφατα από: {name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Most recent from {name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plej lasta de {name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Más reciente de {name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Más recientes desde: {name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viimatine kontaktilt {name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Azkena {name}(e)tik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جدید ترین از {name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusin lähettäjältä {name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pinakabago mula kay: {name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le plus récent de : {name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Máis recente de: {name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na baya-bayan nan daga {name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעה אחרונה מאת: {name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} से हाल ही में" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnoviji od {name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legutóbb tőle: {name}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերջինը {name}֊ից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paling baru dari {name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il più recente da: {name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "最新の受信: {name}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უახლესი {name} -გან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ថ្មីៗបំផុតពី {name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತ್ತೀಚಿನ {name} ರಿಂದ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님에게서 최근 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peyama netirîn ji {name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebbuddongo eryasembyeyo okuva eri {name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paskiausia nuo: {name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaunākā no {name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Последно од {name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хамгийн сүүлийнх нь {name} аас ирсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terbaru dari {name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မကြာသေးမှီက ရထားမှု - {name}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyeste fra: {name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} बाट सबैभन्दा हालको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meest recente van {name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyaste frå {name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chineneratu Pwambiri {name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ਤੋਂ ਸਭ ਤੋਂ ਨਵਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnowsze od {name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} څخه وروستی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mais recente de {name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mais recente de {name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cel mai recent de la: {name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Последнее от {name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnovije od: {name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වඩාත්ම මෑත: {name}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnovšie od {name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnovejše od: {name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Më të rejat nga: {name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Најскорија од {name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Najnovije od {name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senaste från {name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "ya hivi karibuni kutoka {name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} இலிருந்து மிகச் சமீபத்தியது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సమీప కాలపు: {name}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ล่าสุดจาก: {name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En son: {name}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Останнє від: {name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب سے حالیہ {name} سے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eng oxirgi: {name}dan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gần đây nhất từ {name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukwazisa okugeza {name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "最近来自{name}的消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "最新來自:{name}" + } + } + } + }, + "notificationsMute" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صامت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsi kəs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выключыць гук" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заглуши" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নিঃশব্দ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silencia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ztlumit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udsæt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stummschalten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγαση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mute" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silentigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaigista" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isildu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساکت‌ کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mykistä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-mute" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sourdine" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jigilewar Muryar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השתק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "म्यूट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Némítás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խլացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senyap" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenzia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ミュート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმამაღლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸದ್ದಡಗಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "음소거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berdan" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zikweka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nutildyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izslēgt Skaņu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тишина" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуугүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senyapkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များကို အဝင်ငွေဆုံးရံခြင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demp" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "म्यूट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dempen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demp" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upallayachina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮਿਉਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wycisz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "چپ کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mutar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silențios" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откл. звук" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිහඬ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stlmiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heshtoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без звука" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tysta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "zima kwa siri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முடக்கப்படும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిశబ్ధం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิดแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sessize al" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимкнути звук" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموش" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozini o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Im lặng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thulisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "免打扰" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "靜音" + } + } + } + }, + "notificationsMuted" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geskuif" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كتم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səssizdə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموش شتگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заглушана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заглушено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মিউট করে হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ztlumeno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi tewi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyden slået fra" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stumm gestellt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σε Σίγαση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muted" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silentigite" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaigistatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isilik" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بی‌صدا شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mykistetty" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muted" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En sourdine" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An Jigilar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מושתק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "म्यूट हो गए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Némítva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լուռ է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disenyapkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenziato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ミュート中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმამაღლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានបិទ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸದ್ದಡಗಿಸಿದ್ದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 꺼짐" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berdayî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zikwezezza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Užtildytas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apklusināts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тишина" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуугүй болсон" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disenyapkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံပိတ်ထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dempet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "म्यूट भएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gedempt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dempet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upallayachina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮਿਉਟ ਕੀਤਾ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyciszono" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "چپ شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări fără sunet" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без звука" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිහඬ කළා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stíšené" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heshtur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мутиран заувек" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tystad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limenyamazishwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முடக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిశబ్ధం చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิดแจ้งเตือนแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sessize alındı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Беззвучний" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموش" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'chirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã ngắt tiếng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zithule" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "免打扰" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已靜音" + } + } + } + }, + "notificationsMuteFor" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil vir {time_large}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صامت لمدة {time_large}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ərzində səsi kəs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} لئی خاموش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выключыць гук на {time_large}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заглуши за {time_large}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} এর জন্য নিঃশব্দ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silencia per {time_large}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ztlumit na {time_large}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tewi am {time_large}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udsæt for {time_large}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stummschalten für {time_large}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγαση για {time_large}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mute for {time_large}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silentigi por {time_large}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar por {time_large}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar por {time_large}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaigista {time_large} ajaks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isildu {time_large} denborarako" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساکت کردن برای {time_large}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mykistä ajaksi {time_large}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-mute para sa {time_large}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sourdine pour {time_large}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar por {time_large}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jigilewar muryar na tsawon lokaci {time_large}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השתק עבור {time_large}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} के लिए म्यूट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj na {time_large}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Némítás: {time_large}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խլացնել {time_large}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senyapkan selama {time_large}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenzia per {time_large}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large}間ミュート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმამაღლა {time_large}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទសំឡេង {time_large}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ಗೆ ಸದ್ದಡಗಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} 동안 음소거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berdan çimase {time_large}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zikweka ekiseera kya {time_large}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nutildyti {time_large}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izslēgt skaņu uz {time_large}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тишина за {time_large}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} дуугүй болго" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senyapkan untuk {time_large}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} အထိအသိပေးချက်များကို အဝင်ငွေဆုံးရံခြင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demp for {time_large}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} का लागि म्यूट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dempen voor {time_large}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demp for {time_large}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upallayachina kwa {time_large}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} ਲਈ ਮਿਉਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wycisz na {time_large}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} لپاره چپ کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mutar por {time_large}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silenciar por {time_large}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silențios pentru {time_large}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без звука {time_large}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj na {time_large}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} න් නිහඬ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stlmiť na {time_large}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utišaj za {time_large}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heshtoje për {time_large}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без звука за {time_large}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključi na {time_large}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tysta i {time_large}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zima kwa {time_large}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} செண்டற்க்கு முடியவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నిశబ్ధంగా ఉంచు {time_large}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิดแจ้งเตือนเป็นเวลา {time_large}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} boyunca sessize al" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимкнути звук на {time_large}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} کے لئے خاموش" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{time_large} davomida ovozini o'chirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Im lặng trong {time_large}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thulisa imizuzu eyi-{time_large}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "免打扰{time_large}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉通知 {time_large}" + } + } + } + }, + "notificationsMuteUnmute" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiveer Kennisgewings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إلغاء الكتم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsi aç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیر خاموش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уключыць гук" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Включи звук" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনমিউট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Treure el silenci" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušit ztlumení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dad-dewi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern udsættelse" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stummschaltung aufheben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναίρεση Σίγασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unmute" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsilentigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No silenciar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No silenciar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keela vaigistus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktibatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال کردن صدا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista mykistys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unmute" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rétablir les notifications" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activar o son" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל השתקה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनम्यूट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključi zvuk" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Némítás feloldása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ապախլացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Batalkan senyap" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riattiva" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ミュート解除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმაურის გამორთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើកសំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್ಮ್ಯೂಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 켜기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladaniyê bi ser ke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sazaamu obubaka bwekaapuulwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įjungti pranešimus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieslēgt skaņu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вклучи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дууг асаах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyah bisu" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံဖွင့်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev demp" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनम्यूट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niet langer dempen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opphev demp" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ambukirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਮਿਊਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyłącz wyciszenie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غیرخاموش کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desmutar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não silenciar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activare sunet notificări" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вкл. звук" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni utišanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිහඬ නොකරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušiť stíšenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izklopi utišanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çheshtoji" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Укључи обавештења" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unmute" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljud på" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usifute" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మ్యూట్ తీసివేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกปิดเสียง." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesi aç" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увімкнути звук" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموشی ختم کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Surnatni ochish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tắt tạm im" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa ukuthula" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "关闭免打扰" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消靜音" + } + } + } + }, + "notificationsSlowMode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stadige modus" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الوضع البطيئ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yavaş rejim" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "موڈ آهسہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павольны рэжым" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode lent" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomalý režim" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langsom Tilstand" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langsamer Modus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αργή Λειτουργία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malrapida Reĝimo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Lento" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo Lento" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aeglane režiim" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالت آهسته" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hidastila" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mode lent" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מצב איטי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spor način" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lassított mód" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դանդաղ ռեժիմ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modalità lenta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "低速モード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មុខងារយឺត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow 모드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lėta veiksena" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lēnais režīms" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mod Perlahan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saktemodus" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langzame modus" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਧੀਰਾ ਮੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryb wolny" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modo lento" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mod lent" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Медленный режим" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spori režim" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මන්දගාමී මාදිලිය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomalý režim" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Långsamt läge" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtindo wa Kipole" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్లో మోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหมดล่าช้า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yavaş Mod" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повільний режим" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سلو موڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slow Mode" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "慢速模式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "慢速模式" + } + } + } + }, + "notificationsSlowModeDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sal af en toe kyk vir nuwe boodskappe in die agtergrond." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} سيتحقق بشكل دوري من وجود رسائل جديدة في الخلفية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} arada arxaplanda yeni mesajları yoxlayacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ګاهی ژن باہرشمیںں پیغاں چک ہیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} будзе перыядычна правяраць наяўнасць новых паведамленняў у фонавым рэжыме." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} понякога ще проверява за нови съобщения във фона." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} মাঝে মাঝে ব্যাকগ্রাউন্ডে নতুন বার্তাগুলি পরীক্ষা করবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ocasionalment comprovarà si hi ha nous missatges en segon pla." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bude občas kontrolovat nové zprávy na pozadí." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd {app_name} yn edrych am negeseuon newydd yn achlysurol yn y cefndir." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil lejlighedsvis tjekke for nye beskeder i baggrunden." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} wird gelegentlich im Hintergrund nach neuen Nachrichten suchen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} θα ελέγχει περιστασιακά για νέα μηνύματα στο παρασκήνιο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} will occasionally check for new messages in the background." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foje serĉos novajn mesaĝojn en la fono." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} comprobará ocasionalmente si hay nuevos mensajes en segundo plano." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} comprobará ocasionalmente si hay mensajes nuevos en segundo plano." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} otsib aeg-ajalt taustal uusi sõnumeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k noizean behin mezu berriak bilakatzen ditu atzealdean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} گاه‌به‌گاه در پس‌زمینه پیام‌های جدید را بررسی می‌کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarkistaa ajoittain uudet viestit taustalla." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paminsan-minsan ay susuriin ng {app_name} para sa mga bagong mensahe sa background." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vérifiera occasionnellement les nouveaux messages en arrière-plan." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} revisará ocasionalmente as novas mensaxes en segundo plano." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} wani lokaci zai duba sabon saƙonni a bango." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} יבדוק מדי פעם אם ישנן הודעות חדשות ברקע." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} कभी-कभी पृष्ठभूमि में नए संदेशों की जांच करेगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će povremeno, u pozadini provjeravati ima li novih poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} időnként a háttérben ellenőrizni fogja, hogy vannak-e új üzenetek." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը երբեմն ստուգում է նոր հաղորդագրությունների առկայությունը ֆոնային ռեժիմում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sesekali akan memeriksa pesan baru di latar belakang." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} controllerà occasionalmente la presenza di nuovi messaggi in background." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}は時々バックグラウンドで新しいメッセージの受信をチェックします" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} პერიოდულად შეამოწმებს ახალ შეტყობინებებს ფონის რეჟიმში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} នឹងត្រួតពិនិត្យទៅលើ សារដែលថ្មី ម្ដងម្កាលនៅក្នុងផ្ទៃខាងក្រោយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಹಿನ್ನೆಲೆಯಲ್ಲಿ ಹೊಸ ಸಂದೇಶಗಳನ್ನು ಸಮಯಪೂರ್ಣವಾಗಿ ಪರಿಶೀಲಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 때때로 백그라운드에서 새 메시지를 확인합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hema nû peşiyerkan kontrol dike di piştî deran de." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ejakunoonyereza ku bubaka obupya munda wakati olw’akaseera akatono." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຈະກວດເຊັກຂໍ້ຄວາມໃຫມ່ໃນພື້ນຫລັງ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} retkarčiais tikrins, ar fone yra naujų žinučių." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} laiku pa laikam fonā pārbaudīs, vai nav jaunu ziņojumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} повремено ќе проверува за нови пораки во заднина." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} арын горимд шинэ мессежийг үе үе шалгана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} akan sesekali memeriksa mesej baru di latar belakang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် မက်ဆေ့ချ်အသစ်များ ရှိမှုကို ကျယ်ကျယ်ပြန့်ပြန့်များအရိတ်ပိုင်းတွင်မကြာခဏသာ စစ်ဆေးပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil av og til sjekke nye meldinger i bakgrunnen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} पृष्ठभूमिमा कहिलेकाहीं नयाँ सन्देशहरूको लागि जाँच गर्नेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} controleert af en toe nieuwe berichten op de achtergrond." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vil av og til sjekke nye meldinger i bakgrunnen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} idzagamula kutumiza mauthenga atsopano m'kumbuyo nthawi ndi nthawi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਵਾਰ-ਵਾਰ ਪੂਰਾ ਸੰਦੇਸ਼ ਜਾਂਚੇਗਾ ਜਿਸ ਨੂੰ ਬੈਕਗ੍ਰਾਊਂਡ ਵਿੱਚ ਚੈਲਨੇਲ ਕਰਿਆ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikacja {app_name} będzie od czasu do czasu sprawdzać nowe wiadomości w tle." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} به په شالید کې وخت په وخت د نوي پیغامونو پلټنه کوي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} verificará ocasionalmente por novas mensagens em segundo plano." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocasionalmente, o {app_name} irá verificar se há novas mensagens em segundo plano." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} va verifica ocazional în fundal dacă există mesaje noi." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} будет периодически проверять и получать сообщения в фоновом режиме." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će povremeno provjeravati ima li novih poruka u pozadini." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} විටින් විට පසුබිමේ නව පණිවිඩ පරීක්ෂා කරනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} občas na pozadí skontroluje nové správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bo občasno preverjal nova sporočila v ozadju." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} do të kontrollojë herë pas here për mesazhe të reja në sfond." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ће повремено проверавати нове поруке у позадини." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} će povremeno proveravati nove poruke u pozadini." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kommer då och då att leta efter nya meddelanden i bakgrunden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} itakagua iwapo kuna jumbe mpya usulini kila mara." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} பின்னணியில் புதிய தகவல்களை கண்டறிவதைப் பற்றி வழக்கமாகச் சோதனை செய்யும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} నేపథ్యంలో కొత్త సందేశాల కోసం అప్పుడప్పుడు తనిఖీ చేస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} จะตรวจสอบข้อความใหม่ในเบื้องหลังเป็นครั้งคราว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ara sıra arka planda yeni mesajlar kontrol eder." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} буде періодично перевіряти наявність нових повідомлень у фоновому режимі." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پس منظر میں نئے پیغامات چیک کرتا رہے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ba'zida fon rejimida yangi xabarlar uchun tekshiradi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sẽ thỉnh thoảng kiểm tra tin nhắn mới trong nền." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iya kuhlola iimyalezo ezintsha ngasemva ngamaxesha athile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}将不时在后台获取新消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 會偶爾在後台執行時檢查新訊息。" + } + } + } + }, + "notificationsSound" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klank" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صوت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آوازن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гук" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мелодия" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শব্দ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "So" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sain" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ton" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ήχος" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sound" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sono" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heli" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soinua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صدا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunog" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deng" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קול" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आवाज़" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hang" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suono" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "着信音" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំឡេង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಶಬ್ದ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "소리" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deng" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eddoboozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garsas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaņa" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дуу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bunyi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ध्वनि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geluid" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wakay uyari" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਧੁਨੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dźwięk" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غږ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunet" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ශබ්දය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvok" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tingull" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljud" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒலி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "శబ్దము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zil Sesi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آواز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovoz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sound" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "提示音" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "聲音" + } + } + } + }, + "notificationsSoundDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klank wanneer App oop is" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الصوت عندما يفتح التطبيق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tətbiq açıq olduqda səs" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آوازن جا اپــــــلی کی موجود" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гук, калі праграма адкрыта" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мелодия при отворено приложение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাপ খোলা থাকার সময় শব্দ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activa el so quan l'aplicació és oberta" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk při otevření aplikace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sain pan fydd Ap ar agor" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd når app er åben" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ton, wenn die App geöffnet ist" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ήχος όταν η Εφαρμογή είναι Ανοιχτή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sound when App is open" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sono kiam Apo estas malfermita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonido cuando la aplicación está abierta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonido al abrir la aplicación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heli, kui rakendus on avatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soinua aplikazioa irekita dagoenean" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "صدا هنگام باز بودن برنامه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ääni sovelluksen ollessa avoinna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunog kapag ang App ay bukas" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son lorsque l'application est ouverte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son cando a Aplicación está aberta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti lokacin da Manhaja a bude take" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קול כשהאפליקציה פתוחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऐप खुले होने पर ध्वनि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk kad je aplikacija otvorena" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hang amikor az App nyitva van" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայն, երբ հավելվածը բաց է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berbunyi saat Aplikasi Dibuka" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suono quando l'app è aperta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アプリが開いているときの音" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხმა აპლიკაცია ღიაა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចេញសំឡេងនៅពេលបើកកម្មវិធី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಪ್ ತೆರೆಯಲು ಶಬ್ದ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "앱이 열리면 소리" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deng gave bikarhêra actîv e" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eddoboozi nga App eri muggya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garsas, kai programa atidaryta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaņa, kad Lietotne ir atvērta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук кога Апликацијата е отворена" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апп нээлттэй байх үед дуугарна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bunyi semasa App dibuka" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အက်ပ်ဖွင့်သောအခါ အသံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd når App er åpen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एप खोल्दा ध्वनि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geluid wanneer de app geopend is" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd når App er open" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sound when App is open" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਪ ਖੁੱਲ੍ਹਣ 'ਤੇ ਧੁਨੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia dźwiękowe w otwartej aplikacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کله چې ایپ خلاص وي غږ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som quando o aplicativo estiver aberto" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Som quando a aplicação estiver aberta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunet când aplicația este deschisă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук, когда приложение открыто" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk kada je aplikacija otvorena" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "App විවෘත වන විට ශබ්දය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk pri otvorení aplikácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvok, ko je aplikacija odprta" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tingull kur Aplikacioni është i hapur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук када је апликација отворена" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk kada je aplikacija otvorena" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljud när App är öppen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauti wakati Programu iko wazi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "செயலி திறந்திருப்பதில் ஒலி உள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అమెరికా తెరిచినప్పుడు శబ్దం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เสียงเมื่อเปิดแอป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uygulama Açıkken Ses" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звукові сповіщення у відкритому застосунку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایپ کھلنے پر آواز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilova ochiq bo'lganda tovush" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Âm thanh khi ứng dụng mở" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sound when App is open" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "应用打开时的提示音" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "應用程式開啟時播放音效" + } + } + } + }, + "notificationsSoundDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oudio Kennisgewings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الإشعارات الصوتية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Səsli bildirişlər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آڈیو نوٹیفیکشنز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўдыя апавяшчэнні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио известия" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অডিও Notifications" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions d'àudio" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuková upozornění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau Sain" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lydnotifikationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Benachrichtigungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ηχητικές Ειδοποιήσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifications" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonaj sciigoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de Audio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de audio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heli teated" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Oharra" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان‌های صوتی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Äänimuistutukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifications" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications audio" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacións de audio" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwar Sauti" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות שמע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑडियो नोटिफिकेशन्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvukovne obavijesti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hangértesítések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձայնի ծանուցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi Suara" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche audio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "音声通知" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აუდიო შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារសំឡេងជូនដំណឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಡಿಯೋ ಅಧಿಸೂಚನೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "소리 알림" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahdariyên dengî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifications" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສນວາປາເອົາມົດການປັບຄ່າ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garso pranešimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaņas paziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио Известувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудио мэдэгдлүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi Audio" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသံပေးချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lydvarsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अडियो सूचनाहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notificaties" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyd varslinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zidziwitso Zamawu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਡੀਓ ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia dźwiękowe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifications" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações de som" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações de Áudio" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări audio" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звук для уведомлений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifikacije" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හඬ දැනුම්දීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvukové upozornenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvočna obvestila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime audio" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења о звуку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvuk obaveštenja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ljudaviseringar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa za Sauti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கேட்பொலி அறிவிப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆడియో ప్రకటనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือนเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sesli Bildirimler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аудіосповіщення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Audio Notifications" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovozli Bildirishnomalar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo âm thanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso ze-Audio" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "提示音" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "音訊通知" + } + } + } + }, + "notificationsStrategy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewing Strategie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "استراتيجية الإشعار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildiriş strategiyası" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہوشیار رک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стратэгія апавяшчэнняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стратегия за известията" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notification Strategy" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estratègia de les notificacions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Režim upozornění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategaeth Hysbysiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikations Strategi" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungsmodus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Στρατηγική Ειδοποιήσεων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notification Strategy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciiga Strategio" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estrategia de notificación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estrategia de notificación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teatise strateegia" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenen Estrategia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "استراتژی اعلان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoituskäytäntö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategiya ng Notipikasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stratégie de notification" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estratexia de notificacións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanyar Sanarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אסטרטגיית הודעות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचना रणनीति" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategija obavijesti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések módja" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումների ռազմավարություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategi Notifikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategia di notifica" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知戦略" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების სტრატეგია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យុទ្ធសាស្ត្រជូនដំណឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆ ನೀತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 전략" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stratejiya Agahdarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olukalenge Oluzirako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimų strategija" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojumu stratēģija" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стратегија за известувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдлийн стратеги" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategi Pemberitahuan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကြောင်းကြားစာ နည်းဗျူဟာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varslingsstrategi" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचना रणनीति" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificatie strategie" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varslingsstrategi" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njira Yotumiza Mauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾ ਰਣਨੀਤਿ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategia powiadomień" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان ستراتیژي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estratégia de notificação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estratégia de notificação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategie de notificare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Метод уведомлений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategija Notifikacija" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීමේ උපාය මාර්ගය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stratégia upozornení" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategija obvestil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategjia e Njoftimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стратегија обавештења" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategija notifikacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Strategi för aviseringar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mkakati wa Arifa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்பு முறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనల వ్యూహం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กลยุทธ์สำคัญแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirim Stratejisi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стратегія сповіщення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاع کی حکمت عملی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnoma strategiyasi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiến lược thông báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Icebo leZaziso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知选项" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知策略" + } + } + } + }, + "notificationsStyle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewing Styl" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمط الإشعار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildiriş stili" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پد ءِ انداز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стыль апавяшчэнняў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стил на известията" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notification Style" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estil de notificacions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Styl upozornění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arddull Hysbysiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationsstil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungsstil" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Στυλ Ειδοποιήσεων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notification Style" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciiga Stilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo de notificación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo de notificación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teatiste laad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenen Estiloa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سبک اعلان" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoitusten tyyli" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo ng Notipikasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Style de notification" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo de notificacións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salon Sanarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סגנון התראות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अधिसूचना शैली" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil obavijesti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések stílusa" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումների ոճ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaya Notifikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stile della notifica" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知スタイル" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების სტილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ម៉ូដនៃការជូនដំណឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆ ಶೈಲಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림 스타일" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şêweya Agahdarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olukalenge Oluzirako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimų stilius" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojuma izskats" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стил на известувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдлийн хэв маяг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaya Pemberitahuan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက် စတိုင်ပုံစံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsling Stil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचना शैली" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificatie stijl" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varslingsstil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njira Yotumiza Mauthenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾ ਸ਼ੈਲੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Styl powiadomień" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان سټایل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo de notificação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estilo de notificação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil de notificare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стиль уведомлений" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil Notifikacija" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීම් විලාසය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Štýl upozornenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slog obvestil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stili i Njoftimeve" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стил обавештења" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stil notifikacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviseringsutseende" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtindo wa Arifa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்பு முறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనల శైలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปแบบการแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirim Stili" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стиль сповіщень" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاع کا انداز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnoma uslubi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiểu thông báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isitayile seZaziso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知样式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知樣式" + } + } + } + }, + "notificationsSystem" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nuwe boodskappe in {conversation_count} gesprekke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسالة جديدة {message_count} في {conversation_count} محادثات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} danışıqda {message_count} yeni mesaj" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} نئے پیغاماں چو {conversation_count} فترٴں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} новых паведамленняў у {conversation_count} гутарках" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} нови съобщения в {conversation_count} чата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} কথোপকথনে {message_count} নতুন বার্তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} missatges nous a {conversation_count} converses" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nových zpráv v {conversation_count} konverzacích" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} neges newydd mewn {conversation_count} sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nye beskeder i {conversation_count} samtaler" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} neue Nachrichten in {conversation_count} Unterhaltungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} νέα μηνύματα σε {conversation_count} συνομιλίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} new messages in {conversation_count} conversations" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novaj mesaĝoj en {conversation_count} interparoloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mensajes nuevos en {conversation_count} chats" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mensajes nuevos en {conversation_count} chats" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} uut sõnumit {conversation_count} vestluses" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mezu berri {conversation_count} elkarrizketatan" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} پیام‌های جدید در {conversation_count} گفتگو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} uutta viestiä {conversation_count} keskustelussa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} bagong mensahe sa {conversation_count} usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nouveaux messages dans {conversation_count} conversations" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novas mensaxes en {conversation_count} conversas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabbin saƙonni {message_count} a cikin tattaunawa {conversation_count}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} הודעות חדשות ב־{conversation_count} שיחות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} बातचीत में {message_count} नए संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novih poruka u {conversation_count} razgovora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} új üzenet {conversation_count} beszélgetésben" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} նոր հաղորդագրություն {conversation_count} խոսակցություններում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan baru {message_count} di percakapan {conversation_count}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nuovi messaggi in {conversation_count} conversazioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count}個の会話に{message_count}個の新着メッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} ახალი შეტყობინება {conversation_count} საუბრებში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} សារថ្មីក្នុង {conversation_count} ការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} ಸಂಭಾಷಣೆಗಳಲ್ಲಿ {message_count} ಹೊಸ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 {conversation_count}개에 새 메시지 {message_count}개" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} peyamên nû di {conversation_count} axaftinan de" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} obubaka obupya mu {conversation_count} ennyanjulu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} ຂໍ້ຄວາມໃໝ່ໃນ {conversation_count} ການສົນທະນາ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} naujų(-os) žinutės(-ių) {conversation_count} pokalbyje(-iuose)" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} jauni ziņojumi {conversation_count} sarunās" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} нови пораки во {conversation_count} конверзации" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} харилцан ярианд {message_count} шинэ мессеж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mesej baru dalam {conversation_count} perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} စကားပြောဆိုမှုများတွင် {message_count} မက်ဆေ့ချ်အသစ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nye meldinger i {conversation_count} samtaler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} कुराकानी मा {message_count} नयाँ सन्देशहरू छन्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nieuwe berichten in {conversation_count} gesprekken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nye meldingar i {conversation_count} samtalar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mauthenga atsopano mu {conversation_count} zokambirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} ਨਵੇਂ ਸੁਨੇਹੇ {conversation_count} ਗੱਲਬਾਤਾਂ ਵਿੱਚ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nowych wiadomości w {conversation_count} konwersacjach" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} نوي پیغامونه په {conversation_count} مکالمو کې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mensagens novas em {conversation_count} conversas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novas mensagens em {conversation_count} conversas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mesaje noi în {conversation_count} conversații" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} новых сообщений в {conversation_count} беседах" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novih poruka u {conversation_count} razgovora" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} සංවාදවල {message_count} නව පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nové správy v {conversation_count} konverzáciách" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novih sporočil v {conversation_count} pogovorih" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} mesazhe të reja në {conversation_count} biseda" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} нових порука у {conversation_count} преписки" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} novih poruka u {conversation_count} razgovora" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} nya meddelanden i {conversation_count} konversationer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} ujumbe mpya katika {conversation_count} mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} புதிய தகவல்கள் {conversation_count} உரையாடல்களில்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} సంభాషణలలో కొత్త {message_count} సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "มี {message_count} ข้อความใหม่ใน {conversation_count} การสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{conversation_count} sohbette {message_count} yeni mesaj" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} нових повідомлень у {conversation_count} розмовах" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} نئے پیغامات {conversation_count} گفتگوؤں میں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} yangi xabar {conversation_count} suhbatda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} tin nhắn mới trong {conversation_count} cuộc trò chuyện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} imiyalezo emitsha kwi {conversation_count} iingxoxo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count}条新消息在{conversation_count}个会话中" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{message_count} 則新訊息在 {conversation_count} 個對話中" + } + } + } + }, + "notificationsVibrate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibreer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الاهتزاز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Titrəmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائبریٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вібрацыя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вибрация" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভাইব্রেট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dirgrynu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibration" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibration" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δόνηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrate" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibri" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibración" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibración" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibratsioon" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bibrazioa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لرزش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Värinä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrate" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrate" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "רטט" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कांपना" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibracija" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rezgés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թրթռոց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Getar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "振動" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვიბრაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ញ័រ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಂಪಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "진동" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xûda ke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwabika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibruoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вибрирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чичиргээ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Getaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တုန်ခါမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वाइब्रेट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trillen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrate" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵਾਇਬਰੇਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wibracje" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وایبریټ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibração" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вибрация" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibriraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කම්පනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibriranje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dridhu" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вибрирање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibracija" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibrate" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அதிர்வு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకంపన" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สั่น." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Titreşim" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вібрація" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "وائبریٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vibratseiya" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rung" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phokohli" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "振动" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "震動" + } + } + } + }, + "notNow" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie nou nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ليس الآن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndi yox" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ھِن نا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не зараз" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не сега" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এখন নয়" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ara no" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teď ne" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid nawr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikke nu" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nicht jetzt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όχι τώρα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not now" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne nun" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahora no" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ahora no" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitte praegu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez orain" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حالا نه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei nyt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwag ngayon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pas maintenant" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agora non" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba Yanzu Ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא עכשיו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अभी नहीं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne sada" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Most nem" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ոչ հիմա" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lain kali" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non ora" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "後で" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ახლა არა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពេលក្រោយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈಗಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "나중에" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "رێ پێنەدان" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaakati nedda" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne dabar" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne tagad" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не сега" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одоохондоо үгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bukan sekarang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အခု မဟုတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikke nå" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अहिले होईन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu niet" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikkje no" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunanka mana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੁਣ ਨਹੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie teraz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اوس نه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agora não" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agora não" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu acum" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не сейчас" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne sada" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැන් නොවේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teraz nie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prekliči" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo tani" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не сада" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne sada" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inte nu" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sio sasa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இப்பொழுது இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇప్పుడు కాదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่ใช่ตอนนี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şimdi değil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не зараз" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابھی نہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hozir emas" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không phải bây giờ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hayi ngoku" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "下次再说" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "暫不" + } + } + } + }, + "off" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Af" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مغلق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ماتبت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выкл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изключено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বন্ধ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vypnuto" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "I ffwrdd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fra" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aus" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απενεργοποιημένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Off" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malŝaltita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apagado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inactivo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Väljas" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itzalita" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خاموش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pois" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Off" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Désactivé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desactivado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כבוי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बंद" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ki" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անջատված" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padam" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Off" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オフ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Გამორთვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಫ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용 안함" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Girtî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziizze" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išjungta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izslēgts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исклучено" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унтраалттай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mati" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Av" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बन्द" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uit" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Av" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wañuchishka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਬੰਦ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyłączone" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desligado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desligado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dezactivat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выключено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključeno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අක්‍රීයයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vypnuté" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izklop" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fikur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "искл." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isključeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Av" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zima" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அணை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆఫ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปิด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapalı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимкнено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'chirilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tắt" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndithethwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "关" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "關閉" + } + } + } + }, + "okay" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نعم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yaxşı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹھیک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "ОК" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ок" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ঠিক আছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "D'acord" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iawn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εντάξει" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bone" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okei" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ados" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "باشه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vale" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "O.K" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אוקיי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ठीक है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "U redu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rendben" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Լավ է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oke" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オーケー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კარგი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "확인" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taye" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weewawo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Labi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Во ред" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зүгээрээ" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "ठिक छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oké" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ok" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chabwino" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਠੀਕ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okej" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ok" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ОК" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "U redu" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "හරි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "V redu" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "У реду" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "U redu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okej" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sawa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சரி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సరే" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตกลง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamam" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добре" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹھیک ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayli" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okay" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kulungile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "确定" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "好的" + } + } + } + }, + "on" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يعمل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Açıq" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyala" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Укл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Активирано" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "চালু" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actiu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zap." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ymlaen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tændt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktiv" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ενεργοποιημένο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "On" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝaltita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sees" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piztuta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "روشن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käytössä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naka-On" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activé" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "A kunne" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מופעל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऑन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Omogući" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Միացրած" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hidup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "On" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オン" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩართვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆನ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Li" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "On" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įjungta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вклучено" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Асаалттай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktif" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖွင့်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "På" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "चालु" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aan" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "På" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapichishka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚਾਲੂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Włącz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "فعال" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Activat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вкл" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključeno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සක්‍රීයයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapnuté" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vklop" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndezur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Укључено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uključeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "På" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waka" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இயக்கம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆన్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Açık" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увімк." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چالو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yoqilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mở" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweeri" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "开启" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "開啟" + } + } + } + }, + "onboardingAccountCreate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skep rekening" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء حساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab yarat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب بناؤ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварыць уліковы запіс" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създай акаунт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট তৈরি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea un compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvořit účet" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creu cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opret konto" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account erstellen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργία λογαριασμού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create account" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krei konton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear cuenta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loo konto" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontua sortu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایجاد حساب کاربری" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luo tili" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create Account" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Créer un compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙiri asusu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יצירת חשבון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता बनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stvori račun" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fiók létrehozása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գրանցվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat akun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea account" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントを作成" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "განცხადების შექმნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create account" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ರಚಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 생성" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabê çêke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilira Account" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເກີນໄປກຽນແບບບັນດາເກື່ອນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sukurti paskyrą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveidot kontu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај сметка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэл үүсгэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat akaun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့်ကို ဖန်တီးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lag konto" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता बनाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account aanmaken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett konto" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangani Akaunti" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਕਾਊਂਟ ਬਣਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utwórz konto" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "گروه جوړ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creează un cont" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создать аккаунт" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj račun" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගිණුම සාදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvoriť účet" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvari račun" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krijo llogari" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај налог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj nalog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa konto" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unda akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கை உருவாக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అకౌంట్ సృష్టించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create account" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap oluştur" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створити обліковий запис" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ بنائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisobni yaratish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo tài khoản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenza iakhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建账号" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "建立帳號" + } + } + } + }, + "onboardingAccountCreated" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "rekening geskep" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم إنشاء الحساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab yaradıldı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account Created" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уліковы запіс створаны" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Акаунтът е създаден" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাকাউন্ট তৈরি হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compte creat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Účet vytvořen" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crëwyd cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto oprettet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account erstellt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο Λογαριασμός Δημιουργήθηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account Created" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto kreita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuenta Creada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Cuenta creada!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto loodud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontua sortuta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب ساخته شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tili luotu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagawa na ang account" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compte Créé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conta creada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asusun An Kirkira" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חשבונך נוצר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता बनाया गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Račun Kreiran" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fiók létrehozva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաշիվը ստեղծված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akun telah dibuat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account creato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントが作成されました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიში შექმნილია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានបង្កើត​គណនី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆ ರಚಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 생성됨" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab hate çêkirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account Yekubwako" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໄດ້ສ້າງແອກາດແລ້ວ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paskyra sukurta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konts izveidots" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Акаунт креиран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэл үүсгэгдсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaun Dicipta" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့် ဖန်တီးပြီးပါပြီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto opprettet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता सिर्जना गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account aangemaakt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto oppretta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaunti Amisika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਾਤਾ ਬਣਾਇਆ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto zostało utworzone" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب جوړ شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conta Criada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conta Criada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cont creat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аккаунт создан" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Račun kreiran" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Account නිර්මාණය කරන ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Účet bol vytvorený" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Račun ustvarjen" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llogaria e krijuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налог је креиран" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalog je kreiran" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto Skapat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akaunti Imesasishwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கு உருவாக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఖాతా సృష్టించబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สร้างบัญชีแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap Oluşturuldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обліковий запис створено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اکاؤنٹ بنایا گیا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akkaunt yaratilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã tạo tài khoản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iakhawunti yenziwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "账户已创建" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "帳號已建立" + } + } + } + }, + "onboardingAccountExists" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ek het 'n rekening" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لدي حساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabım var" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مانی اکاؤنٹ اے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "У мяне ёсць уліковы запіс" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имам акаунт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আমার একটি অ্যাকাউন্ট আছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tinc un compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mám účet" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae gen i gyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeg har en konto" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ich habe einen Account" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έχω λογαριασμό" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "I have an account" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mi havas konton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar sesión" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iniciar sesión" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mul on konto" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu bat daukat" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "من یک حساب کاربری دارم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minulla on tili" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May account na ako" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "J'ai un compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teño unha conta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ina da lissafi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש לי חשבון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेरा खाता है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imam račun" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Már van felhasználóm" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ես հաշիվ ունեմ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saya punya akun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ho già un account" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントを持っています" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მე მაქვს ანგარიში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្ញុំមានគណនីមួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನನಗೆ ಖಾತೆಯಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정이 있습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez hesabe yekî hebûme" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nina akaawunti" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aš turiu paskyrą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Man ir konts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имам сметка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надад бүртгэл байгаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saya ada akaun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ငါးကောင်ရှိတယ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeg har en konto" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मेरो खाता छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ik heb een account" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eg har ein konto" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndimakhala ndi akaunti" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੇਰੇ ਕੋਲ ਇੱਕ ਖਾਤਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mam już konto" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "زه حساب لرم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eu tenho uma conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Já tenho uma conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Am deja un cont" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "У меня есть аккаунт" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imam nalog" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මට ගිණුමක් තියෙනවා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mám účet" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imam račun" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kam një llogari" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Имам налог" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imam nalog" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jag har ett konto" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nina akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எனக்கு கணக்கு உள்ளது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నాకు ఖాతా ఉంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฉันมีบัญชี" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabım var" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Я маю обліковий запис" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "میرے پاس ایک اکاؤنٹ ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menda hisob mavjud" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tôi có tài khoản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndinayo iakhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我已有账号" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我已有帳戶" + } + } + } + }, + "onboardingBackAccountCreation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy kan nie verder teruggaan nie. Om jou rekening skepping te kanselleer, moet {app_name} sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكنك الرجوع أكثر. لإلغاء إنشاء حسابك، يجب إغلاق {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha geri qayıda bilməzsiniz. Hesabın yaradılmasını ləğv etmək üçün {app_name} çıxış etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شُما ناہزشتہ تہارے شارتہ ممیدہ۔ اکون ناہ تابت تہارا ختم کنند رنگین {app_name} کنارہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можаце вярнуцца далей. Каб адмяніць стварэнне ўліковага запісу, {app_name} неабходна зачыніць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се върнете по-назад. За да анулирате създаването на акаунт, {app_name} трябва да се затвори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি আর পেছনে যেতে পারবেন না। আপনার অ্যাকাউন্ট তৈরি বাতিল করতে, {app_name} বন্ধ করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No podeu anar més enrere. Per a cancel·lar la creació del compte, {app_name} necessita tancar-se." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dále se nemůžete vrátit. Pokud chcete zrušit vytváření účtu, {app_name} musí být ukončena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni allwch fynd yn ôl ymhellach. Er mwyn canslo creu eich cyfrif, mae'n rhaid i {app_name} gau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke gå længere tilbage. For at annullere din kontooprettelse skal {app_name} lukkes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst nicht weiter zurückgehen. Um die Erstellung deines Accounts abzubrechen, muss {app_name} beendet werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορείτε να επιστρέψετε περαιτέρω. Για να ακυρώσετε τη δημιουργία του λογαριασμού σας, το {app_name} πρέπει να τερματιστεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot go back further. In order to cancel your account creation, {app_name} needs to quit." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne povas reeniri. Por nuligi vian kreadon de konto, {app_name} devas fermiĝi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes retroceder más. Para cancelar la creación de tu cuenta, {app_name} necesita cerrarse." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes retroceder más. Para cancelar la creación de tu cuenta, {app_name} necesita cerrarse." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te ei saa rohkem tagasi minna. Konto loomise tühistamiseks peab {app_name} sulguma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin duzu gehiago atzera egin. Zure kontuaren sorkuntza bertan behera uzteko, {app_name}-ek itxi behar du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما نمی توانید بیش از این به عقب بروید. برای اینکه ساختن حساب کاربری خود را لغو کنید {app_name} باید بسته شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et voi mennä pidemmälle taaksepäin. Tili luomisen peruuttamiseksi {app_name} on suljettava." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ka na pwedeng bumalik. Para makansela mo ang paggawa ng account, kailangang mag-quit ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous ne pouvez pas revenir en arrière. Pour annuler la création de votre compte, {app_name} doit quitter." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za ku iya komawa baya ba. Domin dakatar da ƙirƙirar asusunka, {app_name} yana buƙatar rufe." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אינך יכול/ה לחזור אחורה יותר. כדי לבטל את יצירת החשבון שלך, {app_name} צריכה להיסגר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप आगे नहीं जा सकते हैं। अपना खाता निर्माण रद्द करने के लिए, {app_name} को छोड़ना होगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete se vratiti unatrag. Da biste otkazali kreiranje računa, {app_name} mora prestati s radom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem tudsz tovább visszamenni. A felhasználód létrehozásának megszakításához a {app_name} alkalmazásnak ki kell lépnie." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք չեք կարող հետ գնալ։ Ձեր հաշվի ստեղծումը չեղարկելու համար {app_name}-ը պետք է ավարտել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak bisa kembali lebih jauh. Untuk membatalkan pembuatan akun Anda, {app_name} perlu keluar." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile tornare indietro. Per annullare la creazione del tuo account, {app_name} deve essere chiuso." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "これ以上戻れません。アカウント作成をキャンセルするには、{app_name}を終了する必要があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ვერ დაბრუნდებით უფრო უკან. ანგარიშის შექმნის გაუქმებისთვის საჭიროა გავიდეთ {app_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនអាចថយក្រោយបន្ថែមទៀតបានទេ។ ដើម្បីបោះបង់ការបង្កើតគណនី {app_name} ត្រូវទាំងបញ្ចប់ផ្នែកនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಹಿಂದೆ ಹೋಗುವುದಿಲ್ಲ. ನೀವು ಖಾತೆಯ ನಿರ್ಮಾಣವನ್ನು ರದ್ದುಗೊಳಿಸಲು, {app_name} ಅನ್ನು ತಕ್ಷಣಕ್ಕೆ ಮುಚ್ಚಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "더 이상 돌아갈 수 없습니다. 계정 생성을 취소하려면 {app_name} 을 종료해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hûn naxwazin vegerin paşê. Bo qebûl nekirina çêkirina hesabê we, {app_name} divê bigire." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tolemwa mukufuluma. Okuyiza kupawaaka akawalilizo, {app_name} ekyo kutwale n'egivaamu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negalite grįžti toliau. Norėdami atšaukti savo paskyros kūrimą, {app_name} turi užsidaryti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs nevarat iet tālāk atpakaļ. Lai atceltu jūsu konta izveidi, {app_name} ir jābeidz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се враќате понатаму. За да го откажете креирањето на сметката, {app_name} треба да се исклучи." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цааш буцах боломжгүй. Таны Бүртгэл үүсгэхийг зогсоохын тулд {app_name}-г хаах шаардлагатай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak boleh kembali lebih jauh. Untuk membatalkan pembuatan akaun anda, {app_name} perlu berhenti." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot go back further. In order to cancel your account creation, {app_name} needs to quit." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke gå lenger tilbake. For å avbryte kontopprettelsen må {app_name} avsluttes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं पछाडि जान सक्नुहुन्न। आफ्नो खाता सृजना रद्द गर्न {app_name} लाई बन्द गर्नु पर्नेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt niet verder terug gaan. Om de aanmaak van uw account te annuleren moet {app_name} afgesloten worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikkje gå lenger tilbake. For å avbryte kontoopprettelsen, må {app_name} avsluttes." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simungathe kubwerera kwina. Kuyimitsa kupanga nambala yanu, {app_name} ayenera kusiya." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਹੁਣ ਤੋਂ ਵਾਪਸ ਨਹੀਂ ਜਾ ਸਕਦੇ। ਆਪਣਾ ਖਾਤਾ ਬਣਾਉਣਾ ਰੱਦ ਕਰਨ ਲਈ, {app_name} ਨੂੰ ਬੰਦ ਕਰਨਾ ਜ਼ਰੂਰੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można cofnąć dalej. Aby anulować tworzenie konta, należy zamknąć aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو نشئ کولی نور بیرته لاړ شئ. د خپل حساب جوړولو لغوه کولو لپاره، {app_name} اړتیا لري چې وتړل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não pode voltar mais. Para cancelar a criação da sua conta, o {app_name} precisa ser fechado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não pode voltar mais atrás. Para cancelar a criação da sua conta, {app_name} tem que sair." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te-ai întors la capăt. Pentru a anula crearea contului tău, {app_name} trebuie să se închidă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можете вернуться назад. Чтобы отменить создание вашего аккаунта, {app_name} должен прекратить работу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete se vratiti unazad. Da biste otkazali kreiranje naloga, {app_name} mora da se zatvori." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඉදිරියට යා cannot go back further. ඔබේ ගිණුම නිර්මාණය නැවැත්වීමට, {app_name} නවත්වන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemôžete sa vrátiť späť. Ak chcete zrušiť vytvorenie svojho účtu, {app_name} musíte ukončiť." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morete se vrniti nazaj. Če želite prekiniti ustvarjanje računa, mora {app_name} zapreti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk mund të ktheheni më tej. Për të anuluar krijimin e llogarisë suaj, {app_name} duhet të mbyllet." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се вратите уназад. Да бисте отказали креирање налога, потребно је да изађете из {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete da se vratite dalje. Da biste otkazali kreiranje naloga, {app_name} mora da se isključi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan inte gå tillbaka längre. För att avbryta din kontoskapning måste {app_name} avslutas." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi kwenda nyuma zaidi. Ili kufuta kuundwa kwa akaunti yako, {app_name} inahitaji kufungwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கை உருவாக்கலை முடிக்க, {app_name} க்கு வெளியேறவேண்டும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు వెనక్కి వెళ్ళలేరు. ఖాతా సృష్టిని రద్దు చేయడానికి, {app_name} మూసివేయాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่สามารถย้อนกลับไปอีกได้ ในการยกเลิกการสร้างบัญชีของคุณ {app_name} จำเป็นต้องออกจากระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha ileriye gidemezsiniz. Hesap oluşturmayı iptal etmek için {app_name}'nın kapanması gerekir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви не можете повернутись. Для скасування створення облікового запису {app_name} має завершити роботу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ مزید واپس نہیں جا سکتے۔ اکاؤنٹ کی تخلیق کو منسوخ کرنے کے لیے، {app_name} کو بند کرنا ہوگا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ortga qaytolmaysiz. Hisob yaratishni bekor qilish uchun {app_name} ni to'xtatish kerak." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không thể quay lại được nữa. Để hủy tạo tài khoản của bạn, {app_name} cần thoát." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awungekhe ubuyele umva ngakumbi. Ukusuka kokuqhawula ukudala iakhawunti yakho, i-{app_name} kufuneka ivalwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您无法再返回上一级了。退出{app_name}以取消账号创建。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您無法再往回了。為取消您的帳戶創建,{app_name} 需要退出。" + } + } + } + }, + "onboardingBackLoadAccount" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy kan nie verder teruggaan nie. Om te stop met laai van jou rekening, moet {app_name} sluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكنك الرجوع أكثر. لإيقاف تحميل حسابك، يجب إغلاق {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha geri qayıda bilməzsiniz. Hesabın yüklənməsini dayandırmaq üçün {app_name} çıxış etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شُما ممیدہ تہارا قتل کنند رنگین {app_name} کنارہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можаце вярнуцца далей. Каб спыніць загрузку ўліковага запісу, {app_name} неабходна зачыніць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се върнете по-назад. За да спрете зареждането на акаунта си, {app_name} трябва да се затвори." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি আর পেছনে যেতে পারবেন না। আপনার অ্যাকাউন্ট লোড করা বন্ধ করতে, {app_name} বন্ধ করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No podeu tornar més enrere. Per aturar la càrrega del vostre compte, {app_name} necessita tancar-se." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dále se nemůžete vrátit. Pokud chcete zastavit načítání svého účtu, {app_name} musí být ukončena." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni allwch fynd yn ôl ymhellach. Er mwyn atal llwytho eich cyfrif, mae'n rhaid i {app_name} gau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke gå længere tilbage. For at stoppe indlæsningen af din konto skal {app_name} lukkes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst nicht weiter zurückgehen. Um das Laden deines Accounts zu stoppen, muss {app_name} beendet werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορείτε να επιστρέψετε περαιτέρω. Για να σταματήσετε τη φόρτωση του λογαριασμού σας, το {app_name} πρέπει να τερματιστεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot go back further. In order to stop loading your account, {app_name} needs to quit." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi ne povas reeniri. Por halti ŝarĝadon de via konto, {app_name} devas fermiĝi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes retroceder más. Para dejar de cargar tu cuenta, {app_name} necesita cerrarse." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No puedes retroceder más. Para dejar de cargar tu cuenta, {app_name} necesita cerrarse." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te ei saa rohkem tagasi minna. Konto laadimise peatamiseks peab {app_name} sulguma." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin duzu gehiago atzera egin. Zure kontuaren kargatzea gelditzeko, {app_name}-ek itxi behar du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما نمی توانید بیش از این به عقب بروید. برای متوقف کردن بارگیری حساب {app_name} باید بسته شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et voi mennä pidemmälle taaksepäin. Tilin lataamisen lopettamiseksi {app_name} on suljettava." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ka na pwedeng bumalik. Para matigil ang pag-load ng iyong account, kailangang mag-quit ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous ne pouvez pas revenir en arrière. Pour annuler le chargement de votre compte, {app_name} doit quitter." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za ku iya komawa baya ba. Domin dakatar da lodin asusunku, {app_name} yana buƙatar rufe." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אינך יכול/ה לחזור אחורה יותר. כדי להפסיק את טעינת החשבון שלך, {app_name} צריכה להיסגר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप आगे नहीं जा सकते हैं। अपना खाता लोड करना रोकने के लिए, {app_name} को छोड़ना होगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete se vratiti unatrag. Da biste zaustavili učitavanje svog računa, {app_name} mora prestati s radom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem tudsz tovább visszamenni. A felhasználód betöltésének megszakításához a {app_name} alkalmazásnak ki kell lépnie." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք չեք կարող հետ գնալ։ Ձեր հաշվի բեռնաթափումը դադարեցնելու համար {app_name}-ը պետք է ավարտել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak dapat kembali lebih jauh. Untuk menghentikan pemuatan akun Anda, {app_name} perlu keluar." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile tornare indietro. Per interrompere il ripristino del tuo account è necessario chiudere {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "これ以上戻れません。アカウントの読み込みを中止するには、{app_name}を終了する必要があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ ვერ დაბრუნდებით უფრო უკან. ანგარიშის ჩატვირთვის შეჩერებისათვის საჭიროა გავიდეთ {app_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនអាចថយក្រោយបន្ថែមទៀតបានទេ។ ដើម្បីបញ្ឈប់ការរុករកគណនីរបស់អ្នក {app_name} ត្រូវបញ្ចប់។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಹಿಂದೆ ಹೋಗುವುದಿಲ್ಲ. ನೀವು ಖಾತೆಯನ್ನು ಲೋಡ್ ಮಾಡುವಿಕೆಯು ನಿಲ್ಲಿಸಲು, {app_name} ತಕ್ಷಣಕ್ಕೆ ಮುಚ್ಚಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "더 이상 돌아갈 수 없습니다. 계정을 불러오기를 중단하려면 {app_name} 을 종료해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hûn naxwazin paşê vegerin. Bo rawestgiryayî hewldana hesabê we, {app_name} divê bigire." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tayole misa. Okuyinya kugyakyusa akawunyiyo, {app_name} yetaaga kugivaamu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negalite grįžti toliau. Norėdami sustabdyti paskyros įkėlimą, {app_name} turi užsidaryti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs nevarat iet tālāk atpakaļ. Lai apturētu konta ielādi, {app_name} ir jābeidz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се враќате понатаму. За да престанете да ја вчитувате вашата сметка, {app_name} треба да се исклучи." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цааш буцах боломжгүй. Таны аккаунт ачаалахаа зогсоохын тулд {app_name} хэрэгслээс гарах шаардлагатай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak boleh kembali lebih jauh. Untuk menghentikan pemuatan akaun anda, {app_name} perlu berhenti." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You cannot go back further. In order to stop loading your account, {app_name} needs to quit." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikke gå lenger tilbake. For å stoppe lasting av kontoen må {app_name} avsluttes." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं पछाडि जान सक्नुहुन्न। आफ्नो खाता लोड गर्न रोक्न {app_name} लाई बन्द गर्नु पर्नेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt niet verder terug gaan. Om te stoppen met het laden van uw account moet {app_name} afgesloten worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan ikkje gå lenger tilbake. For å stoppe innlasting av kontoen, må {app_name} avsluttes." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simungathe kubwerera kwina. Kulephera kumaliza kunyamula nambala yanu, {app_name} ayenera kusiya." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ ਹੁਣ ਤੋਂ ਵਾਪਸ ਨਹੀਂ ਜਾ ਸਕਦੇ। ਆਪਣਾ ਖਾਤਾ ਲੋਡ ਕਰਨਾ ਰੋਕਣ ਲਈ, {app_name} ਨੂੰ ਬੰਦ ਕਰਨਾ ਜਰੂਰੀ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można cofnąć dalej. Aby zatrzymać wczytywanie konta, należy zamknąć aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو نشئ کولی نور بیرته لاړ شئ. د خپل حساب بارولو بندولو لپاره، {app_name} اړتیا لري چې وتړل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você não pode voltar mais. Para interromper o carregamento da sua conta, o {app_name} precisa ser fechado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não pode voltar mais atrás. Para parar de carregar a sua conta, {app_name} tem que sair." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te-ai întors la capăt. Pentru a opri încărcarea contului tău, {app_name} trebuie să se închidă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы не можете вернуться назад. Чтобы остановить загрузку вашего аккаунта, {app_name} должен прекратить работу." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete se vratiti unazad. Da biste prestali sa učitavanjem naloga, {app_name} mora da se zatvori." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ඉදිරිපසට යා cannot go back further. ඔබේ ගිණුම පූරන්න නැවැත්වීමට, {app_name} නවත්වන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemôžete ísť späť. Ak chcete zastaviť načítanie účtu, je potrebné ukončiť {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne morete se vrniti nazaj. Če želite ustaviti nalaganje vašega računa, mora {app_name} zapreti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk mund të ktheheni më tej. Për të ndaluar ngarkimin e llogarisë suaj, {app_name} duhet të mbyllet." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можете да се вратите уназад. Да бисте престали да учитавате ваш налог, потребно је да изађете из {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne možete da se vratite dalje. Da biste prestali sa učitavanjem naloga, {app_name} mora da se isključi." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan inte gå tillbaka längre. För att sluta ladda ditt konto måste {app_name} avslutas." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi kwenda nyuma zaidi. Ili kusitisha kupakia akaunti yako, {app_name} inahitaji kufungwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கை ஏற்றுவதில் நீட்டிக்க, {app_name} க்கு வெளியேறவேண்டும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు వెనక్కి వెళ్ళలేరు. మీ ఖాతా లోడ్ చేయడాన్ని నిలిపివేయడానికి, {app_name} మూసివేయాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่สามารถย้อนกลับไปอีกได้ ในการหยุดการโหลดบัญชีของคุณ {app_name} จำเป็นต้องออกจากระบบ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha ileriye gidemezsiniz. Hesabınızı yüklemeyi durdurmak için {app_name}'nın kapanması gerekir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви не можете повернутись. Для скасування завантаження облікового запису {app_name} має завершити роботу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ مزید واپس نہیں جا سکتے۔ اپنا اکاؤنٹ لوڈ کرنے سے روکنے کے لیے، {app_name} کو بند کرنا ہوگا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz ortga qaytolmaysiz. Hisobingizni yuklashni to'xtatish uchun, {app_name} ni to'xtatish kerak." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn không thể quay lại được nữa. Để dừng tải tài khoản của bạn, {app_name} cần thoát." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awungekhe ubuyele umva ngakumbi. Ukusuka kokuqhawula ukulayisha i-akhawunti yakho, i-{app_name} kufuneka ivalwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您无法再返回上一级了。退出{app_name}以停止加载您的账号。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您無法再往回了。為停止加載您的帳戶,{app_name} 需要退出。" + } + } + } + }, + "onboardingBubbleCreatingAnAccountIsEasy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "'n Rekening skep is onmiddellik, gratis en anoniem {emoji}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء حساب فوري، مجاني، ومجهول {emoji}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabı dərhal, ödənişsiz və anonim olaraq yaradın {emoji}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب بنانا فوری، مفت، اور گمنام ہے {emoji}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварэнне ўліковага запісу хуткае, бясплатнае і ананімнае {emoji}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създаването на акаунт е моментално, безплатно и анонимно {emoji}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি অ্যাকাউন্ট তৈরি করা তাৎক্ষণিক, বিনামূল্যে এবং বেনামী {emoji}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear un compte és instantani, gratuït i anònim {emoji}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvoření účtu je okamžité, zdarma a anonymní {emoji}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae creu cyfrif yn syth, yn rhad ac am ddim, ac yn anhysbys {emoji}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "At oprette en konto er øjeblikkeligt, gratis og anonymt {emoji}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einen Account zu erstellen ist sofort möglich, kostenlos und anonym {emoji}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating an account is instant, free, and anonymous {emoji}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating an account is instant, free, and anonymous {emoji}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krei konton estas tuj, senpage, kaj anonime {emoji}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear una cuenta es rápido, gratuito y anónimo {emoji}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear una cuenta es rápido, gratis y anónimo {emoji}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto loomine on kiire, tasuta ja anonüümne {emoji}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu bat sortzea berehalakoa, doakoa eta anonimoa da {emoji}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساختن یک حساب کاربری فوری و رایگان و ناشناس است {emoji}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilin luominen on hetkessä valmis, ilmaista ja anonyymiä {emoji}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang paggawa ng account ay mabilis, libre, at anonymous {emoji}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La création d'un compte est instantanée, gratuite et anonyme {emoji}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙirar asusu yana sauri, kyauta, kuma ba a bayyana suna {emoji}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יצירת חשבון היא מיידית, חינמית ואנונימית {emoji}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक खाता बनाना तात्कालिक, मुफ्त, और गुमनाम है {emoji}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvaranje računa je trenutačno, besplatno i anonimno {emoji}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A fiók létrehozása azonnali, ingyenes és névtelen {emoji}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաշիվ ստեղծելը հապավոտ, անվճար և անանուն է {emoji}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membuat akun dengan cepat, gratis, dan anonim {emoji}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creare un account è istantaneo, gratuito e anonimo {emoji}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントの作成は即座に、無料で、匿名です{emoji}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიშის შექმნა მყისიერი, უფასო და ანონიმურია {emoji}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការបង្កើតគណនីគឺមានភ្លាមៗ, \noofសាន្ត និងមិនបង្ហាញអត្តសញ្ញាណ {emoji}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾತೆಯನ್ನು ರಚಿಸುವುದು ತಕ್ಷಣ, ಉಚಿತ, ಮತ್ತು ಅಜ್ಞಾತವಾಗಿದೆ {emoji}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정 생성은 즉시, 무료이며 익명입니다 {emoji}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çêkirina hesabê instant, belaş û anonim e {emoji}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutandika akaunti kiko kyangu, ku bwerere, era tekuli na muntu amukubira kyenkana {emoji}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sukurti paskyrą yra momentinis, nemokamas ir anonimiškas {emoji}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontu izveide ir tūlītēja, bezmaksas un anonīma {emoji}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирањето на сметка е моментално, бесплатно и анонимно {emoji}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүртгэл үүсгэх нь шуурхай, үнэ төлбөргүй, нууцлалыг хангасан {emoji}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membuat akaun adalah serta-merta, percuma dan tanpa nama {emoji}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကောင့်တစ်ခုဖန်တီးခြင်းသည် ချက်ချင်းပြုလုပ်နိုင်ပြီး အခမဲ့နှင့် အမည်မဖော်သင့်မှု ဖြစ်ပါသည် {emoji}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Å opprette en konto er øyeblikkelig, gratis og anonymt {emoji}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खाता सिर्जना गर्नु तुरुन्त, निशुल्क, र गोप्य छ {emoji}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een account aanmaken is direct, gratis en anoniem {emoji}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Å opprette ein konto er umiddelbart, gratis og anonymt {emoji}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupanga akaunti kumachitika nthawi yomweyo, kwaulere, komanso ndi achinsinsi {emoji}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਕਾਊਂਟ ਬਣਾਉਣਾ ਝਟ ਪਟ ਤੇ ਮੁਫ਼ਤ ਹੈ ਅਤੇ ਗੁਪਤ ਬੁਨਿਆਦ ਉੱਤੇ ਹੈ {emoji}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto stworzysz natychmiast, za darmo i anonimowo {emoji}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب جوړول فوري، وړیا، او نومی دي {emoji}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar uma conta é instantâneo, gratuito e anônimo {emoji}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criar uma conta é instantâneo, grátis, e de forma anónima {emoji}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crearea unui cont este imediată, gratuită și anonimă {emoji}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создание учетной записи происходит мгновенно, бесплатно и анонимно {emoji}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiranje računa je instantno, besplatno i anonimno {emoji}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගිණුමක් සාදීම ක්ෂණික, නොමිලයේ සහ අනන්‍යයි {emoji}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvorenie účtu je okamžité, bezplatné a anonymné {emoji}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvarjanje računa je takojšnje, brezplačno in anonimno {emoji}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krijimi i një llogarie është i menjëhershëm, falas dhe anonim {emoji}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирање налога је тренутно, бесплатно и анонимно {emoji}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiranje naloga je trenutno, besplatno i anonimno {emoji}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Att skapa ett konto är omedelbart, gratis och anonymt {emoji}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuunda akaunti ni haraka, bila malipo, na bila jina {emoji}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கணக்கை உருவாக்குவது உடனடியாகவும், இலவசமாகவும், இரகசியமாகவும் {emoji}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఖాతా సృష్టించడం తక్షణం, ఉచితం మరియు అనామకం {emoji}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating an account is instant, free, and anonymous {emoji}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesap oluşturmak anında, ücretsiz ve anonimdir {emoji}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створення облікового запису миттєве, безплатне та анонімне {emoji}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک اکاؤنٹ بنانا فوری، مفت، اور گمنام ہے {emoji}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob yaratish bir zumda, bepul va anonimdir {emoji}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo một tài khoản thì ngay lập tức, miễn phí và ẩn danh {emoji}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukwenza i-akhawunti kwangoko, simahla, kwaye kungaziwa {emoji}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建账户是即时、免费且匿名的{emoji}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "創建帳戶是即時、免費的,且是匿名的 {emoji}" + } + } + } + }, + "onboardingBubbleNoPhoneNumber" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy het nie eers 'n telefoonnommer nodig om in te teken nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت لا تحتاج حتى إلى رقم هاتف للتسجيل." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qeydiyyat üçün telefon nömrəsinə belə ehtiyacınız yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شمے ناہ کانینٹ موبائل نمبر ہامینٹ انسکر ہونے۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для рэгістрацыі вам нават не патрэбен тэлефонны нумар." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ви е нужен телефонен номер, за да се запишете." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't even need a phone number to sign up." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No necessiteu ni tan sols un número de telèfon per registrar-vos." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "K založení účtu nepotřebujete ani telefonní číslo." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oes angen eich rhif ffôn hyd yn oed i gofrestru." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du behøver ikke engang et telefonnummer for at tilmelde dig." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du brauchst nicht einmal eine Telefonnummer, um dich anzumelden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν χρειάζεστε καν αριθμό τηλεφώνου για να εγγραφείτε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't even need a phone number to sign up." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi eĉ ne bezonas telefonnumeron por registriĝi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni siquiera necesitas un número de teléfono para registrarte." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni siquiera necesitas un número de teléfono para registrarte." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registreerumiseks ei ole isegi vaja telefoninumbrit." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez duzu telefono zenbakirik behar izena emateko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای ثبت نام حتی به شماره تلفن نیاز ندارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et tarvitse edes puhelinnumeroa rekisteröityäksesi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi mo kailangang mag-register gamit ang numero ng telepono." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous n'avez même pas besoin d'un numéro de téléphone pour vous inscrire." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nin sequera necesitas un número de teléfono para rexistrarte." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba kwa buƙatar lambar wayar hannu don yin rajista." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא צריך/ה אפילו מספר טלפון כדי להירשם." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपको साइन अप करने के लिए फ़ोन नंबर की भी आवश्यकता नहीं है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za prijavu vam čak nije potreban telefonski broj." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Még telefonszámra sincs szükséged a regisztrációhoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք նույնիսկ հեռախոսահամար չունեք գրանցվելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda bahkan tidak membutuhkan nomor telepon untuk mendaftar." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non hai nemmeno bisogno di un numero di telefono per iscriverti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "電話番号は必要ありません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ არც ტელეფონის ნომერი არ გჭირდებათ რეგისტრაციისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកមិនចាំបាច់ចូលប្រព័ន្ធទៅតាមលេខលេខទូរស័ព្ទទេ." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಸೈನ್ ಅಪ್ ಮಾಡಲು ಫೋನ್ ನಂಬರ್ಅವಶ್ಯಕವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "가입할 때 전화번호가 필요하지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te jî bi we hêxam nayê nîşandin ku bi telefoneke ser girêdan peyda bicinûsin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toyetaaga wafoona okusibu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums net nereikia telefono numerio registracijai." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jums pat nav vajadzīgs tālruņa numurs, lai reģistrētos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ви е потребен ниту телефонски број за да се регистрирате." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танд бүртгүүлэхийн тулд утасны дугаар ч хэрэггүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda tidak perlu nombor telefon untuk mendaftar." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You don't even need a phone number to sign up." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du trenger ikke en gang et telefonnummer for å registrere deg." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "साइनअप गर्न तपाईंलाई फोन नम्बरको पनि आवश्यकता छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U heeft zelfs geen telefoonnummer nodig om u aan te melden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du treng ikkje ein gong telefonnummer for å registrere deg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simufuna nambala yafoni kulemba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਸਾਈਨ ਅੱਪ ਕਰਨ ਲਈ ਫ਼ੋਨ ਨੰਬਰ ਦੀ ਵੀ ਲੋੜ ਨਹੀਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do rejestracji nie jest potrzebny nawet numer telefonu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو حتی د لاسلیک کولو لپاره د تلیفون شمېرې ته اړتیا نلرئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você nem precisa de um número de telefone para se inscrever." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem precisa de um número de telefone para se registar." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nici măcar nu ai nevoie de un număr de telefon pentru a te înscrie." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для регистрации даже не нужен номер телефона." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije vam potreban broj telefona za prijavljivanje." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට ලියාපදිංචි වීමට දුරකථන අංකයක් අවශ්ය නොවේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dokonca ani nepotrebujete telefónne číslo, aby ste sa zaregistrovali." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za prijavo ni potreben telefonski številka." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju nuk keni nevojë për një numër telefoni për tu regjistruar." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не треба вам ни број телефона за пријаву." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne treba vam čak ni broj telefona za prijavu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du behöver inte ens ett telefonnummer för att registrera dig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata huhitaji nambari ya simu kujisajili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரிமம் பெறுவதற்கு நீங்கள் தொலைபேசி எண் தேவையில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సైన్ అప్ చేయడానికి మీకు ఫోన్ నంబర్ కూడా అవసరం లేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณไม่จำเป็นต้องมีหมายเลขโทรศัพท์เพื่อสมัคร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayıt olmak için telefon numarasına bile ihtiyacınız yok." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для реєстрації навіть не потрібен номер телефону." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو سائن اپ کرنے کے لیے فون نمبر کی بھی ضرورت نہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ro'yxatdan o'tish uchun sizga telefon raqami kerak emas." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn thậm chí không cần số điện thoại để đăng ký." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awudingi kwanombolo yefowuni ukubhalisa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "甚至不需要电话号码就能注册。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您甚至不需要電話號碼即可註冊。" + } + } + } + }, + "onboardingBubblePrivacyInYourPocket" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatheid in jou sak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الخصوصية في جيبك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cibinizdəki gizlilik." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ کی جیب میں نجی تحفظ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прыватнасць у вашай кішэні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поверителност в джоба ви." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পকেটে গোপনীয়তা।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privadesa a la teva butxaca." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soukromí ve vaší kapse." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preifatrwydd yn eich poced." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatliv i din lomme." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatsphäre immer griffbereit." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόρρητο στην τσέπη σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy in your pocket." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privateco en via poŝo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidad en tu bolsillo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidad en tu bolsillo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatsus teie taskus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pribatutasuna zure poltsikoan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حریم خصوصی در جیب شما." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yksityisyys taskukokoisena." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy sa bulsa mo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confidentialité dans votre poche." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade no teu peto." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sirri a cikin aljihunka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרטיוּת בכיס שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपकी जेब में गोपनीयता।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost u vašem džepu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zsebben hordott adatvédelem." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնիություն ձեր գրպանում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privasi di saku anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua Privacy a portata di mano." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ポケットの中のプライバシー。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირადი თქვენს ჯიბეში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកជនភាពនៅក្នុងហោប៉ៅរបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಜೇಬಿನಲ್ಲಿ ಖಾಸಗಿತನ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신의 주머니 속 개인정보 보호." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nihênî di hindurê te de." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katibako n’omukumi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatumas tavo kišenėje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privātums tavā kabatā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приватност во вашиот џеб." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны халаасанд байгаа нууцлал" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privasi di dalam poket anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အိတ်ကပ်ထဲမှ ကိုယ်ရေးလုံခြုံမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvern i din lomme." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गोपनीयता तपाईको खल्तीमा।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy in je zak." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvern i lomma." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chinsinsi mthumba mwanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਜੇਬ ਵਿੱਚ ਪ੍ਰਾਇਵੇਸੀ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prywatność w Twojej kieszeni." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "محرمیت ستاسو په جیب کې." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade no seu bolso." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade no seu bolso." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confidențialitatea în buzunarul tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Конфиденциальность у вас в кармане." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost u tvom džepu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවකාශයේ පෞද්ගලිකත්වය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Súkromie vo vašom vrecku." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zasebnost v vašem žepu." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatësia në xhepin tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приватност у вашем џепу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost u vašem džepu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Integritet i din ficka." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faragha mfukoni mwako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கையிலே தனியுரிமை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ జేబులో గోప్యత." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ความเป็นส่วนตัวในกระเป๋าคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cebinizdeki gizlilik." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Конфіденційність у вашій кишені." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کی جیب میں پرائیویسی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xavfsizlik - sizning cho`ntagingizda." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riêng tư trong túi của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubumfihlo kwipokotho yakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "口袋中的隐私保护" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您口袋裡的隱私" + } + } + } + }, + "onboardingBubbleSessionIsEngineered" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is ontwerp om jou privaatheid te beskerm." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مصمم لحماية خصوصيتك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} məxfiliyinizi qorumaq üçün hazırlanıb." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ترب قیام لازمی ہبجاہ قانونپیاد عبدیتہ سِبھی؟" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} спраектаваны для абароны вашай прыватнасці." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е създаден, за да защитава вашата поверителност." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আপনার গোপনীয়তা রক্ষা করতে প্রস্তুত করা হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} està dissenyat per protegir la vostra privacitat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je navržena tak, aby chránila vaše soukromí." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} wedi'i gynllunio i ddiogelu eich preifatrwydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er designet til at beskytte dit privatliv." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ist darauf ausgerichtet, deine Privatsphäre zu schützen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} είναι σχεδιασμένο για να προστατεύει την ιδιωτικότητά σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is engineered to protect your privacy." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} estas desegnita por protekti vian privatecon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está diseñado para proteger tu privacidad." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está diseñado para proteger tu privacidad." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on loodud teie privaatsuse kaitsmiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zure pribatutasuna babesteko diseinatua dago." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای محافظت از حریم خصوصی شما طراحی شده است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} on suunniteltu suojaamaan yksityisyyttäsi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay dinisenyo upang protektahan ang iyong privacy." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} est conçu pour protéger votre vie privée." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} está deseñado para protexer a túa privacidade." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} an injiniyya don kare sirrinka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} מתוכנן להגן על פרטיותך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} आपकी गोपनीयता की रक्षा के लिए बनाया गया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je dizajniran za zaštitu vaše privatnosti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a magánéleted védelmére lett tervezve." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը մշակված է ձեր գաղտնիությունը պահպանելու համար." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dirancang untuk melindungi privasi Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} è progettato per proteggere la tua privacy." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はプライバシーを保護するように設計されています。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ი ინჟინერიულადაა გათვლილი თქვენი კონფიდენციალობის დასაცავად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវបានបង្កើតឡើងដើម្បីការពារភាពឯកជនរបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನಿಮ್ಮ ಖಾಸಗಿತನವನ್ನು ರಕ್ಷಿಸಲು ವಿನ್ಯಾಸಗೊಳಿಸಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}는 개인 정보를 보호하기 위해 설계되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bi meşxulekariyê weşanê te razî dike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yaggirirwa okutaasa ebyo by'oyagala okukweka." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ໄດ້ຖືກຂຽນຂຶ້ນເພື່ອປົກປ້ອງຄວາມສ່ວນຕົວຂອງທ່ານ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sukurta jūsų privatumui apsaugoti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir izstrādāta, lai aizsargātu jūsu privātumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} е дизајниран да ја заштити вашата приватност." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь таны хувийн нууцыг хамгаалахад зориулж бүтээгдсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} direka untuk melindungi privasi anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ကိုယ်ရေးလုံခြုံရေးကိုကာကွယ်ရန် စီစဉ်ခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er laget for å beskytte ditt personvern." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} तपाईंको गोपनीयताको सुरक्षा गर्न इन्जिनियर गरिएको छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} is ontwikkeld om je privacy te beschermen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} er konstruert for å beskytte ditt personvern." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yapangidwa kuti ikutetezeni zinsinsi zanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਤੁਹਾਡੀ ਪ੍ਰਾਈਵੇਸੀ ਦੀ ਰੱਖਿਆ ਲਈ ਬਣਾਇਆ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaprojektowaliśmy aplikację {app_name} z myślą o ochronie Twojej prywatności." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ستاسو محرمیت خوندي کولو لپاره جوړ شوی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foi projetado para proteger sua privacidade." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} é projetado para proteger sua privacidade." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} este concepută pentru a-ți proteja confidențialitatea." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} создан для защиты вашей конфиденциальности." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je dizajniran da štiti vašu privatnost." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඔබේ රහස්‍යතාව ආරක්ෂා කිරීමට ඉංජිනේරු කර ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bol navrhnutý na ochranu tvojho súkromia." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je zasnovan za zaščito vaše zasebnosti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} është projektuar për të mbrojtur privatësinë tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} је дизајниран да заштити вашу приватност." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} je projektovan da štiti vašu privatnost." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} är utvecklad för att skydda din integritet." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imeundwa kulinda faragha yako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} உங்கள் தனிப்பட்ட தகவல்களை பாதுகாக்க பெறுமுகமாக வடிவமைக்கப்பட்டுள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} మీ గోప్యతను రక్షించడానికి ఇంజనీరింగ్ చేయబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ถูกออกแบบมาเพื่อปกป้องความเป็นส่วนตัวของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gizliliğinizi koruyacak şekilde tasarlanmıştır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} розроблений для захисту вашої приватності." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو آپ کی پرائیویسی کی حفاظت کے لئے تیار کیا گیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sizning maxfiyligingizni himoya qilish uchun ishlab chiqilgan." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} được thiết kế để bảo vệ quyền riêng tư của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yenzelwe ukukhusela ubumfihlo bakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}旨在保护您的隐私。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 專為保護您的隱私而設計。" + } + } + } + }, + "onboardingBubbleWelcomeToSession" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welkom by {app_name} {emoji}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مرحباً بك في {app_name} {emoji}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqinə xoş gəlmisiniz {emoji}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما پٹِن {app_name} ترا ویچار بیتگ {emoji}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сардэчна запрашаем у {app_name} {emoji}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добре дошли в {app_name} {emoji}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welcome to {app_name} {emoji}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benvingut a {app_name} {emoji}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vítejte v {app_name} {emoji}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Croeso i {app_name} {emoji}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velkommen til {app_name} {emoji}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Willkommen bei {app_name} {emoji}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καλώς ήλθατε στο {app_name} {emoji}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welcome to {app_name} {emoji}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvenon al {app_name} {emoji}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te damos la bienvenida a {app_name} {emoji}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bienvenido a {app_name} {emoji}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tere tulemast {app_name}'i {emoji}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongi etorri {app_name}-era {emoji}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خوش امدید به {app_name}{emoji}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tervetuloa {app_name}-sovellukseen {emoji}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maligayang Pagdating sa {app_name} {emoji}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bienvenue sur {app_name} {emoji}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barka da zuwa {app_name} {emoji}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ברוכים הבאים ל-{app_name} {emoji}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}{emoji} में आपका स्वागत है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobrodošli u {app_name} {emoji}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üdvözlünk a {app_name}-ön {emoji}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բարի գալուստ {app_name} {emoji}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selamat datang di {app_name} {emoji}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benvenuto su {app_name} {emoji}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ようこそ、{app_name}へ {emoji}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კეთილი იყოს თქვენი მობრძანება {app_name} {emoji}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមស្វាគមន៍មកកាន់ {app_name} {emoji}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಸ್ವಾಗತ {emoji}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}에 오신 것을 환영합니다 {emoji}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi xêr hatî {app_name} {emoji}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tusanyuse, kulambuza ku {app_name} {emoji}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sveiki atvykę į {app_name} {emoji}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laipni lūdzam {app_name} {emoji}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добредојдовте во {app_name} {emoji}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-д тавтай морил {emoji}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selamat datang ke {app_name} {emoji}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welcome to {app_name} {emoji}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velkommen til {app_name} {emoji}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सत्रमा स्वागत छ {app_name} {emoji}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welkom bij {app_name} {emoji}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velkommen til {app_name} {emoji}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takulandirani ku {app_name} {emoji}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 'ਚ ਤੁਹਾਡਾ ਸੁਆਗਤ ਹੈ {emoji}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Witaj w aplikacji {app_name} {emoji}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښه راغلاست ته {app_name} {emoji}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bem-vindo ao {app_name} {emoji}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bem-vindo a {app_name} {emoji}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bun venit la {app_name} {emoji}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добро пожаловать в {app_name} {emoji}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobrodošli u {app_name} {emoji}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} වෙත සාදරයෙන් පිළිගනිමි {emoji}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vitajte v {app_name} {emoji}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobrodošli v {app_name} {emoji}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirë se vini në {app_name} {emoji}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Добродошли у {app_name} {emoji}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dobrodošli u {app_name} {emoji}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välkommen till {app_name} {emoji}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Karibu kwenye {app_name} {emoji}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} க்கு வரவேற்கிறோம் {emoji}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} కు స్వాగతం {emoji}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยินดีต้อนรับสู่ {app_name} {emoji}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}'ye Hoş Geldiniz {emoji}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вітаємо у {app_name} {emoji}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} میں خوش آمدید {emoji}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ga xush kelibsiz {emoji}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chào mừng tới {app_name} {emoji}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wamkelekile kwi-{app_name} {emoji}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "欢迎使用{app_name} {emoji}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "歡迎使用 {app_name} {emoji}" + } + } + } + }, + "onboardingHitThePlusButton" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Druk op die plus-knoppie om 'n geselskap te begin, 'n groep te skep of by 'n amptelike gemeenskap aan te sluit!" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اضغط على زر الإضافة لبدء محادثة، إنشاء مجموعة، أو الانضمام إلى مجتمع رسمي!" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Söhbət başlatmaq, qrup yaratmaq və ya rəsmi bir icmaya qoşulmaq üçün üstəgəl düyməsinə basın!" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چیٹ شروع کرنے، گروہ بنانے یا Community میں شامل ہوئیں لئے پلس بٹن دباو!" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Націсніце кнопку плюс, каб пачаць чат, стварыць групу або далучыцца да афіцыйнай супольнасці!" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Докоснете плюса, за да започнете чат, създадете група или се присъедините към официална общност!" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একটি চ্যাট শুরু করতে, একটি গ্রুপ তৈরি করতে, বা একটি অফিসিয়াল Community যোগ দিতে প্লাস বোতামে ক্লিক করুন!" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prem el botó més per iniciar un xat, crear un grup o unir-te a una comunitat oficial!" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stisknutím tlačítka + můžete zahájit konverzaci, vytvořit skupinu nebo se připojit k oficiální komunitě!" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taro’r botwm plws i gychwyn sgwrs, creu grŵp, neu ymuno â chymuned swyddogol!" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryk på plusknappen for at starte en chat, oprette en gruppe eller tilslutte dig et officielt fællesskab!" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drücke den Plus-Button, um einen Chat zu starten, eine Gruppe zu erstellen oder einer offiziellen Community beizutreten!" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πατήστε το κουμπί συν για να ξεκινήσετε μια συνομιλία, να δημιουργήσετε μια ομάδα ή να γίνετε μέλος σε μια επίσημη κοινότητα!" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hit the plus button to start a chat, create a group, or join an official community!" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Premu la plusan butonon por komenci babilon, krei grupon, aŭ algrupiĝi en oficiala komunumo!" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Pulsa el botón más para iniciar un chat, crear un grupo o unirte a una comunidad oficial!" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¡Pulsa el botón más para iniciar un chat, crear un grupo o unirte a una comunidad oficial!" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vajuta plussnuppu, et alustada vestlust, luua grupp või liituda ametliku kogukonnaga!" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egin klik plus botoian txat bat hasteko, talde bat sortzeko edo komunitate ofizial batean sartzeko!" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دکمه مثبت را بزنید تا گفتگو را شروع کنید، گروه بسازید یا به یک انجمن رسمی بپیوندید!" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paina plus-painiketta aloittaaksesi keskustelun, luo ryhmä tai liity viralliseen yhteisöön!" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pindutin ang plus button para magsimula ng usapan, lumikha ng grupo, o sumali sa opisyal na community!" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appuyez sur le bouton plus pour démarrer une discussion, créer un groupe ou rejoindre une communauté officielle !" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Presiona a icona máis para iniciar unha conversa, crear un grupo ou unirte a unha comunidade oficial!" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danna maɓallin ƙari don fara hira, ƙirƙirar rukunin, ko shiga al'umma na hukuma!" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לחץ על כפתור ההוספה כדי להתחיל שיחה, ליצור קבוצה, או להצטרף ל-Community רשמי!" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "चैट शुरू करने, ग्रुप बनाने या आधिकारिक Community में शामिल होने के लिए प्लस बटन दबाएं!" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritisnite gumb plus za pokretanje razgovora, kreiranje grupe ili pridruživanje službenoj zajednici!" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyomd meg a plusz gombot, hogy beszélgetést indíts, csoportot hozz létre, vagy csatlakozz egy hivatalos közösséghez!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հպեք պլյուս կոճակին՝ զրույց սկսելու, խումբ ստեղծելու կամ պաշտոնական համայնքին միանալու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekan tombol tambah untuk memulai obrolan, membuat grup, atau bergabung dengan komunitas resmi!" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tocca il pulsante + per avviare una chat, creare un gruppo o unirti a una Comunità ufficiale!" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プラスボタンを押すとチャット、グループを作成、または公式コミュニティに参加できます!" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააჭირეთ პლუს ღილაკს ჩატის დასაწყებად, ჯგუფის შესაქმნელად ან ოფიციალურ Community-ში გაწევრიანებისთვის!" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចុចប៊ូតុងបូកដើម្បីចាប់ផ្តើមជជែក បង្កើតក្រុម ឬចូលរួមជាមួយសហគមន៍ផ្លូវការ!" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಚಾಟ್ ಮಾಡಲು, ಗುಂಪು ಮಾಡಲು, ಅಥವಾ ಅಧಿಕೃತ ಸಮುದಾಯದಲ್ಲಿ ಸೇರಲು ಪ್ಲಸ್ ಬಟನ್ ಒತ್ತಿರಿ!" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "채팅을 시작하거나, 그룹을 생성하거나, 공식 커뮤니티에 참여하려면 플러스 버튼을 눌러보세요!" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bişkojka plus bikirtînin da ku danûstendinek dest pê bikin, komek biafirînin, an beşdarî civatek fermî bibin!" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genda ku kabuttani ka plus okuteekawo ekigambo, okufuula ekibinja, oba okwegatta ku Community eseemezza!" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paspauskite pliuso mygtuką, kad pradėtumėte pokalbį, sukurtumėte grupę ar prisijungtumėte prie oficialios Community!" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nospiediet plusa pogu, lai sāktu sarunu, izveidotu grupu vai pievienotos oficiālai kopienai!" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Притиснете го копчето плус за да започнете разговор, создадете група или се придружите на официјално заедница!" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чатыг эхлүүлэх, бүлэг үүсгэх эсвэл албан ёсны Community-д нэгдэхийн тулд Plus товчийг дар!" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekan butang tambah untuk memulakan sembang, cipta kumpulan atau sertai Community rasmi!" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောရန်၊ အုပ်စုဖန်တီးရန် သို့မဟုတ် တရားဝင် အသိုင်းအဝိုင်းတစ်ခုတွင် ပါဝင်ရန် ပလပ်စ်ဘတ်တင်ကိုနှိပ်ပါ!" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk på pluss-knappen for å starte en chat, opprette en gruppe eller bli med i et offisielt community!" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "च्याट सुरु गर्न, समूह सिर्जना गर्न वा आधिकारिक Community सामेल हुन प्लस बटन थिच्नुहोस्!" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Druk op de plusknop om een chat te starten, een groep te maken of lid te worden van een officiële community!" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trykk på plussknappen for å starte en samtale, opprette en gruppe eller bli med i en offisiell community!" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dinani batani ladongosolo kuti muyambe kulankhula, kupanga gulu, kapena kulowa mu Community yovomerezeka!" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਸ਼ੁਰੂ ਕਰਨ, ਗਰੁੱਪ ਬਣਾਉਣ ਜਾਂ ਕੌਮੀ ਕੁਝ ਤੌਰ ਤੇ ਕਮੇਟੀ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਣ ਲਈ ਪਲੱਸ ਬਟਨ ਨੂੰ ਦਬਾਓ!" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naciśnij przycisk plus, aby rozpocząć czat, utworzyć grupę lub dołączyć do oficjalnej społeczności!" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د چیټ پیل کولو، ګروپ جوړولو، یا رسمي ټولنې سره یوځای کېدو لپاره پلس ټک کړئ!" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aperte o botão de mais para iniciar um chat, criar um grupo ou participar de uma comunidade oficial!" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clique no botão '+', para começar uma conversa, criar um grupo, ou juntar-se a uma comunidade oficial!" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apasă butonul plus pentru a începe o conversație, pentru a crea un grup sau pentru a intra într-o comunitate oficială!" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нажмите кнопку \"+\", чтобы начать беседу, создать группу или присоединиться к официальному сообществу!" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritisnite dugme plus da započnete razgovor, kreirate grupu ili se pridružite zvaničnoj zajednici!" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදයක් ආරම්භ කිරීමට, සමූහයක් නිර්මාණය කිරීමට හෝ නිල Community එකකට එක්වීමට ප්ලස් බට්න් එක තට්ටු කරන්න!" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stlačte tlačidlo plus a začnite konverzáciu, vytvorte skupinu alebo sa pridajte k oficiálnej komunite!" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritisnite plus gumb za začetek pogovora, ustvarjanje skupine ali pridružitev uradni skupnosti!" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trokitni butonin plus për të filluar një bisedë, krijuar një grup ose bashkuar një community zyrtar!" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Притисните дугме за чаврљање, креирање групе или придруживање службеној заједници!" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pritisnite dugme plus da započnete razgovor, kreirate grupu ili se pridružite službenoj zajednici!" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tryck på plusknappen för att starta en chatt, skapa en grupp eller gå med i en officiell community!" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonyeza kitufe cha kuongeza ili kuanzisha mazungumzo, kuunda kikundi, au kujiunga na jamii rasmi!" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சட்டையைத் தொடங்கிப் பேச அல்லது சமூகத்தில் சேர மம்பட்டனைப் பயன்படுத்துங்கள்!" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒక చాట్‌ను ప్రారంభించడానికి, ఒక గుంపును సృష్టించడానికి లేదా అధికారిక Communityలో చేరడానికి ప్లస్ బటన్‌ను నొక్కండి!" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กดปุ่มบวกเพื่อเริ่มแชท สร้างกลุ่ม หรือเข้าร่วม Community อย่างเป็นทางการ!" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbete başlamak, bir grup oluşturmak veya resmi bir topluluğa katılmak için artı butonuna tıklayın!" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Натисніть кнопку плюс, щоб розпочати чат, створити групу або приєднатися до офіційної спільноти!" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو شروع کرنے، گروپ بنانے یا سرکاری Community میں شامل ہونے کے لیے پلس بٹن دبائیں!" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni boshlash, guruh yaratish yoki rasmiy Community ga qo'shilish uchun plus tugmasini bosing!" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhấn nút cộng để bắt đầu cuộc trò chuyện, tạo nhóm hoặc tham gia cộng đồng chính thức!" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cofa iqhosha elingaphezulu ukuqala incoko, ukudala iqela okanye ukujoyina uluntu olusemthethweni!" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "点击 \"加号 \"按钮,开始聊天,创建一个群组,或加入一个官方社群!" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "點擊加號按鈕開始聊天、創建群組或加入官方社群!" + } + } + } + }, + "onboardingMessageNotificationExplanation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar is twee maniere waarop {app_name} jou van nuwe boodskappe kan in kennis stel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هناك طريقتان يمكن أن يبلغك {app_name} برسائلك الجديدة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sizə iki yolla mesajları bildirə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دو راہیں ہیں جن میں {app_name} نئے پیغامات توانت کرین." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Існуюць два спосабы як {app_name} можа абвяшчаць Вам пра новыя паведамленні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Има два начина, по които {app_name} може да ви уведоми за нови съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আপনার নতুন মেসেজগুলির বিষয়ে আপনাকে অবহিত করার দুটি উপায় রয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi ha dues maneres per les quals {app_name} et pot notificar els missatges nous." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Existují dva způsoby, jak vás může {app_name} upozorňovat na nové zprávy." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae dwy ffordd y gall {app_name} roi gwybod i chi am negeseuon newydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der er to måder {app_name} kan underrette dig om nye beskeder." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es gibt zwei Möglichkeiten, wie {app_name} dich über neue Nachrichten informieren kann." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Υπάρχουν δύο τρόποι με τους οποίους το {app_name} μπορεί να σας ειδοποιήσει για νέα μηνύματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There are two ways {app_name} can notify you of new messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estas du manieroj, kiel {app_name} povus notifi vin pri novaj mesaĝoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay dos maneras en las que {app_name} puede notificarte de nuevos mensajes." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay dos formas en las que {app_name} puede notificarte de nuevos mensajes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} saab teid uutest sõnumitest teavitada kahel viisil." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-k mezu berrien jakinarazpenak bidaltzeko bi modu ditu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دو راه وجود دارد که {app_name} می‌تواند شما را از پیام‌های جدید مطلع کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "On kaksi tapaa joilla {app_name} voi ilmoittaa sinulle uusista viesteistä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayroong dalawang paraan kung paano ka maaaring abisuhan ng {app_name} ng mga bagong mensahe." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il y a deux façons dont {app_name} peut vous notifier de nouveaux messages." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai dúas formas de que {app_name} pode notificarte sobre novas mensaxes." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akwai hanyoyi biyu {app_name} zai iya sanar da kai na sabon saƙonni." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ישנן שתי דרכים בהן {app_name} יכול להתריע לך על הודעות חדשות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} आपको नए संदेशों के बारे में दो तरीकों से बता सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dvije su opcije kako vam {app_name} može javiti o novim porukama." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} két módon tud értesíteni téged az új üzenetekről." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Երկու եղանակով {app_name}-ը կարող է ձեզ տեղեկացնել նոր հաղորդագրությունների մասին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ada dua cara {app_name} dapat memberitahu Anda tentang pesan baru." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ci sono due modi in cui {app_name} può notificarti nuovi messaggi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} が新しいメッセージを通知する方法は2つあります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არსებობს ორი გზა, რომლითაც {app_name} მუშაობას შეგატყობინებთ ახალ შეტყობინებებზე." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានវិធីពីរយ៉ាងដែល {app_name} អាចជូនដំណឹងទៅកាន់អ្នកអំពីសារថ្មី។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನಿಮ್ಮನ್ನು ಹೊಸ ಸಂದೇಶಗಳ ಬಗ್ಗೆ ತಿಳಿಸಲು ಎರಡು ಮಾರ್ಗಗಳಿವೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}이 새 메시지를 알릴 수 있는 두 가지 방법이 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu navên kîjan {app_name} temen bi peyamên nû agahiş dike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waliwo engeli bbiri {app_name} kuwolekeka bbubaka." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yra du būdai, kaip {app_name} gali jums pranešti apie naujas žinutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir divi veidi, kā {app_name} var tevi informēt par jaunām ziņām." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постојат два начини на кои {app_name} може да ве извести за нови пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} таныг мессежийн талаар мэдэгдэх хоёр арга бий." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terdapat dua cara {app_name} boleh memberitahu anda mengenai mesej baharu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသစ်ရရှိသော သတင်းများကို {app_name} မှ သင်အားအသိပေးနိုင်သော နည်းလမ်း နှစ်ခု ရှိသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er to måter {app_name} kan gi beskjed om nye meldinger på." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} तपाईँलाई नयाँ सन्देशहरूका लागि दुई तरिकाले सूचित गर्न सक्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er zijn twee manieren waarop {app_name} je op de hoogte kan stellen van nieuwe berichten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er to måter {app_name} kan gi beskjed om nye meldinger på." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pali njira ziwiri zomwe {app_name} imatha kukudziwitsani za mauthenga atsopano." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਤੁਹਾਨੂੰ ਨਵੇਂ ਸੁਨੇਹਿਆਂ ਦੀ ਸੂਚਨਾ ਦੇ ਸਕਦਾ ਹੈ ਦੇ ਦੋ ਤਰੀਕੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikacja {app_name} może powiadomić Cię o nowych wiadomościach na dwa sposoby." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تاسو دوه په نوې پیغامو خبرولی شی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Existem duas maneiras que o {app_name} pode notificar você sobre novas mensagens." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Existem duas maneiras pelas quais {app_name} pode notificá-lo sobre novas mensagens." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Există două moduri în care {app_name} te poate notifica despre mesaje noi." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Существует два способа, которыми {app_name} может уведомлять вас о новых сообщениях." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postoje dva načina na koje te {app_name} može obavijestiti o novim porukama." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඔබට නව පණිවිඩ දැනුම් දිය හැකි ක්‍රම දෙකක් තිබේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Existujú dva spôsoby, ako vás {app_name} môže upozorniť na nové správy." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obstajata dva načina, kako vas {app_name} lahko obvešča o novih sporočilih." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Janë dy mënyra sesi {app_name} mund t'ju njoftojë për mesazhe të reja." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постоје два начина на која вас {app_name} може обавестити о новим порукама." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postoje dva načina na koja vas {app_name} može obavestiti o novim porukama." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finns två sätt som {app_name} kan meddela dig om nya meddelanden på." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuna njia mbili ambazo {app_name} inaweza kukuarifu kuhusu jumbe mpya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} உங்களுக்கு புதிய செய்திகள் பற்றி அறிவிப்பதற்கான இரண்டு வழிகள் உள்ளன." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొత్త సందేశాలను మీరు {app_name} ద్వారా ప్రకటించవచ్చని రెండు మార్గాలు ఉన్నాయి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีสองวิธีที่ {app_name} สามารถแจ้งเตือนคุณเมื่อมีข้อความใหม่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}'ın size yeni mesajları bildirmesinin iki yolu vardır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} може сповіщати вас про нові повідомлення двома способами." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دو طریقے ہیں {app_name} آپ کو نئے پیغامات کے بارے میں مطلع کر سکتا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yangi xabarlar xaqida sizni ikki xil usulda xabardor qilishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"Có hai cách {app_name} có thể thông báo cho bạn về tin nhắn mới." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukho iindlela ezimbini ze-{app_name} zokukwazisa ngemiyalezo emitsha." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}有两种方式来向您发送消息通知。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 有兩種方式向您傳送通知。" + } + } + } + }, + "onboardingPrivacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatheidsbeleid" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سياسة الخصوصية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik Siyasəti" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نجی رہائش پالیسی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Палітыка прыватнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Политика за поверителност" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গোপনীয়তা নীতি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de Privacitat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zásady ochrany osobních údajů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Polisi Preifatrwydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatlivspolitik" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenschutzerklärung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πολιτική Απορρήτου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy Policy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privateca Politiko" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de Privacidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de privacidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatsuseeskirjad" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pribatutasun Politika" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیاست حفظ حریم خصوصی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tietosuojakäytäntö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patakaran sa Privacy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Politique de confidentialité" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de privacidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manufar Sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מדיניות פרטיות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गोपनीयता नीति" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pravila privatnosti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatvédelmi szabályzat" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնիության քաղաքականություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kebijakan Privasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy Policy" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プライバシーポリシー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირადი პოლიტიკა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy Policy" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾಸಗಿತನ ನೀತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인정보 보호 정책" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naha: Meta" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katibako Polosi ensigga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatumo politika" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privātuma politika" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Политика на приватност" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууцлалын бодлого" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dasar Privasi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကိုယ်ရေးလုံခြုံမှု မူဝါဒ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvernregler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गोपनीयता नीति" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacybeleid" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvernreglar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndondomeko ya Chinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਾਇਵੇਸੀ ਪਾਲਿਸੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Polityka prywatności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د محرمیت پالیسي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de Privacidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Política de Privacidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Politica de confidențialitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Политика конфиденциальности" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pravila o Privatnosti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy Policy" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zásady ochrany osobných údajov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pravilnik o zasebnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rregulla Privatësie" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Политика приватности" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Politika privatnosti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Integritetspolicy" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sera ya Faragha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தனியுரிமை கொள்கை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గోప్యతా విధానం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "นโยบายความเป็นส่วนตัว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik Politikası" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Політика конфіденційності" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرائیویسی پالیسی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maxfiylik siyosati" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chính sách Bảo mật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umgaqo-nkqubo Wobumfihlo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐私政策" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱私政策" + } + } + } + }, + "onboardingTos" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diensvoorwaardes" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "شروط الخدمة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xidmət Şərtləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرویس شرطون" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Условия за ползване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শর্তাবলী" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condicions del servei" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podmínky služby" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Telerau Gwasanaeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servicevilkår" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nutzungsbedingungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Όροι Χρήσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uz-kondiĉoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Términos de Servicio" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Términos del servicio" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasutustingimused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zerbitzu Baldintzak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شرایط خدمات" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palveluehdot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Tuntunin ng Serbisyo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conditions d'utilisation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condicións de servizo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka'idojin Aiki" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תנאי שירות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvjeti korištenja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szolgáltatási feltételek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սպասարկման պայմաններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Termini e Condizioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "利用規約" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომსახურების პირობები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸೇವಾ ನಿಯಮಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Têkiliyên Xizmetkarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amateeka g'obuweereza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paslaugų nuostatos" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakalpojuma noteikumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Услови на користење" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үйлчилгээний нөхцөл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syarat Perkhidmatan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဝန်ဆောင်မှု သတ်မှတ်ချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vilkår for bruk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेवाका शर्तहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruiksvoorwaarden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vilkår for bruk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malamulo Othandizira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੇਵਾ ਦੀਆਂ ਸ਼ਰਤਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warunki korzystania z usługi" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خدماتو شرایط" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Termos de Serviço" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Termos de Serviço" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Termeni și condiții" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Условия использования" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uvjeti korištenja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සේවා වියුතුන්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podmienky služby" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogoji storitve" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kushtet e Shërbimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Услови коришћења услуга" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uslovi korišćenja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Användarvillkor" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sheria za Huduma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேவை விதிமுறைகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సేవా నిబంధనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อกำหนดในการให้บริการ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hizmet Koşulları" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شرائط و ضوابط" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Foydalanish shartlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều Khoản Dịch Vụ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms of Service" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务条款" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "服務條款" + } + } + } + }, + "onboardingTosPrivacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deur hierdie diens te gebruik, stem jy in tot ons Diensvoorwaardes en Privaatheidsbeleid" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "باستخدام هذه الخدمة، أنت توافق على شروط الخدمة و سياسة الخصوصية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu xidməti istifadə edərək, Xidmət ŞərtləriGizlilik Siyasətimiz ilə razılaşırsınız" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس سروس کا استعمال کرتے ہوئے، آپ ہماری خدمات کی شرائط اور رازداری کی پالیسی سے اتفاق کرتے ہیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы карыстаецеся гэтай паслугай, вы згаджаецеся з нашымі Умовамі Карыстання і Палітыкай прыватнасці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "С използването на услугата, вие се съгласявате с нашите Условия за ползване и Политика за поверителност" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই পরিষেবা ব্যবহার করে, আপনি আমাদের পরিষেবার শর্তাবলী এবং গোপনীয়তা নীতি সম্মত হন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "En utilitzar aquest servei, accepteu els nostres Termes de Servei i la nostra Política de Privadesa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Používáním této služby souhlasíte s našimi Podmínkami služby a Zásadami ochrany osobních údajů" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trwy ddefnyddio'r gwasanaeth hwn, rydych chi'n cytuno i'n Telerau Gwasanaeth ac Polisi Preifatrwydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved at bruge denne service accepterer du vores Betingelser for brug og Privatlivspolitik" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durch die Nutzung dieses Dienstes stimmst du unseren Nutzungsbedingungen und Datenschutzbestimmungen zu" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χρησιμοποιώντας αυτή την υπηρεσία, συμφωνείτε με τους Όρους Παροχής Υπηρεσιών και την Πολιτική Απορρήτου μας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "By using this service, you agree to our Terms of Service and Privacy Policy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per uzado de ĉi tiu servo, vi konsentas al niaj Kondiĉoj de Servo kaj Privateca Politiko" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Al utilizar este servicio, aceptas nuestros Términos de Servicio y Política de Privacidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Al usar este servicio, aceptas nuestros Términos del servicio y Política de privacidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teenust kasutades nõustute meie Kasutustingimuste ja Privaatsuspoliitikaga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "By using this service, you agree to our Terms of Service and Privacy Policy" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با استفاده از این سرویس، شما با شرایط استفاده از خدمات و سیاست حریم خصوصی ما موافقت می‌کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttämällä tätä palvelua, hyväksyt meidän Käyttöehdot ja Tietosuojakäytäntö" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sa paggamit ng serbisyong ito, sumasang-ayon ka sa aming Mga Tuntunin ng Serbisyo at Patakaran sa Privacy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En utilisant ce service, vous acceptez nos Conditions d'utilisation et notre Politique de confidentialité" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ao usar este servizo, aceptas os nosos Termos de servizo e a Política de privacidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta yin amfani da wannan sabis, kun amince da Sharuddan Sabis namu da Manufar Sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בשימוש בשירות זה, אתה מסכים לתנאי השימוש ולמדיניות הפרטיות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस सेवा का उपयोग करके, आप हमारी सेवा की शर्तों और गोपनीयता नीति से सहमत होते हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korištenjem ove usluge pristajete na naše Uvjeti korištenja i Pravila privatnosti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A szolgáltatás használatával elfogadod az Általános Szerződési Feltételeinket és Adatvédelmi Szabályzatunkat" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտագործելով այս ծառայությունը, դուք համաձայնվում եք մեր Ծառայության Պայմաններ և Գաղտնիության Քաղաքականություն֊ի հետ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dengan menggunakan layanan ini, Anda menyetujui Syarat Layanan dan Kebijakan Privasi kami" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizzando questo servizio, accetti i nostri Termini e Condizioni e la nostra Politica sulla Privacy" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このサービスを利用することで、利用規約プライバシーポリシーに同意したことになります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მომსახურების გამოყენებით, თქვენ ეთანხმებით ჩვენს მომსახურების პირობებს და კონფიდენციალურობის პოლიტიკას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដោយប្រើសេវាកម្មនេះ អ្នកយល់ព្រមទៅនឹង លក្ខខណ្ឌ និង គោលការណ៍ភាពឯកជន របស់យើង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ ಸೇವೆಯನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು ನಮ್ಮ ಸೇವಾ ನಿಯಮಗಳು ಮತ್ತು ಖಾಸಗಿತನ ನೀತಿ ಅವುಗಳು ಒಪ್ಪುತ್ತೀರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서비스를 사용함으로써, 귀하는 우리의 서비스 약관개인정보 보호정책에 동의하게 됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bila ku hûn bi karanîna mâreyê em wergirtinên me yên Şertên Xezûrî û Siyaseta Arzûya Kesayetiê qebûl bikin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "By using this service, you agree to our Terms of Service and Privacy Policy" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ໂດຍການໃຊ້ບໍລິການນີ້, ທ່ານຕົຏຖ້ງກັບ ຂໍ້ກຳນົດໃນການບໍລິການ ແລະ ນະໂປລິຊີຄວາມຊອບໃຊ້ຂໍ້ມູນສ່ວນບຸກຄົນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naudodamiesi šia paslauga, Jūs sutinkate su mūsų Paslaugų teikimo sąlygomis ir Privatumo politika" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izmantojot šo pakalpojumu, jūs piekrītat mūsu Pakalpojumu sniegšanas noteikumiem un Privātuma politikai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Со користењето на оваа услуга, се согласувате со нашите Услови за користење и Политика за приватност" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ үйлчилгээг ашигласнаар та манай Үйлчилгээний нөхцөлүүд болон Нууцлалын бодлого-ийг зөвшөөрч байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dengan menggunakan perkhidmatan ini, anda bersetuju dengan Terma Perkhidmatan dan Polisi Privasi kami" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤဝန်ဆောင်မှု ကို အသုံးပြုခြင်းဖြင့် သင်သည် ကျွန်ုပ်များ၏ ဝန်ဆောင်မှု စည်းမျဉ်းများနှင့် ကိုယ်ရေးလုံခြုံမှု မူဝါဒ ကို သဘောတူကြောင်း ဖြစ်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å bruke denne tjenesten aksepterer du våre Vilkår for bruk og Personvernerklæring" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस सेवा प्रयोग गर्दा, तपाईं हाम्रोसेवा सर्तहरूगोपनीयता नीति मा सहमत हुनुहुन्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Door deze service te gebruiken, ga je akkoord met onze Gebruiksvoorwaarden en Privacybeleid" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ved å bruke denne tenesta, godtar du våre Vilkår for bruk og Personvernerklæring" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "By using this service, you agree to our Terms of Service and Privacy Policy" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਸੇਵਾ ਦੀ ਵਰਤੋਂ ਕਰ ਕੇ, ਤੁਸੀਂ ਸਾਡੇ ਸੇਵਾਵਾਂ ਦੀਆਂ ਸ਼ਰਤਾਂ ਅਤੇ ਪ੍ਰਾਈਵੇਸੀ ਪਾਲਿਸੀ ਨਾਲ ਸਹਿਮਤ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korzystając z tej usługi, zgadzasz się na nasze Warunki świadczenia usług i Politykę prywatności" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د دې خدمت په کارولو سره، تاسو زموږ د خدمت شرایط او د محرمیت پالیسي سره موافق یاست" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ao usar este serviço, você concorda com nossos Termos de Serviço e Política de Privacidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ao utilizar este serviço, concorda com os nossos Termos de Serviço e Política de Privacidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prin utilizarea acestui serviciu, sunteți de acord cu Termenii și condițiile și Politica de confidențialitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Используя этот сервис, вы соглашаетесь с нашими Условиями использования и Политикой конфиденциальности" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korišćenjem ove usluge, slažete se sa našim Uslovima korišćenja i Pravilima privatnosti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම සේවාව භාවිතා කිරීමෙන්, ඔබ අපගේ සේවා කෙරෙන නියම සහ රහස්‍යතා ප්‍රතිපත්තිය පිළිගනි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Používaním tejto služby súhlasíte s našimi Podmienkami služby a Zásadami ochrany osobných údajov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Z uporabo te storitve se strinjate z našimi pogoji storitve in politiko zasebnosti" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duke përdorur këtë shërbim, ju pranoni Kushtet e Shërbimit dhe Politikën e Privatësisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Коришћењем ове услуге, прихватате наше Услове коришћења и Правила приватности" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Korišćenjem ove usluge prihvatate naše Uslove korišćenja i Politiku privatnosti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genom att använda denna tjänst accepterar du våra Användarvillkor och Sekretesspolicy" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwa kutumia huduma hii, unakubali Vigezo vya Huduma na Sera ya Faragha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த சேவையைப் பயன்படுத்துவதன் மூலம், நீங்கள் எங்களின் சேவை விதிமுறைகளை மற்றும் தனியுரிமை கொள்கையை ஒப்புக்கொள்கிறீர்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ సేవను ఉపయోగించడం ద్వారా, మీరు మా సేవా నిబంధనలు మరియు గోప్యతా విధానం ని అంగీకరిస్తారు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การใช้บริการนี้แสดงว่าคุณยอมรับข้อกำหนดในการให้บริการและนโยบายความเป็นส่วนตัวของเรา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu hizmeti kullanarak Hizmet Şartlarımızı ve Gizlilik Politikamızı kabul etmiş olursunuz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користуючись цією послугою, ви погоджуєтесь з нашими Умовами надання послуг та Політикою конфіденційності" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس سروس کا استعمال کرتے ہوئے، آپ ہمارے سروس کی شرائط اور پرائیویسی پالیسی سے متفق ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ushbu xizmatdan foydalanganingiz uchun, siz bizning Foydalanish Shartlari va Maxfiylik Siyosati ga rozilik bildirasiz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bằng cách sử dụng dịch vụ này, bạn đồng ý với Điều khoản Dịch vụChính sách Bảo mật của chúng tôi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngokusebenzisa le nkonzo, uyavuma kwimigaqo yethu ye imigaqo yenkonzo kunye imigaqo yabucala" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用本服务即表示您同意我们的服务条款隐私政策" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用本服務即表示您同意我們的 服務條款隱私政策" + } + } + } + }, + "onionRoutingPath" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pad" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yol" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "راہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шлях" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Път" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাথ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruta" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trasa" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwybr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sti" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pfad" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαδρομή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vojo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rada" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسیر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Polku" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chemin" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruta" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hanya" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पाथ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Útvonal" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղի" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Percorso" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パス" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្លូវ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಾರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "경로" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekubo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceļš" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Патека" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зам" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လမ်းကြောင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sti" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मार्ग" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pad" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bane" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਥ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ścieżka" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لار" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caminho" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caminho" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cale" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Путь" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාර්ගය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cesta" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pot" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Путања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Putanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sökväg" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வழி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మార్గం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ทาง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yol" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шлях" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "راہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yo‘l" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đường đi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "路径" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "路徑" + } + } + } + }, + "onionRoutingPathDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} versteek jou IP deur jou boodskappe deur verskeie Service Nodes in {app_name} se gedesentraliseerde netwerk te stuur. Dit is jou huidige pad:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يخفي عنوان IP الخاص بك عن طريق تمرير رسائلك عبر عدة نقاط خدمة في شبكة {app_name} اللامركزية. هذا هو المسار الحالي الخاص بك:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, mesajlarınızı {app_name} tətbiqinin mərkəzləşdirilməmiş şəbəkəsindəki çoxsaylı xidmət düyünləri üzərindən yönləndirərək IP-nizi gizlədir. Bu, hazırkı yolunuzdur:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}دی آی پیءَ نے چھپچی کن گهنت روچیءَ دزے پیغامءَ هُن ڪمیں گهنت راهَد سرویس نوڊانی کررہ ، چہ {app_name}'دی ڊیسینټریْلائزڈ نیٹ ورکءِ م، یہ اپءَ حالاتی راه دپتءَ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} хавае ваш IP, накіроўваючы вашы паведамленні праз некалькі сэрвісных вузлоў у дэцэнтралізаванай сетцы {app_name}. Вось ваш цяперашні шлях:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} скрива вашия IP, като пренасочва съобщенията ви през множество Service Node възли в децентрализирана мрежа на {app_name}. Това е текущият ви път:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আপনার আইপি ঠিকানা গোপন করে সার্ভিস নোডগুলোর মাধ্যমে আপনার বার্তাগুলিকে ছড়িয়ে দেয় {app_name} এর বিকেন্দ্রীভূত নেটওয়ার্কে। এটি আপনার বর্তমান পথ:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} amaga la vostra IP redirigint els vostres missatges a través de múltiples Service Nodes a la xarxa descentralitzada de {app_name}. Aquest és el vostre camí actual:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skrývá vaši IP adresu tím, že směruje vaše zprávy přes několik Service Nodes v decentralizované síti {app_name}. Toto je vaše aktuální trasa:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} yn cuddio'ch cyfeiriad IP trwy lwybro'ch negeseuon trwy nifer o nodau gwasanaeth yn rhwydwaith gwasgaredig {app_name}. Dyma'ch llwybr presennol:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skjuler din IP ved at sende dine beskeder igennem adskillige Service Noder i {app_name}'s decentraliserede netværk. Dette er din nuværende rute:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} verbirgt deine IP-Adresse, indem deine Nachrichten über mehrere Service Nodes im dezentralen {app_name}-Netzwerk geroutet werden. Dies ist dein aktueller Pfad:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} αποκρύπτει την IP σας δρομολογώντας τα μηνύματά σας μέσω πολλών Service Nodes στο αποκεντρωμένο δίκτυο του {app_name}. Αυτή είναι η τρέχουσα διαδρομή σας:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hides your IP by routing your messages through multiple service nodes in {app_name}'s decentralized network. This is your current path:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kaŝas vian IP per direktigo de viaj mesaĝoj tra pluraj Service Nodes en {app_name}'s decentralizita reto. Jen via aktuala vojo:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oculta tu dirección IP al enrutar tus mensajes a través de varios nodos de servicio en la red descentralizada de {app_name}. Esta es tu ruta actual:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oculta tu IP haciendo rebotar tus mensajes a través de los Service Nodes en la red descentralizada de {app_name}. Esta es tu ruta actual:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} peidab teie IP-aadressi, suunates teie sõnumeid läbi mitme teenusesõlme {app_name}'i detsentraliseeritud võrgus. See on teie praegune rada:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k zure IPa ezkutatzen du zure mezuak hainbat Service Node zerbitzari bidez bideratuz {app_name}'ren decentralized network sarean. Hau da zure oraingo bide-lerroa:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} آی‌پی شما را با فرستادن پیام‌هایتان از طریق چندین سرویس‌گره در شبکه غیرمتمرکز {app_name} مخفی می‌کند. این مسیر فعلی شما است:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} piilottaa IP-osoitteesi ohjaamalla viestisi useiden Service Node määritteiden kautta {app_name} hajautetussa verkossa. Tämä on nykyinen reittisi:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itinatago ng {app_name} ang iyong IP sa pamamagitan ng pagruruta ng iyong mga mensahe sa maraming service nodes sa decentralized network ng {app_name}. Ito ang iyong kasalukuyang daan:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cache votre adresse IP en envoyant vos messages via plusieurs nœuds de service dans le réseau décentralisé de {app_name}. Voici votre chemin actuel :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} agocha o teu IP ao redirixir as túas mensaxes a través de múltiples Service Node na rede descentralizada de {app_name}. Este é o teu camiño actual:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ya ɓoye IP ɗinka ta hanyar turawa saƙonninka ta hanyar ɗakunan sabis da yawa a cikin cibiyar sadarwar tsarin rarrabawa na {app_name}. Wannan shine hanyar ka ta yanzu:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} מסתיר את כתובת ה-IP שלך על ידי ניתוב ההודעות שלך דרך מספר צומתי שירות ברשת המבוזרת של {app_name}. זהו המסלול הנוכחי שלך:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} आपके संदेशों को {app_name} के डेंटरलिज़्ड नेटवर्क के कई Service Nodes के माध्यम से रूट करके आपकी IP को छुपाता है। यह आपका वर्तमान पथ है:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skriva vaš IP usmjeravanjem vaših poruka kroz više uslužnih čvorova u {app_name} decentraliziranoj mreži. Ovo je vaša trenutna putanja:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} elrejti az IP-címedet azáltal, hogy üzeneteidet a {app_name} decentralizált hálózatának szolgáltatási csomópontjain keresztül irányítja. Ez a jelenlegi útvonalad:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը թաքցնում է ձեր IP հասցեն՝ ձեր հաղորդագրությունները հաղորդկության բանալու միջոցով անցկացնելով բազմաթիվ ծառայական հանգույցներով {app_name}-ի ցանցային ցանցում: Սա ձեր ընթացիկ ուղին է." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} menyembunyikan IP Anda dengan memantulkan pesan melalui beberapa simpul layanan di jaringan terdesentralisasi {app_name}. Ini adalah jalur Anda saat ini:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nasconde il tuo IP facendo passare i tuoi messaggi attraverso più nodi di servizio nella rete decentralizzata di {app_name}. Questo è il tuo percorso attuale:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}は、{app_name}の分散型ネットワークの複数のService Nodeを介してメッセージをバウンスすることにより、IPアドレスを隠します。これが現在の経路です:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} მალავს თქვენს IP-ს, მარავდება თქვენი შეტყობინებები რამდენიმე Service Node-ების გავლით {app_name}-ის დეცენტრალიზებულ ქსელში. ეს არის თქვენი მიმდინარე მარშრუტი:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} លាក់ IP របស់អ្នកដោយបញ្ជូនសាររបស់អ្នកតាមគ nodes សេវាកម្មច្រើនក្នុងបណ្តាញ decentralised របស់ {app_name}។ នេះជាពពួកបច្ចុប្បន្នរបស់អ្នក៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನಿಮ್ಮ IP ಅನ್ನು {app_name} ಡಿಸೆಂಟ್ರಲೈಸ್ಡ್ ನೆಟ್‌ವರ್ಕ್ನಲ್ಲಿನ ಅನೇಕರಿಗೆ ಸಂದೇಶಗಳನ್ನು ಮಾರ್ಗಗೊಳಿಸಿ ಮುಚ್ಚುತ್ತವೆ. ಇದು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಮಾರ್ಗವಾಗಿದೆ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}는 {app_name}의 탈중앙화된 네트워크에서 여러 서비스 노드를 통해 메시지를 라우팅하여 IP를 숨깁니다. 이것이 현재 경로입니다:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} IP-ya te veşêre bi riya peyaman te bi nexşên parastina xizmeta pirçavan di toraya qedaxkirî {app_name}'s de re radike. Ev rêya weya niha ye:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekweka IP yo nga etambuliza obubaka bwo ku binyigidwa by’omulimu bingi mu {app_name} decentralized network. Luno lwe luguudo lw'olina:" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ປິດບັງທີ່ຢູ່ IP ຂອງທ່ານໂດຍຜ່ານຂໍ້ຄວາມຂອງທ່ານຜ່ານ Service Node ຫລາຍໜ່ວຍຂ່າຍໃນ {app_name} ເປັນຮູບແບບຂອງຂ່າຍອິດສະຫລະ. ນີ້ແມ່ນເສັ້ນທາງປັດຈຸບັນຂອງທ່ານ:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} slepia jūsų IP adresą, peradresuodamas jūsų žinutes per kelis aptarnavimo mazgus {app_name} decentralizuotame tinkle. Štai jūsų dabartinis kelias:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} slēpj jūsu IP, maršrutējot jūsu ziņas caur vairākiem pakalpojuma mezgliem {app_name} decentralizētajā tīklā. Patreizējais ceļš ir:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} го сокрива вашиот IP така што вашите пораки ги испраќа преку повеќе Service Nodes во децентрализирана мрежа на {app_name}. Ова е вашата моментална патека:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь таны IP-г олон Service Node-оор дамжуулан таны мессежийг {app_name}-ийн Decentralized network-д холбож далдалдаг. Энэ бол таны одоогийн зам:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} menyembunyikan IP anda dengan mengalihkan mesej anda melalui pelbagai Service Node dalam rangkaian berdesentralisasi {app_name}. Ini adalah laluan semasa anda:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် မှာတေ့တာကိုကာကွယ်ရန် IP ကိုပိတ်သည် သင်၏မက်ဆေ့ဂျ်များကို {app_name} ၏ ထိုက်တာလိုအင်တို့တွင်ဆစ်စ်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skjuler din IP ved å sende meldingene dine gjennom flere Service Nodes i {app_name}s desentraliserte nettverk. Dette er din nåværende rute:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} तपाईंको IP लुकाउँछ सेवा नोडहरूको माध्यमबाट तपाईंको सन्देशहरूलाई {app_name}को विकेन्द्रित सञ्जालमा रुट गरेर। यो तपाईंको वर्तमान मार्ग हो:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} verbergt uw IP door het routeren van berichten via meerdere servicenodes in het gedecentraliseerde netwerk van {app_name}. Dit is uw huidige pad:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skjuler din IP ved å sende meldingene dine gjennom flere Service Nodes i {app_name}'s desentraliserte nettverk. Dette er din nåværende rute:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} amaphimba IP yanu powera mauthenga anu kudzera m'masitima angapo a {app_name}'s decentralized network. Iyi ndi njira yanu yapano:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਤੁਹਾਡੇ IP ਨੂੰ ਬੇਨਕਾਬ ਕਰਨ ਦੇ ਰਸਤੇ ਹੱਲਾ ਹੈ ਆਪਣੇ ਸੁਨੇਹਿਆਂ ਨੂੰ {app_name} ਦੇ ਡਿਸੇਂਟਰਾਿਲਾਇਜਡ ਨੈੱਟਵਰਕ ਵਿੱਚ ਕਈ ਸਿਵਰ ਸੇਵਾਨੌਡਾਂ ਰਾਹੀਂ ਰੂਟ ਕਰਦਾ ਹੈ। ਇਹ ਤੁਹਾਡਾ ਮੌਜੂਦਾ ਰਸਤਾ ਹੈ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikacja {app_name} ukrywa Twój adres IP, kierując wiadomości przez wiele węzłów usług w zdecentralizowanej sieci aplikacji {app_name}. Obecna ścieżka" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ستاسو IP پټوي په {app_name} د غیر متمرکز شبکه کې ستاسو پیغامونه د څو Service Nodes له لارې راښکاره کوي. دا ستاسو اوسنی مسیر دی:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oculta seu IP ao enviar suas mensagens através de vários nós de serviço na rede descentralizada do {app_name}. Este é o caminho atual:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oculta o seu IP encaminhando as suas mensagens através de múltiplos Service Nodes na rede descentralizada do {app_name}. Este é o seu caminho atual:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ascunde IP-ul tău redirecționând mesajele prin mai multe noduri de serviciu din rețeaua descentralizată a {app_name}. Aceasta este calea ta actuală:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} скрывает ваш IP, перенаправляя сообщения через несколько сервисных узлов в децентрализованной сети {app_name}. Вот ваш текущий путь:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skriva vašu IP adresu preusmjeravanjem vaših poruka preko više servisnih čvorova u {app_name}-ovoj decentralizovanoj mreži. Ovo je vaš trenutni put:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඔබේ පණිවිඩ {app_name}ගේ විමධ්‍යගත ජාලයේ බහුවිධ Service Node හරහා යවීමෙන් ඔබේ IP සඟවයි. මෙය ඔබගේ වත්මන් මාර්ගයයි:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skrýva tvoju IP rekordovaniu tvojich správ cez viacero service nodes v decentralizovanej sieti {app_name}. Toto je tvoja aktuálna trasa:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skrije vašo IP tako, da usmerja vaša sporočila skozi več vozlišč storitve v {app_name}-ovem decentraliziranem omrežju. To je vaša trenutna pot:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fsheh IP-në tuaj duke e përcaktuar mesazhet tuaja përmes disa nyjeve shërbimi në rrjetin e decentralizuar të {app_name}. Ky është shtegu juaj aktual:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} скрива ваш IP тако што преусмерава ваше поруке кроз више Service Node-а у децентрализованој мрежи {app_name}. Ово је ваша тренутна путања:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skriva vašu IP adresu tako što routuje vaše poruke kroz više Service Node čvorova u {app_name}'s decentralizovanoj mreži. Ovo je vaša trenutna putanja:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} döljer din IP-adress genom att dirigera dina meddelanden genom flera Service Nodes i {app_name}s decentraliserade nätverk. Detta är din nuvarande väg:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inaficha IP yako kwa kupitisha ujumbe wako kupitia nodi nyingi za huduma katika mtandao wa {app_name} ulioenea. Hii ndio njia yako ya sasa:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} உங்கள் IP ஐ மறைத்து, உங்கள் தகவல்களை {app_name}இன் decentralized network இல் பல service nodes மூலம் வழிவகுத்து அனுப்புகிறது. இது உங்கள் தற்போதைய பாதை:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} మీ IPని {app_name} యొక్క decentralized network లోని ఎక్కువ service nodes ద్వారా మీ సందేశాలను రూటింగ్ చేయడం ద్వారా దాచిపెడుతుంది. ఇది మీ ప్రస్తుత మార్గం:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ซ่อนอินเตอร์เน็ต IP ของคุณโดยกำหนดเส้นทางข้อความของคุณผ่านโหนดบริการหลายโหนดในเครือข่ายการกระจายอำนาจของ {app_name} นี่คือเส้นทางปัจจุบันของคุณ:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} mesajlarınızı {app_name}'in merkezi olmayan ağındaki birden çok Hizmet Düğümü üzerinden yönlendirerek IP'nizi gizler. Bu sizin mevcut yolunuz:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} приховує вашу IP-адресу, перенаправляючи ваші повідомлення через декілька сервісних вузлів у децентралізованій мережі {app_name}. Це ваш поточний шлях:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} آپ کی IP کو آپ کے پیغامات کو {app_name} کے غیر مرکزیت شدہ نیٹ ورک میں متعدد سروس نوڈ کے ذریعے بھیج کر چھپاتا ہے۔ یہ آپ کا موجودہ راستہ ہے:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sizning IP-ingizni {app_name}ning markazlashmagan tarmog'i orqali xabarlaringizni bir necha xizmat tugunlari orqali o'tkazish orqali yashiradi. Bu sizning joriy yo'lingiz:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ẩn IP của bạn bằng cách luân chuyển tin nhắn của bạn qua một số Service Node trong mạng lưới phân cấp của {app_name}. Đây là đường đi hiện tại của bạn:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifihla i-IP yakho ngokuthumela imiyalezo yakho ngeendawo ezininzi zeenkonzo kwinethiwekhi ye {app_name} esekwe kwiNode yeNkonzo. Le yindlela yakho yangoku:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}通过{app_name}区块链网络中的多个服务节点发送您的消息来隐藏您的IP。这是您当前的消息路径:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 將您傳送的訊息經由 {app_name} 的去中心化網絡做多重的路徑與節點傳輸以隱藏您的 IP,這是您現在傳送訊息的路徑:" + } + } + } + }, + "onionRoutingPathDestination" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestemming" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الوجهة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hədəf" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "منزل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Месца прызначэння" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дестинация" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গন্তব্য" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cíl" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyrchfan" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destination" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziel" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προορισμός" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destination" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Celo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destino" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destino" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sihtkoht" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helmuga" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مقصد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määränpää" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinasyon" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destination" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destino" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manufa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יעד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गंतव्य" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odredište" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Célállomás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նպատակակետ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tujuan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinazione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "目的先" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დანიშნულება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គោលដៅ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗಮ್ಯಸ್ಥಾನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "목적지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hedef" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enda" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຈຸດໝາຍ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paskirties vieta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galamērķis" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дестинација" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хүрэх газар" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinasi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဦးတည်ရာနေရာ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinasjon" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गन्तव्य" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestemming" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mål" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumaliza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੰਜ਼ਿਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miejsce docelowe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موخه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destino" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destino" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назначение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinacija" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගමනාන්තය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cieľ" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cilj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinacioni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одредиште" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odredište" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mål" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marudio" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இலக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తలపురుగు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปลายทาง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hedef" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Місце призначення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منزل" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manzil" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điểm đến" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinieshoni" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "最终节点" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "目的地" + } + } + } + }, + "onionRoutingPathEntryNode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toegangsnodus" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نقطة الدخول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giriş Düyünü" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انٹری نوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уваходны вузел" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Входен възел" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Node d'entrada" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vstupní uzel" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Node Mynediad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indgangsknude" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einstiegsknoten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κόμβος Εισόδου" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enira Nodo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodo de Entrada" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodo de entrada" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisenemise sõlm" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sarrera Nodoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گره ورودی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulosolmu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nœud d’entrée" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodo de Entrada" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צומת כניסה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रवेश नोड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulazni čvor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Belépési csomópont" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքային Հանգույց" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Node masuk" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodo di entrata" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "エントリーノード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოკლე ნოდ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರವೇಶ ನೋಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "출구 노드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodeyê têkeve" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເນົດເຂົ້າ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įėjimo mazgas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieejas mezgls" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Влезен Чвор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Node Masuk" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဝင် Node" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inngangsnode" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रवेश नोड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invoer node" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inngangsknute" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsegula Node" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਂਟਰੀ ਨੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Węzeł wejścia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nó de Entrada" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nó de Entrada" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nod de intrare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Узел входа" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulazni Node" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇතුල්වීමේ නෝඩය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vstupný uzol" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vstopno vozlišče" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyje hyrëse" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чвор за улазак" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Node" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrénod" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodi ya kuingilia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நுழைவு Node" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎంట్రీ నోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โหนดเข้า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giriş Noktası" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вхідний вузол" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "داخلہ نوڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirish tugmasi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nút khởi đầu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isango lokungena" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "入口节点" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "入口節點" + } + } + } + }, + "onionRoutingPathServiceNode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xidmət Düyünü" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سروس نوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serviceknoten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serva Nodo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noeud de Service" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodo di servizio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सर्भिस नोड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਰਵਿਸ ਨੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Węzeł usług" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nó de Serviço" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nod de serviciu" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сервисный Узел" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вузол сервісу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Service Node" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-node yeNkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务节点" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "服務節點" + } + } + } + }, + "onionRoutingPathUnknownCountry" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekende Land" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بلد مجهول" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinməyən Ölkə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم ملک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невядомая Краіна" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната страна" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অজানা দেশ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "País desconegut" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznámá země" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwlad Anhysbys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukendt land" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekanntes Land" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άγνωστη Χώρα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown Country" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonita Lando" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "País desconocido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "País desconocido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tundmatu riik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezezagun Herrialdea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کشور ناشناخته" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuntematon maa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi kilalang bansa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pays inconnu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "País descoñecido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a san ƙasa ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מדינה לא ידועה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अज्ञात देश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata država" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen ország" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ երկիր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negara tak diketahui" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paese sconosciuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "国名が不明" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი ქვეყანა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រទេសដែលមិនស្គាល់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ ದೇಶ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 국가" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welatê Nenas" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekitundu Ekitaategeerekesebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nežinoma šalis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nezināma valsts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната земја" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тодорхойгүй аймаг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negara Tidak Diketahui" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မသိ Country" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjent land" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अज्ञात देश" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekend land" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjent land" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dziko Losadziwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਜਾਣ ਦੇਸ਼" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieznany kraj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم هیواد" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "País Desconhecido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "País Desconhecido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Țară necunoscută" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неизвестная страна" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata zemlja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා රටකි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznáma krajina" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznana država" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shtet i Panjohur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непозната држава" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznata zemlja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okänt land" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nchi isiyojulikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறியாத நாடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తెలియని దేశం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประเทศที่ไม่ทราบ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen Ülke" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невідома країна" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم ملک" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma’lum mamlakat" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quốc gia không rõ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilizwe elingaziwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知国家" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知國家" + } + } + } + }, + "onsErrorNotRecognized" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ons kon nie hierdie ONS herken nie. Kyk asseblief daarna en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم نتمكن من التعرف على هذا الـ ONS. يرجى التحقق منها والمحاولة مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ONS-i tanıya bilmədik. Lütfən, yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم اس ONS کو پہچان نہیں سکے۔ براہ کرم چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы не змаглі распазнаць гэты ONS. Калі ласка, праверце яго і паспрабуйце яшчэ раз." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можахме да разпознаем този ONS. Моля, проверете го и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "We couldn't recognize this ONS. Please check it and try again." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hem pogut reconèixer aquest ONS. Si us plau, comproveu-lo i torneu a intentar-ho." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se rozpoznat tento ONS. Zkontrolujte ho a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid oeddem yn gallu adnabod y ONS hwn. Gwiriwch ef a rhowch gynnig arall arni." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikke genkende dette ONS. Kontrollér venligst og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wir konnten dieses ONS nicht erkennen. Bitte überprüfe es und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορέσαμε να αναγνωρίσουμε αυτό το ONS. Παρακαλώ ελέγξτε το και δοκιμάστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We couldn't recognize this ONS. Please check it and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ne povis rekoni ĉi tiun ONS. Bonvolu kontroli ĝin kaj reprovi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos reconocer este ONS. Por favor, verifícalo e inténtalo de nuevo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos reconocer este ONS. Por favor, revisa y vuelve a intentarlo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Me ei suutnud seda ONS-i tuvastada. Palun kontrollige ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin izan dugu ONS hau identifikatu. Mesedez, egiaztatu eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نتوانستیم این ONS را شناسایی کنیم. لطفاً آن را بررسی کنید و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emme tunnistaneet tätä ONS:a. Tarkista se ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi namin ma-recognize ang ONS na ito. Paki-check at subukang muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous n'avons pas pu reconnaître cet ONS. Veuillez vérifier et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non puidemos recoñecer este ONS. Por favor, verifícao e tenta de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba mu iya gane wannan ONS ba. Da fatan za a duba kuma sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא הצלחנו לזהות את ה-ONS הזה. אנא בדוק/י זאת ונסה/י שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हम इस ONS को पहचान नहीं सके। कृपया इसे जाँचें और पुनः प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli prepoznati ovaj ONS. Molimo provjerite i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült felismernünk ezt az ONS-t. Ellenőrizd, és próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մենք չկարողացանք ճանաչել այս ONS-ը: Խնդրում ենք ստուգել և կրկին փորձել:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat mengenali ONS ini. Harap periksa dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non è stato possibile riconoscere questo ONS. Si prega di controllare e riprovare." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このONSを認識できませんでした。内容を確認して再度お試しください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ONS ვერ ამოვიცანით. გთხოვთ, შეამოწმოთ და სცადოთ ისევ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យើងមិនអាចស្គាល់ ONS នេះទេ។ សូមពិនិត្យម្តងទៀតហើយសាកល្បងម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾವು ಈ ONS ಅನ್ನು ಗುರುತಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ದಯವಿಟ್ಟು ಪರಿಶೀಲಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 ONS를 인식할 수 없습니다. 다시 확인하고 시도하십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Em nakefeni vê ONS bibikira. Ji kerema xwe wê bibin û dîsa ceribkine." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetutegedde ONS eno. Mwanguyiza mugikoleko nate." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko atpažinti šio ONS. Patikrinkite ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēs nevarējām atpazīt šo ONS. Lūdzu, pārbaudiet un mēģiniet vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можевме да го препознаеме овој ОНС. Ве молиме проверете го и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бид энэ ONS-г таньж чадсангүй. Уучлаарай дахин шалгаад оролдоод үзээрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat mengenali ONS ini. Sila semak dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "We couldn't recognize this ONS. Please check it and try again." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikke gjenkjenne denne ONS. Vennligst sjekk den og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हामीले यो ONS चिन्न सकेनौं। कृपया यसलाई जाँच गर्नुहोस् र फेरि प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "We konden deze ONS niet herkennen. Controleer deze alsjeblieft en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikkje kjenne att denne ONS-en. Ver venleg kontroller den og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sitinathe kudziwa izi ONS. Chonde tiyeni tione kachiwiri." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਸੀਂ ਇਸ ONS ਨੂੰ ਪਛਾਣਣ ਤੋਂ ਅਸਮਰੱਥ ਸੀ। ਕਿਰਪਾ ਕਰਕੇ ਇਸਨੂੰ ਜਾਂਚੋ ਅਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie rozpoznano tego ONS. Sprawdź i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ د دې ONS پېژندلو لپاره ناکام شو. مهرباني وکړئ ترې وګورئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reconhecer este ONS. Por favor, verifique e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reconhecer este ONS. Verifique e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu am putut recunoaște acest ONS. Vă rugăm să verificați și să încercați din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы не смогли распознать этот ONS. Пожалуйста, проверьте его и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli prepoznati ovaj ONS. Molimo proverite i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපට මෙම ONS තහවුරු කළ නොහැකි විය. කරුණාකර එය නිවැරදි කර නැවත උත්සහා කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa rozpoznať tento ONS. Skontrolujte to a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo prepoznali tega ONS. Prosimo, preverite in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mundi të njihet ky ONS. Ju lutemi kontrollojeni dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће препознати овај ONS. Проверите и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli da prepoznamo ovaj ONS. Proverite ga i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunde inte känna igen denna ONS. Vänligen kontrollera det och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hatuwezi kutambua ONS hii. Tafadhali hakikisha na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த ONSஐ அடையாளம் காண முடியவில்லை. தயவுசெய்து சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మేము ఈ ONS గుర్తించలేకపోయాము. దయచేసి దీన్ని తనిఖీ చేయండి మరియు మళ్లీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ระบบ ONS ไม่พบรายการนี้ กรุณาตรวจสอบอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ONS'u tanıyamadık. Lütfen kontrol edin ve tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося розпізнати цей ONS. Будь ласка, перевірте його та спробуйте ще раз." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم اس ONS کو شناخت نہیں کر سکے۔ براہ کرم چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biz bu ONSni tanib ololmadik. Iltimos, tekshirib qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chúng tôi không thể nhận diện ONS này. Vui lòng kiểm tra và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asikwazanga ukufumanisa le ONS. Nceda uyijonge kwaye uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我们无法识别此ONS。请检查并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我們無法識別此 ONS。 請檢查後再試一次。" + } + } + } + }, + "onsErrorUnableToSearch" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ons kon nie na hierdie ONS soek nie. Probeer asseblief later weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم نتمكن من البحث عن هذا ONS. الرجاء المحاولة مرة أخرى لاحقا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ONS-i axtara bilmədik. Lütfən, daha sonra yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما پشتین اِس ONS سرکنت ناہ‌بی۔ امتحان بیبت ایر افت۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы не змаглі зрабіць пошук па гэтым ONS. Калі ласка, паспрабуйце пазней." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можахме да търсим този ONS. Моля, опитайте отново по-късно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to search for this ONS. Please try again later." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hem pogut cercar aquest ONS. Torneu-ho a intentar més tard." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se vyhledat tento ONS. Zkuste to prosím později." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd chwilio am y ONS hwn. Rhowch gynnig arall arni yn nes ymlaen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikke søge efter dette ONS. Prøv igen senere." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Suche nach dieses ONS war nicht möglich. Bitte versuche es später noch einmal." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δεν μπορέσαμε να αναζητήσουμε αυτό το ONS. Παρακαλώ δοκιμάστε ξανά αργότερα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to search for this ONS. Please try again later." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni ne povis serĉi ĉi tiun ONS. Bonvolu reprovi poste." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos buscar este ONS. Por favor, inténtalo de nuevo más tarde." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No pudimos buscar este ONS. Por favor, inténtalo de nuevo más tarde." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Me ei suutnud seda ONS-i otsida. Palun proovige hiljem uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin izan dugu ONS hau bilatu. Saiatu berriro geroago." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نتوانستیم برای این ONS جستجو کنیم. لطفاً بعداً دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emme pystyneet hakemaan tätä ONS:a. Yritä myöhemmin uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi namin ma-search ang ONS na ito. Paki-subukan muli mamaya." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nous n'avons pas pu rechercher cet ONS. Veuillez réessayer plus tard." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non puidemos buscar este ONS. Por favor, tenta de novo máis tarde." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba mu iya bincika wannan ONS ba. Da fatan za'a sake gwadawa daga baya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא הצלחנו לחפש את ה-ONS הזה. אנא נסה/י שוב מאוחר יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हम इस ONS को खोजने में असमर्थ थे। कृपया बाद में पुनः प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo uspjeli pretražiti ovaj ONS. Molimo pokušajte ponovno kasnije." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az ONS keresése nem sikerült. Próbáld újra később." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մենք չկարողացանք որոնել այս ONS-ը։ Խնդրում ենք փորձել ևս մեկ անգամ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat mencari ONS ini. Harap coba lagi nanti." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non siamo riusciti a cercare questo ONS. Riprovare più tardi." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このONSを検索できませんでした。後でもう一度お試しください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ONS ძებნა ვერ მოხერხდა. გთხოვთ სცადოთ მოგვიანებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "យើងមិនអាចស្វែងរក ONS នេះបានទេ។ សូមសាកល្បងម្តងទៀតនៅពេលក្រោយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಾವು ಈ ONS ಹುಡುಕಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 ONS를 검색할 수 없습니다. 나중에 다시 시도해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Em nakefeni ji vê ONS bibikira. Ji kerema xwe dîsa ceribkine." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetulabiddwenga ku nfuuna gya ONS eno. Mwanguyiza mugikoleko nate." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko ieškoti šio ONS. Bandykite dar kartą vėliau." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēs nevarējām meklēt šo ONS. Lūdzu, mēģiniet vēlreiz vēlāk." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не можевме да пребаруваме за овој ОНС. Ве молиме обидете се повторно подоцна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ ONS-г хайж чадсангүй. Дахин оролдоорой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kami tidak dapat mencari ONS ini. Sila cuba lagi kemudian." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "We were unable to search for this ONS. Please try again later." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi klarte ikke å søke etter denne ONS. Vennligst prøv igjen senere." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हामीले यो ONS खोज्न असमर्थ। कृपया पछि पुन: प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "We konden niet zoeken naar deze ONS. Probeer het later opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunne ikkje søke opp denne ONS-en. Vennligast prøv igjen seinare." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sitinathe kufufuza izi ONS. Chonde yesani kachiwiri pansogolo." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਸੀਂ ਇਸ ONS ਲਈ ਖੋਜ ਕਰਨ ਲਈ ਅਸਮਰੱਥ ਰਹੇ। ਕਿਰਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się wyszukać tego ONS. Spróbuj ponownie później." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "موږ د دې ONS لټولو لپاره توانمند نه شو. مهرباني وکړئ وروسته بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível buscar este ONS. Por favor, tente novamente mais tarde." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível pesquisar este ONS. Tente novamente mais tarde." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu am putut căuta acest ONS. Vă rugăm să încercați din nou mai târziu." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мы не смогли выполнить поиск по этому ONS. Пожалуйста, попробуйте снова позже." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli pretražiti ovaj ONS. Molimo pokušajte ponovo kasnije." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අපට මෙම ONS සඳහා සැරසීම කළ නොහැකි විය. කරුණාකර පසුව නැවත උත්සහා කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa vyhľadať tento ONS. Skúste to znova neskôr." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli iskati tega ONS. Poskusite znova pozneje." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mundëm të kërkonim për këtë ONS. Ju lutemi provoni përsëri më vonë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће претражити овај ONS. Покушајте поново касније." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nismo mogli da pretražimo ovaj ONS. Pokušajte ponovo kasnije." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi kunde inte söka efter denna ONS. Vänligen försök igen senare." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hatuwezi kutafuta ONS hii. Tafadhali jaribu tena baadaye." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த ONSஐ தேட முடியவில்லை. தயவுசெய்து பின்னர் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మేము ఈ ONS కోసం శోధించలేకపోయాము. దయచేసి తర్వాత మళ్లీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เราไม่สามารถค้นหาระบบ ONS นี้ได้ กรุณาลองอีกครั้งในภายหลัง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu ONS'u arayamadık. Lütfen daha sonra tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося виконати пошук цього ONS. Спробуйте пізніше." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہم اس ONS کے لیے تلاش کرنے میں ناکام رہے۔ براہ کرم بعد میں دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biz bu ONSni qidirib topa olmadik. Iltimos keyinroq qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chúng tôi không thể tìm kiếm ONS này. Vui lòng thử lại sau." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asikwazanga ukufuna le ONS. Nceda uzame kwakhona kamva." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "我们无法查询到此ONS。请稍后再试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "我們無法搜尋此 ONS。 請稍後再試。" + } + } + } + }, + "open" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oop" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "افتح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گِس" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адкрыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ওপেন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otevřít" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agor" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åben" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öffnen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άνοιγμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Open" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malfermi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ava" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ireki" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "باز کن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buksan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ouvrir" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bude" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פתח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खोलें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvori" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megnyitás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բացել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "開く" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გახსენით" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತೆರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "열기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bikkule" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atverti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atvērt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖွင့်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åpne" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खोल्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Openen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åpne" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amkati" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖੋਲ੍ਹੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otwórz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خلاص" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschide" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Открыть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvori" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "විවෘත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvoriť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpri" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hap" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvori" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öppna" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fungua" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "திற" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తెరవండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aç" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відкрити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کھولیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ochish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mở" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vula" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "打开" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "開啟" + } + } + } + }, + "other" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ander" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أخرى" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Іншае" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Друг" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অন্যান্য" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Altres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ostatní" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arall" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonstiges" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άλλο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alia" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otro" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otro" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bestea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iba pa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outra" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sauran" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אחר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्य" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ostalo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egyéb" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այլ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lainnya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Altro" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "その他" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სხვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្សេងៗ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇತರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기타" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yên din" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebirala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cits" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Други" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бусад" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lain-lain" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အခြား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अन्य" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overige" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annan" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹੋਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inne" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نور" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Altele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Другое" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ostalo" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වෙනත්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iné" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drugo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tjetër" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Остало" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ostalo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Övrigt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "ingine" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பிற" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇతరులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ที่อื่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diğer" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Інші" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیگر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boshqa" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunye" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "其它" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "其他" + } + } + } + }, + "passwordChange" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysig Wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغيير كلمة السر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolu dəyişdir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ تبدیل کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Змяніць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смяна на парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড পরিবর্তন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canvia la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Změnit heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Newid Cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skift adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort ändern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αλλαγή Κωδικού Πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝanĝi Pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar Contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar Contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muuda parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change Password" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغییر گذرواژه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaihda salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palitan ang Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Changer le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar o contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canza Kalmar Sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שנה סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड बदलें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promijeni lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó megváltoztatása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փոխել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubah Kata Sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambia password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを変更" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის შეცვლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្តូរពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಲು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 변경" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê Biguherîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change Password" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ່ຽນລະຫັດຜ່ານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keisti slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mainīt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смени лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг өөрчлөх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tukar Kata Laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လျှို့ဝှက် စကားဝှက် ပြောင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forandre passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड परिवर्तन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord wijzigen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endre passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change Password" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਬਦਲੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmień hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورډ بدل کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alterar Senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alterar Palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schimbã Parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изменить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promeni lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය වෙනස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeniť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremeni geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndrysho Fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промени лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promeni lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ändra lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Badilisha Nywila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை மாற்றவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్వర్డ్ మార్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปลี่ยนรหัสผ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolayı Değiştir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Змінити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ تبدیل کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni o'zgartirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đổi mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tshintsha Ipassword" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "變更密碼" + } + } + } + }, + "passwordChangedDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou wagwoord is verander. Hou dit asseblief veilig." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تغيير كلمة المرور الخاصة بك. احفظها في مامن." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolunuz dəyişdirildi. Lütfən, onu güvəndə saxlayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی بیک اپلیکیشن پاسکوڈ ناقض کردی. براہپس محفوظے کہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль быў зменены. Захавайце яго ў бяспецы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата парола беше променена. Моля, пазете я безопасно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পাসওয়ার্ড পরিবর্তন করা হয়েছে। দয়া করে এটি নিরাপদ রাখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra contrasenya s'ha definit. Mantingueu-la segura." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvé heslo bylo změněno. Pečlivě si ho odlož." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cyfrinair wedi'i newid. Cadwch ef yn ddiogel." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din adgangskode er blevet ændret. Venligst hold den sikker." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dein Passwort wurde geändert. Bitte bewahre es sicher auf." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός πρόσβασής σας έχει αλλάξει. Παρακαλώ κρατήστε τον ασφαλή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your password has been changed. Please keep it safe." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via pasvorto estas ŝanĝita. Bonvolu konservi ĝin sekura." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña ha sido cambiada. Por favor, manténla segura." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña ha sido cambiada. Por favor, manténla segura." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie parool on muudetud. Hoidke seda turvaliselt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure pasahitza aldatu da. Gorde seguru batean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور شما تغییر کرد. لطفا آن را در جای امنی نگهداری کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanasi on vaihdettu. Pidä se turvassa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabago na ang iyong password. Pakisuyong itago ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre mot de passe a été changé. Veuillez le conserver en sécurité." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu contrasinal foi cambiado. Por favor, mantéñeo seguro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An canza kalmar sirrinku. Da fatan za a kiyaye shi lafiya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמה שלך השתנתה. שמור עליה בבטחה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका पासवर्ड बदल दिया गया है। कृपया इसे सुरक्षित रखें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je promijenjena. Molimo, čuvajte je na sigurnom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jelszó megváltozott. Tartsd biztonságos helyen!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր գաղտնաբառը փոխվել է։ Խնդրում ենք անվտանգ պահել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi anda telah diubah. Harap untuk menjaganya." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua password è stata modificata. Per favore tienila al sicuro." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードが変更されました。安全に保管してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი პაროლი შეცვლილია. გთხოვთ, შეინახეთ იგი უსაფრთხოდ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់ របស់អ្នកត្រូវ​បាន​ប្តូរ។ សូមរក្សា​វា​ឲ្យ​មាន​សុវត្ថិភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸಲಾಗಿದೆ. ಅದು ಸುರಕ್ಷಿತವಾಗಿರಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 변경이 완료되었습니다. 안전히 관리하시기 바랍니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te jîrêbandeya we yê danîn Muhafize mane sihîn bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yo ekabatiddwa. Kaakasa nti bagutemye mu kifo ekitalemerera." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų slaptažodis buvo pakeistas. Prašome saugoti jį saugiai." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu parole tika nomainīta. Lūdzu, saglabājiet to drošībā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата лозинка е променета. Ве молиме чувајте ја безбедно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны нууц үг солигдож байна. Нууц үгээ хамгаалж байгаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan anda telah ditukar. Sila simpan dengan selamat." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ စကားဝှက် ပြောင်းလဲ ပြီးပါပြီ။ ထိန်းသိမ်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er endret. Vennligst oppbevar det trygt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईँको पासवर्ड परिवर्तन भयो। कृपया यसलाई सुरक्षित राख्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw wachtwoord is gewijzigd. Hou het veilig." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er blitt endra. Vennligst oppbevar det trygt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yanu yasinthidwa. Chonde sungani mosamala." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਪਾਸਵਰਡ ਬਦਲਿਆ ਗਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਇਸਨੂੰ ਸੁਰੱਖਿਅਤ ਰੱਖੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmieniono hasło. Zachowaj je w bezpiecznym miejscu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو پاسورډ بدل شوی. مهرباني وکړۍ، دا خوندي وساتئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua senha foi alterada. Por favor, mantenha-a segura." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sua palavra-passe foi alterada. Por favor, mantenha-a segura." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola ta a fost schimbată. Te rugăm să o păstrezi în siguranță." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль был изменен. Пожалуйста, храните его в безопасном месте." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoja šifra je promijenjena. Molimo, čuvaj je na sigurnom." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මුරපදය වෙනස් කර ඇත. කරුණාකර එය ආරක්ෂිතව තබා ගන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše heslo bolo zmenené. Uchovajte ho prosím v bezpečí." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše geslo je bilo spremenjeno. Prosim, hranite ga na varnem mestu." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi juaj është ndryshuar. Ju lutemi ta mbani të sigurt." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша лозинка је промењена. Молимо вас да је сачувате." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je promenjena. Čuvajte je na sigurnom mestu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt lösenord har ändrats. Håll det säkert." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenosiri lako limebadilishwa. Tafadhali lihifadhi salama." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களின் கடவுச்சொல் மாற்றப்பட்டுள்ளது. தயவுசெய்து அதை பாதுகாப்பாக வைத்திருங்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ పాస్‌వర్డ్ మార్పు జరిగింది. దయచేసి దాన్ని సురక్షితంగా ఉంచండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านของคุณได้รับการเปลี่ยนแปลงแล้ว กรุณารักษาเอาไว้ให้ปลอดภัย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifreniz değiştirildi. Lütfen güvende tutunuz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль змінено. Будь ласка, збережіть його в безпеці." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا پاس ورڈ تبدیل ہو گیا ہے۔ براہ کرم اسے محفوظ رکھیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar so'rovingiz hozirda kutilmoqda." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu của bạn đã được đổi. Hãy giữ nó cẩn thận." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi yakho itshintshiwe. Nceda uyigcine ikhuselekile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的密码已经设定。请妥善保管。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的密碼變更完成。請注意保管。" + } + } + } + }, + "passwordChangeDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verander die wagwoord wat benodig word om {app_name} te ontsluit." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغيير كلمة السر المطلوبة لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmaq üçün tələb olunan parolu dəyişdir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لئے درکار پاس ورڈ تبدیل کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Змяніць пароль для разблакоўкі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сменете паролата, изисквана за отключване на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করতে প্রয়োজনীয় পাসওয়ার্ড পরিবর্তন করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canvia la contrasenya requerida per desblocar {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Změňte heslo pro odemykání {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Newid y cyfrinair sy'n angenrheidiol i ddatgloi {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skift adgangskoden, der kræves for at låse {app_name} op." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Passwort zum Entsperren von {app_name} ändern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αλλαγή του κωδικού πρόσβασης που απαιτείται για το ξεκλείδωμα του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change the password required to unlock {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝanĝi la pasvorton, kiu necesas por malŝlosi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar la contraseña necesaria para desbloquear {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambiar la contraseña requerida para desbloquear {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muuda parooli, mida on vaja {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change the password required to unlock {app_name}." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور مورد نیاز برای باز کردن {app_name} را تغییر بده." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaihda {app_name} in avaukseen käytettävä salasana." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palitan ang password na kinakailangan para i-unlock ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modifier le mot de passe requis pour déverrouiller {app_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambia o contrasinal necesario para desbloquear {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Canza kalmar sirrin da ake bukata don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שנה את הסיסמה הנדרשת לפתיחת {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को अनलॉक करने के लिए आवश्यक पासवर्ड बदलें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promijenite lozinku potrebnu za otključavanje {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazás jelszavának megváltoztatása." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փոխեք {app_name}-ն ապակողպելու համար պահանջվող գաղտնաբառը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubah kata sandi yang diperlukan untuk membuka kunci {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cambia la password richiesta per sbloccare {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}のロック解除に必要なパスワードを変更します" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის შეცვლა აუცილებელია {app_name}-ის გახსნისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្ដូរពាក្យសម្ងាត់ដែលបានតម្រូវឲ្យមានដើម្បីឈប់ទប់ស្កាត់ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ತೆಗೆಯಲು ಬೇಕಾದ ಪಾಸ್ವರ್ಡ್ ಬದಲಾಯಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 잠금 해제 시 사용되는 비밀번호를 변경합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "şîfreyê ku ji bo vekirina {app_name} lazim e biguherîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change the password required to unlock {app_name}." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ່ຽນລະຫັດຕົກທາງທີ່ຈະເຜີດ {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakeisti slaptažodį, reikalingą atrakinti {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mainīt paroli, kas nepieciešama {app_name} atbloķēšanai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Смени ја лозинката што е потребна за отклучување {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} -г нээхийн тулд шаардлагатай нууц үгийг өөрчлөх." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tukar kata laluan yang diperlukan untuk membuka kunci {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ဖြင့် လော့ခ်ဖွင့်ရန် လျှို့ဝှက် စကားဝှက် ပြောင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endre passordet som kreves for å låse opp {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गर्न आवश्यक पासवर्ड परिवर्तन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wijzig het wachtwoord dat nodig is om {app_name} te ontgrendelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endre passordet som krevst for å låsa opp {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change the password required to unlock {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਨਲੌਕ ਕਰਨ ਲਈ ਲੋੜੀਂਦੇ ਪਾਸਵਰਡ ਨੂੰ ਬਦਲੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmień hasło wymagane do odblokowania aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {app_name} خلاصولو لپاره اړین پاسورډ بدل کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Altere a senha necessária para desbloquear {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Altere a palavra-passe, necessária para desbloquear {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schimbați parola necesară pentru a debloca {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Измените пароль, необходимый для разблокировки {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promeni lozinku potrebnu za otključavanje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු විවෘත කිරීමට අවශ්‍ය මුරපදය වෙනස් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zmeňte heslo potrebné na odomknutie {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremeni geslo potrebno za odklepanje {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndryshoni fjalëkalimin e kërkuar për të zhbllokuar {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Измените лозинку потребну за откључавање {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promenite lozinku koja je potrebna za otključavanje {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ändra lösenordet som krävs för att låsa upp {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Badilisha nywila inayohitajika kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ேத்தUnlock ச்சபட செய்ய வேண்டிய கடவுச்சொல்லை மாற்றவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ని అన్‌లాక్ చేయడానికి అవసరమైన పాస్‌వర్డ్ మార్చండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปลี่ยนรหัสผ่านที่ใช้ปลดล็อก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmak için gereken parolayı değiştirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Змінити пароль, необхідний для розблокування {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لیے مطلوبہ پاس ورڈ تبدیل کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'zingizga {app_name}ni ochish uchun zarur parolni o'zgartiring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đổi mật khẩu cần thiết để mở khóa {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tshintsha i-password efunekayo ukusikhulula {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改{app_name}的解锁密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "更改解鎖 {app_name} 所需的密碼。" + } + } + } + }, + "passwordConfirm" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevestig wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أَكِد كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolu təsdiqlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز اے تصدیق کر" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пацвердзіць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потвърди парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড নিশ্চিত করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirma la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrďte heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadarnhau cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekræft kodeord" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort bestätigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιβεβαίωση κωδικού πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirm password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmi pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinnita parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitza berretsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تأیید کلمه‌ی عبور" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vahvista salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumpirmahin ang iyong password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmez le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tabbatar da kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אשר סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड की पुष्टि करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdi lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó megerősítése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաստատել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmasi kata sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conferma password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを再確認" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის დადასტურება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ជាក់ពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ದೃಡಪಡಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 확인" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê tesdîq bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakasa akakufulu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຢັນໄຮ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patvirtinkite slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apstipriniet paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврди лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг баталгаажуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sahkan kata laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ကို အတည်ပြုပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekreft passordet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड निश्चित गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevestig wachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekreft passordet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsimikizani mawu achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਪੁਸ਼ਟੀ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potwierdź hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نښلول..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmar palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmă parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подтвердить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdi lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය තහවුරු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdiť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrdi geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konfirmo fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврдите лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrda lozinke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekräfta lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thibitisha nenosiri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை உறுதி செய்தல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్‌ని నిర్ధారించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirm password" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifreyi Doğrula" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підтвердіть пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ کی تصدیق کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni tasdiqlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xác nhận mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qinisekisa iphasiwedi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "确认密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "確認密碼" + } + } + } + }, + "passwordCreate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skep jou wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إنشاء كلمة سرك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolunuzu yaradın" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنی رمز بناؤ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стварыць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Създай своя парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পাসওয়ার্ড তৈরি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea la teva contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvořte si heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creu eich cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opret din adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort erstellen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δημιουργήστε τον κωδικό σας πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create your password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreu vian pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea tu contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea tu contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loo oma parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sortu zure pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تغییر گذرواژه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luo salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lumikha ng password mo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Créez votre mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crear contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙirƙiri kalmar sirrinka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צור סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना पासवर्ड बनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izradite lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó létrehozása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ստեղծել գաղտնաբառ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat kata sandi Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crea password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを作成してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შექმენით თქვენი პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្កើតពាក្យសម្ងាត់របស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ರಚಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 만들기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya xwe çêke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilira akakufulu ko" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເກີງແທ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sukurti slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izveidot savu paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирај ја твојата лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгээ оруулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cipta kata laluan anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ကိုဖန်တီးကာ ပြုလုပ်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett passordet ditt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको पासवर्ड बनाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maak je wachtwoord aan" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opprett passordet ditt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pangani mawu achinsinsi anu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਪਾਸਵਰਡ ਬਨਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utwórz hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "حساب جوړول سمدستي، وړیا او بې نومه دی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crie a sua senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crie a sua palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creează-ți parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создать пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මුරපදය සාදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vytvorte si heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustvari svoje geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krijo fjalëkalimin tënd" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Креирајте вашу лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kreiraj svoju lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skapa ditt lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unda nenosiri lako" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கடவுச்சொல்லை உருவாக்குக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ పాస్‌వర్డ్ సృష్టించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create your password" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolanızı oluşturun" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Створіть пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا پاس ورڈ بنائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni yarating" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tạo mật khẩu của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenza iphasiwedi yakho" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "创建您的密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "建立你的密碼" + } + } + } + }, + "passwordCurrentIncorrect" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou huidige wagwoord is verkeerd." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة المرور الحالية غير صحيحة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hazırkı parolunuz yanlışdır." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تُں حالء پاسکوڈ نادرستیت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш бягучы пароль няправільны." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата текуща парола е неправилна." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বর্তমান পাসওয়ার্ডটি ভুল।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra contrasenya actual és incorrecta." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše aktuální heslo je nesprávné." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cyfrinair cyfredol yn anghywir." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din nuværende adgangskode er forkert." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dein aktuelles Passwort ist nicht korrekt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο τρέχων κωδικός πρόσβασής σας είναι λανθασμένος." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your current password is incorrect." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via nuna pasvorto estas malĝusta." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña actual es incorrecta." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña actual es incorrecta." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie praegune parool on vale." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure oraingo pasahitza ez da zuzena." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور فعلی شما نادرست است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nykyinen salasanasi on virheellinen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maling kasalukuyang password mo." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre mot de passe actuel est incorrect." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu contrasinal actual é incorrecto." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar sirrinka na yanzu ba daidai bane." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמה הנוכחית שלך לא נכונה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका वर्तमान पासवर्ड गलत है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša trenutna lozinka je netočna." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az aktuális jelszavad helytelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր ներկա գաղտնաբառը սխալ է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi anda saat ini salah." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua password attuale non è corretta." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "現在のパスワードが間違っています。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი ახლანდელი პაროლი არასწორია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់​បច្ចុប្បន្នរបស់អ្នក មិនត្រឹមត្រូវទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಪಾಸ್ಪಾಡ್ ತಪ್ಪಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "현재 비밀번호가 잘못되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê te çewt e." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password Kyo kiri mu nsobi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų dabartinis slaptažodis yra neteisingas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu pašreizējā parole ir nepareiza." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата тековна лозинка е неточна." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны одоогийн нууц үг буруу байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan semasa anda tidak betul." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်လက်ရှိ စကားဝှက် မှား နေပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt nåværende passord er feil." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको हालको पासवर्ड सही छैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw huidige wachtwoord is onjuist." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt nåværande passord er feil." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chinsinsi chanu chokhazikika sichili bwino." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਮੌਜੂਦਾ ਪਾਸਵਰਡ ਗਲਤ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Twoje obecne hasło jest nieprawidłowe." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو اوسنی پاسورډ غلط دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua senha atual está incorreta." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sua palavra-passe atual está incorreta." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola actuală este incorectă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль неверен." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trenutna lozinka nije ispravna." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ වත්මන් මුරපදය නිවැරදි නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše aktuálne heslo je nesprávne." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše trenutno geslo je napačno." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi juaj aktual është i pasaktë." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша тренутна лозинка је нетачна." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša trenutna lozinka je netačna." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt nuvarande lösenord är felaktigt." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenosiri lako la sasa sio sahihi." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் நடப்புக் கடவுச்சொல் தவறாக உள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ప్రస్తుత పాస్‌వర్డ్ తప్పు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านปัจจุบันของคุณไม่ถูกต้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mevcut şifreniz yanlış." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш поточний пароль невірний." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا موجودہ پاس ورڈ غلط ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizning joriy parolingiz noto'g'ri." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu hiện tại của bạn không chính xác." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi yakho yangoku ayichaneki." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您当前的密码不正确。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您目前的密碼不正確。" + } + } + } + }, + "passwordDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vereis wagwoord om {app_name} oop te maak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يتطلب كلمة السر لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmaq üçün parol tələb et." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ درکار و بند را {app_name}." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неабходны пароль для разблакіроўкі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изисквайте парола за отключване на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করতে পাসওয়ার্ড প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requereix contrasenya per a desbloquejar {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadovat heslo k odemknutí {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angen cyfrinair i ddatgloi {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kræv adgangskode for at låse {app_name} op." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Entsperren von {app_name} ist Passwort erforderlich." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Να απαιτείται κωδικός πρόσβασης για το ξεκλείδωμα του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Require password to unlock {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postuli pasvorton por malŝlosi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necesita contraseña para desbloquear {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se requiere contraseña para desbloquear {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nõutav parool {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskatu pasahitza {app_name} desblokeatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بازشدن قفل {app_name} به رمز نیاز است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaadi {app_name}in avaukseen salasana." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nangangailangan ng password para i-unlock ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mot de passe requis pour déverrouiller {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requerir contrasinal para desbloquear {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buƙatar kalmar sirri don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרוש סיסמה לביטול נעילת {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को अनलॉक करने के लिए पासवर्ड की आवश्यकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtijevaj lozinku za otključavanje {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó szükséges {app_name} feloldásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահանջվում է գաղտնաբառ՝ {app_name}-ը ապակողպելու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan kata sandi untuk membuka kunci {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Richiede la password per sbloccare {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} のロックを解除するにはパスワードが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოთხოვნათა პაროლის აპლიკაციის განბლოკვისათვის {app_name}." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តម្រូវឲ្យមានពាក្យសម្ងាត់ដើម្បីឈប់ទប់ស្កាត់ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 잠금 해제에 비밀번호가 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya ku vekirinîna {app_name} lazim bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tegeka okulaba nte ebeera na password eri okukuta {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reikalingas slaptažodis, kad atrakintumėte {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepieciešama parole, lai atbloķētu {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бара лозинка за отклучување на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ыг нээхийн тулд нууц үг шаардана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan kata laluan untuk membuka kunci {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ကို လော့ခ်ဖွင့်ရန် စကားဝှက် လိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev passord for å låse opp {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गर्न पासवर्ड आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord vereisen om {app_name} te ontgrendelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev passord for å låsa opp {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funsani achinsinsi kuti mutsegule {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਣਲੌਕ ਕਰਨ ਲਈ ਪਾਸਵਰਡ ਦੀ ਲੋੜ ਹੁੰਦੀ ਹੈ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagaj hasła, aby odblokować aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} خلاصول لپاره پاسورډ لازمي دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir senha para desbloquear {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitar palavra-passe para desbloquear {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necesită parolă pentru a debloca {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Требовать пароль для разблокировки {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj lozinku za otključavanje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු විවෘත කිරීම සඳහා මුරපදයක් අවශ්‍ය වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadovať heslo na odomknutie {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj geslo za odklepanje {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko fjalëkalimin për të zhbllokuar {app_name}-in." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтевај лозинку за откључавање {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebna je lozinka da otključate {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kräv lösenord för att låsa upp {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "omba nywila kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இல்லாமல் திறக்க கடவுச்சொல்லைஉடன் வேண்டுகின்றேன்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ని అన్లాక్ చేయడానికి పాస్వర్డ్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "จำเป็นต้องใช้รหัสผ่านในการปลดล็อก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının kilidini açmak için şifre iste." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вимагати пароль для розблокування {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لئے پاس ورڈ درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ni ochish uchun parolni talab qilish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu mật khẩu để mở khóa {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifuna iphaswedi ukuvula {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要设置密码以解锁{app_name}。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要密碼才能解鎖 {app_name}。" + } + } + } + }, + "passwordEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer wagwoord in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل كلمة السر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolu daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε τον Κωδικό Πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigi Pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introducir contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introducir contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזן סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó megadása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan Kata Sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូលពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಪ್ತಪದ ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê têkeve" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza akawunti" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນລະຫັດຜ່ານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan kata laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer wachtwoord in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani mawu achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite sua senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza a palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය යොදන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka nenosiri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนรหัสผ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolayı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni kiritish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-password" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入密碼" + } + } + } + }, + "passwordEnterCurrent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou huidige wagwoord in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يرجى إدخال كلمة السر الحالية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən hazırkı parolunuzu daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی اپنے موجودہ پاسورڈ ڈالیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце свой дзейны пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете текущата си парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বর্তমান পাসওয়ার্ড লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si us plau, introdueix la teva contrasenya actual" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím, zadejte své aktuální heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodwch eich cyfrinair cyfredol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst indtast din nuværende adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib dein aktuelles Passwort ein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισαγάγετε τον τρέχον σας κωδικό πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter your current password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu enigi vian nuntempan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce tu contraseña actual" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduzca su antigua contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun sisestage oma praegune parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu zure uneko pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا پسورد فعلی خود را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä nykyinen salasanasi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ang iyong kasalukuyang password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez entrer votre mot de passe actuel" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da kalmar sirri mai koyawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא הזן את הסיסמא הנוכחית שלך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया अपना वर्तमान पासवर्ड दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite svoju trenutnu lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a jelenlegi jelszavad" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք Ձեր ներկա գաղտնաբառը." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Harap masukkan kata sandi Anda saat ini" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per favore, inserisci la tua password attuale" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "現在のパスワードを入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეიყვანოთ მიმდინარე პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមបញ្ចូលពាក្យសម្ងាត់បច្ចុប្បន្នរបស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಪಾಸ್ವರ್ಡನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "현재 비밀번호를 입력해주세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji kerema xwe şîfreya xwe ya berdest têkeve" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba akasumulizo akaliwo leero" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite dabartinį slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, ievadi pašreizējo paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете ја вашата тековна лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одоогийн нууц үгээ оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan kata laluan semasa anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျေးဇူးပြု၍ သင့် စကားဝှက်လက်ရှိကို ရိုက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst tast inn ditt nåværende passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया आफ्नो हालको पासवर्ड प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer uw huidige wachtwoord in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn ditt nåværende passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani chinsinsi chanu choyambilira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਆਪਣਾ ਮੌਜੂਦਾ ਪਾਸਵਰਡ ਡਾਲੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź aktualne hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ خپل موجوده پاسورډ دننه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, insira sua senha atual" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, insira a sua palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să introduceţi parola actuală" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, введите ваш текущий пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite trenutnu lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර ඔබේ වත්මන් මුරපදය ඇතුළු කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prosím svoje aktuálne heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite trenutno geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi vendosni fjalëkalimin tuaj të tanishëm" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите тренутну лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite trenutnu lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ditt nuvarande lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka nyila yako ya sasa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தற்போதைய கடவுச்சொல்லை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి మీ ప్రస్తుత పాస్‌వర్డ్‌ను ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดป้อนรหัสผ่านปัจจุบันของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen mevcut parolanızı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, введіть поточний пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم اپنا موجودہ پاس ورڈ درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, hozirgi parolni kiriting" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng nhập mật khẩu hiện tại của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa ipassword yakho yangoku" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入您当前的密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入您目前的密碼" + } + } + } + }, + "passwordEnterNew" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou nuwe wagwoord in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يرجى إدخال كلمة السر الجديدة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən yeni parolunuzu daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی اپنا نیا پاسورڈ ڈالیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце ваш новы пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете новата си парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার নতুন পাসওয়ার্ড লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si us plau, introdueix la teva nova contrasenya." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím, zadejte své nové heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodwch eich cyfrinair newydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast din nye adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte neues Passwort eingeben" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισαγάγετε τον νέο σας κωδικό πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter your new password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu enigi vian novan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce tu nueva contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, ingrese su nueva contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun sisestage oma uus parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu zure pasahitz berria" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا گذرواژه‌ی جدید خودت رو وارد کن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä uusi salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ang iyong bagong password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez entrer votre nouveau mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce o teu novo contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da sabuwar kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא הזן את הסיסמא החדשה שלך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया अपना नया पासवर्ड दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite svoju novu lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg az új jelszavad" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք մուտքագրել ձեր նոր գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mohon masukkan kata sandi Anda yang baru" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci la tua nuova password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しいパスワードを入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეიყვანოთ ახალი პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូម​បញ្ចូល​ពាក្យ​សម្ងាត់ថ្មី​របស់​អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಹೊಸ ಪಾಸ್ವರ್ಡನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 비밀번호를 입력해 주세요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji kerema xwe şîfreya xwe ya nû têkeve" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba akasumulizo akaggya ko." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite naują slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, ievadiet savu jauno paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете ја вашата нова лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ нууц үгээ оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan kata laluan baru anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကျေးဇူးပြု၍ စကားဝှက်အသစ်ကို ရိုက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst tast inn ditt nye passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया आफ्नो नयाँ पासवर्ड प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer je nieuwe wachtwoord in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn ditt nye passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani chinsinsi chanu chatsopano" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਆਪਣਾ ਨਵਾਂ ਪਾਸਵਰਡ ਡਾਲੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź nowe hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ خپل نوی پاسورډ دننه کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, digite a sua nova senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor introduza a sua nova palavra-passe." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să introduceţi parola nouă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите новый пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite novu lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මුරපදය ඇතුල් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prosím svoje nové heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, vnesite novo geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi shkruani fjalëkalimin tuaj të ri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите нову лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite novu lozinku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ditt nya lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka nyila yako mpya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் புதிய கடவுச்சொல்லை உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి మీ కొత్త పాస్‌వర్డ్‌ను ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดป้อนรหัสผ่านใหม่ของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen yeni parolanızı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, введіть новий пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم اپنا نیا پاس ورڈ درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, yangi parolingizni kiriting" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng nhập mật khẩu mới" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa ipassword yakho entsha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入您的新密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入您的新密碼" + } + } + } + }, + "passwordError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wagwoord moet slegs letters, syfers en simbole bevat" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة المرور يجب ان تحتوي فقط على الاحرف, الارقام و الرموز" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolda yalnız hərf, rəqəm və simvollar olmalıdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ فقط حروف، اعداد و علامات بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль павінен утрымліваць толькі літары, лічбы і сімвалы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паролата трябва да съдържа само букви, цифри и символи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড শুধু অক্ষর, সংখ্যা এবং চিহ্ন থাকতে পারে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contrasenya només pot contenir lletres, números i símbols" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslo musí obsahovat jen písmena, čísla a symboly" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim ond llythrennau, rhifau a symbolau y mae'n rhaid i gyfrinair ei gynnwys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adgangskoden må kun indeholde bogstaver, numre og symboler" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Passwort darf nur Buchstaben, Zahlen und Symbole enthalten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός πρόσβασης πρέπει να περιέχει μόνο γράμματα, αριθμούς και σύμβολα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password must only contain letters, numbers and symbols" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necesas, ke pasvorto enhavu nur literojn, ciferojn kaj simbolojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contraseña solo debe contener letras, números y símbolos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contraseña solo debe contener letras, números y símbolos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parool võib sisaldada ainult tähti, numbreid ja sümboleid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitzak hizkiak, zenbakiak eta sinboloak bakarrik eduki behar ditu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور باید فقط شامل حروف، اعداد و نشان‌ها باشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasana voi sisältää vain kirjaimia, numeroita tai symboleja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang password ay naglalaman ng letra, numero at mga simbolo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le mot de passe ne peux contenir que des lettres, des chiffres et des symboles" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O contrasinal só debe conter letras, números e símbolos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar sirri dole ta ƙunshi haruffa, lambobi da alamomin musamman" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמא חייבת להכיל רק אותיות, מספרים וסימנים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड में केवल अक्षर, संख्याएं और प्रतीक होने चाहिए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka može sadržavati samo slova, brojeve i simbole" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jelszó csak betűket, számokat, és szimbólumokat tartalmazhat" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնաբառը պետք է պարունակի միայն տառեր, թվեր և նշաններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi hanya bisa terdiri dari huruf, angka dan simbol sederhana" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La password deve contenere solo lettere, numeri e simboli" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードには英数字と記号の文字しか使えません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლი უნდა შეიცავდეს მხოლოდ ასოებს, რიცხვებს და სიმბოლოებს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់ត្រូវតែមានអក្សរ លេខ និងនិមិត្តសញ្ញាប៉ុណ្ណោះ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ಚಿಹ್ನೆಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬೇಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호는 문자, 숫자 및 간단한 기호만으로 구성되야 합니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfre divê tenê herf, nimre û sembolan bihewîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akasumulizo kalina kubaamu nnyukuta zokka, ennyingiza ne bika." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password must only contain letters, numbers and symbols" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolei drīkst būt tikai burti, cipari un simboli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинката треба да содржи само букви, бројки и симболи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг нь зөвхөн үсэг, тоо болон тэмдэгтүүдийг агуулна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan hanya boleh mengandungi huruf, nombor dan simbol" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်တွင် စာလုံး၊ နံပါတ်များနှင့် သင်္ကေတများသာ ပါဝင်ရမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet kan kun inneholde bokstaver, tall og symboler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्डमा केवल अक्षर, अंक र प्रतीकहरू मात्र समावेश हुनुपर्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord mag alleen letters, cijfers en symbolen bevatten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet kan kun inneholde bokstaver, tall og symboler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chinsinsi chiyenera kukhala ndi zilembo, manambala ndi zizindikiro zokha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਵਿੱਚ ਸਿਰਫ਼ ਅੱਖਰ, ਅੰਕ ਅਤੇ ਨਿਸ਼ਾਨ ਹੋਣੇ ਚਾਹੀਦੇ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasło może zawierać jedynie litery, cyfry i symbole" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورډ باید یوازې حروف، شمیرې او نښې ولري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A senha deve conter apenas letras, números e símbolos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas pode criar uma palavra-passe com letras, números e símbolos simples" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola poate conține doar litere, numere și simboluri simple" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль должен содержать только буквы, цифры и символы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka mora sadržavati samo slova, brojeve i simbole" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදයේ අඩංගු විය යුත්තේ අකුරු, අංක සහ සංකේත පමණි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslo môže obsahovať iba písmená, čísla a symboly" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geslo lahko vsebuje samo črke, številke in simbole" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi duhet të përmbajë vetëm shkronja, numra dhe simbole" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинка мора садржати само слова, бројеве и симболе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka mora imati samo slova, brojeve i simbole" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösenord får endast innehålla bokstäver, siffror och symboler" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila lazima ziwe na herufi, nambari na alama pekee" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல் எழுத்துக்கள், எண்கள் மற்றும் சின்னங்களை மட்டும் கொண்டிருக்க வேண்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్‌లో కేవలం అక్షరాలు, సంఖ్యలు మరియు సాంకేతిక పదాలు ఉండాలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านต้องประกอบด้วยตัวอักษร ตัวเลข และสัญลักษณ์เท่านั้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolanız sadece harf, sayı ve sembol içermelidir" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль має містити лише літери, цифри та символи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ میں صرف حروف، نمبر اور علامتیں ہونی چاہئیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolda faqat simvollar raqamlar va harflar bo'lishi lozim" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu chỉ có thể chứa chữ cái, số và các ký hiệu đơn giản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi kufuneka iqulathe oonobumba, amanani kunye neesimboli kuphela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "密码必须只包含字母、数字和符号" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "密碼只能包含字母、數字和符號" + } + } + } + }, + "passwordErrorLength" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wagwoord moet tussen 6 en 64 karakters lank wees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة المرور يجب ان تكون بين 6 و 64 عنصر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol 6-64 simvol uzunluğunda olmalıdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ 6 تا 64 حرفء درمیان بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль павінен мець даўжыню ў межах ад 6 да 64 сімвалаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паролата трябва да е между 6 и 64 символа" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড ৬ থেকে ৬৪ অক্ষরের মধ্যে হতে হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contrasenya ha de ser d'entre 6 i 64 caràcters" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslo musí mít od 6 do 64 znaků" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhaid i gyfrinair fod rhwng 6 a 64 nod o hyd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adgangskoden skal være mellem 6 til 64 tegn" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Passwort muss zwischen 6 und 64 Zeichen lang sein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός πρόσβασης πρέπει να αποτελείται από 6 έως 64 χαρακτήρες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password must be between 6 and 64 characters long" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necesas, ke pasvorto estu inter 6 kaj 64 longe" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contraseña debe tener entre 6 y 64 caracteres" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contraseña debe tener entre 6 y 64 caracteres de longitud" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parool peab olema 6 kuni 64 tähemärki pikk" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitzak 6 eta 64 karaktere bitartekoa izan behar du" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "طول رمز عبور باید بین ۶ تا ۶۴ کاراکتر باشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanan tulee olla 6-64 merkkiä pitkä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dapat may haba na 6 hanggang 20 titik ang 'yong password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le mot de passe doit avoir une longueur comprise entre 6 et 64 caractères" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O contrasinal debe ter entre 6 e 64 caracteres" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar sirri dole ta kasance tsakanin haruffa 6 zuwa 64" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמא חייבת להיות באורך של בין 6 ל-64 תווים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड 6 से 64 वर्णों के बीच होना चाहिए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka mora imati između 6 i 64 znakova" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jelszónak minimum 6 és maximum 64 karakter hosszúságúnak kell lennie" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնաբառը պետք է լինի 6-ից 64 նիշ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panjang kata sandi anda harus diantara 6 dan 64 karakter" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La password deve essere lunga tra i 6 e i 64 caratteri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードの長さを6文字から64文字にしてください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლი უნდა იყოს 6-64 სიმბოლოს სიგრძის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យ​សម្ងាត់​ត្រូវ​តែ​មាន​ចន្លោះ​ពី 6 ទៅ 64 តួអក្សរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ 6.೦ರಿಂದ 64 ಅಕ್ಷರಗಳಷ್ಟು ಉದ್ದವು ಇರಬೇಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호는 반드시 6자에서 12자 사이어야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Divê şîfre di navbera dirêjiya 6 û 64 karakteran de be" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akasumulizo kalina kubeera wakati wa ennyukuta 6 ne 64." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password must be between 6 and 64 characters long" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolei jābūt no 6 līdz 64 rakstzīmēm garai" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинката мора да содржи помеѓу 6 и 64 карактери" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг 6-аас 64 тэмдэгттэй байх ёстой" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan mestilah antara 6 hingga 64 aksara panjang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်သည်စာလုံးများအကြား ၆ မှ ၆၄ ရှိရမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet må være mellom 6 og 64 tegn langt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड ६ देखि ६४ वर्णको बीचमा हुनुपर्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord moet tussen de 6 en 64 tekens lang zijn" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet må være mellom 6 og 64 tegn langt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chinsinsi chiyenera kutalika pakati pa zilembo 6 ndi 64" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ 6 ਤੋਂ 64 ਅੱਖਰ ਲੰਮਾ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasło musi zawierać od 6 do 64 znaków" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورډ باید د 6 او 64 تورو ترمنځ وي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A senha deve ter entre 6 e 64 caracteres" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A palavra-passe deve ter entre 6 e 64 carateres" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola trebuie să aibă între 6 și 64 de caractere lungime" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль должен содержать от 6 до 64 символов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka mora imati između 6 i 64 znakova" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය අක්ෂර 6 සහ 64 අතර දිග විය යුතුය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslo musí mať dĺžku 6 až 64 znakov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geslo mora biti dolgo med 6 in 64 znakov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi duhet të jetë midis 6 dhe 64 karaktere të gjata" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинка мора имати између 6 и 64 карактера" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka mora imati između 6 i 64 karaktera" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösenordet måste vara mellan 6 och 64 tecken långt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila lazima iwe kati ya herufi 6 na 64" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல் 6 முதல் 64 எழுத்துக்களினிடையே இருக்க வேண்டும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ 6 మరియు 64 అక్షరాల మధ్య ఉండాలి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านต้องมีความยาวตั้งแต่ 6 ถึง 64 ตัวอักษร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolanız 6 ila 64 karakter uzunluğu aralığında olmalıdır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль має бути довжиною від 6 до 64 символів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ 6 اور 64 حروف کے درمیان ہونا چاہیے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sizning parolingiz uzunligi 6 va 64 belgidan iborat bo'lishi mumkin" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu phải dài từ 6 đến 64 ký tự" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi mayibe phakathi kwe-6 ne-64 iimpawu ngokubude" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "密码长度必须在6到64个字符之间" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "密碼必須介於6到64個字元之間。" + } + } + } + }, + "passwordErrorMatch" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wagwoorde stem nie ooreen nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمتا المرور لا تتطابقان" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parollar uyuşmur" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈاں مطابق نئیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паролі не супадаюць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паролите не съвпадат" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড মেলেনি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les contrassenyes no coincideixen" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesla se neshodují" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw cyfrineiriau'n cydweddu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adgangskoder matcher ikke" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Passwörter stimmen nicht überein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι Κωδικοί Πρόσβασης δεν ταιριάζουν" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwords do not match" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasvortoj ne kongruas" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Las contraseñas no coinciden" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Las contraseñas no coinciden" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paroolid ei ühti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitzak ez datoz bat" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمزهای عبور مطابقت ندارند" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanat eivät täsmää" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi nagtugma ang mga password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Les mots de passe ne correspondent pas." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os contrasinais non coinciden" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar sirri ba ta dace da juna ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "משפטי־סיסמה אינם תואמים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड्स मेल नहीं खाते" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinke se ne podudaraju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A megadott jelszavak nem egyeznek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնաբառերը չեն համընկնում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi tidak cocok" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le password non coincidono" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードが一致しません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლები არ ემთხვევა ერთმანეთს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់មិនត្រូវគ្នាទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್‌ಗಳು ಸೇರಲಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호가 일치하지 않습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfre li hev nayên" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obusumuluzo tebyawumulwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slaptažodžiai nesutampa" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paroles nesakrīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинките не се совпаѓаат" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг тохирсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan tidak sepadan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်များ မကိုက်ညီပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordene stemmer ikke overens" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड मेल खाँदैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoorden komen niet overeen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordene stemmer ikke overens" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Machinsinsi sapitirizana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਮਿਲਦੇ ਨਹੀਂ ਹਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podane hasła różnią się" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورډونه سمون نه خوري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "As senhas não coincidem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "As palavras-passes não correspondem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolele nu se potrivesc" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароли не совпадают" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinke se ne podudaraju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපද නොගැලපේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslá sa nezhodujú" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesli se ne ujemata" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimet nuk përputhen" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинке се не поклапају" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinke se ne poklapaju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösenorden matchar ej" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila hazilingani" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொற்கள் பொருந்தவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్‌లు సరిపోలవు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านไม่ตรงกัน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifreler uyuşmuyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паролі не збігаються" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ نہیں ملتے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parollar mos kelmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu không khớp" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iipasiwedi azifanani" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "密码不一致" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "密碼不一致" + } + } + } + }, + "passwordFailed" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie wagwoord stel nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل تعيين كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol təyin etmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ مقرر کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася ўсталяваць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно задаване на паролата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড সেট করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut canviar la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se nastavit heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd gosod cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opdatering af adgangskode mislykkedes" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort konnte nicht gesetzt werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία ορισμού κωδικού πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to set password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis agordi pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al establecer la contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al establecer la contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasõna määramine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitza ezartzea huts egin da" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم رمز عبور شکست خورد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanan asetus epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bigong na-reset ang password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de la définition du mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido establecer o contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa saita kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל לקבוע סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड सेट करने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavljanje lozinke nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó frissítése sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց սահմանել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memperbarui kata sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile impostare la password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードの設定に失敗しました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში პაროლის დაწესება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការកំណត់ពាក្យសម្ងាត់មិនបានសម្រេច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್‌ವರ್ಡ್ ಸೆಟ್ ಮಾಡಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 설정 실패" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi ser neket ku şîfre deyne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ekigambo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko nustatyti slaptažodžio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās iestatīt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно поставување лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг тогтоохдоо алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menetapkan kata laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်တင်သွင်းမှု မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke stille passordet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड सेट गर्न असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het instellen van wachtwoord mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikkje stilla passordet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kukhazikitsa mawu achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਸੈੱਟ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się ustawić hasła" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم تنظیم کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao definir a senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao definir palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la setarea parolei" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось установить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo postavljanje lozinke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය සැකසීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa nastaviť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo nastaviti gesla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi vendosja e fjalëkalimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у постављању лозинке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavljanje lozinke nije uspelo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades att uppdatera lösenordet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuweka nenosiri" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை அமைப்பதில் தோல்வி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ సెట్ చేయడంలో విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งรหัสผ่านล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolayı ayarlama başarısız oldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося встановити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ سیٹ کرنے میں ناکامی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni o'rnatishda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đặt mật khẩu thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukumisela i-password" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置密码失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定密碼失敗" + } + } + } + }, + "passwordIncorrect" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verkeerde wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة المرور خاطئة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanlış parol" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط پاس ورڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няправільны пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешна парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড ভুল হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contrasenya incorrecta" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesprávné heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfrinair anghywir" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forkert adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falsches Passwort" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λάθος κωδικός πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incorrect password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malĝusta pasvorto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contraseña Incorrecta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contraseña incorrecta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vale parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitz okerra" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور نادرست است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virheellinen salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maling password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mot de passe incorrect" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contrasinal incorrecto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar wucewa da aka shigar ba daidai ba ce" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סיסמה שגויה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गलत पासवर्ड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neispravna lozinka" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hibás jelszó" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ գաղտնաբառ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi salah" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password non corretta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードが正しくありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არასწორი პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់មិនត្រឹមត្រូវ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ತಪ್ಪಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 비밀번호" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya nerast" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password y'ekiino si kituufu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neteisingas slaptažodis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepareiza parole" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неправилна лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөв нууц үг биш" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan tidak betul" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်မှားနေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galt passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गलत पासवर्ड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjuist wachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galt passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mawekerede wosalakwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤ ਪਾਸਵਰਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprawidłowe hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناسم رمز" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senha incorreta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palavra-passe Incorreta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolă incorectă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неверный пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Netočna lozinka" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සාවද්‍ය මුරපදයකි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesprávne heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napačno geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalim i pasaktë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нетачна лозинка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogrešna lozinka" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felaktigt lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila sio sahihi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவறான கடவுச்சொல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సరికాని పాస్వర్డ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านไม่ถูกต้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanlış şifre" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неправильний пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط پاس ورڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xato parol" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu không chính xác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi echanekileyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "密码不正确" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "密碼錯誤" + } + } + } + }, + "passwordRemove" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة كلمة السر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolu sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ برس ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахване на парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড সরান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu'r Cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση Κωδικού Πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi Pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitza kendu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف رمز عبور" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin ang Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire Kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Kata Sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 제거" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê Rake" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo Password" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үг устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar Kata Laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ကို ဖယ်ရှားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم لرې کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină parolă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe Fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa Nywila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை அகற்றவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్వర్డ్ తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบรหัสผ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolayı Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ ہٹا دیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni olib tashlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa iphasiwedi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除密碼" + } + } + } + }, + "passwordRemovedDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou wagwoord is verwyder." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمت إزالة كلمة السر الخاصة بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolunuz silindi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی بیک پاسکوڈ ہٹاٹی." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль быў выдалены." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата парола беше премахната." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পাসওয়ার্ড সরানো হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra contrasenya s'ha eliminat." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše heslo bylo odstraněno." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cyfrinair wedi'i dynnu." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din adgangskode er blevet fjernet." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dein Passwort wurde entfernt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός πρόσβασής σας έχει αφαιρεθεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your password has been removed." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via pasvorto estas forigita." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña ha sido eliminada." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has eliminado tu contraseña." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie parool on eemaldatud." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure pasahitza kendu da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گذرواژه شما حذف شده است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanasi on on poistettu." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang iyong password ay naalis na." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre mot de passe a été supprimé." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu contrasinal foi eliminado." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An cire kalmar sirrinku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמה שלך הוסרה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका पासवर्ड हटा दिया गया है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je uklonjena." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jelszavadat eltávolítottuk." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր գաղտնաբառը հեռացվել է։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi Anda telah dihapus." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua password è stata rimossa." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを削除しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი პაროლი წაშლილია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់ របស់អ្នកត្រូវបានលុបចេញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "당신의 비밀번호가 제거되었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yo ekatutuzzibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų slaptažodis buvo pašalintas." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu parole tika noņemta." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата лозинка е отстранета." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны нууц үг устгагдсан." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan anda telah dibuang." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ စကားဝှက် ဖယ်ရှားပြီးပါပြီ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er fjernet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईँको पासवर्ड हटाइएको छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw wachtwoord is verwijderd." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er blitt fjerna." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yanu yachotsedwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਪਾਸਵਰਡ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usunięto hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو پاسورډ لرې شوی دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua senha foi removida." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sua palavra-passe foi removida." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola ta a fost eliminată." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль удален." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoja šifra je uklonjena." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මුරපදය ඉවත් කර ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše heslo bolo odstránené." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše geslo je bilo odstranjeno." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi juaj është hequr." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша лозинка је уклоњена." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je uklonjena." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt lösenord har tagits bort." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenosiri lako limeondolewa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களின் கடவுச்சொல் நீக்கப்பட்டது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ పాస్‌వర్డ్ తొలగించబడింది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านของคุณถูกลบแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolanız kaldırıldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль був видалений." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا پاس ورڈ ہٹا دیا گیا ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolingiz saqlandi. Iltimos, uni xavfsiz joyda saqlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu của bạn đã được gỡ bỏ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi yakho isusiwe." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的密码已被移除。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已移除密碼。" + } + } + } + }, + "passwordRemoveDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder die wagwoord wat nodig is om {app_name} oop te maak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة كلمة السر المطلوبة لفتح {app_name}." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kilidini açmaq üçün tələb olunan parolu sil." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ برس ک و بندروی {app_name} لایا وانتگ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліце пароль, неабходны для разблакіроўкі {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахнете паролата, необходима за отключване на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আনলক করতে প্রয়োজনীয় পাসওয়ার্ড সরান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina la contrasenya necessària per desbloquejar {app_name}." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odebrat heslo pro odemykání {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu'r cyfrinair sydd ei angen i ddatgloi {app_name}." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern adgangskoden, der kræves for at låse {app_name} op." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Passwort zum Entsperren von {app_name} entfernen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση του κωδικού πρόσβασης που απαιτείται για το ξεκλείδωμα του {app_name}." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove the password required to unlock {app_name}." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi la pasvorton necesan por malŝlosi {app_name}." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar la contraseña necesaria para desbloquear {app_name}." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar la contraseña requerida para desbloquear {app_name}." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda parool, mis on vajalik {app_name} avamiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitza kendu {app_name} desblokeatzeko beharrezkoa dena." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور مورد نیاز برای باز کردن {app_name} را حذف کن." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista {app_name} avaukseen tarvittava salasana." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin ang password na kinakailangan para i-unlock ang {app_name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retirer le mot de passe requis pour déverrouiller {app_name}." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina o contrasinal necesario para desbloquear {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire kalmar sirrin da ake buƙata don buɗe {app_name}." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר את הסיסמה הנדרשת לביטול נעילת {app_name}." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हटाएं जो {app_name} को अनलॉक करने के लिए आवश्यक है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklonite lozinku potrebnu za otključavanje {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Távolítsd el a {app_name} alkalmazás jelszavát." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փոխեք {app_name}-ն ապակողպելու համար պահանջվող գաղտնաբառը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus kata sandi yang diperlukan untuk membuka kunci {app_name}." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi la password richiesta per sbloccare {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} のロックを解除するために必要なパスワードを削除します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის მოხსნა {app_name}'ის განბლოკვისათვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្ដូរពាក្យសម្ងាត់ដែលបានតម្រូវឲ្យមានដើម្បីឈប់ទប់ស្កាត់ {app_name}។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಅನ್ನು ಅನ್ಲಾಕ್ ಮಾಡಲು ಅಗತ್ಯವಿರುವ ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 잠금 해제 시 필요한 비밀번호를 제거합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya ku ji bo vekirina qefila {app_name} lazim e rake." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyawo akatambi okwetengerera {app_name}." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pašalinti slaptažodį, reikalingą {app_name} atrakinti." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt paroli, lai atbloķētu {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстранете ја лозинката потребна за отклучување на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ийг нээхэд шаардлагатай нууц үгийг устгах." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar kata laluan yang diperlukan untuk membuka kunci {app_name}." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုလော့ခ်ဖွင့်ရန် လိုအပ်သော စကားဝှက်ကို ဖယ်ရှားပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern passordet som kreves for å låse opp {app_name}." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अनलक गर्न आवश्यक पासवर्ड हटाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijder het wachtwoord dat nodig is om {app_name} te ontgrendelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern passordet nødvendig for å låsa opp {app_name}." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani achinsinsi omwe amafunika kutsegula {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਨਲੌਕ ਕਰਨ ਲਈ ਲੋੜੀਂ ਦਾ ਪਾਸਵਰਡ ਹਟਾਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń hasło wymagane do odblokowania aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هغه پاسورډ لرې کړئ چې د {app_name} خلاصولو لپاره اړین دی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remova a senha requerida para desbloquear {app_name}." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remova a palavra-passe necessária para desbloquear {app_name}." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină parola necesară pentru a debloca {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить пароль, необходимый для разблокировки {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni lozinku potrebnu za otključavanje {app_name}." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} අගුළු විවෘත කිරීමට අවශ්‍ය මුරපදය ඉවත් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť heslo potrebné na odomknutie {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani geslo, potrebno za odklepanje {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe fjalëkalimin e nevojshëm për të zhbllokuar {app_name}-in." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони лозинку потребну за откључавање {app_name}." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni lozinku potrebnu za otključavanje {app_name}." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort lösenordet som krävs för att låsa upp {app_name}." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa nywila inayotakiwa kufungua {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இற்கு அணுக அடியாக கடவுச்சொல்லை நீக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ని అన్లాక్ చేయడానికి అవసరమైన పాస్వర్డ్ తొలగించు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบรหัสผ่านที่ต้องใช้เพื่อปลดล็อก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uygulamasının kilidini açmak için gereken şifreyi kaldırın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити пароль, який потрібен для розблокування {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو ان لاک کرنے کے لئے درکار پاس ورڈ کو ہٹا دیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ni ochish uchun talab qilinadigan parolni olib tashlash." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa mật khẩu cần thiết để mở khóa {app_name}." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa iphasiwedi efunekayo ukuze uvule {app_name}." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除{app_name}的解锁密码。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "去除解鎖 {app_name} 的密碼。" + } + } + } + }, + "passwordSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel Wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol təyin et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز مقرر کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Κωδικού Πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasahitza ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم رمز عبور" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maglagay ng Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir un mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Kalmar Sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Kata Sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის მითითება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់ពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಗುಪ್ತಪದವನ್ನು ಸೆಟ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfre çêkirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Akasumuluzo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгээ тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Kata Laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်သတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Still passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wachtwoord instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Password" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Password" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurar palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Установить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi lozinku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Nywila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ సెట్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งรหัสผ่าน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifre Belirle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Встановити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol oʻrnatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đặt Mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Password" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定密碼" + } + } + } + }, + "passwordSetDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jou wagwoord is gestel. Hou dit asseblief veilig." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تعيين كلمة المرور الخاصة بك. احفظها في مامن من فضلك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolunuz təyin edildi. Lütfən, onu güvəndə saxlayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی بیک پاسکوڈ برنکی. براہپس محفوظے کہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль быў усталяваны. Захавайце яго ў бяспецы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата парола беше зададена. Моля, пазете я безопасно." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পাসওয়ার্ড সেট করা হয়েছে। দয়া করে এটি নিরাপদ রাখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La vostra contrasenya s'ha definit. Mantingueu-la segura." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvé heslo bylo nastaveno. Pečlivě si ho odlož." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae eich cyfrinair wedi'i osod. Cadwch ef yn ddiogel." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Din adgangskode er blevet indstillet. Venligst hold den sikker." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dein Passwort wurde festgelegt. Bitte bewahre es sicher auf." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός πρόσβασής σας έχει οριστεί. Παρακαλώ κρατήστε τον ασφαλή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your password has been set. Please keep it safe." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Via pasvorto estas agordita. Bonvolu konservi ĝin sekura." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña ha sido establecida. Por favor, mantenla segura." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu contraseña ha sido establecida. Por favor, manténgala segura." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teie parool on määratud. Hoidke seda turvaliselt." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure pasahitza ezarri da. Gorde seguru batean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور شما فعال شد. لطفا آن را در جای امنی ذخیره کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanasi on asetettu. Pidä se turvassa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabago na ang iyong password. Pakisuyong itago ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Votre mot de passe a été défini. Veuillez le conserver en sécurité." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu contrasinal foi configurado. Por favor, mantéñeo seguro." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An saita kalmar sirrinku. Da fatan za a kiyaye shi lafiya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמה שלך הוגדרה. שמור עליה בבטחה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपका पासवर्ड सेट कर दिया गया है। कृपया इसे सुरक्षित रखें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je postavljena. Molimo, čuvajte je na sigurnom." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jelszó be lett állítva. Tartsd biztonságos helyen!" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր գաղտնաբառը սահմանվել է։ Խնդրում ենք անվտանգ պահել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata sandi anda telah disetel. Harap untuk menjaganya." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La tua password è stata impostata. Si prega di tenerla al sicuro." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードが設定されました。安全に保管してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენი პაროლი დაყენებულია. გთხოვთ, შეინახეთ იგი უსაფრთხოდ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់របស់អ្នកត្រូវបានកំណត់។ សូមរក្សាវាឲ្យមានសុវត្ថិភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸಲಾಗಿದೆ. ಅದು ಸುರಕ್ಷಿತವಾಗಿರಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 설정이 완료되었습니다. 안전히 관리하시기 바랍니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoom In" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yo ekatebatibwawo. Kaakasa nti bagutemye mu kifo ekinyuuse eritassaneyebwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsų slaptažodis buvo nustatytas. Prašome saugoti jį saugiai." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūsu parole tika iestatīta. Lūdzu, saglabājiet to drošībā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вашата лозинка е поставена. Ве молиме чувајте ја безбедно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны нууц үг томилогдсон байна. Нууц үгээ хамгаалж байгаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata laluan anda telah ditetapkan. Sila simpan dengan selamat." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ စကားဝှက် ဖြင့်ထားသည်။ ထိန်းသိမ်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er stilt. Vennligst oppbevar det trygt." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईँको पासवर्ड सेट गरिएको छ। कृपया यसलाई सुरक्षित राख्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw wachtwoord is ingesteld. Hou het veilig." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passordet ditt er blitt satt. Vennligst oppbevar det trygt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password yanu yakhalapo. Chonde sungani mosamala." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਪਾਸਵਰਡ ਸੈਟ ਕੀਤਾ ਗਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਇਸਨੂੰ ਸੁਰੱਖਿਅਤ ਰੱਖੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawiono hasło. Zachowaj je w bezpiecznym miejscu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو پاسورډ ټاکل شوی دی. مهرباني وکړۍ، دا خوندي وساتئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sua senha foi definida. Por favor, mantenha-a segura." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A sua palavra-passe foi definida. Por favor, mantenha-a segura." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola ta a fost setată. Te rugăm să o păstrezi în siguranță." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль установлен. Пожалуйста, храните его в безопасном месте." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tvoja šifra je postavljena. Molimo, čuvaj je na sigurnom." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ මුරපදය සකසා ඇත. කරුණාකර එය ආරක්ෂිතව තබා ගන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše heslo bolo nastavené. Uchovajte ho prosím v bezpečí." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaše geslo je bilo nastavljeno. Prosim, hranite ga na varnem mestu." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi juaj është vendosur. Ju lutemi ta mbani të sigurt." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваша лозинка је подешена. Молимо вас да је сачувате." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaša lozinka je podešena. Čuvajte je na sigurnom mestu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ditt lösenord har angetts. Håll det säkert." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenosiri lako limewekwa. Tafadhali lihifadhi salama." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களின் கடவுச்சொல் அமைக்கப்பட்டுள்ளது. தயவுசெய்து அதை பாதுகாப்பாக வைத்திருங்கள்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ పాస్‌వర్డ్ సెట్ చేయబడింది. దయచేసి దాన్ని సురక్షితంగా ఉంచండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านของคุณถูกตั้งแล้ว กรุณารักษาเอาไว้ให้ปลอดภัย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifreniz ayarlandı. Lütfen güvende tutunuz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ваш пароль встановлено. Будь ласка, збережіть його в безпеці." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا پاس ورڈ مقرر ہو گیا ہے۔ براہ کرم اسے محفوظ رکھیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolingiz olib tashlandi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu của bạn đã được đặt. Hãy giữ nó cẩn thận." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi yakho isetiwe. Nceda uyigcine ikhuselekile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的密码已设定。请妥善保管。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您的密碼設定完成。請注意保管。" + } + } + } + }, + "paste" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plak" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لصق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yapışdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چسپاء" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уставіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поставяне" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পেস্ট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enganxa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vložit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gludo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indsæt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einfügen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επικόλληση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paste" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alglui" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pegar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pegar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itsatsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Liitä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idikit" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coller" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pegar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הדבק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पेस्ट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalijepi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beillesztés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեղադրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tempel" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incolla" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "貼り付け" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩასმა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិទភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಂಟಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "붙여넣기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pêve bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddiba" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įdėti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielīmēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Залепи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Буулгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကူးယူမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lim inn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाँस्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plakken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lim inn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matulani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚਿਪਕਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wklej" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیست" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Colar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lipire" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вставить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalijepi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අලවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vložiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prilepi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngjite" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налепи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalepi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klistra in" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒட்டவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పేస్ట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "วาง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yapıştır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вставити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "چسپاں کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qo'yish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dán" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ncamathisela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "粘帖" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "貼上" + } + } + } + }, + "permissionMusicAudioDenied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benodig musiek en oudio toegang om lêers, musiek en oudio te stuur, maar dit is permanent geweier. Tik Instellings → Toestemmings, en skakel \"Musiek en oudio\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إلى الوصول إلى الموسيقى والصوت من أجل إرسال الملفات والموسيقى والصوت، ولكن تم رفض هذا الأذن بشكل دائم. انقر على الإعدادات → الأذونات، وقم بتشغيل \"الموسيقى والصوت\"." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کی موسیقی اور آڈیو تک رسائی ضروری ہے تاکہ آپ فائلیں، موسیقی اور آڈیو بھیج سکیں، لیکن اسے مستقل طور پر ممنوع کر دیا گیا ہے۔ سیٹنگز ٹیپ کریں → اجازتیں، اور \"موسیقی اور آڈیو\" کو آن کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе доступу да музыкі і аўдыё для адпраўкі файлаў, музыкі і аўдыё, але доступ быў пастаянна забаронены. Націсніце «Налады» → «Дазволы» і актывуйце «Музыка і аўдыё»." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до музика и аудио, за да може да изпращате файлове, музика и аудио, но достъпът е бил отказан постоянен. Отидете в Настройки → Разрешения и включете \"Музика и аудио\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ফাইল, সঙ্গীত এবং অডিও পাঠানোর জন্য সঙ্গীত ও অডিও অ্যাক্সেস প্রয়োজন, কিন্তু এটি স্থায়ীভাবে প্রত্যাখ্যান করা হয়েছে। Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la música i l'àudio per enviar fitxers, música i àudio, però s'ha denegat permanentment. Toqueu Configuració → Permisos, i activeu \"Música i àudio\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k hudbě a zvuku, aby mohla posílat soubory, hudbu a zvuk. Přístup byl ale trvale odepřen. Klepněte na Nastavení → Oprávnění a zapněte \"Hudba a zvuk\"." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} angen mynediad at gerddoriaeth ac sain er mwyn anfon ffeiliau, cerddoriaeth a sain, ond mae wedi'i wrthod yn barhaol. Tapiwch Gosodiadau → Trwyddedau, a throi \"Cerddoriaeth a sain\" ymlaen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver musik- og lydadgang for at sende filer, musik og lyd, men det er blevet permanent nægtet. Tryk på Indstillinger → Tilladelser, og slå \"Musik og lyd\" til." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Musik- und Audiozugriff, um Dateien, Musik und Audio zu senden, aber der Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Musik und Audio«." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio, but it has been permanently denied. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio, but it has been permanently denied. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a música y audio para enviar archivos, música y audio, pero ha sido denegado permanentemente. Toca Configuración → Permisos, y activa \"Música y audio\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a música y audio para enviar archivos, música y audio, pero ha sido denegado permanentemente. Toca Configuración → Permisos, y activa \"Música y audio\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab muusika ja audio juurdepääsu failide, muusika ja audio saatmiseks, kuid see on jäädavalt keelatud. Puudutage Seaded → Load, ja lülitage \"Muusika ja audio\" sisse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k musika eta audio sarbidea behar du fitxategiak, musika eta audioak bidaltzeko, baina behin betiko ukatu da. Ezarpenak ukitu → Baimenak, eta aktibatu \"Musika eta audioak\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای فرستادن فایل، آهنگ و صوت نیاز به دسترسی به آهنگ و صدا دارد، اما این دسترسی به طور دائم رد شده است. به تنظیمات → مجوز‌ها رفته و «صدا و آهنگ» را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee pääsyn musiikkiin ja ääniin, jotta se voi lähettää tiedostoja, musiikkia ja ääntä, mutta pääsy on pysyvästi estetty. Napauta Asetukset → Luvat ja salli \"Musiikki ja äänet\"." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio, but it has been permanently denied. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès à la musique et à l'audio pour envoyer des fichiers, de la musique et de l'audio, mais il a été refusé définitivement. Appuyez sur Paramètres → Autorisations, puis activez \"Musique et audio\"." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar amfani da kiɗi da sauti don aika fayiloli, kiɗi da sauti, amma an haramta shi dindindin. Danna Saituna → Izini, kuma kunna \"Kiɗi da sauti\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק לגישה למוזיקה ואודיו על מנת לשלוח קבצים, מוזיקה ואודיו, אבל היא נדחתה לצמיתות. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को संगीत और ऑडियो एक्सेस की आवश्यकता है ताकि फ़ाइलें, संगीत और ऑडियो भेजी जा सकें, लेकिन इसे स्थायी रूप से अस्वीकार कर दिया गया है। सेटिंग्स पर टैप करें → अनुमतियां, और \"संगीत और ऑडियो\" चालू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup glazbi i zvuku kako bi mogao slati datoteke, glazbu i zvuk, no to je sada trajno onemogućeno. Tap Settings → Permissions, i uključite \"Glazba i zvuk\"." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak zene és hang-hozzáférésre van szüksége a fájlok és zenék küldéséhez, de ez nem lett megadva. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Zene és hang\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է երաժշտության և աուդիո հասանելիությունը ֆայլեր, երաժշտություն և աուդիո ուղարկելու համար, սակայն թույլտվությունը մշտապես մերժված է: Սեղմեք Կարգավորումներ → Թույլտվություններ և միացրեք \"Երաժշտություն և աուդիո\" կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses musik dan audio untuk mengirim file, musik, dan audio, tapi sudah ditolak secara permanen. Ketuk Setelan → Perizinan, dan aktifkan \"Musik dan audio\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'accesso a musica e audio è stato negato. {app_name} richiede l'accesso a musica e audio per inviare file, musica e audio. Vai su Impostazioni → Autorizzazioni, e abilita i permessi per musica e audio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} は、ファイル、音楽、およびオーディオを送信するために音楽およびオーディオアクセスが必要ですが、それが恒久的に拒否されています。設定に移動して、「権限」を選択し、「音楽およびオーディオ」を有効にしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio, but it has been permanently denied. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការការចូលប្រើតន្ត្រី និងសម្លេង ដើម្បីផ្ញើឯកសារ តន្ត្រី និងសម្លេង ប៉ុន្តែវាត្រូវបានបដិសេធរហូត។ ចុច ការកំណត់ → សិទ្ធិ និងបើក \"តន្ត្រី និងសម្លេង\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಫೈಲುಗಳನ್ನು, ಸಂಗೀತ ಮತ್ತು ಶಬ್ದವನ್ನು ಕಳುಹಿಸಲು ಸಂಗೀತ ಮತ್ತು ಶಬ್ದ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ಸೆಟ್ಟಿಂಗ್ಗಳು ಟ್ಯಾಪ್ ಮಾಡಿ → ಅನುಮತಿಗಳು, ಮತ್ತು \"ಸಂಗೀತ ಮತ್ತು ಶಬ್ದ\" ಅನ್ನು ಆನ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은(는) 파일, 음악 및 오디오를 전송하기 위해 음악 및 오디오 접근이 필요하지만, 접근이 영구적으로 거부되었습니다. 설정 → 권한으로 이동하여 \"음악 및 오디오\"를 켜십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hewl dibe da ku bikarhênina muzîk û dengwêje bike ji bo senden dosyayan, muzîk û dengwêje, lê permîsiya wî daîmen hewce ye. Bibînin Mîhengên → Permîsyan, û \"Muzîk û dengwêje\" bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y'amakudiira ne ddoboozi okusobola okusindika abayimba n’eddobbozi, naye kyaganye dda. Nnyonnyola mu Settings → Permissions, lalu \"Music and audio\" okubigya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie muzikos ir garso, kad galėtumėte siųsti failus, muziką ir garsą, bet ji buvo visam laikui uždrausta. Bakstelėkite Nustatymai → Leidimai ir įjunkite \"Muziką ir garsą\"." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до музика и аудио за да може да испраќа датотеки, музика и аудио, но пристапот е трајно одбиен. Допрете Поставки → Дозволи, и вклучете \"Музика и аудио\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-д файлууд, хөгжим, аудиог илгээхийн тулд хөгжмийн болон аудионы хандалт шаардлагатай байгаа боловч энэ нь байнга зөвшөөрөхөөс татгалзсан байна. Тохиргоо → Зөвшөөрөл хэсэгрүү ороод, \"Хөгжим болон аудио\"-г асаана уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses muzik dan audio untuk menghantar fail, muzik dan audio, tetapi ia telah ditolak secara kekal. Ketik Tetapan → Kebenaran, dan hidupkan \"Muzik dan audio\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဂီတနှင့်အသံဖိုင်များ ပို့ရန် လိုအပ်ပါသည်၊ ပြသနာ မရရှိရှိအောင် နိုင်ပါတယ်၊ ကြော့ကာရှာဖွေခြင်းစင့်ခဲ့ရပါသည်။ မနည်းနည်းတော့ ကောဖောက်နွိုင့်ဆက်နွှင့်နွေးကူဆိုင်ရာ 'ပို့'ထဲသို့သော 'ဂီတနှင့်အသံများ' ကိုဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til musikk og lyd for å sende filer, musikk og lyd, men det har blitt permanent nektet. Trykk på Innstillinger → Tillatelser, og slå på 'Musikk og lyd'." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई संगीत र अडियो पहुँच आवश्यक छ फाइलहरू, संगीत र अडियो पठाउनका लागि, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। सेटिङहरू → अनुमतिहरूमा थिच्नुहोस्, र \"संगीत र अडियो\" अन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot muziek en audio om bestanden, muziek en audio te verzenden, maar dit is permanent geweigerd. Ga naar Instellingen → Toestemmingen en schakel \"Muziek en audio\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger musikk- og lydtilgang for å sende filer, musikk og lyd, men tilgangen er permanent avslått. Trykk Innstillinger → Tillatelser, og slå på \"Musikk og lyd\"." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio, but it has been permanently denied. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫਾਈਲਾਂ, ਸੰਗੀਤ ਅਤੇ ਆਡੀਓ ਭੇਜਣ ਲਈ ਸੰਗੀਤ ਅਤੇ ਆਡੀਓ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ, ਪਰ ਇਸਨੂੰ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖਾਰਜ਼ ਕੀਤਾ ਗਿਆ ਹੈ। ਸੈਟਿੰਗਾਂ 'ਤੇ ਟੈਪ ਕਰੋ → ਅਨੁਮਤੀਆਂ, ਅਤੇ \"ਸੰਗੀਤ ਅਤੇ ਆਡੀਓ\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wysyłać pliki, muzykę i dźwięk, aplikacja {app_name} potrzebuje dostępu do muzyki i dźwięku, jednak na stałe go odmówiono. Naciśnij „Ustawienia” → „Uprawnienia” i włącz „Muzyka i dźwięk”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته د موسیقۍ او غږ لاسرسي اړتیا لري ترڅو فایلونه، موسیقۍ او غږ واستوئ، مګر دا په دائمي ډول رد شوی. تنظیماتو باندې ټپ وکړئ → اجازې، او \"موسیقي او غږ\" روښانه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso a música e áudio para enviar arquivos, músicas e áudio, mas o acesso foi permanentemente negado. Toque em Configurações → Permissões e ative \"Música e áudio\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso a música e áudio para enviar arquivos, músicas e áudios, mas foi permanentemente negado. Toque em Configurações → Permissões e ative \"Música e áudio\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la funcția de muzică și bibliotecă audio pentru a trimite fișiere, muzică și înregistrări audio, dar accesul a fost refuzat definitiv. Mergi la Setări → Permisiuni și activează funcția „Muzică și audio”." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ для отправки музыки, аудио и файлов, но доступ был запрещен. Перейдите в Настройки → Разрешения, и включите \"Музыка и аудио\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup muzici i zvuku kako bi poslao datoteke, muziku i zvuk, ali je trajno odbijen. Dodirnite Postavke → Dozvole i uključite \"Muzika i zvuk\"." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} කේතය මගින් ගොනු, සංගීත සහ ශබ්ද යවන ව්‍යාපෘතිය සඳහා සංගීත සහ ශබ්ද ප්‍රවේශ අවශ්‍ය වේ, නමුදු එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. සැකසුම් → අවසරයන්, සහ \"සංගීත සහ ශබ්ද\" වට කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k hudbe a zvukom na odosielanie súborov, hudby a zvukov, ale bol natrvalo odmietnutý. Tap Settings → Permissions, and turn \"Music and audio\" on." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do glasbe in zvoka za pošiljanje datotek, glasbe in zvoka, vendar je bil ta trajno zavrnjen. Tapnite Nastavitve → Dovoljenja in vklopite \"Glasba in zvok\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për qasje në muzikë dhe audio për të dërguar skedarë, muzikë dhe audio, por kjo i është mohuar. Shtypni Settings → Permissions dhe aktivizoni \"Music and audio\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба приступ музици и звуку ради слања датотека, музике и звука, али је приступ трајно одбијен. Додирните Поставке → Дозволе и укључите \"Музика и звук\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup muzici i zvuku kako bi slao fajlove, muziku i zvuk, ali mu je trajno odbijeno. Tap Settings → Permissions, i omogućite \"Muzika i zvuk\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till musik och ljud för att skicka filer, musik och ljud, men åtkomsten har nekats permanent. Tryck på Inställningar → Behörigheter, och slå på 'Musik och ljud'." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya muziki na sauti ili kutuma faili, muziki na sauti, lakini imekataliwa kabisa. Gusa Mipangilio → Ruhusa, na washa \"Muziki na sauti\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} கோப்புகளை, இசையை மற்றும் ஆடியோவின் அனுமதி கிடைக்க வேண்டியது அவசியம், ஆனால் இது நிரந்தரமாக நரம்பாகியிருக்கின்றது. அமைப்புகள்-க்கு தட்டவும் → அனுமதிகள், மற்றும் \"இசை மற்றும் ஆடியோ\" இயலுமைப்படுத்தவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ఫైళ్లు, సంగీతం మరియు ఆడియోను పంపించడానికి మరియు ఆడియో యాక్సెస్ కావాలి, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. సెట్టింగులు → అనుమతులు ని తట్టి, \"మ్యూజిక్ మరియు ఆడియో\"ని ఆన్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องการเข้าถึงเพลงและเสียงเพื่อส่งไฟล์, เพลง และเสียง แต่คำขอนั้นถูกปฏิเสธอย่างถาวร กรุณาไปที่เมนูตั้งค่า → การอนุญาต และเปิดใช้งาน \"เพลงและเสียง\"" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dosya, müzik ve ses gönderimi için müzik ve ses erişimine ihtiyaç duyuyor, ancak bu erişim kalıcı olarak reddedildi. Ayarlar → İzinler üzerine dokunun ve \"Müzik ve ses\" seçeneğini açın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до музики та аудіо, щоб надсилати файли, музику та аудіо, але доступ було постійно відхилено. Натисніть Налаштування → Дозволи та увімкніть «Музика та аудіо»." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو فائلز، میوزک، اور آڈیو بھیجنے کے لیے میوزک اور آڈیو کی رسائی کی ضرورت ہے، مگر اسے مستقل طور پر انکار کر دیا گیا ہے۔ سیٹنگز پر ٹیپ کریں → اجازتیں، اور \"موسیقی اور آڈیو\" کو آن کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fayllar, musiqa va audioni jo'natish uchun musiqa va audio kirishiga ehtiyoj bor, ammo bu abadiy rad etilgan. Sozlamalar → Ruxsatlar, va \"Musiqa va audio\"ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập âm nhạc và âm thanh để gửi tệp, nhạc và âm thanh, nhưng quyền này đã bị từ chối vĩnh viễn. Nhấn Cài đặt → Quyền truy cập, và bật \"Âm nhạc và âm thanh\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kumculo kunye noaudio ukuze ukwazi ukuthumela iifayili, umculo kunye noaudio, kodwa oku kuthintelwe ngokusisigxina. Thepha ku-Settings → Permissions, kwaye uvule 'Umculo kunye noaudio'." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要音乐和音频权限才能发送文件、音乐和音频,但该权限已被永久拒绝。请进入应用程序设置→权限,打开“音乐和音频”权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要音樂和音頻存取權限才能傳送檔案、音樂和音頻,但已被永久拒絕。點擊設置 → 權限,並打開「音樂和音頻」。" + } + } + } + }, + "permissionsAppleMusic" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} moet Apple Music gebruik om media-aanhegsels te speel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج استخدام Apple Music لتشغيل مرفقات الوسائط." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} media qoşmalarını oxutmaq üçün Apple Music-i istifadə etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} xیس پاتبسینہ ایپل موزیک لو پہ اجرأ ہٰن اختیارات استعمالے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрэбен доступ да Apple Music, каб прайграваць медыя ўкладанні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} трябва да използва Apple Music, за да възпроизвежда медийни прикачени файлове." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মিডিয়া সংযুক্তি প্লে করার জন্য {app_name} কে Apple Music ব্যবহার করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita utilitzar Apple Music per reproduir fitxers adjunts de suports." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje použít Apple Music pro přehrávání mediálních příloh." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae angen i {app_name} ddefnyddio Apple Music i chwarae atodiadau cyfryngau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skal bruge Apple Music for at afspille medievedhæftninger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Zugriff auf Apple Music, um Medienanhänge abzuspielen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στο Apple Music για αναπαραγωγή συνημμένων πολυμέσων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs to use Apple Music to play media attachments." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas uzi Apple Music por ludi aŭdvidaĵojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita usar Apple Music para reproducir archivos adjuntos multimedia." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita usar Apple Music para reproducir archivos adjuntos de medios." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab Apple Musici kasutamist, et esitada meediamanuseid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k Apple Music erabiltzea behar du hedabide eranskinak erreproduzitzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} باید از Apple Music برای پخش پیوست‌های رسانه‌ای استفاده کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee käyttää Apple Musiikkia mediasisältöjen toistamiseen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinakailangang magamit ng {app_name} ang Apple Music upang magpatugtog ng mga media attachment." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} doit accéder à Apple Music pour lire les pièces jointes multimédias." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita usar Apple Music para reproducir anexos multimedia." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar amfani da Apple Music don kunna abin haɗe-haɗen kafofin watsa labarai." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק ל-Apple Music כדי להפעיל צרופות מדיה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मीडिया संलग्नक बजाने के लिए {app_name} को Apple Music के उपयोग की आवश्यकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba koristiti Apple Music za reprodukciju medijskih privitaka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-nak szüksége van az Apple Music használatára a média mellékletek lejátszásához." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պետք է օգտագործի Apple Music՝ մեդիա կցորդները նվագարկելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan Apple Music untuk memutar lampiran media." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} deve utilizzare Apple Music per riprodurre gli allegati multimediali." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はメディア添付ファイルを再生するためにApple Musicを使用する必要があります" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება Apple Music-ის გამოყენება მედიამიკრძურბების სათამაშოდ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការប្រើប្រាស់ Apple Music ដើម្បីចាក់មេឌៀភ្ជាប់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಮಾಧ್ಯಮ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳನ್ನು ಪ್ಲೇ ಮಾಡಲು ಆಪಲ್ ಮ್ಯೂಸಿಕ್ ಬಳಸಬೇಕು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 미디어 첨부 파일을 재생하기 위해 Apple Music을 사용해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya bikar anînina Apple Music hewce dike da ku tesawirên medyayê bixebitîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} keetaaga kuzannyisa Apple Music okuzannyisa ekwatibwako okuva mu mikutu." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງໃຊ້ Apple Music ເພື່ອປ່ອຍແນບສື່ມວນຊົນ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia naudoti Apple Music, kad galėtų leisti medijos priedus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nepieciešams izmantot Apple Music, lai atskaņotu multivides pielikumus." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од Apple Music за да ги репродуцира медиумските прилози." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} медиа хавсралтуудыг тоглуулахын тулд Apple Music-ийг ашиглах хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} perlu menggunakan Apple Music untuk memainkan lampiran media." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် Apple Music ကို အသုံးပြု၍ မီဒီယာလုံခြုံမှုကို ဖွင့်ရန် လိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger å bruke Apple Music for å spille av mediavedlegg." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई मिडिया अट्याचमेन्टहरू प्ले गर्न एप्पल म्यूजिक प्रयोग गर्नु पर्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} moet Apple Music gebruiken om mediabijlagen af te spelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger Apple Music for å spille av media-vedlegg." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kugwiritsa ntchito Apple Music kuti izisintha ma attachment a media." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਮੀਡੀਆ ਅਟੈਚਮੈਂਟਸ ਖੇਡਣ ਲਈ ਐਪਲ ਮਿਊਜ਼ਿਕ ਵਰਤਣ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do odtwarzania załączników multimedialnych aplikacja {app_name} potrzebuje używać aplikacji Apple Music." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} میوزیک مولا زموږ توانیدونکی د Apple Music نه په لوبولوکې کارول کیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa usar a Apple Music para reproduzir anexos de mídia." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa usar o Apple Music para reproduzir anexos de multimédia." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la Apple Music pentru a reda atașamente media." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к Apple Music для воспроизведения медиафайлов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba koristiti Apple Music za reprodukciju medijskih privitaka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මාධ්‍ය ඇමුණුම් වාදනය කිරීමට {app_name} ට Apple Music භාවිත කිරීම අවශ්‍යයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje používať Apple Music na prehrávanie mediálnych príloh." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje uporabo Apple Music za predvajanje medijskih prilog." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë të përdorë Apple Music për të luajtur attachment-e mediaje." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба да користи Apple Music да би репродуковао медијске прилоге." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba da koristi Apple Music za reprodukciju medijskih priloga." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till Apple Music för att spela upp bifogade mediafiler." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji kutumia Apple Music kucheza viambatanisho vya vyombo vya habari." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} மெடியா இணைப்புகளை விளையாட Apple Music ஐ பயன்படுத்த வேண்டும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీడియా అటాచ్మెంట్‌లను ప్లే చేయడానికి {app_name} Apple Musicను ఉపయోగించాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องใช้ Apple Music เพื่อเล่นไฟล์สื่อที่แนบมา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, medya eklerini çalmak için Apple Music'i kullanmak zorunda." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує використовувати Apple Music для відтворення медіавкладень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو میڈیا اٹیچمنٹ چلانے کے لیے ایپل میوزک کا استعمال کرنا ہوگا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} media tarkiblarini ijro etish uchun Apple Music'dan foydalanishi kerak." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần sử dụng Apple Music để phát các tập tin đính kèm phương tiện." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kufuneka isebenzise uMculo weApple ukudlala iziphumo zemidiya." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要使用Apple Music来播放媒体附件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要使用 Apple Music 來播放媒體附件。" + } + } + } + }, + "permissionsAutoUpdate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Opdateer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحديث تلقائي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avto-güncəlləmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خودکار اپڈیٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычнае абнаўленне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматически обновления" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্বয়ংক্রিয় আপডেট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualització automàtica" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatické aktualizace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diweddariad Auto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Opdatér" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatische Aktualisierung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματη Ενημέρωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Update" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomata Ĝisdatigo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizar automáticamente" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizar automáticamente" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaatne uuendus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Update" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپدیت خودکار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaattinen päivitys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong mag-uupdate" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mise à jour automatique" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización automática" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabanin Kai tsaye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עדכון אוטומטי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वयमेव अद्यतन हो जाना" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko ažuriranje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatikus frissítés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավտոմատ թարմացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pembaruan Otomatis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiornamento automatico" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動更新" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატური განახლება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ធ្វើបច្ចុប្បន្នភាពដោយស្វ័យប្រវត្តិ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವಯಂ ನವೀಕರಣ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "자동 업데이트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rojanekirina otomatîk" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Update" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການອັບເດດອັດຕະໂນມັດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Update" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiska atjaunināšana" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматско ажурирање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматаар шинэчлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kemas Kini Auto" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အလိုအလျောက် အပ်ဒိတ်လုပ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk oppdatering" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्वतः अद्यावधिक" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch bijwerken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk oppdatering" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auto Update" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਟੋ ਅਪਡੇਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczna aktualizacja" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اتوماتیک تازه کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização Automática" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização Automática" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizare automată" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматическое обновление" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatska ažuriranja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්වයං යාවත්කාලය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatická aktualizácia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samodejno posodobi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përditëso Automatikisht" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматско ажурирање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatsko ažuriranje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uppdatera automatiskt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sasisho la Moja kwa Moja" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தானாக புதுப்பிக்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఆటో అప్‌డేట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อัปเดตอัตโนมัติ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otomatik Güncelleme" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматичне оновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آٹو اپڈیٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avtomatik yangilanish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tự động cập nhật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlaziyo oluzenzekelayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "自动更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "自動更新" + } + } + } + }, + "permissionsAutoUpdateDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyk outomaties vir opdaterings by opstart" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التحقق تلقائيًا من التحديثات عند بدء التشغيل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Açılışda güncəlləmələri avto-yoxla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسٹارٹ اپ پر خود کار طریقے سے اپڈیٹس چیک کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аўтаматычна правяраць наяўнасць абнаўленняў пры запуску" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматически проверявай за обновления при стартиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্টার্টআপ এ স্বয়ংক্রিয়ভাবে আপডেটগুলি চেক করা হবে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comproveu automàticament les actualitzacions en iniciar l'aplicació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automaticky kontrolovat aktualizace při spuštění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiriwch yn awtomatig am ddiweddariadau wrth gychwyn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk søg efter opdateringer ved opstart" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beim Start automatisch nach Aktualisierungen suchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτόματος έλεγχος για ενημερώσεις κατά την εκκίνηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aŭtomate serĉi ĝisdatigojn kiam komenciĝas" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comprobar actualizaciones automáticamente al iniciar Session" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comprobar actualizaciones automáticamente al iniciar Session" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrolli automaatselt uuendusi käivitamisel" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به طور خودکار وضعیت بروزرسانی را در هنگام اجرا شدن برنامه بررسی کن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarkista päivitykset automaattisesti käynnistäessä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awtomatikong tingnan ang mga update sa startup" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vérifier automatiquement les mises à jour au démarrage." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comprobar automaticamente as actualizacións ao iniciar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba sabuntawa kai tsaye lokacin farawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בדיקה אוטומטית לעדכונים בעת הפעלה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्टार्टअप पर स्वचालित रूप से अद्यतन जांचें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski provjeri ažuriranja pri pokretanju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indításkor automatikusan ellenőrzi a frissítéseket." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ինքնաբերաբար ստուգել թարմացումները գործարկման ժամանակ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Secara otomatis cek pembaruan saat startup" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifica automaticamente la presenza di aggiornamenti all'avvio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "起動時に自動的に更新の有無を確認する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავტომატურად შეამოწმეთ განახლებები პროგრამის ჩართვისას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពិនិត្យដោយស្វ័យប្រវត្តិសម្រាប់ការធ្វើបច្ចុប្បន្នភាពនៅពេលចាប់ផ្តើម។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಥಾಪನೆಯ ಸಮಯದಲ್ಲಿ ಸ್ವಯಂ ತೋರಿಸಿ ನವೀಕರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "시작 시 자동으로 업데이트를 확인" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Di destpêkê de rojanekirina otomatîken kontrol dike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກວດເຊັກການອັບເດດອັດຕະໂນມັດໃນຕອນທີ່ກົດເຂົ້າຮຽຍ ASFREEN" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatiškai tikrinti atnaujinimus paleidimo metu" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automātiski pārbaudīt atjauninājumus startējot" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматски проверува за ажурирања при стартување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эхлүүлэх үед шинэчлэлтийг автоматаар шалгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Periksa kemas kini secara automatik semasa permulaan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စက်ဖွင့်တဲ့ အချိန်မှာ အပ်ဒိတ်တွေကို အလိုအလျောက် စစ်ဆေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisk sjekk for oppdateringer ved oppstart" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्टार्टअपमा अद्यावधिकहरूको लागि स्वतः जाँच गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatisch op updates controleren tijdens opstarten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk etter oppdateringar automatisk ved oppstart" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਟਾਰਟਅਪ 'ਤੇ ਆਪਣੇ ਆਪ ਅਪਡੇਟਾਂ ਦੀ ਜਾਂਚ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatyczne sprawdzanie dostępności aktualizacji podczas uruchamiania." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په پیل کې د تازه کولو لپاره اتوماتیک چک کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificar atualizações automaticamente ao iniciar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificar automaticamente por atualizações ao ligar." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verifică automat actualizările la pornire" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматически проверять на наличие обновлений при запуске" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatski provjeri ažuriranja pri pokretanju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ආරම්භයේ යාවත්කාලීන සඳහා ස්වයංක්‍රීයව පරීක්ෂා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatická kontrola aktualizácií pri spustení" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ob zagonu samodejno preveri za posodobitve" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrolloni automatikisht për përditësime gjatë nisjes së programit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аутоматски проверавај ажурирања при покретању" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sök efter uppdateringar automatiskt vid uppstart" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angalia sasisho moja kwa moja unapoanzisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடக்கத்தில் தானாக புதுப்பிக்கச் சோதிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్టార్ట్‌అప్‌పై ఆటో అప్‌డేట్‌లు తనిఖీ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตรวจสอบการอัปเดตอัตโนมัติเมื่อเริ่มต้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Başlangıçta güncellemeleri otomatik olarak denetle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Автоматично перевіряти наявність оновлень при запуску" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شروع میں آٹو اپڈیٹس کے لیے خودکار چیک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ishga tushganda yangilanishlarni avtomatik tekshirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Automatically check for updates on startup" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukujonga uhlaziyo ngokuzenzekelayo xa uqala inkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "启动时自动检查更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "啟動時自動檢查更新" + } + } + } + }, + "permissionsCameraDenied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benodig kamera toegang om foto's en video's te neem, maar dit is permanent geweier. Tik Instellings → Toestemmings, en skakel \"Kamera\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الكاميرا لالتقاط الصور ومقاطع الفيديو، ولكن تم رفضه نهائيًا. انقر على الإعدادات → الأذونات، وقم بتفعيل \"الكاميرا\"." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کماٹ پاتبسینہ مجبورے تصورات و ویڈیوشیں، چو گو مکمبرنس ورزیہ.
لہ تکط افلاکیت کو کنراں،ٹی امن وضیجتے او پرتحمایل دےیے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе доступу да камеры для здымкі фота і відэа, але доступ быў пастаянна забаронены. Націсніце «Налады» → «Дазволы» і актывуйце «Камера»." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до камерата, за да може да прави снимки и видеа, но достъпът е бил отказан постоянен. Отидете в Настройки → Разрешения и включете \"Камера\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ছবি ও ভিডিও তোলার জন্য ক্যামেরা অ্যাকসেস প্রয়োজন, কিন্তু এটি স্থায়ীভাবে প্রত্যাখ্যান করা হয়েছে। Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la càmera per fer fotos i vídeos, però s'ha denegat permanentment. Toqueu Configuració → Permisos, i activeu \"Càmera\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k fotoaparátu pro pořizování fotografií a videí, přístup byl ale trvale zakázán. Klepněte na → Oprávnění a povolte fotoaparát/kameru." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae angen mynediad i'r camera ar {app_name} i dynnu lluniau a fideos, ond fe'i gwrthodwyd yn barhaol. Tapiwch Gosodiadau → Caniatadau, a throi \"Camera\" ymlaen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver kameraadgang for at tage fotos og videoer, men det er blevet permanent nægtet. Tryk på Indstillinger → Tilladelser, og slå \"Kamera\" til." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Kamerazugriff, um Fotos und Videos aufzunehmen, aber der Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Speicher«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στην κάμερα για τη λήψη φωτογραφιών και βίντεο, αλλά έχει απορριφθεί μόνιμα. Πατήστε Ρυθμίσεις → Άδειες, και ενεργοποιήστε την \"Κάμερα\"." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para tomar fotos y videos, pero ha sido denegado permanentemente. Toca Configuración → Permisos, y activa \"Cámara\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la cámara para tomar fotos y videos, pero ha sido permanentemente denegado. Toque Configuración → Permisos, y active \"Cámara\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab kaamera ligipääsu fotode ja videote tegemiseks, kuid sellele on püsivalt keeldutud. Puuduta sätteid → Õigused ja lülita \"Kaamera\" sisse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k kameraren sarbidea behar du argazkiak eta bideoak ateratzeko, baina behin betiko ukatu da. Ezarpenak ukitu → Baimenak, eta aktibatu \"Kamera\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای گرفتن عکس‌ و ویدئو‌ نیاز به دسترسی دوربین دارد، اما این دسترسی به طور دائم رد شده است. به تنظیمات → مجوز‌ها رفته و «دوربین» را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee kameran käyttöoikeuden kuvien ja videoiden ottamiseksi, mutta oikeus on evätty pysyvästi. Napauta Asetukset → Käyttöoikeudet ja kytke \"Kamera\" päälle." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès à l'appareil photo pour prendre des photos et des vidéos, mais il a été refusé définitivement. Appuyez sur Paramètres → Autorisations, et activez \"Appareil photo\"." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar kyamara don ɗaukar hotuna da bidiyo, amma an haramta shi dindindin. Danna Saituna → Izini, kuma kunna \"Kyamara\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} צריך את הרשאת המצלמה כדי לצלם תצלומים או וידיאו, אבל היא נדחתה לצמיתות. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को फ़ोटो और वीडियो लेने के लिए कैमरा अनुमति की आवश्यकता होती है, लेकिन इसे स्थायी रूप से मना कर दिया गया है। सेटिंग्स → अनुमतियां पर टैप करें और \"कैमरा\" चालू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri za snimanje fotografija i videozapisa, no to je sada trajno onemogućeno. Tap Settings → Permissions, i uključite \"Kamera\"." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak kamera-hozzáférésre van szüksége képek és videók felvételéhez, de ez nem lett megadva. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Kamera\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է տեսախցիկի հասանելիությունը, որպեսզի կարողանաք լուսանկարներ և տեսանյութեր անել, սակայն թույլտվությունը մշտապես մերժված է: Սեղմեք Կարգավորումներ → Թույլտվություններ և միացրեք \"Տեսախցիկ\" կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengambil foto dan video, tapi telah ditolak secara permanen. Ketuk Setelan → Perizinan, dan aktifkan \"Kamera\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'accesso alla fotocamera è stato negato. {app_name} richiede l'accesso alla fotocamera per scattare foto e video. Vai su Impostazioni → Autorizzazioni e abilita i permessi alla fotocamera." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で写真や動画を撮るには、カメラへのアクセスを許可する必要がありますが、無効になっています。設定 → アプリの権限 をタップして、「カメラ」へのアクセスをオンにしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs camera access to take photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការសិទ្ធិកាមេរ៉ាដើម្បីថតរូប និងវិដេអូ ប៉ុន្តែវាត្រូវបានបដិសេធរហូត។ ចុច ការកំណត់ → សិទ្ធិ និងបើក \"កាមេរ៉ា\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಲು ಕ್ಯಾಮೆರಾ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ಸೆಟ್ಟಿಂಗ್ಗಳು ಟ್ಯಾಪ್ ಮಾಡಿ → ಅನುಮತಿಗಳು, ಮತ್ತು \"ಕ್ಯಾಮೆರಾ\" ಅನ್ನು ಆನ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 사진과 동영상을 찍기 위해 카메라 접근이 필요하지만 영구적으로 거부되었습니다. 설정 - 권한을 누르고 '카메라'를 켜십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hewl dibe da ku bikarhênina kamera bibe ji bo twistsen wêneyan û vedîdarê, lê permîsiya wî daîmen hewce ye. Bibînin Mîhengên → Permîsyan, û \"Kamera\" bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya kkamera okutwala ebifaananyi n’ebifaananyi ebya vidiyo, naye ssensa ezaweebwa zaulagiddwa ddala. Nnyika poly agayina mu nkola y’ekimu, olumanya 'Permissions' olwo ne Kkaamera." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie kameros, kad galėtumėte fotografuoti ir filmuoti, bet ji buvo visam laikui uždrausta. Bakstelėkite Nustatymai → Leidimai ir įjunkite \"Kamera\"." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до камерата за да слика фотографии и видеа, но пристапот е трајно одбиен. Допрете Поставки → Дозволи, и вклучете \"Камера\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь гэрэл зураг болон видеог авахын тулд камерт хандалт хэрэгтэй байна, гэхдээ энэ нь байнга хориотой. Тохиргоо руу орж, \"Permissions\"-г сонгоод, \"Camera\"-г идэвхжүүлнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kamera untuk mengambil gambar dan video, tetapi akses telah ditolak secara kekal. Ketik Tetapan → Kebenaran, dan hidupkan \"Kamera\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဓာတ်ပုံများနှင့် ဗီဒီယိုများ ရိုက်ရန် ကင်မရာခွင့်ပြုချက်လိုအပ်ပါသည်၊ သို့သော် အမြဲတမ်းငြင်းပယ်ခြင်းခံခဲ့ရသည်။ ကျေးဇူးပြု၍ 'ဆက်တင်များ' → 'ခွင့်ပြုချက်များ' ကိုရွေးချယ်ပြီး 'ကင်မရာ' ကိုဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger kameratilgang for å ta bilder og videoer, men det har blitt permanent nektet. Trykk på Innstillinger → Tillatelser, og slå på 'Kamera'." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो र भिडियो लिन क्यामेराको पहुँच आवश्यक छ, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। सेटिङहरू → अनुमतिहरूमा थिच्नुहोस्, र \"क्यामेरा\" सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot de camera nodig om foto's en video's te nemen, maar deze is permanent geweigerd. Ga naar instellingen → Toestemmingen, en schakel \"Camera\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treng tilgang til kameraet for å ta bilete og videoar, men tilgangen er permanent avslått. Trykk Innstillinger → Tillatelser, og slå på \"Kamera\"." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kulowa ndi kamera kuti kutenga zithunzi ndi makanema, koma yakanidwa kosatha. Dinani Zokonda → Chilolezo, ndikuyatsa \"Kamera\"." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਲੈਣ ਲਈ ਕੈਮਰਾ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ, ਪਰ ਇਸਨੂੰ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖਾਰਜ਼ ਕੀਤਾ ਗਿਆ ਹੈ। ਸੈਟਿੰਗਾਂ 'ਤੇ ਟੈਪ ਕਰਕੇ ਜਾਓ → ਅਨੁਮਤੀਆਂ, ਅਤੇ \"ਕੈਮਰਾ\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby robić zdjęcia i nagrywać wideo, aplikacja {app_name} potrzebuje dostępu do aparatu, jednak na stałe go odmówiono. Naciśnij „Ustawienia” → „Uprawnienia” i włącz „Aparat”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته اړتیا ده چې عکسونه او ویډیوګانې واخلي، مګر دا په دائمي ډول رد شوی. تنظیماتو باندې ټپ وکړئ → اجازې، او \"کمره\" فعاله کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmera para tirar fotos e vídeos, mas ele foi permanentemente negado. Toque em Configurações → Permissões, e ligue \"Câmera\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à câmara para tirar fotos e vídeos, mas foi permanentemente negado. Carregue em Definições → Permissões, e ative \"Câmera\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la cameră pentru a realiza poze și clipuri video, dar accesul a fost refuzat definitiv. Mergi la Setări → Permisiuni și activează „Cameră”." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к камере для съемки фото и видео, но этот доступ был запрещен. Нажмите Настройки → Разрешения, и включите \"Камеру\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri kako bi snimio fotografije i video zapise, ali je trajno odbijen. Dodirnite Postavke → Dozvole i uključite \"Kamera\"." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ට කැමරා ප්‍රවේශය ඡායාරූප සහ වීඩියෝ ගැනීමට අවශ්‍යයි, නමුත් එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. සැකසීම් → අවසර, සහ \"කැමරාව\" සක්‍රීය කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup ku kamere na vytvárať fotografie a videá, ale bol natrvalo odmietnutý. Tap Settings → Permissions, and turn \"Camera\" on." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do kamere za fotografiranje in snemanje, vendar je bil ta trajno zavrnjen. Tapnite Nastavitve → Dovoljenja in vklopite \"Kamera\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje përdorimi të kamerës për të bërë foto dhe video, por kjo i është mohuar. Shtypni Settings → Permissions dhe aktivizoni \"Camera\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за камеру да прави слике и видео клипове, али је трајно забрањено. Идите на Подешавања → Дозволе и укључите \"Камеру\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup kameri da slika fotografije i snima video, ali mu je trajno odbijeno. Tap Settings → Permissions, i omogućite \"Kamera\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till kameran för att kunna fotografera och filma, men har nekats permanent. Tryck på Inställningar → Behörigheter, och slå på \"Kamera\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya kamera kuchukua picha na video, lakini imekataliwa kabisa. Gusa Mipangilio → Ruhusa, na washa \"Kamera\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள் மற்றும் வீடியோக்களை எடுக்க கேமரா அணுகல் தேவை, ஆனால் அது நிரந்தரமாக மறுக்கப்பட்டுள்ளது. அமைப்புகள் → அனுமதிகள் இல் சொல்கிறது, மற்றும் \"காமரா\" இல் இருக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ఫోటోలు మరియు వీడియోలు తీసుకోవడానికి కెమెరా యాక్సెస్ అవసరం, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. సెట్టింగులు → అనుమతులు ని తట్టి, \"కెమెరా\"ని ఆన్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องการเข้าถึงกล้องเพื่อถ่ายรูปและวิดีโอ แต่คำขอนั้นถูกปฏิเสธอย่างถาวร กรุณาไปที่เมนูตั้งค่า → การอนุญาต และเปิดใช้งาน \"กล้อง\"" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video çekmek için kamera erişimine ihtiyaç duyar, fakat bu izin kalıcı olarak reddedilmiş. Ayarlar → İzinler üzerine dokunun ve \"Kamera\" seçeneğini açın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до камери для зйомки фотографій та відео, але доступ було постійно заборонено. Натисніть Налаштування → Дозволи та увімкніть камеру." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو تصاویر اور ویڈیوز لینے کے لیے کیمرے تک رسائی درکار ہے، لیکن اسے مستقل طور پر مسترد کر دیا گیا ہے۔ براہ کرم ترتیبات → اجازتیں ٹیپ کریں، اور \"کیمرہ\" کو آن کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni olish uchun kamera kirishini talab qiladi, ammo bu abadiy rad etilgan. Sozlamalar → Ruxsatlar, va \"Kamera\"ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập máy ảnh để chụp ảnh và quay video, nhưng quyền này đã bị từ chối vĩnh viễn. Nhấn Cài đặt → Quyền truy cập, và bật \"Máy ảnh\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwikhamera ukuthatha iifoto nevidiyo, kodwa oku kuthintelwe ngokusisigxina. Thepha ku-Settings → Permissions, kwaye uvule 'Ikhamera'." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要相机权限来拍摄照片和视频,但是该权限已被永久拒绝。请点击设置 → 权限,并启用\"相机\"。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要相機的權限來拍攝照片或是影片,但它已被永久拒絕。請到設定 → 權限中,開啟「相機」權限。" + } + } + } + }, + "permissionsFaceId" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die skermsluitfunksie op {app_name} gebruik Face ID." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ميزة قفل الشاشة على {app_name} تستخدم Face ID." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqinin ekran kilidi özəlliyi Face ID istifadə edir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} رو پیلناکردگ لاگو کردانت پاس ID." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функцыя блакіроўкі экрана ў {app_name} выкарыстоўвае Face ID." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функцията за заключване на екрана в {app_name} използва Face ID." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর স্ক্রিন লক ফিচারটি ফেস আইডি ব্যবহৃত হয়।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La funció de bloqueig de pantalla en {app_name} utilitza Face ID." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkce zamčení obrazovky {app_name} používá Face ID." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae'r nodwedd cloi sgrin ar {app_name} yn defnyddio ID Wyneb." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skærmlåsfunktionen på {app_name} bruger Face ID." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Bildschirmsperrfunktion von {app_name} verwendet Face ID." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Η λειτουργία κλειδώματος οθόνης στο {app_name} χρησιμοποιεί το Face ID." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The screen lock feature on {app_name} uses Face ID." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "La ŝlosila ekrano en {app_name} uzas Vizaĝo-ID." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "La función de pantalla bloqueada en {app_name} usa Face ID." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La función de bloqueo de pantalla en {app_name} usa Face ID." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekraaniluku funktsioon kasutab Face ID-d." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ko pantaila blokeatzearen funtzioak Face ID erabiltzen du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویژگی قفل صفحه در {app_name} از Face ID استفاده می‌کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytön lukitusominaisuus {app_name} käyttää Face ID:tä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang screen lock feature ng {app_name} ay gumagamit ng Face ID." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La fonctionnalité de verrouillage d'écran sur {app_name} utilise Face ID." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A funcionalidade de bloqueo de pantalla en {app_name} usa Face ID." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsarin kulle allo akan {app_name} yana amfani da Face ID." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תכונת נעילת המסך ב-{app_name} משתמשת בזיהוי פנים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} पर स्क्रीन लॉक फीचर Face ID का उपयोग करता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija zaključavanja zaslona na {app_name} koristi Face ID." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A {app_name} képernyőzár funkciója Face ID-t használ." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ի էկրանային կողպման հատկությունը օգտագործում է Face ID:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fitur kunci layar pada {app_name} menggunakan Face ID." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La funzione di blocco schermo su {app_name} usa il Face ID." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} の画面ロック機能はFace IDを使用します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეკრანის დაბლოკვის ფუნქცია {app_name}-ზე იყენებს Face ID-ს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "The screen lock feature on {app_name} uses Face ID." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನ ತರ್ಣ್ ಲಾಕ್ ವೈಶಿಷ್ಟ್ಯವು ಫೇಸ್ ಐಡಿ ಅನ್ನು ಬಳಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}의 화면 잠금 기능은 Face ID를 사용합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taybetmendiya serrnderkî ya {app_name} bi Face ID bicîh dike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkozesa y'ekiwandiiko k'amaaso ekiriko {app_name} ekosa Face ID." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrano užraktas {app_name} naudoja Face ID." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrāna bloķēšanas funkcija lietotnē {app_name} izmanto Face ID." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функцијата за заклучување екранот во {app_name} користи Face ID." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} дэлгэц түгжихэд Face ID ашиглана." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ciri kunci skrin pada {app_name} menggunakan Face ID." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} တွင် အမ်ကာ မျက်နှာ မြင်စနစ် लॉग इन ၏ လုံခြုံစေသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermlåsfunksjonen på {app_name} bruker Face ID." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}को स्क्रिन लक विशेषताले Face ID प्रयोग गर्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "De vergrendelfunctie op {app_name} gebruikt Face ID." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermlåsfunksjonen på {app_name} bruker Face ID." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ntchito yotseka chinsalu pa {app_name} imagwiritsa ntchito Face ID." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਉੱਤੇ ਸਕرين ਲਾਕ ਫੀਚਰ Face ID ਵਰਤਦਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcja blokady ekranu w aplikacji {app_name} używa Face ID." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {app_name} سکرین لاک فیچر د مخ پيژندنه (Face ID) کاروي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A funcionalidade de bloqueio de tela no {app_name} usa reconhecimento facial." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A funcionalidade de bloqueio de ecrã {app_name} usa Face ID." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funcția de blocare a ecranului din {app_name} folosește Face ID." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функция блокировки экрана в {app_name} использует Face ID." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Značajka zaključavanja ekrana na {app_name} koristi Face ID." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} මත තිර අගුළු විශේෂාංගය Face ID භාවිතා කරයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcia zámku obrazovky na {app_name} používa Face ID." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija zaklepanja zaslona na {app_name} uporablja Face ID." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veçoria e mbylljes së ekranit në {app_name} përdor Face ID." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функција закључавања екрана на {app_name} користи Face ID." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funkcija zaključavanja ekrana na {app_name} koristi Face ID." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skärmlåsfunktionen på {app_name} använder Face ID." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kipengele cha kufuli skrini kwenye {app_name} kinatumia Face ID." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இல் திரை பூட்டு அம்சம் முக அடையாளத்தை பயன்படுத்துகிறது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}లో స్క్రీన్ లాక్ ఫీచర్ ఫేస్ ఐడి నీ ఉపయోగిస్తుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ฟีเจอร์ล็อกหน้าจอใน {app_name} ใช้ Face ID" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekran kilidi özelliği Face ID kullanır." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Функція блокування екрана в {app_name} використовує Face ID." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پر سکرین لاک خصوصیت Face ID کا استعمال کرتی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dagi ekran blokirovkasi funksiyasi Face ID dan foydalanadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tính năng khóa màn hình trên {app_name} sử dụng Face ID." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umsebenzi wokutshixa isikrini kwi-{app_name} usebenzisa i-Face ID." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}的屏幕锁功能使用 Face ID。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 上的螢幕鎖功能使用 Face ID。" + } + } + } + }, + "permissionsKeepInSystemTray" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hou in sisteemtray" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إبقاء في قالب النظام" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem çubuğunda tut" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سسٹم ٹرے میں رکھیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаваць у сістэмным трэю" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задръж в системната лента" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সিস্টেম ট্রেতে রাখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mantén a la safata del sistema" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponechat v systémové liště" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadw yn y Derbynnydd System" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behold i statusfeltet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "In der Systemleiste behalten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διατήρηση στην Περιοχή Ειδοποιήσεων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep in System Tray" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tenadi en Sistemo Plej" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conservar en la bandeja del sistema" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ejecutar en Segundo Plano" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jäta süsteemisalve" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikazioa Sistemako Erretiluan Gorde" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در ناحيه سمت راستِ task bar نگه دارید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Säilytä tehtäväpalkin ilmoitusalueella" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay sa System Tray" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garder dans la barre d'état du système" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter no Sistema de Grelha" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ci gaba da aiki a System Tray" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור במגש המערכת" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिस्टम ट्रे में रखें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadrži u System Tray" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rendszertálcán tartás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահել System Tray-ում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan di System Tray" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mantieni attivo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "システムトレイに常駐" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეინახეთ სისტემურ უჯრაში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុកក្នុងថាសប្រព័ន្ធ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಿಸ್ಟಮ್ ಟ್ರೇಯಲ್ಲಿ ಇಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "트레이 아이콘 유지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Di Sênîka Sîstemê de Bihêle" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kkiwa ebiwebwa mu System Tray" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palaikyti sistemos dėkle" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabāt sistēmas teknē" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Чувај во системскиот плагин" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системийн баарынд хадгалах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan dalam Sistem Tray" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စနစ်ထဲတွင်ထားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behold i systemstatusfeltet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रणाली ट्रेमा राख्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "In systeembalk houden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behald i systemstatusfeltet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khalani mu System Tray" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਸਟਮ ਟਰੇ ਵਿੱਚ ਰੱਖੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trzymaj w zasobniku systemowym" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په سیسټم ټری کې وساتئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter na Bandeja do Sistema" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter na Barra de Tarefas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Păstrează activ in bară" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "При закрытии сворачивать в трей" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drži u sistemskoj traci" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පද්ධති තැටියේ තබා ගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponechať v systémovej lište" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ohrani v sistemski vrstici" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbaje në System Tray" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задржи у системском треју" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drži u sistemskoj traci" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behåll i systemfältet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka kwenye Tray ya Mfumo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிஸ்டம் டிரேயில் இருக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సిస్టమ్ ట్రేలో ఉంచండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เก็บใน System Tray" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem Tepsisinde Sakla" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зберігати в системному треї" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سسٹم ٹرے میں رکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tizim trayidka saqlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giữ trong khay hệ thống" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina kwiTray yesistim" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保留在系统托盘" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "保持在系統的通知區域" + } + } + } + }, + "permissionsKeepInSystemTrayDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} loop aan in die agtergrond wanneer jy die venster sluit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يستمر في العمل في الخلفية عندما تقوم بإغلاق النافذة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pəncərəni bağladıqda {app_name} arxaplanda işləməyə davam edir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ھنوک پد پسینی چشماں بند بو تک پس زمینه أٹھے چا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} працягвае працу ў фонавым рэжыме, калі вы закрываеце акно" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "При затваряне на прозореца с програмата {app_name}, тя остава включена и продължава паралелно да работи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} উইন্ডো বন্ধ করলেও后台 চালু থাকে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continua funcionant en segon pla quan tanqueu la finestra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} pokračuje v běhu na pozadí, když zavřete okno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yn parhau i redeg yn y cefndir pan fyddwch yn cau'r ffenestr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kører fortsat i baggrunden, når du lukker vinduet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} läuft im Hintergrund weiter, wenn du das Fenster schließt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} συνεχίζει να εκτελείται στο παρασκήνιο όταν κλείνετε το παράθυρο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continues running in the background when you close the window" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} daŭrigas funkcii en la fono kiam vi fermas la fenestron" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continúa ejecutándose en segundo plano al cerrar la ventana" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continúa ejecutándose en segundo plano cuando cierras la ventana" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} jätkab taustal töötamist, kui sulgete akna" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k lanean jarraitzen du atzealdean leihoa ixten duzunean" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} با بستن پنجره، همچنان در پس‌زمینه اجرا می‌شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} pysyy käynnissä taustalla, kun suljet ikkunan" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ay patuloy na gumagana sa background kapag isinara mo ang window" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continue à fonctionner en arrière-plan lorsque vous fermez la fenêtre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} segue a executarse en segundo plano cando pechas a ventá" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana ci gaba da gudana a bango lokacin da ka rufe taga" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ממשיך לפעול ברקע כאשר אתה סוגר את החלון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} तब भी पृष्ठभूमि में चलता रहता है जब आप विंडो बंद करते हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nastavlja raditi u pozadini kada zatvorite prozor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} továbbra is fut a háttérben, amikor bezárja az ablakot" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} շարունակում է աշխատել ֆոնային ռեժիմում, երբ դուք փակում եք պատուհանը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bekerja di background ketika anda menutup jendela" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continuerà ad essere eseguito in background quando chiudi la finestra" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はウィンドウを閉じてもバックグラウンドで実行され続けます" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} განაგრძობს მუშაობას ფონის რეჟიმში, როდესაც ფანჯარას დახურავთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} នឹងបន្តដំណើរការនៅផ្ទៃខាងក្រោយនៅពេលអ្នកបិទផ្ទាំងបង្អួច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಕಿಟಕಿ ಮುಚ್ಚಿದಾಗ ಹಿನ್ನೆಲೆ ಕಾರ್ಯನಿರ್ವಹಣೆ ಮುಂದುವರಿಸುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 창을 닫아도 백그라운드에서 실행됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} di dema ku em pencereyê digirin, berdewam dike maju di piştî deran de bixebitîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekwata mu kutambuzibwa munda nga tosendewo olukindu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ໄດ້ດໍາເນີນການຕໍ່ໄປໃນພື້ນຫລັງໃນຂະນະທີ່ທ່ານປິດປ່ອງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} toliau veikia fone, kai užveriate langą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} turpina darboties fonā, kad aizverat logu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} продолжува да работи во заднина кога ќе го затворите прозорецот" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь та цонхыг хаахад арын горимд ажилласаар байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} terus berjalan di latar belakang apabila anda menutup tetingkap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုပိတ်လိုက်ချိန် ဝင်းဒိုးကိုပိတ်လိုက်ရင် မီးနောက်ဆုံးဝင်ရောက်ထဲမှာ ဆက်လက် လုပ်ဆောင်နေပါသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fortsetter å kjøre i bakgrunnen når du lukker vinduet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} विन्डो बन्द गर्दा पृष्ठभूमिमा चलिरहन्छ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} blijft op de achtergrond draaien wanneer je het venster sluit" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fortsetter å kjøre i bakgrunnen når du lukker vinduet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imachitlikira ntchifukwa chakuti cikhale m'kumbuyo mukatseka zenera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਬੈਕਗ੍ਰਾਊਂਡ ਵਿੱਚ ਚੱਲਦਾ ਰਹਿੰਦਾ ਹੈ ਜਦੋਂ ਤੁਸੀਂ ਖਿੜਕੀ ਬੰਦ ਕਰਦੇ ਹੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikacja {app_name} nadal działa w tle po zamknięciu okna" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} په شالید کې چلیږي کله چې تاسو کړکۍ وتړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continua sendo executado em segundo plano quando você fecha a janela" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} continua a correr em segundo plano quando fecha a janela" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} va continua să ruleze în fundal după închiderea ferestrei" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} продолжает работать в фоновом режиме даже после закрытия окна" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nastavlja raditi u pozadini kada zatvorite prozor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ කවුළුව වැසූ විට {app_name} පසුබිමේ දිගටම ක්‍රියාත්මක වේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bude pokračovať v behu na pozadí, keď zavrieš okno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se nadaljuje v ozadju, ko zaprete okno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vazhdon të funksionojë në sfond kur mbyllni dritaren" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} наставља да ради у позадини када затворите прозор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nastavlja rad u pozadini kada zatvorite prozor" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fortsätter att köras i bakgrunden när du stänger fönstret" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inaendelea kukimbia chinichini ukiwa umefunga dirisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} சாளரத்தை மூடிக்கொண்ட பின்னரும் பின்னணி செயல்பாடுகளில் தொடர்ச்சியாக இயங்கிவரும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} విండోను మూసినప్పుడు నేపథ్యంలో కొనసాగుతుంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ยังคงทำงานต่อไปในพื้นหลังเมื่อคุณปิดหน้าต่าง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} pencereyi kapattığınızda arka planda çalışmaya devam eder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} продовжує працювати у фоновому режимі, коли ви закриваєте вікно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پس منظر میں چلتا رہتا ہے جب آپ ونڈو بند کرتے ہیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oynani yopinganda fon rejimida ishlashda davom etadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tiếp tục chạy nền khi bạn đóng cửa sổ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iqhubeka isebenza ngasemva xa uvala ifestile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}会在您关闭窗口后继续在后台运行" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "當您關閉視窗之後,{app_name} 會繼續在系統後台執行" + } + } + } + }, + "permissionsLibrary" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het foto biblioteek toegang nodig om voort te gaan. Jy kan toegang in die iOS instellings aanskakel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى مكتبة الصور لمواصلة العمل. يمكنك تفعيل الوصول من خلال إعدادات iOS." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} davam etmək üçün foto kitabxanasına müraciət etməlidir. iOS ayarlarında müraciəti fəallaşdıra bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تصویرکتاب پاتبسینہ وسان شدید، کہ جو قدیم انکہرفتہ فعالت توڑٔو یو یلودسہ دےیے نو شکایت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрэбен доступ да фотабібліятэкі. Вы можаце дазволіць доступ у наладах iOS." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до фото библиотеката за да продължи. Можете да активирате достъпа в настройките на iOS." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ছবি গ্যালারির অ্যাকসেস প্রয়োজন চালিয়ে যাওয়ার জন্য। আপনি iOS এর সেটিংস এ অ্যাকসেস সক্রিয় করতে পারেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la biblioteca de fotografies per continuar. Podeu activar l'accés a la configuració d'iOS." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k fotoknihovně pro pokračování. Přístup můžete povolit v nastavení iOS." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen mynediad i'r llyfrgell lluniau i barhau. Gallwch alluogi mynediad yng ngosodiadau iOS." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behøver adgang til fotobiblioteket for at fortsætte. Du kan aktivere adgang i iOS' indstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Zugriff auf deine Fotomediathek, um fortzufahren. Du kannst den Zugriff in den iOS-Einstellungen aktivieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στη φωτογραφική βιβλιοθήκη για να συνεχίσει. Μπορείτε να ενεργοποιήσετε την πρόσβαση στις ρυθμίσεις του iOS." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access to continue. You can enable access in the iOS settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas aliron al foto-biblioteko por daŭrigi. Vi povas ŝalti aliron en la agordoj de iOS." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la biblioteca de fotos para continuar. Puedes habilitar el acceso en los ajustes de iOS." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la biblioteca de fotos para continuar. Puedes habilitar acceso en los ajustes de iOS." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab juurdepääsu fototeegile. Saate lubada juurdepääsu iOS-i seadetes." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k argazki liburutegira sartzeko baimena behar du jarraitzeko. Sarbidea aktiba dezakezu iOS-eko ezarpenetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای ادامه نیاز به دسترسی به گالری عکس دارد. می‌توانید دسترسی را در تنظیمات iOS فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee pääsyn valokuvakirjastoon jatkaakseen. Voit sallia käyttöoikeuden iOS:n asetuksista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay nangangailangan ng access sa photo library upang magpatuloy. Maari mong paganahin ang access sa mga setting ng iOS." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'accéder aux photos pour continuer. Vous pouvez activer l'accès dans les paramètres iOS." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceder á biblioteca de fotos para continuar. Podes habilitar o acceso nos axustes de iOS." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ɗakin hoto don ci gaba. Za ku iya kunna dama a cikin saitin iOS." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק להרשאות לספריית תמונות כדי להמשיך. אתה יכול לאפשר גישה בהגדרות של iOS." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को जारी रखने के लिए फ़ोटो लाइब्रेरी पहुंच की आवश्यकता है। आप iOS सेटिंग्स में पहुंच सक्षम कर सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup vašoj fototeci da bi nastavio. Možete omogućiti pristup u postavkama iOS-a." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak fotótár-hozzáférésre van szüksége a folytatáshoz. A hozzáférést az iOS beállításokban engedélyezheted." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պետք է հասանելիություն ունենա լուսանկարների գրադարանին՝ շարունակելու համար։ Դուք կարող եք միացնել հասանելիությունը iOS կարգավորումների մեջ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses perpustakaan foto untuk melanjutkan. Anda dapat mengaktifkan akses di pengaturan iOS." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita l'accesso alla libreria fotografica per continuare. Puoi abilitare l'accesso nelle impostazioni di iOS." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}を続行するにはフォトライブラリへのアクセスが必要です。iOS設定でアクセスを有効にできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება ფოტო ბიბლიოთეკის წვდომა გასაგრძელებლად. შეგიძლიათ ჩართოთ წვდომა iOS პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} នឹងត្រូវការចូលប្រើវិញ្ញាបនបត្រឆ្លើយតបរូបភាពបញ្ចូល សូមអនុញ្ញាតសម្រាប់ iOS លើការប្រើប្រាស់។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಮುಂದುವರಿಸಲು ಫೋಟೋ ಲೈಬ್ರರಿ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ. ನೀವು iOS ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಪ್ರವೇಶವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 포토 라이브러리 접근권한이 필요합니다. iOS 설정에서 접근 권한을 허용할 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya maktaba wêneyê hewce dike da ku berdewam bike. Tu dikarî permiya aktîv bike di mîhengên iOS de." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y’ekitabo ky’ebifaananyi okusigala mu kulondebwa. Oyinza okugiyitako mu nkola ya iOS." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງຄັງຮູບເພື່ອສືບຕໍ່. ເຈົ້າສາມາດເປີດເຂົ້າໄດ້ໃນການຕັ້ງຄ່າ iOS." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie nuotraukų bibliotekos norint tęsti. Galite įgalinti prieigą iOS nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama piekļuve foto galerijai, lai turpinātu. Jūs varat ieslēgt piekļuvi iOS iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до фото библиотеката за да продолжи. Можете да го овозможите пристапот во поставките на iOS." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} үргэлжлүүлэхийн тулд зураг сангийн хандалт хэрэгтэй. Та iOS тохиргоонд хандах боломжтой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses perpustakaan foto untuk meneruskan. Anda boleh menghidupkan akses dalam tetapan iOS." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဆက်လက်အသုံးပြုရန်ဓာတ်ပုံစာကြည့်တိုက်ချိတ်ဆက်ခွင့်လက်ခံရန်လိုအပ်သည်။ iOS ဆက်တင်များတွင် ခွင့်ပြုချက်ကို ပြုလုပ်နိုင်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til bildebiblioteket for å fortsette. Du kan aktivere tilgang i iOS-innstillingene." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई जारी राख्नका लागि फोटो लाइब्रेरी पहुँच आवश्यक छ। तपाई यसलाई iOS सेटिङहरूमा सक्षम गर्न सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot de fotobibliotheek om door te gaan. U kunt toegang verlenen in de iOS-instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til fotobibliotek for å fortsette. Du kan skru på tilgangen i iOS-innstillingene." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imafuna mwayi wozungulira chiwonetsero cha zithunzi kuti apitirize. Mutha kuyatsa mu zosintha za iOS." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋ ਲਾਇਬ੍ਰੇਰੀ ਪਹੁੰਚ ਜਾਰੀ ਰੱਖਣ ਲਈ ਲੋੜ ਹੈ। ਤੁਸੀਂ ਆਈਓਐਸ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਪਹੁੰਚ ਚਾਲੂ ਕਰ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby kontynuować, aplikacja {app_name} potrzebuje dostępu do biblioteki zdjęć. Dostęp można włączyć w ustawieniach systemu iOS." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته اړتیا ده چې د عکس البوم ته لاسرسی ولري. تاسو کولی شئ د لاسرسی فعالولو لپاره په iOS تنظیماتو کې تنظیمات ترسره کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O {app_name} precisa de acesso à biblioteca de fotos para continuar. Você pode habilitar o acesso nas configurações do iOS." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à biblioteca de fotos para continuar. Pode permitir o acesso nas definições do iOS." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la galeria foto pentru a continua. Puteți activa accesul în setările iOS." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к фотографиям для продолжения работы. Вы можете включить доступ в настройках телефона." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup foto galeriji za nastavak. Možete omogućiti pristup u postavkama iOS-a." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ක්‍රියාත්මක වීමට ඡායාරූප පුස්තකාල ප්‍රවේශය අවශ්‍යවේ. ඔබට iOS සැකසීම් තුළ ප්‍රවේශය සබල කළ හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k foto knižnici na pokračovanie. Môžete povoliť prístup v nastaveniach iOS." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do knjižnice fotografij za nadaljevanje. Dostop lahko omogočite v nastavitvah iOS." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje të bibliotekës së fotove për të vazhduar. Ju mund ta aktivizoni qasjen në rregullimet e iOS." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба приступ фото галерији да настави. Можете омогућити приступ у iOS подешавањима." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup biblioteci fotografija da bi nastavio. Možete omogućiti pristup u podešavanjima iOS uređaja." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till fotobiblioteket för att fortsätta. Du kan aktivera åtkomsten i iOS-inställningarna." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya maktaba ya picha ili kuendelea. Unaweza kuwasha ruhusa kwenye mipangilio ya iOS." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} தொடர்ச்சியாக செயல்பட புகைப்பட நூலகம் அணுகல் தேவை. நீங்கள் iOS அமைப்புகளிலேயே அணுகலை செயலாக்கலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} కొనసాగించడానికి ఫోటో లైబ్రరీ యాక్సెస్ అవసరం. మీరు యాక్సెస్‌ను iOS సెట్టింగ్‌లలో ప్రారంభించవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องได้รับอนุญาตให้เข้าถึงคลังรูปภาพเพื่อดำเนินการต่อ คุณสามารถเปิดใช้งานได้ในการตั้งค่า iOS" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} devam etmek için fotoğraf kitaplığı erişimine ihtiyaç duyuyor. Erişimi iOS ayarlarından etkinleştirebilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потрібен доступ до фотогалереї для продовження. Ви можете надати дозвіл у налаштуваннях iOS." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو جاری رکھنے کے لیے فوٹو لائبریری کی اجازت درکار ہے۔ آپ iOS کی سیٹنگ میں رسائی کو فعال کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} davom etish uchun foto kutubxonaga kirishni talab qiladi. Siz kirishni iOS sozlamalarida yoqishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập thư viện ảnh để tiếp tục. Bạn có thể kích hoạt quyền truy cập trong phần cài đặt iOS." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kumtapo weefoto ukuze iqhubeke. Unokukhubaza ukufikelela kuseto lwakwi-iOS." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要照片库访问权限以继续。您可以在iOS设置中启用访问。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要照片庫存取權才能繼續。您可以在應用程式設定中啟用存取權。" + } + } + } + }, + "permissionsMicrophone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofoon" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ميكروفون" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microphone" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мікрафон" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофон" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মাইক্রোফোন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micròfon" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meicroffon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μικρόφωνο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microphone" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofono" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micrófono" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micrófono" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofonoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "میکروفون" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofoni" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikropono" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microphone" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micrófono" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Makirufo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מיקרופון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "माइक्रोफ़ोन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խոսափող" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfono" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "マイク" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიკროფონი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មីក្រូហ្វូន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೈಕ್ರೊಫೋನ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "마이크" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mîkrofon" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirukaabula" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofonas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofons" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофон" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофон" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မိုက်ဟုခြင်မူ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "माइक्रोफोन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfoon" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maikrophone" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮਾਈਕ ਰਸਾਈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مایکروفون" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfone" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfone" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfon" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофон" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මයික්රෆෝනය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofón" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofoni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофон" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maikrofoni" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மைக்ரோஃபோன்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మైక్రోఫోన్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไมโครโฟน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мікрофон" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مائکروفون" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Micrô" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "IMikrofoni" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "麦克风" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "麥克風" + } + } + } + }, + "permissionsMicrophoneAccessRequired" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het mikrofoontoegang nodig om oproepe te maak en oudioboodskappe te stuur, maar dit is permanent geweier. Tik op Instellings → Permissions, en skakel \"Microphone\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وإرسال الرسائل الصوتية، ولكن تم رفضه نهائيًا. انقر على الإعدادات → الأذونات، وقم بتفعيل \"الميكروفون\"." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, zəng etmək və səsli mesaj göndərmək üçün mikrofona müraciət etməlidir, ancaq bu müraciətə həmişəlik rədd cavabı verilib. Ayarlara → İcazələr bölməsinə gedin və \"Mikrofon\"u işə salın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مایکروفون پاتبسینہ لازم نودہ زوان بیتگ و موکلاد پہود پیغامیں، ءَ ولے هہ مئ بی ہوں بکرءِ و. قارت وضیجت → درگونک، ءَ مایکروفون\" ءً فعال کنے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе дазволу да мікрафона каб рабіць званкі і дасылаць аўдыяпаведамленні, але зараз дазволу няма. Націсніце Налады → Дазволы, і ўключыце \"Мікрафон\"." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до микрофона, за да прави обаждания и изпраща аудио съобщения, но достъпът е бил окончателно отказан. Натиснете настройки → Разрешения и включете \"Микрофон\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল এবং অডিও মেসেজ পাঠানোর জন্য {app_name} এর মাইক্রোফোন অ্যাকসেস প্রয়োজন, কিন্তু এটি স্থায়ীভাবে বাতিল করা হয়েছে। সেটিংস → পারমিশনস এ যান, এবং \"মাইক্রোফোন\" চালু করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Al {app_name} li cal el permís del micròfon per fer crides i enviar missatges d'àudio, però s'ha denegat permanentment. Toqueu configuració → Permisos, i activeu el \"Micròfon\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k mikrofonu pro hovory a hlasové zprávy, přístup byl ale trvale zakázán. Prosím, klepněte na Nastavení → Oprávnění a povolte mikrofon." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen mynediad i'r meicroffon i wneud galwadau a danfon negeseuon sain, ond mae wedi'i wrthod yn barhaol. Tapiwch gosodiadau → Caniatadau, a throi \"Meicroffon\" ymlaen." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver tilladelse til at tilgå mikrofonen for at kunne foretage opkald og sende lydmeddelelser, men det er blevet permanent nægtet. Tryk på indstillinger → Tilladelser, og slå \"Mikrofon\" til." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Zugriff auf das Mikrofon, um Anrufe zu tätigen und Audio-Nachrichten zu senden, aber dieser Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Mikrofon«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} χρειάζεται πρόσβαση στο μικρόφωνο για να πραγματοποιήσει κλήσεις και να στείλει ηχητικά μηνύματα, αλλά έχει απορριφθεί μόνιμα. Πατήστε Ρυθμίσεις → Άδειες, και ενεργοποιήστε το \"Μικρόφωνο\"." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs microphone access to make calls and send audio messages, but it has been permanently denied. Tap settings → Permissions, and turn \"Microphone\" on." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas aliron al la mikrofono por fari vokojn kaj sendi aŭdajn mesaĝojn, sed ĝi estis porĉiame malakceptita. Alklaku agordojn - Permesoj, kaj ŝaltu \"Mikrofono\"." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al micrófono para hacer llamadas y enviar mensajes de audio, pero el permiso ha sido denegado permanentemente. Ve a Configuración → Permisos y activa el \"Micrófono\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al micrófono para hacer llamadas y enviar mensajes de audio, pero ha sido permanentemente denegado. Toque Configuración → Permisos, y active \"Micrófono\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab mikrofoni ligipääsu, et teha kõnesid ja saata helisõnumeid, kuid sellele on püsivalt keeldutud. Puuduta sätteid → Õigused ja lülita \"Mikrofon\" sisse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak bidaltzeko, baina behin betiko ukatu da. Sakatu ezarpenak → Baimenak, eta piztu \"Mikrofonoa\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} به دسترسی به میکروفون نیاز دارد تا بتواند مکالمه را اغاز کند و پیام های صوتی بفرستد اما دسترسی به صورت دایمی سلب شده است. روی تنظیمات→بزنید سپس روی اجازه ها بزنید و گزینه ی میکروفون را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien lähettämiseen, mutta käyttöoikeus on evätty pysyvästi. Napauta Asetukset → Käyttöoikeudet ja ota käyttöön \"Mikrofoni\"." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ay nangangailangan ng access sa mikropono upang gumawa ng mga tawag at magpadala ng mga mensaheng audio, ngunit ito ay permanenteng tinanggihan. Tapikin ang mga setting → Mga Pahintulot, at buksan ang \"Mikropono\"." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin de l’autorisation Microphone pour passer des appels et envoyer des messages audio, mais elle a été refusé de façon permanente. Appuyez sur Paramètres → Autorisations, et autorisez \"Microphone\"." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar makirufo don yin kira da aika saƙonnin murya, amma an haramta shi dindindin. Danna saituna → Izini, kuma kunna \"Makirufo\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} דורש גישה למיקרופון כדי לבצע שיחות ולשלוח הודעות שמע, אך הגישה נדחתה לצמיתות. הקש על הגדרות → הרשאות, והפעל את \"מיקרופון\"." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को कॉल करने और ऑडियो संदेश भेजने के लिए माइक्रोफ़ोन अनुमति की आवश्यकता है, लेकिन इसे स्थायी रूप से मना कर दिया गया है। सेटिंग्स → अनुमतियां पर टैप करें, और \"माइक्रोफ़ोन\" चालू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup mikrofonu za obavljanje poziva i slanje audio poruka, no to je sada trajno onemogućeno. Idite na postavke → Dopuštenja i uključite \"Mikrofon\"." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére, de ez nem lett megadva. Koppints a Beállítások → Engedélyek lehetőségre, és kapcsold be a \"Mikrofon\" lehetőséget." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է խոսափողի թույլտվություն զանգեր կատարելու և ձայնային հաղորդագրություններ ուղարկելու համար, բայց այն ընդմիշտ մերժվել է: Անջատեք կարգավորումները → Թույլտվությունները, և միացրեք «Խոսափող»։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses mikrofon untuk melakukan panggilan dan mengirim pesan audio, tetapi izin ini telah ditolak secara permanen. Ketuk setelan → Perizinan, dan aktifkan \"Mikrofon\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ha bisogno dell'accesso al microfono per poter fare chiamate e inviare messaggi vocali. Seleziona impostazioni→permessi e abilita l'accesso al microfono." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で音声メッセージを添付するには、「マイク」へのアクセスを許可する必要がありますが、無効になっています。設定 → アプリの権限 をタップして、「マイク」へのアクセスをオンにしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება მიკროფონის წვდომა ზარების განსახორციელებლად და აუდიო შეტყობინებების გასაგზავნად, მაგრამ იგი სამუდამოდ იქნა უარეზული. გადადით პარამეტრებში → Permissions და ჩართეთ \"Microphone\"." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការការចូលដំណើរការម៉ិចស្រួបសំឡេងដើម្បីធ្វើការហៅនិងផ្ញើសារភ្ញៀវសំឡេង ប៉ុន្តែបានត្រូវបដិសេធ។ ចុច ការកំណត់ → សិទ្ធិ, ហើយបើក \"ម៉ិចស្រួបសំឡេង\" ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಕರೆ ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ಕಳುಹಿಸಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ಸೆಟ್ಟಿಂಗ್‌ಗಳು → ಅನುಮತಿ ಟ್ಯಾಪ್ ಮಾಡಿ, ಮತ್ತು \"ಮೈಕ್ರೊಫೋನ್\" ಅನ್ನು ಆನ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 통화 및 음성 메시지를 보내기 위해 마이크 접근 권한이 필요하지만 영구적으로 거부되었습니다. 설정에서 '권한'으로 이동하여 '마이크'를 켜십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya mîkrofonê hewce dike da ku bang û peyamekên dengî bişîne, lê bû daîmî refuze kirin. Kerem bike mîhengan → destûran bikişîne, û 'Mîkrofon' yê aç bikî." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya mmikirofono okukubira ku ssimu ne okutuma obubaka obuweereze, naye ssensa ezaweebwa zaulagiddwa ddala. Nnyika settings → Permissions, ate ko 'Microphone' on." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia mikrofono prieigos skambučiams ir garso žinutėms siųsti, tačiau ši prieiga buvo visam laikui atmesta. Bakstelėkite Nustatymai → Leidimai ir įjunkite 'Mikrofonas'." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un sūtītu audio ziņas, bet tā ir pastāvīgi aizliegta. Pieskarieties iestatījumos → Atļaujas un ieslēdziet \"Mikrofons\"." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до микрофонот за да прави повици и испраќа аудио пораки, но пристапот е трајно одбиен. Одете во поставки → Дозволи, и овозможете \"Микрофон\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь дуудлага хийх, аудио мессеж илгээхийн тулд микрофонд хандах эрх хэрэгтэй байна, гэхдээ энэ нь байнга хориотой байна. Тохиргоо → Зөвшөөрөл хэсэгрүү ороод, \"Микрофон\"-г асаана уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses mikrofon untuk membuat panggilan dan menghantar mesej audio, tetapi akses telah ditolak secara kekal. Ketik Tetapan → Kebenaran, dan hidupkan \"Mikrofon\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် မိုက်ခရိုဖုန်း ခွင့်ပြုချက် လိုအပ်သည်၊ ခေါ်ဆိုမှုများပြုလုပ်ရန်၊ အသံမက်ဆေ့ခ်ျများ ပေးပို့ရန်။ သို့သော် ထာဝရပိတ်ထားခြင်းခံခဲ့ရသည်။ ဆက်တင်များကို တို့သွား၍ ခွင့်ပြုချက်များကို ရွေးပြီး \"မိုက်ခရိုဖုန်း\" ကိုဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger mikrofontilgang for å ringe og sende lydmeldinger, men det har blitt permanent nektet. Trykk innstillinger → Tillatelser, og slå på \"Mikrofon\"." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई कल गर्न र अडियो सन्देशहरू पठाउन माइक्रोफोनको पहुँच आवश्यक छ, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। कृपया सेटिङ्गहरूमा जानुहोस् → Permissions चयन गर्नुहोस्, र \"Microphone\" सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot de microfoon om audioberichten te versturen, maar deze is permanent geweigerd. Tik op Instellingen → Machtigingen, en schakel \"Microfoon\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treng tilgang til mikrofonen for å ringe samtalar og senda lydklipp, men tilgangen er permanent avslått. Trykk på innstillingar → Tilgangar og slå på «Mikrofon»." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera microphone kuti ikupangitseni kuyimbira ndi kutumiza mauthenga am'mawu, koma linathetsedwa kwanthawi yayitali. Dinani zikhazikitso → Chilolezo, ndikuyatsa \"Microphone\"." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਕਾਲ ਕਰਨ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਭੇਜਣ ਲਈ ਮਾਈਕਰੋਫੋਨ ਦੀ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ, ਪਰ ਇਹ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖ਼ਾਰਿਜ ਕੀਤਾ ਗਿਆ ਹੈ। Settings → Permissions ਤੇ ਜਾਓ, ਅਤੇ \"Microphone\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wykonywać połączenia i wysyłać wiadomości audio, aplikacja {app_name} potrzebuje dostępu do mikrofonu, jednak na stałe go odmówiono. Naciśnij „Ustawienia” → „Uprawnienia” i włącz „Mikrofon”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} لپاره د غوښتنې جوړولو او صوتي پیغامونو لیږلو لپاره مایکروفون ته اړتیا لري، مګر دا په دايمي ډول رد شوی دی. تنظیمات ټپ کړئ → اجازې، او \"مایکروفون\" روښانه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao microfone para fazer chamadas e enviar mensagens de áudio, mas foi permanentemente negado. Toque em Configurações → Permissões, e ligue \"Microfone\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao microfone para fazer chamadas e enviar mensagens de áudio, mas foi permanentemente negado. Carregue em definições → Permissões e ligue o \"Microfone\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la microfon pentru a efectua apeluri și a trimite mesaje audio, dar accesul a fost refuzat permanent. Mergeți la setările → Permisiuni, apoi activați opțiunea „Microfon”." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для звонков и отправки голосовых сообщений {app_name} требуется разрешение на доступ к микрофону, но оно было вами отклонено. Перейдите в Настройки → Разрешения, и включите «Микрофон»." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zahtijeva dozvolu pristupa mikrofonu za obavljanje poziva i slanje audio poruka, ali je pristup trajno odbijen. Dodirnite postavke → Dozvole i uključite 'Mikrofon'." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ට ඇමතුම් කිරීමට සහ ශ්‍රව්‍ය පණිවිඩ යැවීමට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍ය වේ, නමුත් එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. සැකසුම් වලට යන්න → අවසර, සහ \"මයික්‍රොෆෝනය\" සබල කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k mikrofónu na uskutočňovanie hovorov a posielanie zvukových správ, ale prístup bol natrvalo zamietnutý. Kliknite na nastavenia → Oprávnenia a zapnite mikrofón." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do mikrofona za klice in pošiljanje zvočnih sporočil, vendar je bil ta trajno zavrnjen. Tapnite nastavitve → Dovoljenja, in vklopite \"Mikrofon\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për mikrofon për të bërë telefonata dhe për të dërguar mesazhe audio, por i është mohuar përgjithmonë. Shtypni rregullimet → Lejet, dhe ndizni \"Mikrofonin\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за микрофон да оствари позиве и шаље аудио поруке, али је трајно забрањено. Додирните подешавања → Дозволе, и укључите \"Микрофон\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup mikrofonu da obavlja pozive i šalje audio poruke, ali mu je trajno odbijeno. Dodirnite podešavanja → Dozvole, i uključite \"Mikrofon\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till mikrofonen för att ringa samtal och skicka ljudmeddelanden, men det har nekats permanent. Tryck på inställningar → Behörigheter, och slå på \"Mikrofon\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji kuoanishwa na kipaza sauti ili kupiga simu na kutuma ujumbe wa sauti, lakini imekataliwa kabisa. Gonga mipangilio → Ruhusa, na washa \"Kipaza sauti\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அழைப்புகளுக்காகவும், ஆடியோ தகவல்களை அனுப்புவதற்காகவும் மைக்ரோஃபோன் அணுகல் தேவைப்படுகிறது, ஆனால் அது நிரந்தரமாக மறுக்கப்பட்டது. அமைப்புகள் → அனுமதிகள் என்பதைத் தேர்ந்தெடுத்து, \"மைக்ரோஃபோன்\" ஐயை இயக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ చేయడానికి మరియు ఆడియో సందేశాలను పంపడానికి {app_name} మైక్రోఫోన్ యాక్సెస్ అవసరం, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. సెట్టింగ్‌లని తట్టండి - 'Permissions' ఎంచుకోండి, మరియు 'Microphone'ని ఆన్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องการเข้าถึงไมโครโฟนเพื่อขอรับสายและส่งข้อความเสียง แต่คำขอนั้นถูกปฏิเสธอย่างถาวร กดที่การตั้งค่า → การอนุญาต และเปิดใช้งาน 'ไมโครโฟน'" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, arama yapmak ve sesli mesajlar göndermek için mikrofon erişimine ihtiyaç duyuyor, fakat bu izin kalıcı olarak reddedilmiş. Ayarlar → İzinler üzerine dokunun ve \"Mikrofon\" seçeneğini açın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до мікрофона для здійснення дзвінків та надсилання голосових повідомлень, але доступ було назавжди скасовано. Торкніться Налаштування → Дозволи й увімкніть «Мікрофон»." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو کال کرنے اور آڈیو پیغامات بھیجنے کے لیے مائکروفون تک رسائی درکار ہے، لیکن اسے مستقل طور پر مسترد کر دیا گیا ہے۔ براہ کرم سیٹنگز پر ٹیپ کریں → Permissions، اور \"Microphone\" کو آن کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qo'ng'iroq qilish va ovozli xabarlar yuborish uchun mikrofon kirishini talab qiladi, ammo bu abadiy rad etilgan. Sozlamalar → Ruxsatlar ni bosing va \"Mikrofon\" ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần truy cập microphone để thực hiện cuộc gọi và gửi tin nhắn âm thanh, nhưng quyền này đã bị từ chối vĩnh viễn. Nhấn vào cài đặt → Quyền truy cập, và bật \"Microphone\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwisixhobo somculo ukwenza iifowuni kunye nokuthumela imiyalezo yesandi, kodwa ivaliwe ngokusisigxina. Cofa useto → Iimvume, uze uvule \"Isixhobo somculo\"." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要麦克风权限来进行语音通话和发送语音消息,但是该权限已被永久拒绝。请点击设置 → 权限,并启用\"麦克风\"。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要麥克風的權限來語音通話和傳送語音訊息,但已被永久拒絕。請到設置 → 權限中,打開「麥克風」權限。" + } + } + } + }, + "permissionsMicrophoneAccessRequiredDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy kan mikrofoon toegang aktiveer in {app_name} se privaatheidsinstellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يمكنك تفعيل الوصول للميكروفون في إعدادات الخصوصية في {app_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gizlilik ayarlarında mikrofona müraciəti fəallaşdıra bilərsiniz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما گوں {app_name} ونجن سیٹنگاں سکرا کنگ دلپیٹریں بوک یارکنت۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы можаце ўключыць доступ да мікрафона ў наладах прыватнасці {app_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можете да разрешите достъпа до микрофона в настройките за поверителност на {app_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable microphone access in {app_name}'s privacy settings" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeu habilitar l'accés al micròfon a la configuració de privadesa d'{app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přístup k mikrofonu můžete povolit v nastavení soukromí {app_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gallwch alluogi mynediad meicroffon yn osodiadau preifatrwydd {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere mikrofontilladelse i {app_name}'s privatlivsindstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst das Mikrofon in den Datenschutzeinstellungen von {app_name} aktivieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μπορείτε να ενεργοποιήσετε την πρόσβαση στο μικρόφωνο στις ρυθμίσεις απορρήτου του {app_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable microphone access in {app_name}'s privacy settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi povas ebligi mikrofonan aliron en la privatecaj agordoj de {app_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puedes habilitar el acceso al micrófono en la configuración de privacidad de {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puedes habilitar el acceso al micrófono en la configuración de privacidad de {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofoni juurdepääsu saate lubada {app_name}'i privaatsussätetes" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofonoaren sarbidea gaitu dezakezu {app_name}-eko pribatutasun ezarpenetan" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما می‌توانید دسترسی میکروفون را در تنظیمات حریم خصوصی {app_name} فعال کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voit antaa mikrofonin käyttöoikeuden {app_name}:n yksityisyysasetuksista" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puwede mong i-enable ang access ng mikropono sa privacy settings ng {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous pouvez activer l'accès au microphone dans les paramètres de confidentialité de {app_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podes activar o acceso ao micrófono na configuración de privacidade de {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za ku iya kunna damar amfani da makirufo a saitin sirrin {app_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תוכל/י לאפשר גישה למיקרופון בהגדרות הפרטיות של {app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप {app_name} की गोपनीयता सेटिंग्स में माइक्रोफ़ोन एक्सेस सक्षम कर सकते हैं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti pristup mikrofonu u postavkama privatnosti {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A mikrofon engedélyeinek beállításait a {app_name} adatvédelmi beállításaiban engedélyezheted" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք կարող եք միացնել միկրոֆոնի հասանելիությունը {app_name} գաղտնիության կարգավորումներով" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda dapat mengaktifkan akses mikrofon di pengaturan privasi {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puoi abilitare l'accesso al microfono nelle impostazioni della privacy di {app_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "マイクのアクセス権限は{app_name}のプライバシー設定で有効にできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ შეგიძლიათ ჩართოთ მიკროფონის ხელმისაწვდომობა {app_name}-ის კონფიდენციალობის პარამეტრებში" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកអាចបើកការអនុញ្ញាតម៉ាលិភិននុមាននៅក្នុងការកំណត់ឯកជនភាពរបស់ {app_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು {app_name} ರ ಪ್ರೈವಸಿ ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ ಮೈಕ್ರೋಫೋನ್ ಪ್ರವೇಶವನ್ನು ಸಕ್ರಿಯ ಮಾಡಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}의 프라이버시 설정에서 마이크 접근을 허용할 수 있습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hûn dikarin akses mikrafona li rêza taybetmendiya {app_name} veke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Osobola okukakasa mic ku by'obukwata e {app_name}'s amarobo omukulembeze" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs galite įjungti mikrofono prieigą {app_name} privatumo nustatymuose" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs varat aktivizēt mikrofonu piekļuvi {app_name} privātuma iestatījumos" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Може да го овозможите пристапот до микрофонот во поставките за приватност на {app_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та {app_name}-ийн нууцлалын тохиргоонд микрофоны хандалтыг идэвхжүүлж болно" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda boleh mengaktifkan akses mikrofon dalam tetapan privasi {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can enable microphone access in {app_name}'s privacy settings" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere mikrofontilgang i {app_name}s personverninnstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले सक्षम गर्न सक्नुहुन्छ माइक्रोफोन पहुँच {app_name} को गोपनीयता सेटिङहरूमा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "U kunt de microfoontoegang inschakelen in de privacy-instellingen van {app_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivere mikrofontilgang i {app_name}'s personverninnstillinger" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mutha kuyambitsa kupeza maikolofoni mu zoikamo za zinsinsi za {app_name}." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ {app_name} ਦੇ ਪਰਾਈਵੇਸੀ ਸੈਟਿੰਗਜ਼ ਵਿੱਚ ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਅਕਸੀਸ ਫੋਲਕ ਸਕਦੇ ਹੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Możesz włączyć dostęp do mikrofonu w ustawieniach prywatności aplikacji {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو کولی شئ د {app_name} د محرمیت ترتیباتو کې د مایکروفون لاسرسی فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você pode habilitar o acesso ao microfone nas configurações de privacidade do {app_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pode ativar o acesso ao microfone nas definições de privacidade do {app_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puteți activa accesul la microfon din setările de confidențialitate ale {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы можете включить доступ к микрофону в настройках конфиденциальности {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti pristup mikrofonu u podešavanjima privatnosti za {app_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට {app_name} ගේ රහස්‍යතා සැකසුම්වල ලැපෙක්ස් ප්‍රවේශය සබල කළ හැක" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prístup k mikrofónu môžete povoliť v nastaveniach súkromia aplikácie {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostop do mikrofona lahko omogočite v nastavitvah zasebnosti aplikacije {app_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju mund të aktivizoni aksesin e mikrofonit në cilësimet e privatësisë së {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Можете омогућити приступ микрофону у подешавањима приватности {app_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Možete omogućiti pristup mikrofonu u postavkama privatnosti aplikacije {app_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kan aktivera mikrofontillgång i {app_name}s sekretessinställningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unaweza kuwezesha upatikanaji wa kipaza sauti katika mipangilio ya faragha ya {app_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் {app_name} மின் தனியுரிமை அமைப்புகளில் மைக்ரோபோன் அணுகலை இயக்கலாம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు {app_name} యొక్క గోప్యతా అమరికల్లో మైక్రోఫోన్ యాక్సెస్‌ని ప్రారంభించవచ్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณสามารถเปิดการเข้าถึงไมโครโฟนได้ในการตั้งค่าความเป็นส่วนตัวของ {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gizlilik ayarlarından mikrofon erişimini etkinleştirebilirsiniz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви можете увімкнути доступ до мікрофона в налаштуваннях конфіденційності {app_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ {app_name} کی رازداری کی ترتیبات میں مائیکروفون تک رسائی فعال کر سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ning maxfiylik sozlamalarida mikrofon kirish huquqini yoqishingiz mumkin" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có thể bật quyền truy cập microphone trong cài đặt quyền riêng tư của {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungavula ukufikelela kwitsho ye-microphone kwii-setingi zabucala ze-{app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您可以在{app_name}的隐私设置中启用麦克风访问权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您可以在 {app_name} 的隱私權設定中啟用麥克風存取權限。" + } + } + } + }, + "permissionsMicrophoneAccessRequiredIos" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het mikrofoon toegang nodig om oproepe te maak en oudioboodskappe op te neem." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى الميكروفون لإجراء المكالمات وتسجيل الرسائل الصوتية." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zəng etmək və səsli mesajlar yazmaq üçün mikrofona müraciət etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} مایکروفون پاتبسینہ حاصل نودہ کلمات پیغامشین زانت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрэбен доступ да мікрафона, каб здзяйсняць званкі і запісваць аўдыя паведамленні." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до микрофона, за да осъществява обаждания и записва аудио съобщения." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কল করার জন্য এবং অডিও মেসেজ রেকর্ড করার জন্য {app_name} এর মাইক্রোফোন অ্যাকসেস প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés al micròfon per fer trucades i gravar missatges d'àudio." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k mikrofonu pro volání a nahrávání zvukových zpráv." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen mynediad i'r meicroffon i wneud galwadau a recordio negeseuon sain." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver mikrofonadgang for at foretage opkald og optage lydmeddelelser." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Mikrofonzugriff, um Anrufe zu tätigen und Audionachrichten aufzuzeichnen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στο μικρόφωνο για την αποστολή ηχητικών μηνυμάτων." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs microphone access to make calls and record audio messages." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas mikrofonan aliron por fari vokojn kaj registri aŭdajn mesaĝojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al micrófono para hacer llamadas y grabar mensajes de audio." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab mikrofoni juurdepääsu, et teha kõnesid ja salvestada helisõnumeid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k mikrofonoaren sarbidea behar du deiak egiteko eta audio mezuak grabatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای برقراری تماس و ضبط پیام‌های صوتی نیاز به دسترسی میکروفن دارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee mikrofonin käyttöoikeuden puheluiden soittamiseen ja ääniviestien nauhoittamiseen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay nangangailangan ng access sa mikropono upang tumawag at mag-record ng mga mensaheng audio." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin de l’accès au microphone pour passer des appels et enregistrer des messages audio." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceder ao micrófono para facer chamadas e gravar mensaxes de audio." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar makirufo don yin kira da rikodin saƙonnin murya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} צריך הרשאת מיקרופון לשיחות ולהודעות שמע." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कॉल करने और ऑडियो संदेश रिकॉर्ड करने के लिए {app_name} को माइक्रोफोन एक्सेस की आवश्यकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak mikrofon-hozzáférésre van szüksége hívások bonyolítására és hangüzeneteket rögzítésére." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է խոսափողին հասանելիություն զանգեր կատարելու և ձայնային հաղորդագրություններ արձանագրելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses mikrofon untuk melakukan panggilan dan merekam pesan audio." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso al microfono per effettuare chiamate e registrare messaggi audio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で通話をかけたり、音声メッセージを録音するにはマイクへのアクセスが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება მიკროფონის წვდომა ზარების შესასრულებლად და აუდიო შეტყობინებების ჩასაწერად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការវិស្សមន្តងសម្រាប់ដាក់ស្នើរ និងថតសារ​សំឡេង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಕಾಲ್‌ಗಳು ಮಾಡಲು ಮತ್ತು ಆಡಿಯೊ ಸಂದೇಶಗಳನ್ನು ದಾಖಲು ಮಾಡಲು ಮೈಕ್ರೊಫೋನ್ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 통화를 하고 음성 메시지를 녹음하기 위해 마이크 접근이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya mîkrofon hewce dike da ku lêgerîn bike û peyman dengî record bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ya mmikirofono okukola eyitibwamu n’okuwandiika obubaka obuweereze." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງໄມໂຄໂຟນເພື່ອໂທແລະບັນທຶກເສັຽງຂໍ້ຄວາມສຽງ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie mikrofono, kad galėtumėte skambinti ir įrašinėti garso žinutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama piekļuve mikrofonam, lai veiktu zvanus un ierakstītu audio ziņas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до микрофонот за да врши повици и снима аудио пораки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} дуудлага хийх болон аудио мессеж бичихийн тулд микрофоны хандалт хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses mikrofon untuk membuat panggilan dan merakam mesej audio." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} မှ ဖုန်းခေါ်ဆိုမှုများနှင့် အသံမက်ဆေ့များကို မှတ်တမ်းတင်ရန် မိုက်ခရိုဖုန်းအသုံးပြုခွင့် လိုအပ်ပါတယ်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger mikrofontilgang for å ringe og spille inn lydmeldinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई कल गर्न र अडियो सन्देशहरू रेकर्ड गर्न माइक्रोफोनको पहुँच आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot de microfoon nodig om audioberichten op te nemen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger mikrofontilgang for å ringe og ta opp lydmeldinger." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} iyenera kuitanira microphone kuti ipangane mafoni ndi kujambula mauthenga am'mawu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਕਾਲਾ ਕਰਣ ਅਤੇ ਆਡੀਓ ਸੁਨੇਹੇ ਰਿਕਾਰਡ ਕਰਨ ਲਈ ਮਾਈਕਰੋਫੋਨ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wykonywać połączenia i nagrywać wiadomości audio, aplikacja {app_name} potrzebuje dostępu do mikrofonu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} د غږیزو پیغامونو لیږلو کولو لپاره مایکروفون ته اړتیا لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao microfone para fazer chamadas e gravar mensagens de áudio." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la microfon pentru a efectua apeluri și a înregistra mesaje audio." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к микрофону для совершения звонков и записи голосовых сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup mikrofonu za obavljanje poziva i snimanje audio poruka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමතුම් ලබා දීම සහ ශ්‍රව්‍ය පණිවිඩ පටිගත කිරීම සඳහා {app_name}ට මයික්‍රෆෝන ප්‍රවේශය අවශ්‍යයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k mikrofónu na uskutočnenie hovorov a nahranie zvukových správ." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do mikrofona za klice in snemanje zvočnih sporočil." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje përdorimi të mikrofonit për të bërë thirrje dhe për të regjistruar mesazhe audio." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за микрофон да би обављао позиве и снимао аудио поруке." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup mikrofonu da bi obavljao pozive i snimao audio poruke." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver mikrofonåtkomst för att ringa och spela in ljudmeddelanden." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya kipaza sauti kupiga simu na kurekodi ujumbe wa sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அழைப்புகளை செய்ய மற்றும் ஆடியோ தகவல்களை பதிவு செய்ய மைக்ரோஃபோன் அணுகல் தேவை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కాల్ చేయడానికి మరియు ఆడియో సందేశాలను రికార్డ్ చేయడానికి {app_name} మైక్రోఫోన్ యాక్సెస్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องได้รับอนุญาตให้เข้าถึงไมโครโฟนเพื่อโทรและบันทึกข้อความเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, arama yapmak ve sesli mesaj kaydetmek için mikrofon erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до мікрофона для здійснення дзвінків та запису голосових повідомлень." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو کال کرنے اور آڈیو پیغامات ریکارڈ کرنے کے لیے مائیکروفون تک رسائی درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qo'ng'iroq qilish va audio xabarlarni yozish uchun mikrofon kirishini talab qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập microphone để gọi điện và ghi âm tin nhắn thoại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwisixhobo somculo wokwenza iminxeba kunye nokurekhoda imiyalezo yesandi." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要麦克风访问权限来进行语音通话及录制语音消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要麥克風存取權來語音通話和錄製語音訊息。" + } + } + } + }, + "permissionsMicrophoneDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laat toegang tot mikrofoon toe." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "السماح بالوصول إلى الميكروفون." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofona müraciətə icazə verin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مائکروفون تک رسائی کی اجازت دیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дазволіць доступ да мікрафона." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разреши достъп до микрофона." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "মাইক্রোফোনে অ্যাক্সেসের অনুমতি দিন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permet l'accés al micròfon." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povolit přístup k mikrofonu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caniatáu mynediad at feicroffon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillad adgang til mikrofon." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erlaube Zugriff auf das Mikrofon." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιτρέψτε την πρόσβαση στο μικρόφωνο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow access to microphone." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permesi uzi la mikrofonon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acceso al micrófono." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acceso al micrófono." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luba ligipääs mikrofonile." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofonoa erabiltzeko baimena." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازه دسترسی به میکروفون را بدهید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Myönnä mikrofonin käyttöoikeus." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Payagan ang access sa microphone." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autoriser l'accès au microphone." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bada damar amfani da makirufo." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אפשרו גישה למיקרופון." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "माइक्रोफ़ोन तक पहुंच की अनुमति दें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli pristup mikrofonu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofon hozzáférés engedélyezése." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թույլատրել խոսափողի մուտքը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izinkan akses ke mikrofon." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abilita l'accesso al microfono." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "マイクへのアクセスを許可する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაშვება მიკროფონის წვდომა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការអនុញ្ញាតឱ្យចូលប្រើមីក្រូហ្វូន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮೈಕ್ರೋಫೋನ್ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "마이크 접근 권한을 허용해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Îzn bide ji bo gihîna mîkrofonê." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leka omanyi ku mikutu omukaago." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leisti prieigą prie mikrofono." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atļaut piekļuvi mikrofonam." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овозможи пристап до микрофон." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Микрофоноо ашиглах зөвшөөрөл өгөх." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benarkan akses ke mikrofon." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မိုက်ခရိုဖုန်းသို့ ခွင့်ပြုမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gi tilgang til mikrofonen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "माइक्रोफोन पहुँच दिनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Microfoontoegang toestaan." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gi tilgang til mikrofonen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lolani kupeza maikifoni." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮਾਈਕਰੋਫੋਨ ਤੱਕ ਪਹੁੰਚ ਦੀ ਇਜਾਜ਼ਤ ਦਿਓ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zezwól na dostęp do mikrofonu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مایکروفون ته د لاسرسي اجازه ورکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permita acesso ao microfone." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acesso ao microfone." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permite accesul la microfon." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешить доступ к микрофону." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli pristup mikrofonu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මයික්‍රෆෝනයට ප්‍රවේශ වීමට ඉඩ දෙන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povoliť prístup k mikrofónu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dovoli dostop do mikrofona." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejo qasje te mikrofoni." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволи приступ микрофону." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvoli pristup mikrofonu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillåt åtkomst till mikrofon." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruhusu ufikiaji wa kipaza sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மைக்ரோபோனை அணிய அனுமதி." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మైక్రోఫోన్ కు యాక్సెస్ ఇవ్వండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อนุญาตให้เข้าถึงไมโครโฟน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofona erişim izni verin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надати доступ до мікрофона." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مائیکروفون تک رسائی کی اجازت دیں." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mikrofonga kirishga ruxsat bering." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cho phép truy cập vào micrô." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vumela ukufikelela kwimikrofono." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "允许访问麦克风。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "授權使用麥克風。" + } + } + } + }, + "permissionsMusicAudio" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het musiek en oudiotoegang nodig om lêers, musiek en klank te stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يحتاج {app_name} إلى الوصول إلى الموسيقى والصوت من أجل إرسال الملفات والموسيقى والصوت." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе доступу да музыкі і аўдыё, каб адпраўляць файлы, музыку і аўдыё." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до музика и аудио, за да може да изпращате файлове, музика и аудио." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ফাইল, সঙ্গীত এবং অডিও পাঠানোর জন্য সঙ্গীত ও অডিও অ্যাক্সেস প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la música i l'àudio per enviar fitxers, música i àudio." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k hudbě a zvuku, aby mohla posílat soubory, hudbu a zvuk." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae ar {app_name} angen mynediad i gerddoriaeth ac sain er mwyn anfon ffeiliau, cerddoriaeth ac sain." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver musik- og lydadgang for at sende filer, musik og lyd." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Musik- und Audiozugriff, um Dateien, Musik und Audiodateien zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} χρειάζεται πρόσβαση στη μουσική και τον ήχο για να στείλει αρχεία, μουσική και ήχο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a música y audio para enviar archivos, música y audio." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la música y el audio para enviar archivos, música y audio." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab muusika ja audio juurdepääsu failide, muusika ja audio saatmiseks." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k musika eta audio sarbidea behar du fitxategiak, musika eta audioak bidaltzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای فرستادن فایل، آهنگ و صوت نیازمند دسترسی به صوت و آهنگ است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee musiikki- ja äänioikeudet voidakseen lähettää tiedostoja, musiikkia ja ääntä." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès à la musique et à l'audio afin d'envoyer des fichiers, de la musique et de l'audio." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar amfani da kiɗi da sauti don aika fayiloli, kiɗi da sauti." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק לגישה למוזיקה ואודיו על מנת לשלוח קבצים, מוזיקה ואודיו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को फ़ाइलें, संगीत और ऑडियो भेजने के लिए संगीत और ऑडियो एक्सेस की आवश्यकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup glazbi i zvuku kako bi mogao slati datoteke, glazbu i zvuk." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak zene és hang-hozzáférésre van szüksége a fájlok és zenék küldéséhez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է երաժշտության և աուդիո հասանելիությունը ֆայլեր, երաժշտություն և աուդիո ուղարկելու համար:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses musik dan audio untuk mengirim file, musik, dan audio." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso a musica e audio per inviare file, musica e audio." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}はファイル、音楽およびオーディオを送信するために音楽とオーディオへのアクセス許可が必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការការចូលប្រើតន្ត្រី និងសម្លេង ដើម្បីផ្ញើឯកសារ តន្ត្រី និងសម្លេង។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಫೈಲುಗಳನ್ನು, ಸಂಗೀತ ಮತ್ತು ಶಬ್ದವನ್ನು ಕಳುಹಿಸಲು ಸಂಗೀತ ಮತ್ತು ಶಬ್ದ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}는 파일, 음악 및 오디오를 전송하려면 음악 및 오디오 접근이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} hewl dibe da ku bikarhênina muzîk û dengwêje bike ji bo senden dosyayan, muzîk û dengwêje." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa ne entegera y'ebyomuziki okwolekereza ofaayo emikutu ebikendeereza." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie muzikos ir garso, kad galėtumėte siųsti failus, muziką ir garsą." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до музика и аудио за да може да испраќа датотеки, музика и аудио." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь файлууд, дуу хөгжим болон аудио илгээхийн тулд дуу хөгжим болон аудио хандах эрхийг шаарддаг." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses kepada muzik dan audio untuk menghantar fail, muzik dan audio." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဖိုင်များ၊ ဂီတနှင့် အသံများ ပို့ရန်သော ရောက်ရောက် ရှာဖွေရန် မျက်ကွယ်ခွင့်ပြုချက်များလိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til musikk og lyd for å sende filer, musikk og lyd." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फाइलहरू, संगीत र अडियो पठाउन संगीत र अडियो पहुँच आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang tot muziek en audio nodig om bestanden, muziek en audio te verzenden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treng tilgang til musikk og lyd for å sende filer, musikk og lyd." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs music and audio access in order to send files, music and audio." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫਾਈਲਾਂ, ਸੰਗੀਤ ਅਤੇ ਆਡੀਓ ਭੇਜਣ ਲਈ ਸੰਗੀਤ ਅਤੇ ਆਡੀਓ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wysyłać pliki, muzykę i dźwięk, aplikacja {app_name} potrzebuje dostępu do muzyki i dźwięku." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته د میوزیک او آډیو لاسرسي ته اړتیا لري ترڅو فایلونه، میوزیک او آډیو ولیږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso a música e áudio para enviar arquivos, músicas e áudios." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à música e áudio para enviar arquivos, músicas e áudios." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la funcția de muzică și bibliotecă audio pentru a trimite fișiere, muzică și înregistrări audio." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к музыке и аудио для отправки файлов, музыки и аудио." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup muzici i zvuku kako bi poslao fajlove, muziku i audio." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ට ගොනු, සංගීත සහ ශ්‍රව්‍ය යැවීම සඳහා ශබ්ද ප්‍රවේශ අවශ්‍යවේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k hudbe a zvukom na odosielanie súborov, hudby a zvukov." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do glasbe in zvoka za pošiljanje datotek, glasbe in zvoka." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për akses në muzikë dhe audio për të dërguar skedarë, muzikë dhe audio." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за музика и аудио приступ да би могли да шаљете фајлове, музику и аудио." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup muzici i zvuku kako bi slao fajlove, muziku i zvuk." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till musik och ljud för att kunna skicka filer, musik och ljud." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya muziki na sauti ili kutuma faili, muziki na sauti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அனுப்ப மியூசிக் மற்றும் ஆடியோ அணுகல் தேவை, மற்றும் அது நிரந்தரமாக மறுக்கப்பட்டுள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ఫైళ్లు, సంగీతం మరియు ఆడియోను పంపించడానికి మరియు ఆడియో యాక్సెస్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องการเข้าถึงเพลงและเสียงเพื่อส่งไฟล์, เพลง และเสียง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dosya, müzik ve ses gönderebilmek için müzik ve ses erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до музики та аудіо для надсилання файлів, музики та аудіо." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو فائلز، موسیقی اور آڈیو بھیجنے کے لیے موسیقی اور آڈیو کی اجازت درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fayllar, musiqa va audioni jo'natish uchun musiqa va audio kirishiga ehtiyoj bor." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập âm nhạc và âm thanh để gửi tệp, nhạc và âm thanh." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwizandi neminonophelo yokuthumela iifayile, umculo kunye neaudiyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要音乐和音频访问才能发送文件、音乐和音频。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要音樂和音訊訪問權限,才能夠發送檔案、音樂和音訊。" + } + } + } + }, + "permissionsRequired" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toestemming benodig" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "منح إحدى الأذونات مطلوب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcazə tələb edilir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازت درکار" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Патрабуецца дазвол" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Необходимо е разрешение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অনুমতি প্রয়োজন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cal permís" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadováno oprávnění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angen caniatâd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilladelse krævet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berechtigung erforderlich" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απαιτείται Άδεια" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permission Required" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permeso bezonata" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permiso necesario" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permiso necesario" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luba on vajalik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baimena beharrezkoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مجوز لازم است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarvitaan käyttöoikeus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinakailangang Pahintulot" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permission requise" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permiso necesario" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana bukatar izini" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרושה הרשאה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुमति की आवश्यकता" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebno dopuštenje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engedély szükséges" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհրաժեշտ է թույլտվություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izin dibutuhkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorizzazione necessaria" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アクセス許可が必要です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საჭიროა უფლებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាមទារការអនុញ្ញាត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನುಮತಿ ಬೇಕಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "권한 필요" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destûr pêdivî ye" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obusobozi bukolwayo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reikalingas leidimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atļauja nepieciešama" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребна е дозвола" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвшөөрөл шаардлагатай" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kebenaran diperlukan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခွင့်ပြုချက် လိုအပ်သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillatelse kreves" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुमति आवश्यक" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toestemming vereist" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilgang krevst" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chilolezo chofunikira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨੁਮਤੀ ਲੋੜੀਂਦੀ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagane uprawnienie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازه اړینه ده" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissão requerida" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissão necessária" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "E nevoie de permisiune" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Требуется разрешение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebna dozvola" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවසරය අවශ්යයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebné povolenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebno dovoljenje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lyp leje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потребна је дозвола" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahteva dozvolu" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behörighet saknas" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruhusa inahitajika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுமதி தேவை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనుమతి అవసరం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ต้องได้รับอนุญาตก่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İzin gerekli" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Необхідний дозвіл" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازت درکار ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruxsat kerak" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cần cấp quyền" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imvume iyafuneka" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要相应权限" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "需要權限" + } + } + } + }, + "permissionsStorageDenied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benodig foto-biblioteek toegang sodat jy foto's en video's kan stuur, maar dit is permanent geweier. Tik Instellings → Toestemmings, en skakel \"Foto's en video's\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى مكتبة الصور لإرسال الصور ومقاطع الفيديو، ولكن تم رفضه نهائيًا. انقر على الإعدادات → الأذونات، وقم بتفعيل \"الصور ومقاطع الفيديو\"." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کماٹ پاتبسینہ محفوظ ثبت، چہ جو مکمبے افعیلت بیزی. لہ کہتت کو قٔائیں وضیجت تیبسینہ پایمر دےیے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе доступу да бібліятэкі фота для адпраўкі фота і відэа, але доступ быў пастаянна забаронены. Націсніце «Налады» → «Дазволы» і актывуйце «Фота і відэа»." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до фото библиотеката, за да може да изпращате снимки и видеа, но достъпът е бил отказан постоянен. Отидете в Настройки → Разрешения и включете \"Снимки и видеа\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ছবি ও ভিডিও পাঠানোর জন্য ছবি লাইব্রেরি অ্যাকসেস প্রয়োজন, কিন্তু এটি স্থায়ীভাবে প্রত্যাখ্যান করা হয়েছে। Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a la biblioteca de fotos per enviar fotos i vídeos, però s'ha denegat permanentment. Aneu a Configuració → Permisos, i activeu \"Fotos i vídeos\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup do knihovny fotografií, abyste mohli odesílat fotografie a videa, přístup byl ale trvale zakázán. Klepněte na → Oprávnění a povolte Fotografie a videa." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver tilladelse til at tilgå dit fotobibliotek, så du kan sende fotos og videoer, men det er blevet permanent nægtet. Tryk på Indstillinger → Tilladelser, og slå \"Fotos og videoer\" til." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Fotozugriff, um Fotos und Videos senden zu können, aber der Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Fotos und Videos«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} χρειάζεται πρόσβαση στη βιβλιοθήκη φωτογραφιών ώστε να μπορείτε να στείλετε φωτογραφίες και βίντεο, αλλά έχει απορριφθεί μόνιμα. Πατήστε Ρυθμίσεις → Άδειες, και ενεργοποιήστε το \"Φωτογραφίες και βίντεο\"." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la galería de fotos para que puedas enviar fotos y vídeos, pero el permiso ha sido denegado permanentemente. Ve a Configuración → Permisos y activa \"Fotos y vídeos\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso a la biblioteca de fotos para que puedas enviar fotos y videos, pero ha sido permanentemente denegado. Toque Configuración → Permisos, y active \"Fotos y videos\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab fotoalbumi ligipääsu, et saata fotosid ja videosid, kuid sellele on püsivalt keeldutud. Puuduta sätteid → Õigused ja lülita \"Fotod ja videod\" sisse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k argazki bilduma bisitatzeko sarbidea behar du argazkiak eta bideoak bidaltzeko, baina behin betiko ukatu da. Ezarpenak ukitu → Baimenak, eta aktibatu \"Argazkiak eta bideoak\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} به اجازه دسترسی به کتابخانه عکس نیاز دارد تا شما بتوانید عکس ها و ویدیو ها را ارسال کنید. اما این دسترسی به طور دایم سلب شده است. روی تنظیمات← بزنید سپس مجوزها را انتخاب کنید و \"عکس ها و ویدیوها\" را روشن کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee pääsyn valokuvakirjastoon, jotta voit lähettää valokuvia ja videoita, mutta lupa on evätty pysyvästi. Napauta Asetukset → Luvat ja laita \"Valokuvat ja videot\" päälle." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'accéder à la galerie photo pour que vous puissiez envoyer des photos et des vidéos, mais cela lui a été refusé définitivement. Appuyez sur Paramètres → Autorisations, puis activez « Photos et vidéos »." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ɗakin hotuna don samun damar aika hotuna da bidiyo, amma an haramta shi dindindin. Danna Saituna → Izini, kuma kunna \"Hotuna da bidiyo\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} דורש גישה לספריית התמונות בכדי לשלוח תמונות וסרטונים, אך הגישה נדחתה לצמיתות. הקש על הגדרות → הרשאות, והפעל \"תמונות וסרטונים\"." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को फ़ोटो और वीडियो भेजने के लिए फोटो लाइब्रेरी अनुमति की आवश्यकता है, लेकिन इसे स्थायी रूप से मना कर दिया गया है। सेटिंग्स → अनुमतियां पर टैप करें, और \"फ़ोटो और वीडियो\" चालू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup vašoj fototeci kako bi mogli slati fotografije i video, ali je trajno onemogućen. Idite na Postavke → Dozvole i uključite ''Fotografije i video''." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak fotótár-hozzáférésre van szüksége a képek és videók küldéséhez, de ez nem lett megadva. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Fotók és videók\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է ֆոտո գրադարանի հասանելիությունը, որպեսզի կարողանաք ուղարկել նկարներ և տեսանյութեր, սակայն թույլտվությունը մշտապես մերժված է: Սեղմեք Կարգավորումներ → Թույլտվություններ և միացրեք \"Նկարներ և տեսանյութեր\" կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses pustaka foto agar Anda dapat mengirim foto dan video, tapi telah ditolak secara permanen. Ketuk Setelan → Perizinan, dan aktifkan \"Foto dan video\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ha bisogno dell'accesso alla galleria per poter inviare contenuti multimediali. Vai su Impostazioni → Autorizzazioni e abilita i permessi per foto e video." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で写真や動画を送るには、フォトライブラリへのアクセスが必要ですが、無効になっています。設定 → アプリの権限 をタップして、「写真と動画」へのアクセスをオンにしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការការចូលប្រើបណ្ណាល័យរូបភាព ដើម្បីដែលអ្នកអាចផ្ញើរូបភាព និងវីដេអូ ប៉ុន្តែវាត្រូវបានបដិសេធរហូត។ ចុច ការកំណត់ → សិទ្ធិ និងបើក \"រូបភាព និងវីដេអូ\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಫೋಟೋ ಗ್ರಂಥಾಲಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ಸೆಟ್ಟಿಂಗ್ಗಳು ಟ್ಯಾಪ್ ಮಾಡಿ → ಅನುಮತಿಗಳು, ಮತ್ತು \"ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳು\" ಅನ್ನು ಆನ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}에서 사진과 동영상을 전송하려면 사진 보관함 접근 권한이 필요하지만 영구적으로 거부되었습니다. 설정 → 권한으로 이동하여 \"사진 및 동영상\"을 켜십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} pêwîstî heye da ku libraryê wêneyan bikarhênin ji bo senden wêneyan û vedîdar, lê permîsiya wî daîmen hewce ye. Bibînin Mîhengên → Permîsyan, û \"Wêneyan\" bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga kujjanjabwa ku caapu y'ebifaananyi okusobola okusindika ebifaananyi n’amakamera, naye kyaganye dda. Nnyonnyola mu Settings → Permissions, lalu \"Photos and videos\" okubigya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie nuotraukų bibliotekos, kad galėtumėte siųsti nuotraukas ir vaizdo įrašus, tačiau prieiga buvo visam laikui uždrausta. Bakstelėkite Nustatymai → Leidimai ir įjunkite \"Nuotraukos ir vaizdo įrašai\"." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до фото библиотеката за да можете да испраќате фотографии и видеа, но пристапот е трајно одбиен. Допрете Поставки → Дозволи, и вклучете \"Фотографии и видеа\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь зураг болон видео илгээхийн тулд зураг номын сангийн хандалт хэрэгтэй байна, гэхдээ энэ нь байнга хориотой. Тохиргоо → Зөвшөөрөл хэсэгрүү орж, \"Зураг болон видео\" асаана уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses perpustakaan foto supaya anda boleh menghantar foto dan video, tetapi ia telah ditolak secara kekal. Ketik Tetapan → Kebenaran, dan hidupkan \"Foto dan video\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဓာတ်ပုံနှင့် ဗီဒီယိုများ ပို့ရန် အမှတ်တားမှတ်တား ထည့်ရန်လိုအပ်ပါသည်၊ သို့သော် ၎င်းကို အမြဲတမ်းငြင်းပယ်ခြင်းခံလိုက်ရပါသည်။ အဆက်ဆက်ဆက်ဆက်ဆက်ဆက်ပို့ရန် 'ဆက်တင်များ' ကိုနှိပ်ပါ။ → ကွာတာတွင် 'ဓာတ်ပုံနှင့်ဗီဒီယိုများ' ကိုဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til bildebiblioteket for at du skal kunne sende bilder og videoer, men tilgangen har blitt permanent avslått. Trykk Innstillinger → Tillatelser, og slå på \"Bilder og videoer\"." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो पुस्तकालय पहुँच आवश्यक छ ताकि तपाईं फोटो र भिडियोहरू पठाउन सक्नुहुनेछ, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। सेटिङहरू → अनुमतिहरूमा थिच्नुहोस्, र \"फोटो र भिडियोहरू\" अन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot de fotobibliotheek om foto's en video's te kunnen versturen, maar het is permanent geweigerd. Tik op Instellingen → Machtigingen, en schakel \"Foto's en video's\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til fotobiblioteket slik at du kan sende bilder og videoer, men det har blitt permanent avslått. Trykk Innstillinger → Tillatelser, og slå på \"Bilder og videoer\"." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs photo library access so you can send photos and videos, but it has been permanently denied. Tap Settings → Permissions, and turn \"Photos and videos\" on." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋ ਲਾਇਬ੍ਰੇਰੀ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ ਤਾਂ ਜੋ ਤੁਸੀਂ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓ ਭੇਜ ਸਕੋ, ਪਰ ਇਸਨੂੰ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖਾਰਜ਼ ਕੀਤਾ ਗਿਆ ਹੈ। ਸੈਟਿੰਗਜ਼ 'ਤੇ ਟੈਪ ਕਰੋ → ਅਨੁਮਤੀਆਂ, ਅਤੇ \"ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓ\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wysyłać zdjęcia i wideo, aplikacja {app_name} potrzebuje dostępu do galerii, jednak na stałe go odmówiono. Naciśnij „Ustawienia” → „Uprawnienia” i włącz „Zdjęcia i wideo”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته د انځور کتابتون ته لاسرسي ته اړتیا لري ترڅو تاسې عکسونه او ویډیوګانې واستوئ، مګر دا په دائمي ډول رد شوی. تنظیماتو باندې ټپ وکړئ → اجازې، او \"عکسونه او ویډیوګانې\" روښانه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à biblioteca de fotos para que você possa enviar fotos e vídeos, mas o acesso foi permanentemente negado. Toque em Configurações → Permissões e ative \"Fotos e vídeos\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso à biblioteca das fotos para poder enviar fotos e vídeos, mas foi permanentemente negado. Carregue em Definições → Permissões, e ative \"Fotos e vídeos\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la galeria foto pentru a trimite poze și clipuri video, dar accesul a fost refuzat definitiv. Mergi la Setări → Permisiuni și activează funcția \"Poze și clipuri video\"." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для отправки фото и видео требуется разрешение на доступ к библиотеке фотографий, но оно было вами отклонено. Чтобы предоставить разрешение вручную, перейдите в «Настройки», выберите «Приложения», найдите {app_name}, затем выберите «Разрешения» и включите \"Фото и видео\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup biblioteci fotografija kako biste mogli slati fotografije i videozapise, ali je pristup trajno odbijen. Dodirnite Postavke → Dozvole, i uključite \"Fotografije i videozapisi\"." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ඡායාරූප සහ වීඩියෝ යැවීමට සහ ලබාදීමට ඡායාරූප පුස්තකාල ප්‍රවේශය අවශ්‍යයි, නමුත් එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. සැකසීම් → අවසර, සහ \"ඡායාරූප සහ වීඩියෝ\" මත ක්ලික් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k foto knižnici, aby ste mohli posielať fotografie a videá, no prístup bol trvalo zamietnutý. Klepnite na Nastavenia → Povolenia a zapnite \"Fotografie a videá\"." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do knjižnice fotografij, da lahko pošiljate fotografije in videoposnetke, vendar je bil ta dostop trajno zavrnjen. Tapnite Nastavitve → Dovoljenja in vklopite \"Fotografije in videoposnetki\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për qasje në bibliotekën e fotove që të mund të dërgoni foto dhe video, por kjo është bllokuar përherë. Shtypni Settings → Permissions dhe aktivizoni \"Photos and videos\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за библиотеку фотографија да би могли да шаљете фотографије и видео записе, али је трајно забрањено. Идите на Подешавања → Дозволе и укључите \"Фотографије и видео записи\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zahteva pristup biblioteci fotografija da biste mogli slati fotografije i video zapise, ali taj pristup je trajno onemogućen. Tap Settings → Permissions, i uključite \"Photos and videos\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till fotobiblioteket för att du ska kunna skicka foton och videor, men det har permanent nekats. Tryck på Inställningar → Behörigheter och slå på \"Foton och videor\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya maktaba ya picha ili uweze kutuma picha na video, lakini imekataliwa kabisa. Gusa Mipangilio → Ruhusa, na washa \"Picha na video\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப புகைப்பட நூலக அணுகல் தேவை, ஆனால் அது நிரந்தரமாக மறுக்கப்பட்டுள்ளது. அமைப்புகள் → அனுமதிகள் இல் சென்று, \"புகைப்படங்கள் மற்றும் வீடியோக்கள்\" இல் இருக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ఫోటోలు మరియు వీడియోలను పంపడానికి ఫోటో లైబ్రరీ యాక్సెస్ కావాలి, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. సెట్టింగులు → అనుమతులు ని తట్టి, \"ఫోటోలు మరియు వీడియోలు\"ని ఆన్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แอป {app_name} ต้องการการเข้าถึงคลังภาพเพื่อให้คุณสามารถส่งภาพและวิดีโอได้ แต่การอนุญาตถูกปฏิเสธอย่างถาวร แตะที่ การตั้งค่า → การอนุญาต แล้วเปิด \"ภาพและวิดีโอ\"." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video göndermeniz için fotoğraf kitaplığı erişimine ihtiyaç duyar, fakat bu izin kalıcı olarak reddedilmiş. Ayarlar → İzinler üzerine dokunun ve \"Fotoğraflar ve videolar\" seçeneğini açın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до галереї для надсилання фото та відео, але доступ було назавжди скасовано. Торкніться Налаштування → Дозволи й увімкніть «Фото та відео»." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو فوٹو لائبریری تک رسائی کی ضرورت ہے تاکہ آپ فوٹو اور ویڈیوز بھیج سکیں، لیکن اسے مستقل طور پر انکار کر دیا گیا ہے۔ براہ کرم سیٹنگز ٹیپ کریں → اجازتیں، اور \"فوٹوز اور ویڈیوز\" کو آن کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni yuborish uchun foto kutubxonasiga kirishni talab qiladi, lekin bu abadiy rad etilgan. Sozlamalar → Ruxsatlar ni bosing va \"Fotosuratlar va videolar\"ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần truy cập thư viện ảnh để bạn có thể gửi ảnh và video, nhưng quyền này đã bị từ chối vĩnh viễn. Nhấn Cài đặt → Quyền truy cập, và bật \"Ảnh và video\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwindawo yokugcina iifoto kunye nevidiyo ukuze ukwazi ukuthumela iifoto nevidiyo, kodwa oku kuthintelwe ngokusisigxina. Thepha ku-Settings → Permissions, kwaye uvule 'Iifoto nevidiyo'." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要照片权限才能发送照片和视频,但该权限已被永久拒绝。请进入应用程序设置→权限,打开“照片与视频”权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要照片庫的存取權限才能傳送照片和影片,但它已被永久拒絕。請到設定 → 權限中,開啟「照片和影片」權限。" + } + } + } + }, + "permissionsStorageDeniedLegacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benodig stoor toegang sodat jy aanhegsels kan stuur en stoor. Tik Instellings → Toestemmings, en skakel \"Stoor\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى التخزين لإرسال وحفظ المرفقات. انقر على الإعدادات → الأذونات، وقم بتفعيل \"التخزين\"." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, qoşmaları göndərə və saxlaya bilməyiniz üçün anbara müraciət etməlidir. Ayarlar → İcazələr bölməsinə gedin və \"Anbar\"ı işə salın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе доступу да сховішча для адпраўкі і захавання ўкладанняў. Націсніце «Налады» → «Дазволы» і актывуйце «Сховішча»." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до хранилището, за да може да изпращате и запазвате прикачени файлове. Отидете в Настройки → Разрешения и включете \"Хранилище\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর সংরক্ষণ অ্যাকসেস প্রয়োজন যাতে আপনি সংযুক্তি পাঠাতে এবং সংরক্ষণ করতে পারেন। Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a l'emmagatzematge per enviar i desar adjunts. Aneu a Configuració → Permisos, i activeu \"Emmagatzematge\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k úložišti, abyste mohli odesílat a ukládat přílohy. Klepněte na Nastavení → Oprávnění a zapněte \"Úložiště\"." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver adgang til lageret, så du kan sende og gemme vedhæftninger. Tryk på Indstillinger → Tilladelser, og slå \"Lager\" til." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Speicherzugriff, um Anhänge senden und speichern zu können. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Speicher«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} χρειάζεται πρόσβαση στον αποθηκευτικό χώρο ώστε να μπορείτε να στείλετε και να αποθηκεύσετε συνημμένα. Πατήστε Ρυθμίσεις → Άδειες, και ενεργοποιήστε το \"Αποθηκευτικός χώρος\"." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al almacenamiento para que puedas enviar y guardar archivos adjuntos. Ve a Configuración → Permisos y activa \"Almacenamiento\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al almacenamiento para que puedas enviar y guardar adjuntos. Toque Configuración → Permisos, y active \"Almacenamiento\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab salvestusruumi ligipääsu, et saata ja salvestada manuseid. Puuduta sätteid → Õigused ja lülita \"Salvestus\" sisse." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k biltegiratze sarbidea behar du erantsitako fitxategiak bidaltzeko eta gordetzeko. Ezarpenak ukitu → Baimenak, eta aktibatu \"Biltegiratzea\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} به مجوز ذخیره کردن نیاز دارد تا شما بتوانید فایل های ضمیمه را ارسال و ذخیره کنید. روی تنظیمات→بزنید سپس مجوز ها را باز کنید و \"ذخیره کردن\" را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee tallennustilan käyttöoikeuden, jotta voit lähettää ja tallentaa liitteitä. Napauta Asetukset → Luvat ja laita \"Tallennustila\" päälle." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès au stockage pour pouvoir envoyer et enregistrer des pièces jointes. Appuyez sur Paramètres → Autorisations, et activez « Fichiers et médias »." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ajiya don samun damar aika da ajiye haɗe-haɗe. Danna Saituna → Izini, kuma kunna \"Ajiya\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} דורש גישה לאחסון בכדי לשלוח ולשמור קבצים. הקש על הגדרות → הרשאות, והפעל \"אחסון\"." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को अटैचमेंट भेजने और सहेजने के लिए स्टोरेज अनुमति की आवश्यकता है। सेटिंग्स → अनुमतियां पर टैप करें, और \"स्टोरेज\" चालू करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup spremištu kako biste mogli slati i pohranjivati privitke. Idite na Postavke → Dozvole i uključite ''Spremište''." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak tárhely-hozzáférésre van szüksége mellékletek küldéséhez és mentéséhez. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Tárhely\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է պահեստավորման հասանելիությունը, որպեսզի կարողանաք ուղարկել և պահել կցորդները: Սեղմեք Կարգավորումներ → Թույլտվություններ և միացրեք \"Պահեստավորում\" կարգավորումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses penyimpanan agar Anda dapat mengirim dan menyimpan lampiran. Ketuk Setelan → Izin, lalu aktifkan \"Penyimpanan\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ha bisogno dell'accesso all'archiviazione in modo da poter inviare e salvare allegati. Vai su Impostazioni → Autorizzazioni e abilita i permessi per l'archiviazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}で添付ファイルの送信や保存を行うには、ストレージへのアクセスが必要です。設定 → アプリの権限 をタップして、「ストレージ」へのアクセスをオンにしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការសិទ្ធិចូលប្រើអង្គរក្សាទុក ដើម្បីផ្ញើ និងរក្សាទុកឯកសារ។ ចុច ការកំណត់ → សិទ្ធិ និងបើក \"អង្គរក្សាទុក\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರ ದೂರವನ್ನು ಕಳುಹಿಸಲು ಮತ್ತು ಉಳಿಸಲು. ಸೆಟ್ಟಿಂಗ್ಗಳು ಟ್ಯಾಪ್ ಮಾಡಿ → ಅನುಮತಿಗಳು, ಮತ್ತು \"ಸ್ಟೋರೇಜ್\" ಅನ್ನು ಆನ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}에서 첨부파일을 전송하고 저장하려면 저장소 접근 권한이 필요합니다. 설정 → 권한으로 이동하여 \"저장소\"를 켜십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} çêdutina hilberî dibeekenî ji bo senden û hildegirtin ataşmankî bikar bîne. Bibînin Mîhengên → Permîsyan, û hilka \"Hilberî\" bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y’obusobozi okusindika n’okutereka obuterekesa. Nnyonnyola mu Settings → Permissions, lalu \"Storage\" okubigya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie saugyklos, kad galėtumėte siųsti ir išsaugoti priedus. Bakstelėkite Nustatymai → Leidimai ir įjunkite \"Saugykla\"." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до складиштето за да можете да испраќате и зачувате прилози. Допрете Поставки → Дозволи, и вклучете \"Складиште\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь хавсралтуудыг илгээж болон хадгалахын тулд хадгалахын хандалт хэрэгтэй байна. Тохиргоо → Зөвшөөрөл хэсэгрүү орж, \"Хадгалах\" асаана уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses storan supaya anda boleh menghantar dan menyimpan lampiran. Ketik Tetapan → Kebenaran, dan hidupkan \"Storan\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ပစ္စည်းများအား ပို့ရန်နှင့် သိမ်းရန်အတွက် သိုလှောင်ခွင့်ပြုချက်လိုအပ်ပါသည်။ 'ဆက်တင်များ' တွင် ဗားရှင်း → ကွာတာတွင် 'သိုလှောင်ခွင့်ပြုချက်' ကိုဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger tilgang til lagring for at du skal kunne sende og lagre vedlegg. Trykk Innstillinger → Tillatelser, og slå på \"Lagring\"." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई स्टोरेज पहुँच आवश्यक छ ताकि तपाईं अट्याचमेन्टहरू पठाउन र सेभ गर्न सक्नुहुनेछ। सेटिङहरू → अनुमतिहरूमा थिच्नुहोस्, र \"स्टोरेज\" अन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft opslagtoegang nodig zodat u bijlagen kunt verzenden en opslaan. Tik op Instellingen → Machtigingen, en schakel \"Opslag\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang slik at du kan sende og lagre vedlegg. Trykk Innstillinger → Tillatelser, og slå på \"Lagring\"." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access so you can send and save attachments. Tap Settings → Permissions, and turn \"Storage\" on." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ ਤਾਂ ਜੋ ਤੁਸੀਂ ਸੰਜੋਣ ਅਤੇ ਐਟੈਚਮੇਂਟ ਭੇਜ ਸਕੋ। ਸੈਟਿੰਗਜ਼ 'ਤੇ ਟੈਪ ਕਰੋ → ਅਨੁਮਤੀਆਂ, ਅਤੇ \"ਸਟੋਰੇਜ\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wysyłać i zapisywać załączniki, aplikacja {app_name} potrzebuje dostępu do pamięci. Naciśnij „Ustawienia” → „Uprawnienia” i włącz „Pamięć”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ته د ذخیره کولو لاسرسي ته اړتیا لري ترڅو تاسې ملحقات واستوئ او ساتئ. تنظیماتو باندې ټپ وکړئ → اجازې، او \"ذخیره\" روښانه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para que você possa enviar e salvar anexos. Toque em Configurações → Permissões e ative \"Armazenamento\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para que possa enviar e guardar anexos. Carregue em Definições → Permissões, e ative \"Armazenamento\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la stocare pentru a trimite și salva atașamente. Mergi la Setări → Permisiuni și activează funcția \"Stocare\"." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требует доступ к хранилищу, чтобы вы могли отправлять и сохранять вложения. Нажмите Настройки → Разрешения и включите \"Хранилище\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup pohrani kako biste mogli slati i spremati privitke. Dodirnite Postavke → Dozvole, i uključite \"Pohrana\"." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}ට සම්බන්ධීකරණ සහ උපුටා ගැනීම් සදහා ගබඩා ප්‍රවේශය අවශ්‍යයි. සැකසීම් → අවසර, සහ \"ගබඩාව\" සක්‍රීය කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k úložisku, aby ste mohli posielať a ukladať prílohy. Klepnite na Nastavenia → Povolenia a zapnite \"Úložisko\"." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do shrambe, da lahko pošiljate in shranjujete priloge. Tapnite Nastavitve → Dovoljenja in vklopite \"Shramba\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për qasje të hapësirës ruajtëse që të mund të dërgoni dhe ruani bashkëngjitjet. Shtypni Settings → Permissions dhe aktivizoni \"Storage\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за складиштење да можете да шаљете и чувате прилоге. Идите на Подешавања → Дозволе и укључите \"Складиште\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} zahteva pristup skladištu da biste mogli slati i čuvati priloge. Tap Settings → Permissions, i uključite \"Storage\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till lagring för att du ska kunna skicka och spara bilagor. Tryck på Inställningar → Behörigheter och slå på \"Lagring\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya hifadhi ili uweze kutuma na kuhifadhi viambatisho. Gusa Mipangilio → Ruhusa, na washa \"Hifadhi\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அனுப்பவும் சேமிக்க இணைப்புகளை சேமிப்பக அணுகல் தேவை. அமைப்புகள் → அனுமதிகள் இல் சென்று, \"சேமிப்பகம்\" இல் இருக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ఆటాచ్మెంట్లను పంపించడానికి మరియు సేవ్ చేసేందుకు నిల్వ యాక్సెస్ కావాలి. సెట్టింగులు → అనుమతులు ని తట్టి, \"స్టోరేజ్\"ని ఆన్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แอป {app_name} ต้องการการเข้าถึงที่จัดเก็บเพื่อให้คุณสามารถส่งและบันทึกไฟล์แนบได้ แตะที่ การตั้งค่า → การอนุญาต แล้วเปิด \"ที่จัดเก็บ\"." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, ek gönderme ve kaydetme işlemi için depolama erişimine ihtiyaç duyar. Ayarlar → İzinler üzerine dokunun ve \"Depolama\" seçeneğini açın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує дозволу на доступ до сховища задля надсилання та збереження вкладень. Торкніться Налаштування →Дозволи та увімкніть «Сховище»." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو منسلکات بھیجنے اور محفوظ کرنے کے لئے اسٹورج تک رسائی کی ضرورت ہے۔ ترتیبات پر ٹیپ کریں → اجازتیں، اور \"اسٹورج\" کو بند کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fayllarni yuborish va saqlash uchun saqlashga kirishni talab qiladi. Sozlamalar → Ruxsatlar ni bosing va \"Saqlash\"ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập lưu trữ để bạn có thể gửi và lưu tệp đính kèm. Nhấn Cài đặt → Quyền truy cập, và bật \"Lưu trữ\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwisithuba ukuze ukwazi ukuthumela nokugcina izithunywa. Thepha ku-Settings → Permissions, kwaye uvule 'Indawo yokugcina'." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要存储权限,以便您可以发送和保存附件。请点击设置 → 权限,并打开“存储”权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要儲存空間的存取權限才能傳送和儲存附件。請到設定 → 權限中,開啟「儲存空間」權限。" + } + } + } + }, + "permissionsStorageSave" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het berging toegang nodig om aanhegsels en media te stoor." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى التخزين لحفظ المرفقات والوسائط." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} qoşmaları və medianı saxlamaq üçün anbara müraciət etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ذخیرہ پاتبسینہ محفوظ عریض او ذرہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе дазволу да сховішча каб захоўваць ўкладанні і медыя." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до хранилището, за да запазва прикачени файлове и медия." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংযুক্তি এবং মিডিয়া সংরক্ষণ করতে {app_name} এর স্টোরেজ অ্যাকসেস প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a l'emmagatzematge per desar els fitxers adjunts i els suports." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k úložišti pro ukládání příloh a médií." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen mynediad i storio i gadw atodiadau a chyfryngau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} skal have lageradgang for at gemme vedhæftninger og mediefiler." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Speicherzugriff, um Anhänge und Medien zu speichern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για να αποθηκεύσει συνημμένα και πολυμέσα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access to save attachments and media." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas aliron al memoro por konservi aldonaĵojn kaj aŭdvidaĵojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al almacenamiento para guardar adjuntos y multimedia." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso de almacenamiento para guardar archivos adjuntos y medios." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab salvestusruumi ligipääsu, et salvestada manuseid ja meediat." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k biltegirako sarbidea behar du eranskinak eta hedabideak gordetzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای ذخیره پیوست‌ها و رسانه‌ها نیاز به دسترسی به حافظه دارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee tallennustilan käyttöoikeuden liitteiden ja median tallentamiseksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay nangangailangan ng access sa storage upang mag-save ng mga attachment at media." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} doit accéder au stockage pour enregistrer les pièces jointes et les médias." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita permiso para acceder ao almacenamento para gardar anexos e medios." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ajiya don adana abubuwan haɗe-haɗe da kafofin watsa labarai." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק לגישה לאחסון כדי לשמור צרופות ומדיה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को अनुलग्नक और मीडिया को सहेजने के लिए संग्रहण पहुंच चाहिए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup memoriji za spremanje privitaka i medija." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak tárhely-hozzáférésre van szüksége a mellékletek és médiák mentéséhez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է պահեստային հասանելիություն կցորդներն ու մեդիան պահպանելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses penyimpanan untuk menyimpan lampiran dan media." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso allo storage per salvare allegati e media." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}は添付ファイルやメディアを保存するためにストレージへのアクセスが必要です。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება მეხსიერების წვდომა მიმაგრებული ფაილებისა და მედიების შესანახად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការចូលប្រើវើសកម្មដើម្បីរក្សាទុកឯកសារ និងមេឌៀ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಅಟ್ಯಾಚ್ಮೆಂಟ್‌ಗಳು ಮತ್ತು ಮಾಧ್ಯಮವನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 첨부 파일과 미디어를 저장하기 위해 저장 공간 접근이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya hilkişina xelasî û medyayê hewce dike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y’obusobozi okusigala ekwatibwako aammaamu n’emikutu." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຢາງແລະວິດີໂອ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie saugyklos, kad galėtų įrašyti priedus ir mediją." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ir nepieciešama pieeja glabātuve failu un multimediju saglabāšanai." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до складиштето за да зачува прилози и медиуми." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь хавсралт болон медиа хадгалахын тулд сангийн хандалт хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses storan untuk menyimpan lampiran dan media." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ပူးတွဲချက်များနှင့် မီဒီယာကို သိမ်းဆည်းရန် သိုလှောင်မှုခွင့်ပြုချက်လိုအပ်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å lagre vedlegg og media." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई अट्याचमेन्ट र मिडिया सेभ गर्न स्टोरज पहुँच आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft opslagtoegang nodig om bijlagen en media op te slaan." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å lagre vedlegg og media." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imafuna mwayi wosungira kuti asunge attachments ndi media." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਅਟੈਚਮੈਂਟਸ ਅਤੇ ਮੀਡੀਆ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby zapisywać załączniki i multimedia, aplikacja {app_name} potrzebuje dostępu do pamięci." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} پیوستونونو او میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para salvar anexos e mídias." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para salvar anexos e mídia." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la spațiul de stocare pentru a salva atașamente și media." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к хранилищу для сохранения вложений и медиафайлов." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup pohrani za spremanje privitaka i medija." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඇමුණුම් සහ මාධ්‍ය සුරැකීම සඳහා {app_name}ට ගබඩා ප්‍රවේශය අවශ්‍යවේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k úložisku na uloženie príloh a médií." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do shrambe za shranjevanje prilog in medijev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje të hapësirës ruajtëse për të ruajtur attachment-et dhe median." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба приступ складишту да сачува прилоге и медије." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup skladištu da sačuva priloge i medije." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till lagringsutrymmet för att kunna spara bifogade filer och media." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya hifadhi ili kuhifadhi viambatanisho na vyombo vya habari." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இணைப்புகள் மற்றும் மெடியாவை சேமிக்க சேமிப்பக அணுகல் தேவை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అటాచ్మెంట్‌లు మరియు మీడియాను సేవ్ చేయడానికి {app_name} కు నిల్వ యాక్సెస్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อบันทึกไฟล์แนบและสื่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, ekleri ve medyayı kaydetmek için depolama erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до сховища для збереження вкладень та медіа." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو منسلکات اور میڈیا محفوظ کرنے کے لیے اسٹوریج کی اجازت درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fayl va media tarkiblarini saqlash uchun saqlashga kirishni talab qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập lưu trữ để lưu các tập tin đính kèm và phương tiện." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwindawo yokugcina ukuthumela iziphumo kunye nemidiya." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要存储权限来保存附件和媒体。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要存儲權限以保存附件和媒體。" + } + } + } + }, + "permissionsStorageSaveDenied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het berging toegang nodig om foto's en video's te stoor, maar dit is permanent geweier. Gaan asseblief na die toepassing se instellings, kies \"Permissions\", en skakel \"Storage\" aan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى التخزين لحفظ الصور ومقاطع الفيديو، ولكن تم رفضه نهائيًا. يرجى الانتقال إلى إعدادات التطبيق، واختيار \"الأذونات\"، وتفعيل \"التخزين\"." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foto və videoları saxlamaq üçün anbara müraciət etməlidir, ancaq bu icazəyə həmişəlik rədd cavabı verilib. Lütfən tətbiq ayarlarına gedin, \"İcazələr\"i seçin və \"Anbar\" icazəsini fəallaşdırın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ذخیرہ پاتبسینہ محفوظ ثبت، چہ جو مکمبے افعیلت بیزی. لہ کہتت کو قٔائیں وضیجت تیبسینہ پایمر دےیے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе дазволу да сховішча каб захоўваць фота і відэа, але зараз дазволу няма. Калі ласка, перайдзіце ў меню налад праграмы, абярыце \"Дазволы\" і ўключыце \"Сховішча\"." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до хранилището, за да запазва снимки и видеота, но достъпът е бил окончателно отказан. Моля, продължете до настройките на приложението, изберете \"Разрешения\" и активирайте \"Хранилище\"." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর ছবি ও ভিডিও সেভ করার জন্য স্টোরেজ অ্যাকসেস প্রয়োজন কিন্তু এটি স্থায়ীভাবে প্রত্যাখ্যান করা হয়েছে। অনুগ্রহ করে অ্যাপ সেটিংস মেনুতে যান, \"পারমিশনস\" নির্বাচন করুন, এবং \"স্টোরেজ\" সক্রিয় করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a l'emmagatzematge per desar fotografies i vídeos, però s'ha denegat permanentment. Per favor, continueu cap al menú de configuració de l'aplicació, seleccioneu Permisos i habiliteu-hi l'Emmagatzematge." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k úložišti pro ukládání fotografií a videí, ale byl trvale zakázán. Prosím, pokračujte do nastavení aplikací, vyberte \"Oprávnění\" a povolte \"Úložiště\"." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen caniatâd Storio i gadw lluniau a fideos, ond mae wedi'i wrthod yn barhaol. Ewch i ddewislen gosodiadau'r ap, dewis \"Caniatâd\", a galluogi \"Storio\"." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kræver tilladelse til at tilgå din hukommelse, for at kunne gemme billeder og videoer, hvilket det er blevet nægtet. Gå venligst via appens menu til Indstillinger, vælg \"Tilladelser\" og tilvælg \"Lagring\"." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} benötigt Speicherzugriff, um Fotos und Videos zu speichern, aber dieser Zugriff wurde dauerhaft verweigert. Bitte öffne die Einstellungen, wähle »Berechtigungen« und aktiviere »Speicher«." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποθήκευση φωτογραφιών και βίντεο, αλλά έχει απορριφθεί μόνιμα. Παρακαλώ μεταβείτε στις ρυθμίσεις της εφαρμογής, επιλέξτε «Άδειες», και ενεργοποιήστε το «Αποθηκευτικός χώρος»." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access to save photos and videos, but it has been permanently denied. Please continue to app settings, select \"Permissions\", and enable \"Storage\"." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas aliron al memoro por konservi bildojn kaj videojn, sed ĝi estis porĉiame malakceptita. Bonvolu iri al la aplikaĵaj agordoj, elekti \"Permesoj\", kaj ŝalti \"Memoro\"." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al almacenamiento para guardar fotos y videos, pero el permiso ha sido denegado permanentemente. Por favor, vaya a los ajustes de la aplicación, seleccione \"Permisos\", y active el \"Almacenamiento\"." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita permiso de almacenamiento para poder guardar imágenes y videos, pero este ha sido denegado permanentemente. Por favor, vaya al menú de configuración de la aplicación, seleccione \"Permisos\", y active \"Almacenamiento\"." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab fotode ja videote salvestamiseks juurdepääsu salvestusruumile, kuid see on jäädavalt keelatud. Jätkake rakenduse sätetes, valige \"Load\" ja lubage \"Salvestusruum\"." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k biltegirako sarbidea behar du argazkiak eta bideoak gordetzeko, baina behin betiko ukatu da. Mesedez jarraitu aplikazioa ezarpenetara, aukeratu \"Permissions\", eta aktibatu \"Storage\"." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای ذخیره عکس‌ها و ویدئوها نیاز به دسترسی حافظه دارد، اما این دسترسی به طور دائم رد شده است. لطفاً به تنظیمات برنامه رفته، «مجوز‌ها» را انتخاب و «حافظه» را فعال کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden tallentamiseksi, mutta käyttöoikeus on evätty pysyvästi. Jatka sovellusasetuksiin, valitse \"Käyttöoikeudet\" ja ota käyttöön \"Tallennustila\"." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay nangangailangan ng access sa storage upang mag-save ng mga litrato at video, ngunit ito ay permanenteng tinanggihan. Magpatuloy sa mga setting ng app, piliin ang \"Permissions\", at paganahin ang \"Storage\"." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès au stockage pour enregistrer des photos et des vidéos, mais il a été refusé de façon permanente. Veuillez accéder aux paramètres de l'application, sélectionner \"Autorisations\" et autoriser \"Stockage\"." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita permiso para acceder ao almacenamento para gardar fotos e vídeos, pero foi denegado de forma permanente. Vai aos axustes da aplicación, selecciona \"Permisos\" e activa \"Almacenamento\"." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ajiya don adana hotuna da bidiyo, amma an haramta shi dindindin. Da fatan za a ci gaba da saitin app, zaɓi \"Izini\", kuma kunna \"Ajiya\"." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} זקוק לגישה לאחסון כדי לשמור תמונות ווידיאו, אבל היא נדחתה לצמיתות. המשך להגדרות האפליקציה, בחר \"הרשאות\" והפעל את \"אחסון\"." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फ़ोटो और वीडियो सहेजने के लिए {app_name} को संग्रहण पहुंच चाहिए, लेकिन इसे स्थायी रूप से मना कर दिया गया है। कृपया ऐप सेटिंग्स पर जाकर, \"अनुमतियां\" चुनें और \"संग्रहण\" सक्षम करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup memoriji za spremanje fotografija i videozapisa, no to je sada trajno onemogućeno. Molimo vas da u postavkama aplikacije odaberete \"Dopuštenja\" i omogućite \"Memorija\"." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók mentéséhez, de ez nem lett megadva. Kérlek, lépj tovább az alkalmazás beállításokhoz, válaszd az \"Engedélyek\" lehetőséget, majd engedélyezd a \"Tárhely\" hozzáférést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է պահպանման հասանելիություն՝ լուսանկարներ և տեսանյութեր պահելու համար, բայց այն ընդմիշտ մերժվել է: Խնդրում ենք շարունակել դեպի հավելվածի կարգավորումներ, ընտրել «Թույլտվություններ», և միացնել «Պահեստավորում»։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses penyimpanan untuk menyimpan foto dan video, tetapi telah ditolak secara permanen. Silakan lanjutkan ke pengaturan aplikasi, pilih \"Izin\", dan aktifkan \"Penyimpanan\"." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'accesso all'archiviazione è stato negato. {app_name} richiede l'accesso all'archiviazione per salvare foto e video. Vai su Impostazioni, Autorizzazioni e abilita i permessi di archiviazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}が写真や動画を保存するには、ストレージへのアクセスを許可する必要がありますが、無効になっています。アプリ設定メニューから、「アプリの権限」を選び、「ストレージ」へのアクセス許可を有効にしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების შესანახად, მაგრამ იგი სამუდამოდ იქნა უარეზული. გთხოვთ გადადეთ აპლიკაციის პარამეტრებში, აირჩიეთ \"Permissions\" და ჩართეთ \"Storage\"." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការសិទ្ធិចូលប្រើអង្គរក្សាទុកដើម្បីរក្សាទុករូប, វីដេអូ, ប៉ុន្តែវាត្រូវបានបដិសេធរហូត។ សូមបន្តទៅការកំណត់ជ្រើសរើស \"ការអនុញ្ញាត\" និងបើក \"អង្គរក្សាទុក\"។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಉಳಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ, ಆದರೆ ಅದು ಶಾಶ್ವತವಾಗಿ ನಿರಾಕರಿಸಲಾಗಿದೆ. ದಯವಿಟ್ಟು ಆ್ಯಪ್ ಸೆಟ್ಟಿಂಗ್‌ಗಳಿಗೆ ಮುಂದುವರಿಯಿರಿ, \"Permissions\" ಆಯ್ಕೆಮಾಡಿ, ಮತ್ತು \"Storage\" ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 사진과 동영상을 저장하기 위해 저장 공간 접근이 필요하지만 영구적으로 거부되었습니다. 앱 설정에서 \"권한\"을 선택하고, \"저장 공간\" 권한을 활성화하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya hilkişina wêneyên û vedîdarên hewce dike, lê ew daîmen rehtirî ye. Ji kerema xwe berdewam bike mîhengan mîhengên aplikasiya veçînsawî da bixe û 'Hilkişin' aktîv bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y’obusobozi okusigala okubikuumye ebifaananyi n’ebifaananyi ebya vidiyo, naye ssensa ezaweebwa zaulagiddwa ddala. Nnyika poly agayina mu nkola y’ekimu, olumanya 'Permissions' olwo ne Obusobozi." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອບັນທຶກຮູບແລະວິດີໂອ, ແຕ່ເຄື່ອງຫນຶ້ງເຂົ້າໄປອັນດີໂຕຍປະຫຍັດ. ກະລູນາຄົນທີ່ຕັ້ງຄ່າປຣະກາດສົມບູນ, ເລືອກ \"ການອະນຸຍາດ\", ແລະເປີດ \"ຍາງ\"." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norint įrašyti nuotraukas ir vaizdo įrašus, {app_name} reikia prieigos prie saugyklos, bet ji buvo visam laikui uždrausta. Prašome pereiti į programėlės nustatymus, pasirinkti \"Leidimai\" ir įjungti \"Saugyklą\"." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lai saglabātu fotoattēlus un video, {app_name} ir nepieciešama pieeja glabātuve, bet tā ir pastāvīgi aizliegta. Lūdzu, ejiet uz programmu iestatījumiem, izvēlieties “Atļaujas” un iespējojiet “Krātuve”." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до складиштето за да зачува фотографии и видеа, но пристапот е трајно одбиен. Ве молиме продолжете до поставките на апликацијата, одберете \"Permissions\" и овозможете \"Складиште\"." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} нь гэрэл зураг болон видеонуудыг хадгалахын тулд сангийн хандалт хэрэгтэй гэвч энэ нь байнгын хоригдсон. Тохиргоо руу орж, \"Permissions\"-г сонгоод, \"Storage\"-г идэвхжүүлнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses storan untuk menyimpan foto dan video, tetapi akses telah ditolak secara kekal. Sila terus ke tetapan aplikasi, pilih \"Permissions\", dan membolehkan \"Storan\"." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဓာတ်ပုံများနှင့် ဗီဒီယိုများ သိမ်းဆည်းရန် သိုလှောင်ခွင့်ပြုချက်လိုအပ်ပါသည်၊ သို့သော် ၎င်းသည် အမြဲတမ်းငြင်းပယ်ခံခဲ့ရသည်။ ကျေးဇူးပြု၍ အက်ပ်ဆက်တင်များသို့ ဆက်၍ \"ခွင့်ပြုချက်များ\" ကိုရွေးချယ်ကာ \"သိုလှောင်\" ကို ဖွင့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å lagre bilder og videoer, men den har blitt permanent nektet. Fortsett til appinnstillingene, velg \"Tillatelser\" og aktiver \"Lagring\"." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो र भिडियोहरू सेभ गर्न स्टोरज पहुँच आवश्यक छ, तर यो स्थायी रूपमा अस्वीकृत गरिएको छ। कृपया एप सेटिङहरूमा जानुहोस्, \"Permissions\" चयन गर्नुहोस्, र \"Storage\" सक्षम गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot de opslag om foto's en video's op te slaan, maar het is permanent geweigerd. Ga naar de instellingen voor deze app, selecteer \"Toestemmingen\", en schakel \"Opslag\" in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å lagre bilete og videoar, men tilgangen er permanent avslått. Fortsett til appinnstillingene, vel \"Tillatelser\" og aktiver \"Lagring\"." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imafuna mwayi wosungira kuti asunge zithunzi ndi makanema, koma linathetsedwa kwanthawi yayitali. Chonde pitani ku zokonda za pulogalamu, sankhani \"Permissions\", ndikuyatsa \"Storage\"." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਸੰਭਾਲਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ, ਪਰ ਇਸਨੂੰ ਪੱਕੇ ਤੌਰ 'ਤੇ ਖਾਰਜ਼ ਕੀਤਾ ਗਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਐਪ ਸੈਟਿੰਗਾਂ 'ਤੇ ਜਾਰੀ ਰਹੋ, \"Permissions\" ਚੁਣੋ, ਅਤੇ \"Storage\" ਚਾਲੂ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby zapisywać zdjęcia i filmy, aplikacja {app_name} potrzebuje dostępu do pamięci, jednak na stałe go odmówiono. Przejdź do ustawień aplikacji, wybierz „Uprawnienia” i włącz „Pamięć”." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} له بشپړیدو څخه مخکې میډیا خوندي کولو لپاره ذخیره کولو ته اړتیا لري، مګر تایید شوی ده. مهرباني وکړئ غوښتنلیک تنظیماتو ته دوام وکړئ، \"Permissions\" وټاکئ، او \"ذخیره\" فعال کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao seu armazenamento para salvar fotos e vídeos, mas foi permanentemente negado. Por favor, continue para configurações do app, selecione \"Permissões\", e habilite \"Armazenamento\"." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para salvar fotos e vídeos, mas isso foi negado permanentemente. Por favor, acesse as definições do app, selecione \"Permissões\" e ative \"Armazenamento\"." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la spațiul de stocare pentru a salva poze și clipuri video, dar accesul a fost refuzat permanent. Vă rugăm să navigați în meniul de setări al aplicației, selectați \"Permisiuni\" și activați \"Spațiu de stocare\"." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к хранилищу для сохранения фотографий и видео, но это разрешение не было предоставлено. Перейдите в настройки приложения, выберите \"Разрешения\" и включите \"Хранилище\"." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup pohrani za spremanje slika i videa, ali je trajno odbijeno. Molimo nastavite do opcija aplikacije, odaberite 'Dozvole', i uključite 'Pohrana'." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඡායාරූප සහ වීඩියෝ සුරැකීමට {app_name}ට ගබඩා ප්‍රවේශය අවශ්‍ය වේ, නමුත් එය ස්ථිරවම ප්‍රතික්ෂේප කර ඇත. කරුණාකර යෙදුම් සැකසීම් වෙත යන්න, \"අවසර\" තෝරන්න, සහ \"ගබඩාව\" සබල කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup k úložisku na uloženie fotografií a videí, ale bol natrvalo odmietnutý. Prosím pokračujte do nastavení aplikácie, vyberte \"Oprávnenia\" a povoľte \"Úložisko\"." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do shrambe za shranjevanje fotografij in videoposnetkov, vendar je bil ta trajno zavrnjen. Nadaljujte na nastavitve aplikacije, izberite \"Dovoljenja\" in omogočite \"Shramba\"." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje të hapësirës ruajtëse për të ruajtur fotot dhe videot, por kjo i është mohuar. Ju lutemi, kaloni te rregullimet e aplikacionit, përzgjidhni \"Leje\", dhe aktivizoni \"Depozitim\"." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за складиште да сачува слике и видео клипове, али је трајно забрањено. Настави у подешавања апликације, селектуј \"Дозволе\", и укључи \"Складиште\"." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup skladištu da sačuva fotografije i videe, ali mu je trajno odbijeno. Molimo nastavite do podešavanja aplikacije, izaberite \"Dozvole\", i omogućite \"Skladište\"." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till lagringsutrymmet för att kunna spara foton och filmer, men har nekats permanent. Fortsätt till inställningsmenyn, välj \"Behörigheter\" och aktivera \"Lagring\"." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya hifadhi kuhifadhi picha na video, lakini imekataliwa kabisa. Tafadhali endelea kwenye mipangilio ya programu, chagua \"Ruhusa\", na wezesha \"Ruhusa ya Hifadhi\"." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள் மற்றும் வீடியோக்களை சேமிக்க சேமிப்பக அணுகல் தேவை, ஆனால் அது நிரந்தரமாக மறுக்கப்பட்டுள்ளது. தயவு செய்து செயலியின் அமைப்புகளுக்கு சென்று, \"Permissions\" தேர்வு செய்து, \"Storage\" ஐ செயலாக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫోటోలు మరియు వీడియోలను సేవ్ చేయడానికి {app_name} కు నిల్వ యాక్సెస్ అవసరం, కానీ ఇది శాశ్వతంగా తిరస్కరించబడింది. దయచేసి యాప్ సెట్టింగ్‌లకు వెళ్ళి, \"Permissions\" ఎంచుకోండి మరియు \"Storage\"ని సుముఖం చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพื่อที่จะบันทึกข้อมูลลงที่เก็บข้อมูลภายนอกได้ {app_name} ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูล แต่คำขอนั้นถูกปฏิเสธอย่างถาวร กรุณาไปที่เมนูตั้งค่าแอป เลือก \"การอนุญาต\" และเปิดใช้งาน \"ที่เก็บข้อมูล\"" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video kaydedebilmek için depolama erişimine ihtiyaç duyar, fakat bu izin kalıcı olarak reddedilmiş. Lütfen uygulama ayarlarına girin, \"İzinler\"i seçin ve \"Depolama\"yı etkinleştirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує дозволу \"Зберігання\", щоб зберігати файли, але наразі цей дозвіл ви постійно відхиляли. Будь ласка, перейдіть до налаштувань додатку, оберіть \"Дозволи\", та увімкніть \"Зберігання\"." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصاویر اور ویڈیوز کو محفوظ کرنے کے لیے {app_name} کو اسٹوریج تک رسائی درکار ہے، لیکن اسے مستقل طور پر مسترد کر دیا گیا ہے۔ براہ کرم ایپ کی ترتیبات کو جاری رکھیں، \"اجازتیں\" کو منتخب کریں، اور \"اسٹوریج\" کو فعال کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni saqlash uchun saqlashga kirishni talab qiladi, ammo bu abadiy rad etilgan. Iltimos, ilova sozlamalariga o'ting, \"Ruxsatlar\" ni tanlang va \"Saqlash\" ni yoqing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập lưu trữ để lưu ảnh và video, nhưng quyền này đã bị chặn. Vui lòng vào phần cài đặt ứng dụng, chọn \"Quyền truy cập\", và cho phép truy cập \"Lưu trữ\"." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo, kodwa ivaliwe ngokusisigxina. Nceda uqhubeke useto lwe-app, ukhethe \"Imvume\", kwaye uvule \"Indawo yokugcina\"." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要存储权限来保存照片和视频,但是该权限已经被永久拒绝。请进入应用程序设置,点击\"权限\",并启用\"存储\"。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要存儲權限來保存照片和視頻,但它已被永久拒絕。請到應用程式設定中,選取「權限」,並啟用「存儲」。" + } + } + } + }, + "permissionsStorageSend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} het berging toegang nodig om foto's en video's te stuur." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} يحتاج إذن الوصول إلى التخزين لإرسال الصور ومقاطع الفيديو." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} foto və videoları göndərmək üçün anbara müraciət etməlidir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ذخیرہ پاتبسینہ بھیجنے تصویریں دکنیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} патрабуе дазволу да сховішча каб дасылаць фота і відэа." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} се нуждае от достъп до хранилището, за да изпраща снимки и видеота." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ছবি এবং ভিডিও প্রেরণ করতে {app_name} এর স্টোরেজ অ্যাকসেস প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necessita accés a l'emmagatzematge per enviar fotografies i vídeos." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potřebuje přístup k úložišti pro odesílání fotografií a videí." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae {app_name} angen mynediad i storio i anfon lluniau a fideos." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} har brug for lageradgang for at sende billeder og videoer." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Benötigt Speicherzugriff, um Fotos und Videos zu senden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} χρειάζεται πρόσβαση στον αποθηκευτικό χώρο για την αποστολή φωτογραφιών και βίντεο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} needs storage access to send photos and videos." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} bezonas aliron al memoro por sendi bildojn kaj videojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso al almacenamiento para enviar fotos y videos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita acceso de almacenamiento para enviar fotos y videos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajab fotode ja videote saatmiseks juurdepääsu salvestusruumile." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k biltegirako sarbidea behar du argazkiak eta bideoak bidaltzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} برای ارسال عکس‌ها و ویدئو‌ها نیاز به دسترسی حافظه دارد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tarvitsee tallennustilan käyttöoikeuden kuvien ja videoiden lähettämiseksi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang {app_name} ay nangangailangan ng access sa storage upang magpadala ng mga litrato at video." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} a besoin d'un accès au stockage pour envoyer des photos et des vidéos." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} necesita permiso para acceder ao almacenamento para enviar fotos e vídeos." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yana buƙatar samun damar ajiya don aikawa da hotuna da bidiyo." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} צריך הרשאות גישה לאחסון על מנת לשלוח תמונות ווידיאו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को फ़ोटो और वीडियो भेजने के लिए संग्रहण पहुंच चाहिए।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup memoriji za slanje fotografija i videozapisa." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alkalmazásnak tárhely-hozzáférésre van szüksége a fotók és videók elküldéséhez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը պահանջում է պահեստային հասանելիություն՝ լուսանկարներ և տեսանյութեր ուղարկելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} membutuhkan akses penyimpanan untuk mengirim foto dan video." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} richiede l'accesso all'archiviazione per inviare foto e video." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}は写真や動画を送信するためにストレージへのアクセスが必要です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ს სჭირდება მეხსიერების წვდომა ფოტოებისა და ვიდეოების გასაგზავნად." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ត្រូវការភ្ជាប់អង្គរក្សាទុកដើម្បីផ្ញើរូបទិញនិងវីដេអូ." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಚಿತ್ರಗಳು ಮತ್ತು ವೀಡಿಯೊಗಳನ್ನು ಕಳುಹಿಸಲು ಸಂಗ್ರಹಣೆಯ ಪ್ರವೇಶದ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}은 사진과 동영상을 전송하기 위해 저장공간 접근이 필요합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} permiya hilkişina wêneyên û vedîdarên bişîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeetaaga ssensa y’obusobozi okutuma ebifaananyi n’ebifaananyi ebya vidiyo." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ຕ້ອງການເຂົ້າເຖິງຟາຍເພື່ອສົ່ງຮູບແລະວິດີໂອ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} reikia prieigos prie saugyklos norint siųsti nuotraukas ir vaizdo įrašus." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} vajag pieeju failiem, lai sūtītu atēlus un video." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} има потреба од пристап до складиштето за да испраќа фотографии и видеа." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} зураг болон видеонуудыг илгээхийн тулд сангийн хандалт хэрэгтэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} memerlukan akses storan untuk menghantar foto dan video." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} သည် ဓာတ်ပုံများနှင့် ဗွီဒီယိုများ ပို့ရန် သိမ်းဆည်းမှုပုံစံခွင့်လိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å sende bilder og videoer." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} लाई फोटो र भिडियोहरू पठाउन स्टोरज पहुँच आवश्यक छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} heeft toegang nodig tot de opslag om foto's en video's te kunnen verzenden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} trenger lagringstilgang for å sende bilete og videoar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imafuna mwayi wosungira kuti atumize zithunzi ndi makanema." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨੂੰ ਫੋਟੋਆਂ ਅਤੇ ਵੀਡੀਓਜ਼ ਭੇਜਣ ਲਈ ਸਟੋਰੇਜ ਪਹੁੰਚ ਦੀ ਲੋੜ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wysyłać zdjęcia i filmy, aplikacja {app_name} potrzebuje dostępu do pamięci." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} عکسونه او ویډیوګانې لیږلو لپاره ذخیره کولو ته اړتیا لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao seu armazenamento para enviar fotos e vídeos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} precisa de acesso ao armazenamento para enviar fotos e vídeos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} are nevoie de acces la spațiul de stocare pentru a trimite poze și clipuri video." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} требуется доступ к хранилищу для отправки фотографий и видео." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup pohrani za slanje slika i videa." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඡායාරූප සහ වීඩියෝ යැවීමට {app_name}ට ගබඩා ප්‍රවේශය අවශ්‍යයි." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje prístup na disk na posielanie fotiek a videí." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} potrebuje dostop do shrambe za pošiljanje fotografij in videoposnetkov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ka nevojë për leje të hapësirës ruajtëse për të dërguar foto dhe video." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} треба дозволу за складиште да шаље слике и видео клипове." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} treba pristup skladištu da šalje fotografije i videe." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} behöver åtkomst till lagringsutrymmet för att kunna skicka foton och filmer." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} inahitaji ruhusa ya kuhifadhi ili kutuma picha na video." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புகைப்படங்கள் மற்றும் வீடியோக்களை அனுப்ப சேமிப்பக அணுகல் தேவை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫోటోలు మరియు వీడియోలను పంపడానికి {app_name} కు నిల్వ యాక్సెస్ అవసరం." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ต้องได้รับอนุญาตให้เข้าถึงที่เก็บข้อมูลเพื่อส่งรูปภาพและวิดีโอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}, fotoğraf ve video göndermek için depolama erişimine ihtiyaç duyar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} потребує доступу до сховища для відправлення фотографій та відео." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کو تصاویر اور ویڈیوز بھیجنے کے لیے اسٹوریج کی اجازت درکار ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} fotosuratlar va videolarni yuborish uchun saqlashga kirishni talab qiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} cần quyền truy cập lưu trữ để gửi ảnh và video." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ifuna ukufikelela kwindawo yokugcina ukuthumela iifoto nevidiyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}需要存储权限以取用及发送照片或视频。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 需要存儲權限來發送照片和影片。" + } + } + } + }, + "pin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaspen" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ًًًُُثَبت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sancaqla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پین" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Замацаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закачи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পিন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ancoreu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fastgør" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anheften" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καρφίτσωμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alpingli" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fijar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fijar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinnita" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ainguratu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سنجاق کردن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiinnitä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-pin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Épingler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka danna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעץ" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पिन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikvači" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitűzés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ամրացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sematkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fissa" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ピン留め" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្ទាស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಿನ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "고정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bizeliqîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katibako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prisegti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piespraust" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зүү" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pinkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पिन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastzetten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fest" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lembani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਿੰਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przypnij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پن" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрепить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pričvrsti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුදුනට අමුණන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripnúť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripni" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закачи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zakucajte" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fäst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுட்டி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పిన్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปักหมุด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabitle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закріпити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تھپتھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mahkamlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ghim" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "置顶" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "置頂" + } + } + } + }, + "pinConversation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaspen Gesprek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ثَبِت المحادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışığı sancaqla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو پین کنگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Замацаваць размову" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закачи Разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন পিন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ancoreu la conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Připnout konverzaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fastgør samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unterhaltung anheften" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Καρφίτσωμα Συνομιλίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pin Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alpingli Interparolon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fijar conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anclar conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kinnita vestlus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketa ainguratu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "سنجاق کردن گفتگو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiinnitä keskustelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-pin ang Usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Épingler la conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar Conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirkirar Tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נעץ שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पिन वार्तालाप" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikvači razgovor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés kitűzése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ամրացնել զրույցը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sematkan Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fissa chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話をピン留めする" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოავლენის საუბარი (Pin Conversation)" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ខ្ទាស់ការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಪಿನ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 고정하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbetê Bizeliqîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katibako Olulango" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prisegti pokalbį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piespraust sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачи разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Яриаг зүүх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pinkan Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောဆိုမှု ဖိုင်ပိတ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fest samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी पिन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek vastzetten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fest samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lembani Kukambirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਨੂੰ ਪਿੰਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przypnij konwersację" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرواترو پن کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixar Conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fixare conversație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закрепить беседу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pričvrsti razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පින් සංවාදය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripnúť konverzáciu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripni pogovor" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisedë e fiksuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закачи преписку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalepi konverzaciju na vrh" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fäst konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandika Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலை உச்சியில் சுட்டட்டிவைப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణను పిన్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ปักหมุดการสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konuşmayı sabitle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Закріпити розмову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو کو پن کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni mahkamlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ghim cuộc trò chuyện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina Incoko" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "置顶会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "置頂對話" + } + } + } + }, + "pinUnpin" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Losmaak" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الغ التثبيت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sancağı götür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پن ہٹائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адмацаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আনপিন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desancoreu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odepnout" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datgloi Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frigør" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ξεκαρφίτσωμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unpin" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Depingli" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfijar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfijar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vabasta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Despintatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برداشتن سنجاق" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irrota" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unpin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Désépingler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfixar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire pin" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל נעיצה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनपिन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkvači" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitűzés eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արձակել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lepas sematan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non mettere in evidenza" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ピン留めを外す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პიმის მოხსნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដកខ្ទាស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನ್‌ಪಿನ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "고정 해제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulina bikarînî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulaaga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsegti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atspraust" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Түгжээс салгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyah pin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပင်ဖြစ်သည့် စကားပြောပါမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Løsne" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनपिन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Losmaken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Løsne" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨਪਿਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odepnij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له اول نمبر لیست څخه انپین کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desafixar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desafixar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulați fixarea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Открепить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otpini" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ගළවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zrušiť pripnutie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpni" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çngulit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkači" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lossa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பின்னூட்டம் நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్స్టిక్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิกปักหมุด." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabitlemeyi Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відкріпити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "انپن کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mahkamlanmagan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ ghim" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa Ukukhonkxa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消置顶" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消置頂" + } + } + } + }, + "pinUnpinConversation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maak Gesprek Los" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ألغِي تثبيت المحادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıq sancağını götür" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بات چیت کو انپِن کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адмацаваць размову" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачване на разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কনভারসেশন আনপিন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desancorar la conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odepnout konverzaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datgloi Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frigør samtale" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unterhaltung lösen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ξεκαρφίτσωμα Συνομιλίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unpin Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Depingli Konversacion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfijar conversación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desanclar conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vabasta vestlus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Despintatu Elkarrizketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو را از حالت پین خارج کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irroita keskustelu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-unpin ang Usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Désépingler la conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfixar conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire pin saduwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל נעיצה של שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्तालाप अनपिन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkvači razgovor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetés kitűzésének eltávolítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ապամրացնել զրույցը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lepas Semat Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non mettere in evidenza la chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話のピン留めを外す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საუბრის პიმის მოხსნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បិតខ្ទាស់ការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಅನ್‌ಪಿನ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 고정 취소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pulina Peyven" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gulaaga Mukwokulabanka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsegti pokalbį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atspraust sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачи разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Яриа түгжээс салгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nyah Pin Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောရန် စကားပြောပါမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Løsne samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्तालाप अनपिन गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek losmaken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Løsne samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani Kukambirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਅਨਪਿਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odepnij konwersację" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرواترو څخه انپین وکړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desafixar Conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desafixar Conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulați fixarea conversației" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Открепить беседу" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otpini razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදය ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odopnúť konverzáciu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpni pogovor" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çngulit Bisedën" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откачи преписку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otkači konverzaciju sa vrha" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lossa konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலை நீக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణను అన్స్టిక్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิกปักหมุดการสนทนา." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbetin Sabitlemesini Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відкріпити розмову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمہ کو انپن کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni mahkamlamaslik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ ghim cuộc trò chuyện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa ukukhonkxa incoko" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消置顶会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消置頂" + } + } + } + }, + "preview" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voorskou" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "معاينة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Önizləmə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش نمایش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перадпрагляд" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পূর্বরূপ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vista prèvia" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhled" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhagolwg" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vorschau" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προεπισκόπηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preview" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antaŭrigardo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vista Previa" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eelvaade" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aurreikusi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش نمایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esikatselu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preview" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aperçu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previsualización" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תצוגה מקדימה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preview" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Előnézet" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Նախադիտում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratinjau" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anteprima" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プレビュー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩვენება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មើលជាមុន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುನ್ನೋಟ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "미리보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pêşdîtin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba Omuweereza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peržiūra" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priekšskatījums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Урьдчилан харах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pratonton" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အစမ်းကြည့်ရှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूर्वावलोकन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voorbeeld" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forhåndsvisning" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzithunzi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰੀਵਿਊ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podgląd" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش منظر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-visualizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previzualizare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предварительный просмотр" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙරදසුන" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Náhľad" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predogled" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paraparje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Förhandsgranska" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முன் நோக்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రివ్యూ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "พรีวิว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ön İzleme" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Попередній перегляд" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش نظارہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Belgilar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem trước" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuqhaynqa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知效果预览" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "預覽" + } + } + } + }, + "profile" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الملف الشخصي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفائل" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профіль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профил" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রোফাইল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proffil" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προφίλ" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profile" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiil" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiili" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profile" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanin kai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרופיל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रोफ़ाइल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաշիվ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プロフィール" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პროფილი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រវត្តិរូប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರೊಫೈಲ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "프로필" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profîl" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shift" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profils" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профил" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профайл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကိုယ်ရေး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रोफाइल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiel" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbiri" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰੋਫਾਈਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفایل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perfil" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профиль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පැතිකඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профил" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profaili" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுயவிவரம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రొఫైల్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรไฟล์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профіль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفائل" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hồ sơ cá nhân" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iprofayile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "个人资料" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "個人檔案" + } + } + } + }, + "profileDisplayPicture" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vertoon Prent" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "صورة العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran şəkli" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تصویر دکھائیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выява для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профилна снимка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রদর্শনী ছবি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imatge de perfil" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazovaný obrázek" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos llun" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display Picture" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzeigebild" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display Picture" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display Picture" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montrata Bildo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagen de perfil" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagen de perfil" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuvapilt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi Irudia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش تصویر نمایه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näyttökuva" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display Picture" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir une photo de profil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imaxe de perfil" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoto na Nuna Fuska" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "תמונת תצוגה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रदर्शन चित्र" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slika za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilkép" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրվող գլուխ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilan Gambar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra immagine" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ディスプレイの画像" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პროფილის სურათი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញរូបភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರದರ್ಶನ ಚಿತ್ರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "프로필 사진 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resmê Xuya bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekifananyi Kyongezebwa" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຮູບພາບສະແດງ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodomas paveikslas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atainojamais attēls" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слика за прикажување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дүр зураг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paparan Gambar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပုံပြပါမည့်ဓာတ်ပုံ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visningsbilde" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रदर्शन तस्वीर" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toon afbeelding" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visingsbilde" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chithunzi Chowonetsera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਦਰਸ਼ਨ ਚਿੱਤਰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdjęcie profilowe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د نندارې انځور" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imagem de Exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exibir Imagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează imaginea" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изображение профиля" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaz slike" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රදර්ශන ඡායාරූපය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilový obrázok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikazna slika" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fotografi për ekran" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Слика за приказ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaz slike" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa bild" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Picha ya Onyesho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அடுத்தப்படியாக" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రదర్శన చిత్రం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปภาพที่แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil Resmini Seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Встановити зображення для показу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈسپلے تصویر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey rasm" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Display Picture" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umfanekiso Okhombisa Ubuso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "头像" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示圖片" + } + } + } + }, + "profileDisplayPictureRemoveError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie vertoonbeeld verwyder nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إزالة صورة العرض." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran şəklini silmə uğursuz oldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈسپلے تصویر کو ہٹانے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не атрымалася выдаліць выяву." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно премахване на картината за показване." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রদর্শন ছবি সরাতে ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en eliminar la imatge de perfil." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba při odstraňování zobrazovaného obrázku." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd tynnu'r llun arddangos." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne displaybillede." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Entfernen des Profilbildes." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία κατάργησης εικόνας εμφάνισης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to remove display picture." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi montrotan bildon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló al remover foto de perfil." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar la foto de perfil." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuvapildi eemaldamine ebaõnnestus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan erakusizko irudia kentzea." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف تصویر نمایشی ناموفق بود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näyttökuvan poisto ei onnistunut." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-alis ng display picture." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de suppression de la photo de profil." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido eliminar a imaxe de perfil." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa cire hoton nunawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל הסרת תמונת הצגה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिस्प्ले तस्वीर हटाने में विफल।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje slike za prikaz nije uspjelo." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült törölni a profilképet." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել ցուցադրվող լուսանկարը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus gambar profil." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere l'immagine del profilo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示画像の削除に失敗しました。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ შევძელიში სურათის გამოღების მოცილება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការដករូបតំណាងបង្ហាញចេញ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರದರ್ಶನ ಚಿತ್ರವನ್ನು ತೆಗೆದುಹಾಕಲು ವಿಫಲವಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표시 사진을 제거하지 못했습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rûberê profîlê remove têbîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okwogolola ekifo ky'ebifaananyi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pašalinti profilio paveiksliuko." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās noņemt profila attēlu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на слика за профил." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харагдах зургыг устгахад алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal mengeluarkan gambar paparan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြထားသောပုံကို ဖယ်ရန် မဖြစ်နိုင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne profilbilde." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रदर्शन तस्वीर हटाउन असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijderen profielfoto mislukt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje fjerna visningsbilete." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa chithunzi chowonetsera." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਸਪਲੇ ਚਿੱਤਰ ਨੂੰ ਹਟਾਉਣ ਵਿੱਚ ਅਸਫਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć zdjęcia profilowego." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د نمایش انځور لرې کولو کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover a imagem de exibição." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao remover a foto do perfil." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-a putut elimina imaginea de profil." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить изображение профиля." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo uklanjanje prikazne slike." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පේෂණ ඡායාරූපය ඉවත් කිරීමට අසමත් විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odstrániť profilový obrázok." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo odstraniti prikazne slike." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi heqja e figurës së paraqitjes." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у уклањању слике профила" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspelo uklanjanje slike profila." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att ta bort visningsbild." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuondoa picha ya kuonyesha." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காட்சி படம் நீக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రదర్శన చిత్రాన్ని తొలగించడంలో విఫలమైంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การลบรูปโปรไฟล์ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil resmi kaldırılamadı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити зображення профілю" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈسپلے تصویر ہٹانے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey rasmini olib tashlashda muammo chiqdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể xóa hình đại diện." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukususa umfanekiso wokubonisa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除头像失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法刪除顯示圖片。" + } + } + } + }, + "profileDisplayPictureSet" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel vertoon prent" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين صورة العرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran şəklini ayarla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاره نمای گونیکی مقرر کـــــــن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Усталюйце выяву для адлюстравання" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване на профилна снимка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রদর্শন চিত্র সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definiu la imatge del perfil" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit zobrazovaný obrázek" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod Llun Arddangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil profibillede" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzeigebild festlegen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός Εικόνας Εμφάνισης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Picture" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordi Profilbildon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Imagen de Perfil" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer imagen de perfil" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra kuvapilt" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi argazkia ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم تصویر نمایشی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta näyttökuva" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda ang Display Picture" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Définir une photo de profil" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer Imaxe para Mostrar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita Hoton Mai Nunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר תמונת פרופיל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिस्प्ले तस्वीर सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi sliku za prikaz" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilkép beállítása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել պրոֆիլի նկարը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur Tampilan Gambar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta foto profilo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ディスプレイの画像を設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ავატარის არჩევა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់រូបបង្ហាញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರೊಫೈಲ್ ಡಿಸ್ಪ್ಲೇ ಚಿತ್ರವನ್ನು ಸೆಟ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "프로필 사진 설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rismê Profîlê Çêke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka Ekifaananyi Ekirabika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti rodomą paveikslėlį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt Atainojamo Attēlu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави Слика за Профил" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн зургаа тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan Gambar Paparan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပုံပြင်ဆင်ထားသည့်ပုံကိုသတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett profilbilde" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रदर्शन तस्वीर सेट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profielfoto instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Picture" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Picture" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਿਸਪਲੇ ਤਸਵੀਰ ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustaw zdjęcie profilowe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیسپلې انځور تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir Imagem de Exibição" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir imagem a exibir" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează imaginea de profil" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Установить изображение профиля" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi sliku profila" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රදර්ශන ඡායාරූපය සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť profilový obrázok" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi prikazno sliko" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos Paraqitjen e Profilit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави слику профила" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi sliku profila" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange visningsbild" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka Picha ya Kuonyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காட்டி புகைப்படத்தை அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రొఫైల్ చిత్రాన్ని సెట్ చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งรูปภาพโปรไฟล์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil Resmini Seçin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрати картинку для показу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈسپلے تصویر سیٹ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Displey rasmini belgilang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập Hình ảnh Đại diện" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set Display Picture" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置头像" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定顯示圖片" + } + } + } + }, + "profileDisplayPictureSizeError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies 'n kleiner lêer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء اختيار ملف أصغر." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən daha kiçik bir fayl götürün." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی ایک چھوٹا فائل منتخب کنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, абярыце меншы файл." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, изберете по-малък файл." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দয়া করে একটি ছোট ফাইল নির্বাচন করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si us plau, selecciona un fitxer més petit." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím vyberte menší soubor." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewiswch ffeil llai." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venligst vælg en mindre fil." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte wähle eine kleinere Datei." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ επιλέξτε ένα μικρότερο αρχείο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please pick a smaller file." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu elekti plej malgrandan dosieron." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elija un archivo más pequeño." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, elija un archivo más pequeño." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun valige väiksem fail." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, hautatu fitxategi txikiago bat." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفا فایل کوچکتری انتخاب کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse pienempi tiedosto." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakipili ang mas maliit na file." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez choisir un fichier plus petit." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, escolle un ficheiro máis pequeno." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi ƙaramin fayil." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא בחר קובץ קטן יותר." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please pick a smaller file." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo odaberite manju datoteku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válassz egy kisebb fájlt." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ընտրել ավելի փոքր ֆայլ:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silakan pilih berkas yang lebih kecil." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scegli un file più piccolo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "小さいファイルを選んでください." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ აირჩიოთ პატარა ფაილი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមជ្រើសរើសឯកសារតិចជាង." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ಒಂದು ಕುಿರುವಾದ ಕಡತವನ್ನು ಆಯ್ಕೆ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "더 작은 파일을 선택해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji kerema xwe pêveke zêdetir bicikne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa fayilo etono." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkite mažesnį failą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, izvēlieties mazāku failu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме изберете помала датотека." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бага хэмжээтэй файлыг сонгоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila pilih fail yang lebih kecil." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပိုတည်းသော ဖိုင်ကို ရွေးချယ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst velg en mindre fil." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया सानो फाइल चयन गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies een kleiner bestand." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst velg ei mindre fil." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde sonkhanitsani fayilo yaying’ono." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕਿਰਪਾ ਕਰਕੇ ਇੱਕ ਛੋਟੀ ਫਾਇਲ ਚੁਣੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz mniejszy plik." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ یو کوچنۍ فایل غوره کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escolha um arquivo menor, por favor." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, escolha um ficheiro menor." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm alegeți un fișier mai mic." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, выберите файл меньшего размера." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo izaberite manju datoteku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර කුඩා ගොනුවක් තෝරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosím zvoľte menší súbor." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, izberite manjšo datoteko." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi zgjedhni një skedar më të vogël." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изаберите мању датотеку." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo izaberite manju datoteku." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen välj en mindre fil." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali chagua faili ndogo." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குறைந்த அளவிலான கோப்பைத் தேர்ந்தெடுக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి చిన్న ఫైల్ ఎంపిక చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดเลือกไฟล์ที่เล็กลง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen daha küçük bir dosya seçin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, виберіть файл меншого розміру." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم ایک چھوٹی فائل کا انتخاب کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iltimos, kichikroq faylni tanlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng chọn tệp nhỏ hơn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ukhethe ifayile encinci." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请选择一个更小的文件。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請選擇一個較小的檔案。" + } + } + } + }, + "profileErrorUpdate" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie profiel opdateer nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل تحديث الملف الشخصي." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profili güncəlləmək uğursuz oldu." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفائل کو اپڈیٹ کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося абнавіць профіль." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно обновяване на профила." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রোফাইল আপডেট করতে ব্যর্থ হয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut actualitzar el perfil." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodařilo se aktualizovat profil." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd diweddaru proffil." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke opdatere profil." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualisierung des Profils fehlgeschlagen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία ενημέρωσης προφίλ." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to update profile." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis ĝisdatigi profilon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al actualizar el perfil." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al actualizar el perfil." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiili uuendamine nurjus." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez zara posible izan profil eguneratzea." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا در به‌روزرسانی نمایه." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiilia ei voitu päivittää." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bigong ma-update ang profile." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de mise à jour du profil." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao actualizar o perfil." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa sabunta bayanin martaba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל בעדכון הפרופיל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रोफ़ाइल अपडेट करने में विफल।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspješno ažuriranje profila." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nem sikerült frissíteni a profilt." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց թարմացնել պրոֆիլը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal memperbarui profil." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile aggiornare il profilo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プロフィールを更新できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პროფილის განახლება ვერ მოხერხდა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពប្រវត្តិរូប។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪ್ರೊಫೈಲ್ ಅನ್ನು ನವೀಕರಿಸಲು ವಿಫಲವಾಗಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "프로필 업데이트 실패." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nûvekirina profîlê têk çû." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kyalemye okukyusa ekifaananyi ky'omuserikale." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko atnaujinti profilio." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās atjaunināt profilu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не успеа да се ажурира профилот." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Профайлыг шинэчлэхэд алдаа гарлаа." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal untuk kemas kini profil." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပရိုဖိုင်းကို အပ်ဒိတ်လုပ်၍မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke oppdatere profil." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "झण्डाहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profiel bijwerken mislukt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å oppdatera profil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mana zatha sikirali sora." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਰੋਫ਼ਾਈਲ ਅੱਪਡੇਟ ਕਰਨ ਵਿੱਚ ਨਾਕਾਮ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaktualizować profilu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفایل تازه کولو کې پاتې راغی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha na atualização do perfil." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível atualizar o perfil." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la actualizarea profilului." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка обновления профиля." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje profila nije uspjelo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පැතිකඩ යාවත්කාල කිරීම අසාර්ථක විය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa aktualizovať profil." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posodobitev profila ni uspela." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi përditësimi i profilit." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно ажурирање профила." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje profila nije uspelo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades att uppdatera profilen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kusasisha wasifu." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சுயவிவரத்தைப் புதுப்பிக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రొఫైల్ అప్‌డేట్ చేయడం విఫలమైంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อัปเดตโปรไฟล์ล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profil güncellenemedi." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося оновити профіль." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروفائل اپ ڈیٹ کرنے میں ناکام" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Profilni yangilashda muammo chiqdi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể cập nhật hồ sơ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukuhlaziya iphrofayile." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新资料失败。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新個人資料失敗。" + } + } + } + }, + "promote" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bevorder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترقية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yüksəlt" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترقی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Павышэнне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промоция" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রচার" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promou" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povýšit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hyrwyddo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fremme" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Befördern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προώθηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promote" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promocii" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edenda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sustatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارتقاء" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ylennä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-promote" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promouvoir" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inganta" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "קדם" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पदोन्नत करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Előléptetés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խթանել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosikan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promuovi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "昇格" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაწინაურება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promote" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬೆಳೆಸಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "승격" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daxwazên peyamê ya gurûp bişîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinziira" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaukštinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paaugstināt amatā" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Промовирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Албан тушаал ахих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promosi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မြှင့်တင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promotere" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "उन्नति गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoveren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promotere" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limbikitsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰੋਮੋਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Awansuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترقي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promover" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повысить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promote" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zvýšiť úroveň" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviraj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promovoj" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унапреди" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Promoviši" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Främja" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panda" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மேம்படுத்தவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రచారం చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรโมต" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yükselt" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Підвищити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پروموٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imtiyoz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quảng bá" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phakamisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "授权" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "提升" + } + } + } + }, + "qrCode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kode" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز QR" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kodu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR کوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-код" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR код" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR কোড" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Codi QR" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kód" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cod QR" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-Code" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κωδικός QR" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Code" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-Kodo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Código QR" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Código QR" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kood" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kodea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کد QR" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-koodi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Code" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Code QR" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Código QR" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Code" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ברקוד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR कोड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kôd" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kód" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR կոդ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kode QR" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Codice QR" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR コード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR კოდი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កូដ QR" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ಕೋಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR 코드" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kodê QR" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Koodi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kodas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kods" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR код" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR код" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ကုဒ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kode" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR कोड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-code" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kode" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Code" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ਕੋਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR کوډ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Código QR" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Código QR" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cod QR" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-код" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kod" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR කේතය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kód" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR koda" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Code" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR кôд" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kod" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kod" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Msimbo wa QR" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR குறியீடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR కోడ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR โค้ด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kod" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-код" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیو آر کوڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kod" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mã QR" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikhowudi ye-QR" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "二维码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR 圖碼" + } + } + } + }, + "qrNotAccountId" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie QR-kode bevat nie 'n Rekening-ID nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز QR هذا لا يحتوي على معرف حساب" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR koduna Hesab Kimliyi daxil deyil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ QR کوڈ میں ایک اکاؤنٹ ID موجود ننی ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты QR-код не змяшчае Account ID" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Този QR код не съдържа идентификатор на акаунт" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই QR কোডটিতে কোনও অ্যাকাউন্ট আইডি নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest codi QR no conté un ID de compte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento QR kód neobsahuje ID účtu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw'r côd QR hwn yn cynnwys ID Cyfrif" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-kode indeholder ikke en Konto-ID" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dieser QR-Code enthält keine Account-ID" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτός ο κωδικός QR δεν περιέχει ID λογαριασμού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This QR code does not contain an Account ID" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu QR-kodo ne enhavas Konto IDENT." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR no contiene un Account ID" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR no contiene un ID de cuenta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See QR-kood ei sisalda kontotuvastusnumbrit" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kode honek ez du Kontu ID baten edukia izan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این کد QR شامل شناسه حساب کاربری نمی‌شود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä QR-koodi ei sisällä tilitunnusta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang QR code na ito ay hindi naglalaman ng Account ID" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce code QR ne contient pas d'ID de compte" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR non contén un Account ID" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan QR code ba ya ƙunshe da ID na Asusu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ברקוד זה לא מכיל תעודת חשבון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस QR कोड में Account ID नहीं है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži ID računa" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a QR-kód nem tartalmaz Felhasználó ID-t" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս QR կոդը չի պարունակում հաշվի ID" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kode QR ini tidak berisi ID akun" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo codice QR non contiene un ID utente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このQRコードにはアカウントIDが含まれていません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს QR კოდი არ შეიცავს ანგარიშის ID" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This QR code does not contain an Account ID" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ QR ಕೋಡ್ ಅನ್ನು ಅಕೌಂಟ್ ಐಡಿ ಹೊಂದಿರುವುದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 QR 코드는 계정 ID를 포함하고 있지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ev codeya QR ne li rûspikî ya ID ikus" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code eno terina kawunti ID" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis QR kodas neturi Account ID" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā QR kodā nav konta ID" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овој QR код не содржи ID на сметката" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ QR код Account ID агуулаагүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR ini tidak mengandungi ID Akaun" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ QR ကုဒ်တွင် Account ID မပါတက်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-koden inneholder ikke en Account ID" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो QR कोडमा एक खाता आईडी छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze QR-code bevat geen Account-ID" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-koden inneholder ikke en kontoid" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code iyi ilibe Account ID" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ QR ਕੋਡ ਵਿੱਚ ਖਾਤਾ ID ਸ਼ਾਮਲ ਨਹੀਂ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR nie zawiera identyfikatora konta" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا QR کوډ حساب آی ډی نه لري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR não contém um ID de Conta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR não contém um ID da Conta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest cod QR nu conține un ID de cont" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Этот QR-код не содержит ID аккаунта" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži ID računa" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම QR කේතය ගිණුම් ஐ ڈی එකක් ඇතුළත් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento QR kód neobsahuje ID účtu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta QR koda ne vsebuje Account ID" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky kod QR nuk përmban një ID të Llogarisë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овај QR код не садржи Account ID" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži Account ID" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna QR-kod innehåller inte ett konto-ID" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code hii haina ID ya Akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த QR குறியீட்டில் கணக்கு ஐடி இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ క్యూ ఆర్ కోడ్ లో ఖాతా ఐడి లేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR โค้ดนี้ไม่มี Account ID" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR kodu bir Hesap Kimliği içermiyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей QR-код не містить Account ID" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ QR کوڈ ایک اکاؤنٹ آئی ڈی پر مشتمل نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR kodda Account ID mavjud emas" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mã QR này không chứa Mã Tài Khoản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le khowudi ye-QR ayiqulathanga i-ID ye-Akhawunti" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此二维码不含账户ID" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個 QR 圖碼不包含帳號 ID" + } + } + } + }, + "qrNotRecoveryPassword" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie QR-kode bevat nie 'n Herwinningswagwoord nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز QR هذا لا يحتوي على عبارة استرداد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR koduna Geri qaytarma parolu daxil deyil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ QR کوڈ میں ریکوری پاسورڈ موجود ننی ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэты QR-код не змяшчае Recovery Password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Този QR код не съдържа възстановителна парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই QR কোডটিতে কোনো রিকভারি পাসওয়ার্ড অন্তর্ভুক্ত নেই" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquest codi QR no conté una contrasenya de recuperació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento QR kód neobsahuje heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw'r côd QR hwn yn cynnwys Cyfrinair Adferiad" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-kode indeholder ikke en Gendannelseskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dieser QR-Code enthält kein Wiederherstellungspasswort" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτός ο κωδικός QR δεν περιέχει κωδικό ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This QR code does not contain a Recovery Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tiu QR-kodo ne enhavas riparan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR no contiene una Recovery Password" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR no contiene una Contraseña de Recuperación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See QR-kood ei sisalda taastamissõnumit" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kode honek ez du berreskuratze pasahitzik izan" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این کد QR شامل رمز بازیابی نمی‌باشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä QR-koodi ei sisällä palautussalasanaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang QR code na ito ay hindi naglalaman ng Recovery Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce code QR ne contient pas de mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR non contén un contrasinal de recuperación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan QR code ba ya ƙunshe da kalmar wucewa ta mayar da hankali" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ברקוד זה לא מכיל סיסמת החלמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस QR कोड में Recovery Password नहीं है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži lozinku za oporavak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a QR-kód nem tartalmaz visszaállítási jelszót" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այս QR կոդը չի պարունակում վերականգնման գաղտնաբառ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kode QR ini tidak berisi Kata Sandi Pemulihan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo codice QR non contiene una password di recupero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このQRコードにはリカバリーパスワードが含まれていません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს QR კოდი არ შეიცავს აღდგენის პაროლს" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This QR code does not contain a Recovery Password" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಈ QR ಕೋಡ್ ಅನ್ನು ರಿಕವರಿ ಪಾಸ್ವರ್ಡ್ ಹೊಂದಿರುವುದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 QR 코드는 복구 비밀번호를 포함하고 있지 않습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ev codeya QR ne li rûspikî ya şîfreya paqij ya QR code." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code eno terina Kazambi k'ofoyo k'obutuuffu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šis QR kodas neturi atkūrimo slaptažodžio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šajā QR kodā nav atjaunošanas paroles" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овој QR код не содржи лозинка за опоравка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ QR код Нууц Үг агуулаагүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR ini tidak mengandungi Kata Laluan Pemulihan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ QR ကုဒ်တွင် Recovery Password မပါတက်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-koden inneholder ikke en Gjenopprettingsfrase" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो QR कोडमा रिकभरी पासवर्ड छैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deze QR-code bevat geen herstelwachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denne QR-koden inneholder ikke et gjenopprettingspassord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code iyi ilibe Password Yobwezeretsa" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ QR ਕੋਡ ਵਿੱਚ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਸ਼ਾਮਲ ਨਹੀਂ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kod QR nie zawiera hasła odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا QR کوډ بیا رغونې پاسورډ نه لري" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR não contém uma senha de recuperação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este código QR não contém uma Chave de Recuperação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acest cod QR nu conține o parolă de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Этот QR-код не содержит Пароль Восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži lozinku za oporavak" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම QR කේතය ප්‍රතිසාධන මුරපදයක් ඇතුළත් නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tento QR kód neobsahuje heslo na obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta QR koda ne vsebuje gesla za obnovitev" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky kod QR nuk përmban një Fjalëkalim Rimëkëmbjeje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Овај QR код не садржи фразу за опоравак" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovaj QR kod ne sadrži recovery password" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denna QR-kod innehåller inte ett återställningslösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code hii haina Nywila ya Urejeshaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த QR குறியீட்டில் மீட்பு கடவுச்சொல் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఈ క్యూ ఆర్ కోడ్ లో రికవరీ పాస్వర్డ్ లేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR โค้ดนี้ไม่ประกอบด้วยรหัสผ่านกู้คืน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR kodu bir Kurtarma Şifresi içermiyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цей QR-код не містить пароль для відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ QR کوڈ بازیابی پاس ورڈ پر مشتمل نہیں ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu QR kodda Recovery Password mavjud emas" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mã QR này không chứa Mật khẩu Khôi phục" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le khowudi ye-QR ayiqulathanga i-Password yokubuyisela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "此二维码不含恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這個 QR 圖碼不包含恢復密碼" + } + } + } + }, + "qrScan" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skandeer QR-kode" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "امسح رمز الاستجابة السريعة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kodu skan et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سکان QR کوڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканаваць QR-код" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканиране на QR код" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR কোড স্ক্যান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escaneja el codi QR" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenovat QR kód" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sganiwch Cod QR" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skan QR Kode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-Code scannen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σάρωση Κωδικού QR" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan QR Code" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanu QR Kodon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear Código QR" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear código QR" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaneeri QR-kood" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskaneatu QR kodea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسکن کد QR" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lue QR-koodi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan QR Code" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scanner un Code QR" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear código QR" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba QR Code" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סרוק ברקוד" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR कोड को स्कैन करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj QR kôd" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kód beolvasása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկանավորել QR Կոդ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pindai Kode QR" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scansiona codice QR" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "QRコードを読み取る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სკანირება QR კოდი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្កេនកូដ QR" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ಕೋಡ್‌ ಸ್ಕ್ಯಾನ್‌ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR 코드 스캔" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kodê li têqrîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skan QR Code" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenuoti QR kodą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenēt QR kodu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скенирај QR Код" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR код скан хийх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbas Kod QR" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ကုဒ်ကို စကန်ဖတ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skann QR-kode" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR कोड स्क्यान गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-code scannen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skann QR-kode" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan QR Code" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ਕੋਡ ਸਕੈਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanuj kod QR" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د QR کوډ اسکن کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ler Código QR" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificar QR Code" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scanează cod QR" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканировать QR-код" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj QR Kod" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR කේතය පරිලෝකනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenovať QR kód" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj QR kodo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanoni Kodin QR" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скенирај QR код" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj QR kod" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanna QR-kod" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Changanua Msimbo wa QR" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR கோடினை ஸ்கான் செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR కోడ్‌ని స్కాన్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สแกน QR โค้ด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR Kodunu Tara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканувати QR-код" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR کوڈ اسکین کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR kodni skanerlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quét mã QR" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skani i-Khowudi ye-QR" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "扫描二维码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "掃描 QR 圖碼" + } + } + } + }, + "qrView" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyk QR" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرض QR" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-ı göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR دیکھیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказаць QR" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед на QR" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR দেখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra el codi QR" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit QR" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gweld QR" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis QR" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προβολή QR" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View QR" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidi QR" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver QR" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver QR" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita QR-koodi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikusi QR" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش QR" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä QR-koodi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "View QR" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher le QR" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver QR" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba QR" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג QR" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR देखें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledaj QR" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-kód megtekintése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դիտել QR" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat QR" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedi QR" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "QRコードを表示" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR-ის ნახვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មើល QR" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ನೋಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR 코드 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaziniya QR" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba QR" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti QR" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parādīt QR" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед на QR" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR үзэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat QR" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ကြည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis QR" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR हेर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekijk QR" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis QR" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onani QR" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ਵੇਖੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobacz kod QR" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR وګورئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver QR" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver QR" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vizualizare QR" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Посмотреть QR" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži QR" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR දැක්ම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť QR" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogled QR" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiko QR" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Погледај КР код" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled QR" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa QR" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tazama QR" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "க்யுஆர் காண்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR చూడండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดู QR." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR'ı Görüntüle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показати QR" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیو آر دیکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR ko‘rish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem mã QR" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jonga QR" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "查看二维码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檢視 QR" + } + } + } + }, + "qrYoursDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vriende kan jou 'n boodskap stuur deur jou QR-kode te skandeer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يمكن للأصدقاء إرسال رسائل إليك عن طريق مسح رمز QR الخاص بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostlarınız QR kodunuzu skan edərək sizə mesaj göndərə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوستءَ توکنت میسچ بہ اسکین کتن ءِ اے QR کُد." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сябры могуць дасылаць вам паведамленні, скануючы ваш QR-код." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приятелите могат да ви изпратят съобщение чрез сканиране на вашия QR код." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বন্ধুর QR কোড স্ক্যান করে তারা আপনাকে মেসেজ পাঠাতে পারবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Els amics poden enviar-te missatges escanejant el teu codi QR." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přátelé vám mohou poslat zprávu naskenováním vašeho QR kódu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gall cyfeillion anfon neges atoch drwy sganio eich cod QR." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venner kan sende beskeder til dig ved at scanne din QR-kode." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freunde können dir Nachrichten senden, indem sie deinen QR-Code scannen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Οι φίλοι μπορούν να σας στείλουν μήνυμα σκανάροντας τον QR κωδικό σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Friends can message you by scanning your QR code." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amikoj povas mesaĝi vin per skanado de via QR-kodo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tus amigos pueden enviarte mensajes escaneando tu código QR." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tus amigos pueden enviarte mensajes escaneando tu código QR." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõbrad saavad sulle sõnumeid saata, skaneerides sinu QR-koodi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagunek zure QR kodea eskaneatuz mezua bidal diezaiekete." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوستان می‌توانند با اسکن کد QR شما به شما پیام بدهند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ystävät voivat lähettää sinulle viestejä skannaamalla QR-koodisi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Puwedeng magpadala ng mensahe ang mga kaibigan mo sa pamamagitan ng pag-scan sa iyong QR code." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vos amis peuvent vous envoyer des messages en scannant votre code QR." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "As amizades poden enviarche mensaxes escaneando o teu código QR." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abokai na iya aikawa da ku saƙon ta hanyar duba lambar QR ɗin ku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חברים יכולים לשלוח לך הודעות על ידי סריקת קוד QR שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "दोस्त आपके QR कोड को स्कैन करके आपको संदेश भेज सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijatelji vam mogu slati poruke skeniranjem vašeg QR koda." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Az ismerőseid üzenetet küldhetnek neked a QR-kódod beolvasásával." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընկերները կարող են հաղորդագրություններ ուղարկել ձեզ՝ սկանավորելով ձեր QR կոդը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teman dapat mengirimi Anda pesan dengan memindai kode QR Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gli amici possono inviarti messaggi scansionando il tuo codice QR." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მეგობრებმა შეგიძლიათ გაგონოთ თქვენ QR კოდის სკანირებით." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិត្តភក្តិអាចផ្ញើសារមកអ្នកដោយស្កេនកូដ QR របស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಸ್ನೇಹಿತರು ನಿಮ್ಮ QR ಕೋಡ್ ಸ್ಕ್ಯಾನ್ ಮಾಡುವ ಮೂಲಕ ನಿಮ್ಮನ್ನು ಸಂದೇಶವನ್ನು ಕಳುಹಿಸಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구들은 QR 코드를 스캔하여 메시지를 보낼 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hevalên te dikarin bi QR Code ya te nîşan bidin û mesajê bişînin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "B’emikwano basobola okukuweereza obubaka nga bakozesa QR code yo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draugai gali jums rašyti nuskenavę jūsų QR kodą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Draugi var sūtīt ziņojumus, skenējot jūsu QR kodu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пријателите можат да ви испратат порака со скенирање на вашиот QR код." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзууд таны QR кодыг сканнердахаар танд мессеж илгээж чадна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rakan boleh menghantar mesej kepada anda dengan mengimbas kod QR anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သူငယ်ချင်းများသည် သင့်၏ QR ကုဒ်အားစကန်ဖတ်ခြင်းအားဖြင့်သင့်နှင့်ပွောဆိုနိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venner kan sende deg meldinger ved å skanne din QR-kode." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "समूह प्रदर्शन तस्वीर अद्यावधिक गरियो।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrienden kunnen je een bericht sturen door je QR-code te scannen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venner kan senda melding til deg ved å skanna QR-koden din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzanu akhoza kukuthandizani mwa kujambula QR code yanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦੋਸਤ ਤੁਹਾਡੇ QR ਕੋਡ ਨੂੰ ਸਕੈਨ ਕਰਕੇ ਤੁਹਾਨੂੰ ਸੁਨੇਹਾ ਭੇਜ ਸਕਦੇ ਹਨ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znajomi mogą wysyłać ci wiadomości, skanując twój kod QR." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملګري کولی شي ستاسو QR کوډ سکین کولو سره تاسو ته پیغام وکړي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amigos podem enviar mensagens para você escaneando seu código QR." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amigos podem enviar-lhe mensagens ao verificar o seu código QR." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prietenii îți pot trimite mesaje scanând codul QR." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Друзья могут отправить вам сообщение, отсканировав ваш QR-код." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijatelji ti mogu poslati poruku skeniranjem tvog QR koda." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මිතුරන්ට ඔබගේ QR කේතය පරිලෝකනය කිරීමෙන් ඔබට පණිවිඩ යැවිය හැකිය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priatelia vám môžu poslať správu naskenovaním vášho QR kódu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijatelji vam lahko pošljejo sporočilo, če skenirajo vašo QR kodo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shokët mund të ju dërgojnë mesazh duke skanuar kodin tuaj QR." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пријатељи могу да вам пошаљу поруку скенирањем вашег QR кода." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijatelji vam mogu poslati poruku skeniranjem vašeg QR koda." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänner kan skicka meddelanden till dig genom att skanna din QR-kod." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marafiki wanaweza kukutumia ujumbe kwa kuskani QR yako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்களின் QR குறியீட்டை ஸ்கேன் செய்து நண்பர்கள் உங்களுடன் உரையாடலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ QR కోడ్‌ను స్కాన్ చేయడం ద్వారా మిత్రులు మీకు సందేశం పంపవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เพื่อนสามารถส่งข้อความถึงคุณได้โดยการสแกน QR โค้ดของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arkadaşlarınız, QR kodunuzu tarayarak size mesaj gönderebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Друзі можуть надіслати вам повідомлення, відсканувавши ваш QR-код." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوست آپ کا QR کوڈ سکین کر کے آپ کو پیغام بھیج سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do‘stlar QR kodingizni skanerlash orqali sizga xabar yuborishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn bè có thể nhắn tin cho bạn bằng cách quét mã QR của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abahlobo bangakuthumela umyalezo ngokuskena i-QR code yakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "他人可通过扫描您的二维码向您发送消息。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "好友可以通過掃描您的QR碼來給您發消息。" + } + } + } + }, + "quit" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat {app_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انهاء {app_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} tətbiqindən çıx" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند ک {app_name}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выйсці {app_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изход от {app_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} কুইট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Surt de {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončit {app_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afslut {app_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} beenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλείσιμο {app_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quit {app_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliri {app_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salir de {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salir de {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lõpeta {app_name}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irten {app_name}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خروج از {app_name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lopeta {app_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umalis sa {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quitter {app_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saír de {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fita daga cikin {app_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צא מ-{app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} छोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prekini {app_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés a {app_name}-ből" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել {app_name}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quit {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esci da {app_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} を終了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დატოვება {app_name}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាកចេញពី {app_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನಿರ್ಗಮಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 종료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rake {app_name}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggweevvako {app_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeiti iš {app_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iziet {app_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напушти {app_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-аас гарах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keluar dari {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုထွက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt {app_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} बन्द गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} afsluiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt {app_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulukani pa {app_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਛੱਡੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyjdź z aplikacji {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} وتړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair de {app_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair do {app_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieșire {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выйти из {app_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izlaz iz {app_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} නවත්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončiť {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izhod iz {app_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dil nga {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусти {app_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izađi iz {app_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avsluta {app_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acha {app_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} க்கு விட்டு வெளியேறு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ను ముగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออกจาก {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}'i Kapat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вийти з {app_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} سے خروج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} dan chiqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thoát {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phuma {app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "退出{app_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "退出 {app_name}" + } + } + } + }, + "quitButton" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verlaat" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انهاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çıx" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بند ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выйсці" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изход" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কুইট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Surt" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gadael" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afslut" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κλείσιμο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quit" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliri" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lõpeta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irten" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خروج" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lopeta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umalis" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quitter" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saír" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fita" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "צא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prekini" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kilépés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ջնջել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quit" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esci" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "終了" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გათიშვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាកចេញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿರ್ಗಮಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "종료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rake" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggweevvako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išeiti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iziet" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напушти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гарах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keluar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထွက်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छोड्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afsluiten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avslutt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulukani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਛੱਡੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyjdź" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ختمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sair" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieșire" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выйти" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izlaz" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නවත්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukončiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izhod" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dil" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Напусти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izađi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avsluta" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விட்டுவிடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ముగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çık" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вийти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "خروج" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chiqish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thoát" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phuma" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "退出" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "退出" + } + } + } + }, + "read" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lees" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قراءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxundu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خواند" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прачытана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочетено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়া" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llegit" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přečteno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Darllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Læst" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gelesen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ανάγνωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Read" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leído" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leído" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loetud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurrita" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خوانده‌شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Luettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Basahin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lida" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Karanta" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקרא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढ़ें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročitano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elolvasva" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կարդալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "読む" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაკითხულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಓದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xwendin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kisomebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perskaityta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izlasīts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочитано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уншсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baca" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ထားသော" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lest" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढिएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gelezen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lese" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Werenga" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੜ੍ਹਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przeczytano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوستل شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lida" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Citit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочитано" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročitaj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවා ඇත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prečítané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prebral(-a)" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U lexua" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочитај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročitano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Läst" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదవండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "อ่านแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okundu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прочитано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'qilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fundiwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已读" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已讀" + } + } + } + }, + "readReceipts" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lees kwitansies" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إيصالات القراءة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oxundu bildirişləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "خواند بیٌہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прагляд справаздач" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потвърждения за прочитане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পড়ার রশিদ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmacions de Lectura" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrzení o přečtení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Derbynebau Darllen" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Læsekvitteringer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lesebestätigungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναφορές Ανάγνωσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Read Receipts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Legokonfirmoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmaciones de lectura" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmaciones de lectura" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lugemiskinnitused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Irakurketa Berrespenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رسید خوانده‌شدن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lukukuittaukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Resibo ng Pagbasa" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accusés de lecture" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmacións de lectura" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Takardun Karantawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אישורי קריאה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठित स्थिति प्रमाणपत्र" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrda o čitanju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olvasási visszaigazolás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընթերցման անդորրագրեր" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laporan Terbaca" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conferme di lettura" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "既読通知" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაკითხვის ქვითრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នកទទួលដែលបានអានសាររួច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಠಿತ ರಸೀದಿಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "읽음 표시" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahiyên Xwendinê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amagezi g'okuba omulongo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai apie žinučių skaitymą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izlasīšanas apstiprinājumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврди за прочитување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унших баримт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resit Bacaan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖတ်ပြီးသော ပြေစာများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lesekvitteringer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पढिएको रसिदहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leesbevestigingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lesekvitteringar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zolowetsa Werengedwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਿਆਂ ਦੀਪੜ੍ਹਾਈ ਦੀ ਸਵੀਕ੍ਰਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potwierdzenia przeczytania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لوستې شوې رسید رسیدونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmações de Leitura" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibos de Leitura" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confirmări de citire" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления о прочтении" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrde čitanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කියවූ බවට ලදුපත්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potvrdenia o prečítaní" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrdila o branju" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dëftesa leximi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврде читања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pročitano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Läskvitton" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stakabadhi za Kusoma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வாசிப்பு ரசீதுகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చదివిన రసీదులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แจ้งการอ่านข้อความ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okundu Bilgileri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Звіти про перегляд" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پڑھنے کے رسیدیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cheklarni o'qish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biên lai đã đọc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iindawo Zokufunda" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已读回执" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已讀回條" + } + } + } + }, + "readReceiptsDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wys lees kwitasies vir alle boodskappe wat jy stuur en ontvang." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إظهار إيصالات القراءة لجميع الرسائل التي ترسلها وتستلمها." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərdiyiniz və aldığınız bütün mesajlar üçün oxundu bildirişini göstər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دامانی پیاماں کشت و دریافت توان نمایاں بــــی ننگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказваць квітанцыі аб прачытанні для ўсіх адпраўленых і атрыманых паведамленняў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показване на разписки за четене за всички съобщения, които изпращате и получавате." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি যে সমস্ত বার্তা পাঠান এবং গ্রহণ করেন তার জন্য পড়ার রসিদ দেখান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostreu les confirmacions de lectura per a tots els missatges que envieu i rebeu." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit potvrzení o přečtení pro všechny zprávy, které posíláte a přijímáte." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos derbyniadau darllen ar gyfer yr holl negeseuon rydych chi'n eu hanfon a'u derbyn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis læsekvitteringer for alle beskeder du sender og modtager." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeige Lesebestätigungen für alle Nachrichten, die du sendest und erhältst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δείξε αναφορές ανάγνωσης για όλα τα μηνύματα που στέλνετε και λαμβάνετε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show read receipts for all messages you send and receive." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri legitajn kvitancojn por ĉiuj mesaĝoj, kiujn vi sendas kaj ricevas." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar confirmaciones de lectura para todos los mensajes que envíes y recibas." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar confirmaciones de lectura para todos los mensajes que envías y recibes." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita loetud kviitungeid kõigi saadetud ja saadud sõnumite puhul." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi irakurketa-berrespenak bidaltzen eta jasotzen dituzun mezu guztietan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش رسید خواندن برای تمام پیام‌های ارسالی و دریافتی." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä lukukuittaukset kaikille lähettämillesi ja vastaanottamillesi viestille." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipakita ang mga resibo ng basa para sa lahat ng mga mensaheng iyong ipinapadala at natatanggap." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher les accusés de réception pour tous les messages que vous envoyez et recevez." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar confirmacións de lectura para todas as mensaxes que envíes e recibas." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuna takaddun karatu don duk saƙonnin da kuka aika kuma kuka karɓa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג אישורי קריאה לכל ההודעות שאתה שולח ומקבל." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके द्वारा भेजे और प्राप्त किए गए सभी संदेशों के लिए पढ़ने की रसीदें दिखाएं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži potvrde o čitanju za sve poruke koje pošaljete i primite." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olvasottsági visszajelzések megjelenítése az összes elküldött és fogadott üzenethez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրել ընթերցման ակնարկներ բոլոր հաղորդագրությունների համար, որոնք ուղարկում եք եւ ստանում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan tanda terima baca untuk semua pesan yang Anda kirim dan terima." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra le conferme di lettura per tutti i messaggi inviati e ricevuti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信したすべてのメッセージに対する既読通知を表示します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პრევიუების ჩვენება, რომლებიც მიიღებენ და გაგზავნიან ყველა შეტყობინებას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញការទទួលសារសម្រាប់សារទាំងអស់ដែលអ្នកផ្ញើរនិងទទួលបាន។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಕಳುಹಿಸುವ ಮತ್ತು ಸ್ವೀಕರಿಸುವ ಎಲ್ಲಾ ಸಂದೇಶಗಳಿಗೆ ಓದುವ ರಸೀದಿಗಳನ್ನು ತೋರಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보낸 모든 메시지와 받는 모든 메시지에 읽음 확인을 표시합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji van peyamên ku hûn dişînin û diqewmînin re nûbarên xwendinê nîşan bide." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laga aabubaka bwonna bwe watadde ne bwe wefunidde." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti perskaitymo žymėjimus visoms išsiųstoms ir gautoms žinutėms." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rādīt lasīšanas apliecinājumus visām ziņām, kuras tu sūti un saņem." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи потврди за читање за сите пораки што ги испраќаш и примаш." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны илгээх болон хүлээн авах бүх мессежүүдийн уншлагын бичлэгийг харуулна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tunjukkan resit baca untuk semua mesej yang anda hantar dan terima." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်ပေးပို့ထားသော/လက်ခံထားသောမက်ဆေ့ခ်ျများအတွက် ဖတ်ပြီးဆိုရယူပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis lesebekreftelser for alle meldinger du sender og mottar." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले पठाएका र प्राप्त गरेका सबै सन्देशहरूका लागि पढ्ने रसिदहरू देखाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toon leesbevestigingen voor alle berichten die je verstuurt en ontvangt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis lesekvitteringar for alle meldingane du sender og mottar." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show read receipts for all messages you send and receive." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਰੇ ਸੁਨੇਹੇ ਲਈ ਪੜ੍ਹਿਆ ਰਸੀਦਾਂ ਦਿਖਾਓ ਜਿੰਨਾ ਨੂੰ ਤੁਸੀਂ ਭੇਜਦੇ ਹੋ ਤੇ ਪ੍ਰਾਪਤ ਕਰਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokaż potwierdzenia odczytu dla wszystkich wysłanych i odebranych wiadomości." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټولو پیغامونو لپاره څخه وړلو او ترلاسه کولو خبرتیاوې وښايئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar recibos de leitura para todas as mensagens que você enviar e receber." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exibir confirmações de leitura para todas as mensagens que você enviar e receber." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează confirmările de citire pentru toate mesajele trimise și primite." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показывать квитанции о прочтении для всех отправляемых и получаемых сообщений." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži potvrde čitanja za sve poruke koje pošaljete i primite." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ යැවූ සියලුම පණිවුඩ සඳහා කියවීමේ පථයක් පෙන්වන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukázať potvrdenia o prečítaní pre všetky správy, ktoré odošlete a prijmete." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži potrdila o branju za vsa sporočila, ki jih pošljete in prejmete." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaqi njoftimet e leximit për të gjitha mesazhet që dërgoni dhe merrni." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи потврде о читању за све поруке које пошаљеш и примиш." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži potvrde o čitanju za sve poruke koje pošaljete i primite." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa läskvitton för alla meddelanden du skickar och tar emot." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha risiti za kusoma kwa ujumbe wote unaotuma na kupokea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் அனுப்பும் மற்றும் பெறும் அனைத்து செய்திகளுக்கும் வாசிப்பு அளவுகளை காண்பிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు పంపే మరియు అందుకునే అన్ని సందేశాల కోసం చదివిన అందులు చూపించు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงสถานะการเปิดอ่านสำหรับทุกข้อความที่คุณส่งและรับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderdiğiniz ve aldığınız tüm mesajlar için okundu bilgilerini göster." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показувати підтвердження прочитання для всіх повідомлень, які ви відправляєте та отримуєте." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے بھیجے اور وصول کردہ تمام پیغامات کے لیے ریڈ رسیدیں دکھائیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuborgan va olgan barcha xabarlaringiz uchun o'qilganingizni ko'rsating." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị biên nhận đã đọc cho tất cả tin nhắn bạn gửi và nhận." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show read receipts for all messages you send and receive." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "显示您发送和接收的所有消息的已读回执。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示您傳送和接收的所有訊息的已讀回執。" + } + } + } + }, + "received" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ontvang:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "استلمت:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alındı:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملاح:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Атрымана:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получено:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গৃহীত:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rebut:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přijato:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Derbyniwyd:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Modtaget:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangen:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρελήφθη:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Received:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ricevita:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibido:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibido:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saadud:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jasotakoak:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دریافت شد:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastaanotettu:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Natanggap:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reçu :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recibida:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An karɓa:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התקבל:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्राप्त किया:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primljeno:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Érkezett:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ստացված է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diterima:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ricevuto:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "受信:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მიღებული:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានទទួល:" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ವೀಕರಿಸಲಾಗಿದೆ:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "수신됨:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hatiye wergirtin:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuweebwa:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gauta:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saņemts:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примено:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хүлээн авсан:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diterima:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "လက်ခံရရှိထားသည်:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mottatt:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्राप्त भएको:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ontvangen:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Motteke:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalandilidwa:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਾਪਤ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otrzymano:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترلاسه شوی:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recebido:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recebida:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primit:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получено:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primljeno:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ලැබී ඇත:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prijaté:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prejeto:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrë më:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Примљена:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primljena:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mottaget:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imepokelewa:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பெறப்பட்டது:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అందుకున్న:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ได้รับแล้ว:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alındı:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отримано:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "موصول ہوا:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qabul qilingan:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã nhận:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ifunyenwe:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已接收:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "接收於:" + } + } + } + }, + "recommended" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanbeveel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مستحسن" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tövsiyə edilən" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تجویزین" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рэкамендавана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Препоръчително" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সুপারিশকৃত" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomanat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doporučeno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Argymhellir" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anbefalet" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfohlen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προτείνεται" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recommended" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekomendate" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomendado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomendado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soovituslik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gomendatua" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "توصیه شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suositeltu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inirerekomenda" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recommandé" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomendado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An ba da shawarar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מומלץ" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संस्तुत" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preporučeno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajánlott" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "[Խորհուրդ է տրվում]" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Direkomendasikan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Consigliato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "オススメ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გირჩევთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដែលបានណែនាំ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಶಿಫಾರಸು ಮಾಡಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "권장" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pêşniyar" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebirungi Ddala" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekomenduojama" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieteicamais" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Препорачано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвлөмж болгож байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disyorkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကြံပြုထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anbefalt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिफारिस गरिएको" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aanbevolen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anbefalt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zovomerezeka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਫਾਰਸ਼ ਕੀਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalecane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سپارښتنه شوې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomendado" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomendado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recomandat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рекомендуется" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preporučeno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිර්දේශිතයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odporúčané" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Priporočeno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekomandohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Препоручено" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preporučeno" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rekommenderat" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imependekezwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பரிந்துரைக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సిఫారసు చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แนะนำ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Önerilen" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рекомендовано" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تجویز کردہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tavsiya etilgan" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuyến nghị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okucetyiswayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "推荐选项" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "建議" + } + } + } + }, + "recoveryPasswordBannerDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor jou herstel wagwoord om seker te maak dat jy nie toegang tot jou rekening verloor nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "احفظ كلمة مرور الاسترداد الخاصة بك للتأكد من أنك لن تفقد الوصول إلى حسابك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınıza müraciəti itirməmək üçün geri qaytarma parolunuzu saxlayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آسائی کوڈا بلوچ ات سیمپان کرین تاکہ توں اپنے اکائونٹ تے دسترسی نہ گنیشھین." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захавайце свой Recovery password, каб пераканацца, што вы не страціце доступ да свайго акаўнта." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазете вашата парола за възстановяване, за да се уверите, че няма да загубите достъп до вашия акаунт." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার Recovery password সংরক্ষণ করুন যাতে আপনি আপনার অ্যাকাউন্ট অ্যাক্সেস না হারান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desa la teva contrasenya de recuperació per assegurar-te de no perdre accés al teu compte." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložte si heslo pro obnovení, abyste zajistili, že neztratíte přístup k účtu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadwch eich cyfrinair adfer i wneud yn siŵr nad ydych yn colli mynediad i'ch cyfrif." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gem din recovery password for at sikre, at du ikke mister adgangen til din konto." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speichere dein Wiederherstellungspasswort, damit du den Zugriff auf deinen Account nicht verlierst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκεύστε τον κωδικό σας ανάκτησης για να βεβαιωθείτε ότι δεν θα χάσετε την πρόσβαση στον λογαριασμό σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password to make sure you don't lose access to your account." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservu vian riparan pasvorton por certigi, ke vi ne perdu aliron al via konto." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde su clave de recuperación para asegurarse de no perder acceso a su cuenta." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde su clave de recuperación para asegurarse de que no perderá acceso a su cuenta." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvesta oma taastamisparool, et vältida oma konto juurdepääsu kaotamist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorde zure Recovery Password kontura sartzean arazoak ekiditeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور بازیابی خود را ذخیره کنید تا مطمئن شوید دسترسی به حساب کاربری خود را از دست ندهید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallenna palautussalasanasi varmistaaksesi, ettet menetä pääsyä tilillesi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password to make sure you don't lose access to your account." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrez votre mot de passe de récupération pour vous assurer de ne pas perdre l'accès à votre compte." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garda o teu recovery password para asegurarte de que non perdas o acceso á túa conta." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajiye kalmar sirrin dawo da asusunka don tabbatar da cewa ba za ka rasa damar shiga asusunka ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור את סיסמת השחזור שלך כדי לוודא שלא תאבד גישה לחשבונך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना रिकवरी पासवर्ड सहेजें ताकि आप अपने खाते तक पहुँच न खोएं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi svoju lozinku za oporavak kako bi osigurao da ne izgubiš pristup svom računu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentsd el a visszaállítási jelszavad, hogy biztosan ne veszítsd el a hozzáférést a fiókodhoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանեք ձեր վերականգնման գաղտնաբառը, որպեսզի չկորցնեք մուտքը ձեր հաշվին։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan kata sandi pemulihan Anda untuk memastikan Anda tidak kehilangan akses ke akun Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salva la tua password di recupero per assicurarti di non perdere l'accesso al tuo account." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリーパスワードを保存して、お使いのアカウントにアクセスできなくなることがないようにしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეინახე შენი recovery password, რათა დარწმუნდე, რომ არ დაკარგავ ანგარიშზე წვდომას." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុក recovery password របស់អ្នក ដើម្បីដឹងថាអ្នកនឹងមិនបាត់បង់សិទ្ធិចូលទៅក្នុងគណនីរបស់អ្នកឡើយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆಗೆ ಪ್ರವೇಶ ಆಟ ಬಿಡುಗೆಯನ್ನು ತಪ್ಪಿಸಲು ನಿಮ್ಮ ಪುನಃಪ್ರಾಪ್ತಿ ಪಾಸ್ವರ್ಡ್‌ ಅನ್ನು ಉಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정에 접근 권한을 잃지 않도록 회복 비밀번호를 저장하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji bo piştrastkirina ku hûn nikaribin hesabê xwe winda bikin, şîfreya vegerê xwe qeyd bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuuma Recovery password yo okukakasa nti toyinza kufiirwa akaunti yo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašykite jūsų atkūrimo slaptažodį, kad įsitikintumėte, jog neprarandate prieigos prie savo paskyros." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabājiet savu atjaunošanas paroli, lai nodrošinātu, ka nezaudējat piekļuvi savam kontam." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувај ја твојата лозинка за враќање за да осигураш дека нема да изгубиш пристап до твојата сметка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны данстай нэвтрэх эрхийг алдгүй байхын тулд нууц үгээ хадгалаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan kata laluan pemulihan anda untuk memastikan anda tidak kehilangan akses kepada akaun anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကောင့်အသုံးပြုခွင့် ပျောက်သွားခြင်းမရှိစေရန် သင့်ပြန်လည်ပေးမည့်စကားဝှက်ကို သိမ်းဆည်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre ditt gjenopprettingspassord for å sikre at du ikke mister tilgang til kontoen din." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले आफ्नो खातामा पहुँच नखोलेको सुनिश्चित गर्नको लागि तपाईंको पुनःस्थापना पासवर्ड बचत गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sla je herstelwachtwoord op zodat je zeker weet dat je geen toegang tot je account verliest." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre ditt Recovery password for å sikre at du ikkje mistar tilgangen til kontoen din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password to make sure you don't lose access to your account." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪੁਸ਼ਟੀ ਕਰੋ ਕਿ ਤੁਸੀਂ ਆਪਣਾ ਖਾਤਾ ਨਾ ਗੁਾ ਬੈਠੋ, ਆਪਣਾ Recovery password ਸੰਭਾਲ ਲਓ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisz hasło odzyskiwania, aby mieć pewność, że nie utracisz dostępu do konta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل د بیا رغونې شفر وساتئ ترڅو ډاډ ترلاسه کړئ چې تاسو خپل حساب ته لاسرسی له لاسه نه ورکوئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salve sua senha de recuperação para garantir que você não perca o acesso à sua conta." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde a sua chave de recuperação para garantir que não perde o acesso à sua conta." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvați parola de recuperare pentru a vă asigura că nu pierdeți accesul la contul dumneavoastră." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохраните ваш пароль восстановления, чтобы не потерять доступ к вашему аккаунту." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi svoju Recovery password kako bi osigurao da ne izgubiš pristup svom nalogu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ ප්‍රතිසාධන මුරපදය සුරකින්නට විශ්වාසවන්තව ඔබගේ ගිණුමට ප්‍රවේශය නැති නොවීමට." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložte si svoju frázu pre obnovenie, aby ste predišli strate prístupu k svojmu účtu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shrani svoje obnovitveno geslo, da zagotoviš, da ne izgubiš dostopa do svojega računa." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruaje fjalëkalimin e rikuperimit për t'u siguruar që të mos humbasësh qasjen në llogarinë tënde." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувај своју Recovery Password како би осигурао да не изгубиш приступ свом налогу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvajte svoju recovery password da se osigurate da ne izgubite pristup svom nalogu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spara ditt återställningslösenord så att du inte förlorar tillgången till ditt konto." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhi neno lako la siri la urejesho kuhakikisha hupotezi ufikiaji wa akaunti yako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் Recovery Password-ஐ சேமிக்கவும், உங்களை உங்கள் கணக்கில் இருந்து இழக்காமல் இருக்க உறுதி செய்யவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఖాతాకి ప్రాప్యత కోల్పోకుండా ఉండాలంటే మీ రికవరీ పాస్‌వర్డ్‌ను భద్రపరచండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกรหัสผ่านการกู้คืนของคุณเพื่อให้แน่ใจว่าคุณจะไม่สูญเสียการเข้าถึงบัญชีของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınıza erişimi kaybetmemek için kurtarma şifrenizi kaydedin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збережіть свій пароль для відновлення, щоб не втратити доступ до свого облікового запису." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے Recovery password کو محفوظ کریں تاکہ آپ اپنے اکاؤنٹ تک رسائی نہ کھو بیٹھیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisobingizga kirishni yo'qotmaslik uchun qayta tiklash parolingizni saqlang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lưu mật khẩu phục hồi của bạn để đảm bảo bạn không mất quyền truy cập vào tài khoản của mình." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina iphasiwedi yakho yokubuyisela ukuze uqiniseke ukuba awulahlekelwa ukufikelela kwi-akhawunti yakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存您的恢复密码以确保您不会失去对账户的访问权限。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存您的恢復密碼以防帳號丟失" + } + } + } + }, + "recoveryPasswordBannerTitle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor jou herstel wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "احفظ كلمة مرور الاسترداد الخاصة بك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzu saxlayın" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "آسائی کوڈا بلوچ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захавайце свой Recovery password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазете вашата парола за възстановяване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার Recovery password সংরক্ষণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desa la teva contrasenya de recuperació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložte si heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadwch eich cyfrinair adfer" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gem din recovery password" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speichere dein Wiederherstellungspasswort" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκεύστε τον κωδικό σας ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservu vian riparan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde su clave de recuperación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde su clave de recuperación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvesta oma taastamisparool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorde zure Recovery Password" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور بازیابی خود را ذخیره کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallenna palautussalasanasi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrer votre mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Garda o teu recovery password" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajiye kalmar sirrin dawo da asusunka" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור את סיסמת השחזור שלך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना रिकवरी पासवर्ड सहेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi svoju lozinku za oporavak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visszaállítási jelszó elmentése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանեք ձեր վերականգնման բառը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan kata sandi pemulihan Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salva la tua password di recupero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリーパスワードを保存してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეინახე შენი recovery password" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុកពាក្យសម្ងាត់ស្ដាររបស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪುನಃಪ್ರಾಪ್ತಿ ಪಾಸ್ವರ್ಡ್‌ ಅನ್ನು ಉಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "회복 비밀번호 저장" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya vegerê xwe qeyd bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuuma Recovery password yo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašyti jūsų atkūrimo slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabājiet savu atjaunošanas paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувај ја твојата лозинка за враќање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны нууц үгийг хадгалах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan kata laluan pemulihan anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ပြန်လည်ပေးမည့်စကားဝှက်ကို သိမ်းဆည်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre ditt gjenopprettingspassord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको पुनःस्थापना पासवर्ड बचत गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sla je herstelwachtwoord op" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre ditt Recovery password" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save your recovery password" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ Recovery password ਸੰਭਾਲੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisz swoje hasło odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د بیا رغونې شفر وساتئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salve sua senha de recuperação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guarde a sua chave de recuperação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvează parola de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохраните ваш пароль восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi svoju Recovery password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ ප්‍රතිසාධන මුරපදය සුරකින්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložte si svoju frázu pre obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shrani vaše obnovitveno geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruaje fjalëkalimin e rikuperimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувај своју Recovery Password" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvajte svoju recovery password" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spara ditt återställningslösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhi neno lako la siri la urejesho" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் Recovery Password சேமிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ రికవరీ పాస్‌వర్డ్‌ను భద్రపరచండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกรหัสผ่านการกู้คืนของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma şifrenizi kaydedin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збережіть свій пароль для відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا Recovery password محفوظ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizni saqlang" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lưu mật khẩu phục hồi của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina iphasiwedi yakho yokubuyisela kwi imeyile" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存您的恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存您的恢復密碼" + } + } + } + }, + "recoveryPasswordDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruik jou herstelwagwoord om jou rekening op nuwe toestelle te laai.

Jou rekening kan nie herstel word sonder jou herstelwagwoord nie. Maak seker jy stoor dit iewers veilig en moenie dit met enigiemand deel nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "استخدم كلمة المرور لاستعادة التحميل على أجهزة جديدة.

لا يمكن استعادة الحساب بدون كلمة المرور. تأكد من تخزينها في مكان آمن وسري - ولا تشاركها مع أي أحد." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yeni cihazlara yükləmək üçün geri qaytarma parolunuzu istifadə edin.

Geri qaytarma parolunuz olmadan hesabınız geri qaytarıla bilməz. Təhlükəsiz və etibarlı yerdə saxladığınıza əmin olun və heç kəslə paylaşmayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے اکاؤنٹ کو نئے ڈیوائس پر لوڈ کرنے کے لئے اپنا ریکوری پاس ورڈ استعمال کریں۔

آپ کا اکاؤنٹ آپ کے ریکوری پاس ورڈ کے بغیر بازیافت نہیں کیا جا سکتا۔ اسے محفوظ اور محفوظ جگہ پر ذخیرہ کرنا یقینی بنائیں — اور اسے کسی کے ساتھ شیئر نہ کریں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выкарыстоўвайце свой пароль для аднаўлення, каб загрузіць свой уліковы запіс на новых прыладах.

Ваш уліковы запіс не можа быць адноўлены без вашага пароля для аднаўлення. Захоўвайце яго ў бяспечным і надзейным месцы — і не дзяліце з нікога." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Използвайте вашата парола за възстановяване, за да заредите акаунта си на нови устройства.

Вашият акаунт не може да бъде възстановен без вашата парола за възстановяване. Уверете се, че е съхранена някъде на сигурно място — и не я споделяйте с никого." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নতুন ডিভাইসে আপনার অ্যাকাউন্ট লোড করতে আপনার রিকভারি পাসওয়ার্ড ব্যবহার করুন।

আপনার রিকভারি পাসওয়ার্ড ছাড়া আপনার অ্যাকাউন্ট পুনরুদ্ধার করা যাবে না। নিশ্চিত করুন এটি নিরাপদ এবং সুরক্ষিত জায়গায় সংরক্ষণ করা হয়েছে এবং এটি কারও সাথে শেয়ার করবেন না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilitza la teva contrasenya de recuperació per carregar el teu compte en nous dispositius.

No es pot recuperar el teu compte sense la teva contrasenya de recuperació. Assegura't que està emmagatzemada en un lloc segur i no la comparteixis amb ningú." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Použijte své heslo pro obnovení pro načtení účtu na nových zařízeních.

Bez hesla pro obnovení nelze obnovit účet. Ujistěte se, že je uložené na bezpečném místě – a nesdílejte ho s nikým." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defnyddiwch eich chyfrinair adfer i lwytho eich cyfrif ar ddyfeisiau newydd.

Ni ellir adfer eich cyfrif heb eich cyfrinair adfer. Sicrhewch ei fod yn cael ei storio yn rhywle diogel - ac na fyddwch yn ei rannu ag unrhyw un." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brug din recovery password til at indlæse din konto på nye enheder.

Din konto kan ikke gendannes uden din recovery password. Sørg for, at den er opbevaret et sikkert sted, og del den ikke med nogen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwende dein Wiederherstellungspasswort, um deinen Account auf neuen Geräten zu laden.

Dein Account kann ohne dein Wiederherstellungspasswort nicht wiederhergestellt werden. Stelle sicher, dass es an einem sicheren Ort aufbewahrt ist – und teile es niemandem mit." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χρησιμοποιήστε τον κωδικό ανάκτησης για να φορτώσετε τον λογαριασμό σας σε νέες συσκευές.

Ο λογαριασμός σας δεν μπορεί να ανακτηθεί χωρίς τον κωδικό ανάκτησης. Βεβαιωθείτε ότι τον αποθηκεύσατε σε ασφαλές μέρος — και μην τον μοιραστείτε με κανέναν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use your recovery password to load your account on new devices.

Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzu vian recuđer passvorton por ŝarĝi vian konton sur novaj aparatoj.

Via konto ne povas esti rekuperita sen via recuđer passvorto. Certigu, ke ĝi estas stokita ien sekura kaj ne dividas ĝin kun iu ajn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilice su contraseña de recuperación para cargar su cuenta en nuevos dispositivos.

Su cuenta no se puede recuperar sin su contraseña de recuperación. Asegúrese de guardarla en un lugar seguro — y no la comparta con nadie." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usa tu contraseña de recuperación para cargar tu cuenta en nuevos dispositivos.

Tu cuenta no se puede recuperar sin tu contraseña de recuperación. Asegúrate de que esté guardada en un lugar seguro y no la compartas con nadie." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto laadimiseks kasutage oma taastamissalasõna uutes seadmetes.

Teie kontot ei saa taastada ilma taastamissalasõnata. Veenduge, et see oleks turvaliselt salvestatud ja ärge jagage seda kellelegi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabili zure berreskurapen pasahitza zure kontua kargatzeko gailu berrietan.

Zure kontua ezin da berreskuratu berreskurapen pasahitzik gabe. Ziurtatu leku seguru batean gordeta dagoela eta ez partekatu inorekin." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از گذرواژه بازیابی خود برای بارگذاری حساب کاربری خود در دستگاه‌های جدید استفاده کنید.

حساب شما بدون گذرواژه بازیابی‌تان بازیابی نخواهد شد. مطمئن شوید که آن را در مکانی امن ذخیره کرده‌اید و با کسی به اشتراک نگذارید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käytä palautussalasanaa ladataksesi tilisi uusiin laitteisiin.

Tiliäsi ei voida palauttaa ilman palautussalasanaa. Varmista, että se on tallennettu turvallisesti ja älä jaa sitä kenellekään." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use your recovery password to load your account on new devices.

Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilisez votre mot de passe de récupération pour charger votre compte sur de nouveaux appareils.

Votre compte ne peut pas être récupéré sans votre mot de passe de récupération. Assurez-vous qu'il soit stocké en lieu sûr et sécurisé - et ne le partagez avec personne." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use your recovery password para cargar a túa conta en novos dispositivos.

A túa conta non se pode recuperar sen a túa recovery password. Asegúrate de que estea gardada nalgún lugar seguro e non a compartas con ninguén." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yi amfani da kalmar wucewa ta dawo da asusun naka a kan sabbin na'urori.

Ba za a iya dawo da asusunku ba tare da kalmar wucewarku ta dawo ba. Tabbatar an adana ta wani wuri mai tsaro kuma kada ku raba ta da kowa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השתמש בסיסמת שחזור שלך לטעינת חשבונך על מכשירים חדשים.

לא ניתן לשחזר שלך חשבון ללא סיסמת השחזור שלך. ודא שהיא שמורה במקום בטוח ומאובטח - אל תשתף אותה עם אחרים." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना अकाउंट नए डिवाइस पर लोड करने के लिए अपने रिकवरी पासवर्ड का उपयोग करें।

आपका अकाउंट आपके रिकवरी पासवर्ड के बिना पुनर्प्राप्त नहीं किया जा सकता है। सुनिश्चित करें कि इसे कहीं सुरक्षित रखें और इसे किसी के साथ साझा न करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristite svoju lozinku za oporavak za učitavanje računa na novim uređajima.

Vaš račun nije moguće oporaviti bez lozinke za oporavak. Osigurajte da je pohranjena na sigurnom mjestu i ne dijelite je s nikim." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A visszaállítási jelszavaddal új eszközökön is betöltheted a felhasználódat.

A felhasználód nem állítható vissza a visszaálltási jelszó nélkül. Gondoskodj róla, hogy biztonságos helyen tárolod — és ne oszd meg senkivel." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտագործեք ձեր վերականգնման գաղտնաբառը ձեր հաշիվը նոր սարքերում ներբեռնելու համար.

Ձեր հաշիվը հնարավոր չէ վերականգնել առանց վերականգնման գաղտնաբառի: Համոզվեք, որ այն պահված է անվտանգ տեղում և չկիսեք այն ուրիշների հետ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gunakan kata sandi pemulihan Anda untuk memuat akun Anda di perangkat baru.

Akun Anda tidak dapat dipulihkan tanpa kata sandi pemulihan Anda. Pastikan disimpan di tempat yang aman dan terlindungi — dan jangan bagikan kepada siapa pun." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utilizza la tua password di recupero per caricare il tuo account su nuovi dispositivi.

Il tuo account non può essere ripristinato senza la tua password di recupero. Assicurati di conservarla in un luogo sicuro, riservato e di non condividerla con nessuno." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリパスワードを使用して、新しいデバイスでアカウントを読み込みます。

リカバリパスワードがないとアカウントを復元できません。 安全な場所に保管し、他の人と共有しないでください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გამოიყენეთ თქვენი აღდგენის პაროლი ანგარიშის ახალი მოწყობილობებზე ჩასატვირთად.

თქვენი ანგარიში ვერ აღდგება თქვენი აღდგენის პაროლის გარეშე. დარწმუნდით, რომ ეს მრავალსაფრთილად და უსაფრთხოდ არის შენახული — და არ გააზიაროთ ეს სხვა ადამიანებთან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រើពាក្យសម្ងាត់ដើម្បីទាញយកគណនីរបស់អ្នកលើឧបករណ៍ថ្មីៗ.

គណនីរបស់អ្នកមិនអាចទាញយកកនឡើងវិញដោយគ្មាន Recovery Password។ សូមរក្សាវានៅកន្លែងសុវត្ថិភាព ហើយកុំចែករំលែកវាជាមួយនរណាម្នាក់ទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಸ ಸಾಧನಗಳಲ್ಲಿ ಲೋಡ್ ಮಾಡಲು ನಿಮ್ಮ ಪುನಃ ಸ್ವಾಸ್ತ್ಯದ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಬಳಸಿ.

ನಿಮ್ಮ ಪುನಃ ಸ್ವಾಸ್ತ್ಯದ ಪಾಸ್‌ವರ್ಡ್ ಇಲ್ಲದೆ ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಪುನಃ ಪಡೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ. ಇದು ಸುರಕ್ಷಿತವಾಗಿ ಮತ್ತು ಭದ್ರವಾಗಿ ಸಂಗ್ರಹಿಸಿರುವುದನ್ನು ಖಚಿತಪಡಿಸಿಕೊಂಡು—ಯಾರೊಂದಿಗೂ ಅದನ್ನು ಹಂಚಿಕೊಳ್ಳಬೇಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 장치에서 계정을 로드하려면 복구 비밀번호를 사용하십시오.

복구 비밀번호 없이는 계정을 복구할 수 없습니다. 안전하게 보관하고 타인과 공유하지 않도록 주의하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji bo barkirina hesabê xwe ya li ser amadekarên nû şîfreya recoverîya xwe bikar bînin.

Hesabên we ne matur nirx bikin jî. Da sûçiyên guman dikin ku ew li ciheke nehiş jî au reş bike û bi kesî re nebibe." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kozesa oba Recovery password yo okuwonya account ku kiga kya njawulo.

Account yo teyeetaagulaamu soola kusasaanya oba Recovery password yo. Kakatila nkumu kakati lwaki tekiriza musajja yenna." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naudokite savo atkūrimo slaptažodį, kad įkeltumėte savo paskyrą į naujus įrenginius.

Jūsų paskyra negali būti atkurta be jūsų atkūrimo slaptažodžio. Įsitikinkite, kad jis yra saugomas saugioje vietoje — ir nesidalinkite juo su niekuo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietojiet savu atjaunošanas paroli, lai ielādētu savu kontu jaunās ierīcēs.

Jūsu kontu nevar atjaunot bez jūsu atjaunošanas paroles. Pārliecinieties, ka tā ir uzglabāta drošā vietā — un nedalieties ar to." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користете ја вашата лозинка за враќање за да го вчитајте вашиот профил на нови уреди.

Вашиот профил не може да се поврати без вашата лозинка за враќање. Осигурајте се дека е безбедно и сигурно сочувана — и не ја споделувајте со никој." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны аккаунтыг шинэ төхөөрөмжүүдэд ачаалахын тулд сэргээх нууц үгийг ашиглана уу.

Таны аккаунтыг сэргээх нууц үггүйгээр сэргээх боломжгүй. Энэ нууц үгийг аюулгүй газар хадгалаарай – хэзээ ч хүнд бүү өгөөрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gunakan recovery password anda untuk memuatkan akaun anda pada peranti baharu.

Akaun anda tidak boleh dipulihkan tanpa recovery password anda. Pastikan ia disimpan di tempat yang selamat dan selamat — dan jangan kongsikan dengan sesiapa." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကောင့်ကို နောက်ထပ်စက်ပစ္စည်းများပေါ်တွင် တင်ရန် သင့် recovery password ကို အသုံးပြုပါ။

သင့် recovery password မရှိပဲ သင့်အကောင့်ကို ပြန်ယူ၍ မရနိုင်ပါ။ ၎င်းကို ဘေးကင်းသောနေရာတစ်ခုတွင် သိမ်းဆည်းထားပြီး သက်သေပြရန် မမျှဝေပါနှင့်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruk din Recovery password for å laste inn kontoen din på nye enheter.

Kontot kan ikke gjenopprettes uten din Recovery password. Sørg for at den er lagret et trygt og sikkert sted — og ikke del den med noen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको खाता नयाँ उपकरणहरूमा लोड गर्न आफ्नो पुनर्प्राप्ति पासवर्ड प्रयोग गर्नुहोस्।

तपाईँको खाता बिना पुनर्प्राप्ति पासवर्ड पुनः प्राप्त गर्न सकिन्न। यो सुरक्षित र सुरक्षित ठाउँमा राखिएको सुनिश्चित गर्नुहोस् - र यसलाई कसैसँग साझा नगर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruik uw herstelwachtwoord om uw account op nieuwe apparaten te laden.

Uw account kan niet worden hersteld zonder uw herstelwachtwoord. Zorg ervoor dat het ergens veilig is opgeslagen – en deel het niet met anderen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruk gjenopprettingsløsenordet ditt for å laste kontoen din på nye enheter.

Kontoen din kan ikke gjenopprettes uten gjenopprettingsløsenordet. Sørg for at det er lagret et trygt sted — og del det ikke med noen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiritsani ntchito chinsinsi chobwezeretsanso akaunti yanu pazida zatsopano.

Akaunti yanu siyingathe kubwezeretsedwa popanda chinsinsicho. Onetsetsani kuti yatero pamtendere ndi chitetezo - ndipo musagawane aliyense." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਖਾਤਾ ਨਵੇਂ ਜੰਤਰਾਂ ਤੇ ਲੋਡ ਕਰਨ ਲਈ ਆਪਣਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਵਰਤੋ।

ਆਪਣਾ ਖਾਤਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਤੋਂ ਬਿਨਾ ਪੁਨਰ ਪ੍ਰਾਪਤ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ। ਯਕੀਨੀ ਬਣਾਓ ਕਿ ਇਹ ਕਿਸੇ ਸੁਰੱਖਿਅਤ ਅਤੇ ਸੁਰੱਖਿਅਤ ਸਥਾਨ ਤੇ ਸਟੋਰ ਕੀਤਾ ਗਿਆ ਹੈ - ਅਤੇ ਇਸ ਨੂੰ ਕਿਸੇ ਨਾਲ ਸਾਂਝਾ ਨਾ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wczytać konto na nowych urządzeniach, użyj hasła odzyskiwania.

Nie można odzyskać konta bez hasła odzyskiwania. Upewnij się, że jest ono przechowywane w bezpiecznym miejscu i nie udostępniaj go nikomu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خپل حساب د بارولو لپاره خپل بیا رغونه Password وکاروئ.

پرته له خپل بیا رغونه Password څخه ستاسو حساب بیا رغول نشي. ډاډ ترلاسه کړئ چې دا خوندي او خوند ځای کې ساتل شوی دی - او دا له هیچا سره شریک نه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use sua senha de recuperação para carregar sua conta em novos dispositivos.

Sua conta não pode ser recuperada sem sua senha de recuperação. Certifique-se de armazená-la em um lugar seguro e não a compartilhe com ninguém." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use a sua chave de recuperação para carregar a sua conta em novos dispositivos.

A sua conta não pode ser recuperada sem a sua chave de recuperação. Certifique-se de que está armazenada num lugar seguro — e não a partilhe com ninguém." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folosește parola de recuperare pentru a încărca contul pe dispozitive noi.

Contul nu poate fi recuperat fără parola de recuperare. Asigurați-vă că este stocată într-un loc sigur și securizat – și nu o împărtășiți nimănui." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Используйте пароль восстановления, чтобы загрузить свою учетную запись на новых устройствах.

Ваша учетная запись не может быть восстановлена без пароля восстановления. Убедитесь, что он хранится в безопасном месте, и не передавайте его никому." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristite svoju Recovery Password za učitavanje svog naloga na nove uređaje.

Vaš račun ne može biti oporavljen bez vaše Recovery Password. Uverite se da je čuvana negde sigurno i bezbedno – i nemojte je podeliti ni sa kim." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ගිණුම නැවත ආරම්භ කිරීමට නැවත ආරම්භ කරන්න පරිශීලන මුරපදය භාවිතා කරන්න.

ඔබගේ පරිශීලන මුරපදය නැත්තහොත් ඔබේ ගිණුම නැවත ලබා ගැනීමට නොහැක. ආරක්ෂිත සහ ආරක්ෂිත ස්ථානයක එය ගබඩා කර ඇති බවට වග බලා ගන්න — එය කිසිවෙකුට හුවමාරු නොකරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Použite svoje recovery password na načítanie účtu na nových zariadeniach.

Bez recovery password váš účet nebude možné obnoviť. Uistite sa, že je uložené na bezpečnom mieste a nezdieľajte ho s nikým." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uporabite geslo za obnovitev, da naložite svoj račun na novih napravah.

Vašega računa ni mogoče obnoviti brez obnovitvenega gesla. Poskrbite, da bo shranjeno na varnem mestu — in ga ne delite z nikomer." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdorni fjalëkalimin e rikuperimit për të ngarkuar llogarinë tuaj në pajisje të reja.

Llogaria juaj nuk mund të rikuperohet pa fjalëkalimin tuaj të rikuperimit. Sigurohuni që ta keni ruajtur në një vend të sigurt dhe mos e ndani me askënd." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користите своју Recovery password да учитате свој налог на нове уређаје.

Ваш налог не може бити опорављен без ваше Recovery password. Обавезно га чувајте на сигурном месту и не делите га са никим." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristite svoj recovery password da učitate svoj nalog na novim uređajima.

Vaš nalog se ne može oporaviti bez recovery password-a. Uverite se da je čuvan na sigurnom i ne delite ga ni sa kim." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Använd din återställningslösenord för att ladda ditt konto på nya enheter.

Ditt konto kan inte återställas utan ditt återställningslösenord. Se till att det lagras säkert och dela det inte med någon." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumia nywila ya urejeshaji kufungua akaunti yako kwenye vifaa vipya.

Akaunti yako haiwezi kurejeshwa bila nywila yako ya urejeshaji. Hakikisha umeihifadhi mahali salama na siri — usishiriki na yeyote." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் விளம்பரச் சொந்தக் குறியீட்டை பயன்படுத்தி உங்கள் கணக்கை புதிய சாதனங்களில் ஏற்றுக.

உங்கள் விளம்பரச் சொந்தக் குறியீடு இல்லாமல் உங்கள் கணக்கை மீட்டெடுக்க முடியாது. அது பாதுகாப்பான மற்றும் பாதுகாப்பான இடத்தில் சேமிக்கப்படுவதை உறுதிசெய்க - மற்றும் அதைப் பிறரிடம் பகிர வேண்டாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఖాతాను కొత్త పరికరాలపై లోడ్ చేయడానికి మీ రికవరీ పాస్‌వర్డ్‌ని ఉపయోగించండి.

మీ రికవరీ పాస్‌వర్డ్ లేకుండా మీ ఖాతాను పునరుద్ధరించలేరు. అది ఎక్కడైనా సురక్షితంగా నిల్వ చేయబడిందని నిర్ధారించుకోండి – మరియు దానిని ఎవరికీ పంచుకోకండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช้รหัสผ่านการกู้คืนของคุณเพื่อโหลดบัญชีของคุณบนอุปกรณ์ใหม่.

บัญชีของคุณจะไม่สามารถกู้คืนได้หากไม่มีรหัสผ่านการกู้คืนของคุณ. ตรวจสอบให้แน่ใจว่ามีการเก็บไว้อย่างปลอดภัยและไม่แบ่งปันให้ใคร." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yeni cihazlarda yüklemek için kurtarma şifrenizi kullanın.

Kurtarma şifreniz olmadan hesabınız geri yüklenemez. Güvende olduğundan emin olun ve kimseyle paylaşmayın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Використовуйте свій пароль для відновлення, щоб завантажити свій обліковий запис на нових пристроях.

Ваш обліковий запис не може бути відновлений без вашого пароля для відновлення. Переконайтеся, що він зберігається десь у надійному місці та не передавайте його нікому." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے اکاؤنٹ کو نئے آلات پر لوڈ کرنے کے لیے اپنی بازیابی کا پاس ورڈ استعمال کریں۔

آپ کا اکاؤنٹ آپ کے بازیابی کے پاس ورڈ کے بغیر بازیافت نہیں ہو سکتا۔ یقینی بنائیں کہ یہ کہیں محفوظ اور محفوظ رکھا گیا ہے — اور کسی کے ساتھ اسے شیئر نہ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisobingizni yangi qurilmalarda yuklash uchun qayta parolingizdan foydalaning.

Hisobingiz qayta parolsiz tiklanmaydi. Unga xavfsiz va ishonchli joyda saqlanganidan ishonch hosil qiling va hech kimga oshkor qilmang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dùng mật khẩu khôi phục của bạn để tải tài khoản của bạn trên các thiết bị mới.

Tài khoản của bạn không thể được khôi phục nếu không có mật khẩu khôi phục của bạn. Hãy chắc chắn rằng nó được lưu trữ ở một nơi an toàn và bảo mật — và đừng chia sẻ nó với bất kỳ ai." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faka iphasiwedi yakho yokufumana kwakhona ukuze ufake iakhawunti yakho kwizixhobo ezintsha.

Iakhawunti yakho ayinakufumaneka ngaphandle kwephasiwedi yakho yokufumana kwakhona. Qinisekisa ukuba iyonke indawo ekhuselekileyo kwaye ungayabelani nabani na." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用您的恢复密码在新设备上加载您的帐户。

没有您的恢复密码,您的帐户将无法恢复。请确保将它存储在安全的地方,并且不要与任何人分享。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請使用您的恢復密碼在新裝置上載入您的帳戶。

若沒有恢復密碼將無法恢復您的帳戶。請確保將其儲存於安全的地方—且不要與任何人分享。" + } + } + } + }, + "recoveryPasswordEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou herstel wagwoord in" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل كلمة مرور الاسترجاع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzu daxil edin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا ریکوری پاسورڈ درج بکنا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце recovery password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете паролата за възстановяване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার recovery password লিখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix la teva contrasenya de recuperació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch eich cyfrinair adfer" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast din gendannelsesadgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gib dein Wiederherstellungspasswort ein" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε τον κωδικό σας ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter your recovery password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu vian riparan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escriba su clave de recuperación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrese su clave de recuperación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisesta oma taastamise parool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu zure berreskuratze pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز بازیابی خود را وارد کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä palautussalasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang iyong recovery password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez votre mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o seu contrasinal de recuperación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da kalmar sirrin dawo da ku" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter your recovery password" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना पुनर्प्राप्ति पासवर्ड दर्ज करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite svoju lozinku za oporavak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a visszaálltási jelszavad" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք ձեր վերականգնման թողարկում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan kata sandi pemulihan Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci la tua password di recupero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリーフレーズを入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ თქვენი სახელის პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល Recovery password របស់អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಮರುಪಡೆಯುವ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 비밀번호 입력" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreyê te ya vegerandinê binivîse" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Recovery password yo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນລະຫັດການຟື້ນຄືນຂອງທ່ານ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite savo atkūrimo slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet savu atjaunošanas paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете ја вашата лозинка за враќање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргээх нууц үг оруулна уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan kata laluan pemulihan anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery စကားဝှက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angi ditt gjenopprettingspassord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको पुनर्प्राप्ति पासवर्ड प्रविष्ट गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer je herstel wachtwoord in" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn gjenopprettingspassordet ditt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani mawu achinsinsi a kubwereranso" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź hasło odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو recovery password ولیکئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite sua senha de recuperação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira a sua chave de recuperação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți parola de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите ваш пароль восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi svoju recovery password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ප්‍රතිසාධන මුරපදය ඇතුළත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte frázu pre obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite vaše obnovitveno geslo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni fjalëkalimin e rikthimit tuaj" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите вашe recovery password" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite vašu lozinku za oporavak" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ditt recovery password" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka nenosiri lako la kurejeshea akaunti" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் recovery password ஐ உள்ளிடவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ మరుపు తిరిగి పొందుపాస్వర్డ్ ఎంటర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนรหัสผ่านสำหรับการกู้คืนของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma parolanızı girin" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть свій пароль відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا بازیابی پاس ورڈ درج کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizni kiriting" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập mật khẩu khôi phục của bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-password yakho yokubuyisela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入您的恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入您的恢復密碼" + } + } + } + }, + "recoveryPasswordErrorLoad" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "‘n Fout het voorgekom tydens die laai van jou herstel wagwoord.

Exporteer asseblief jou logboeke, en laai dan die lêer op deur Session se Hulptoonbank om te help om hierdie probleem op te los." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدث خطأ عند محاولة تحميل كلمة المرور الاحتياطية الخاصة بك.

يرجى تصدير السجلات الخاصة بك، ثم تحميل الملف عبر مكتب مساعدة Session للمساعدة في حل هذه المشكلة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzu yükləməyə çalışarkən bir xəta baş verdi.

Bu problemi həll etməyə kömək etmək üçün lütfən jurnalı xaricə köçürün, daha sonra Session-un Kömək Masası üzərindən həmin faylı yükləyin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تھئے ریکوری پاسورڈ لوڈ توارےء میں مسئله کرتے ہوءِ.

مہربانی بانی لوگ انی برآمد کنانءَ, پھر فائل اپلوڈ کنو میٹ سےشنز ہیلپ ڈیسک بگو یہ مسئله حل کن." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пры спробе загрузіць пароль аднаўлення адбылася памылка.

Калі ласка, экспартуйце свае часопісы, а затым загрузіце файл у службу падтрымкі Session, каб вырашыць гэтую праблему." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Възникна грешка при опит за зареждане на вашата възстановителна парола.

Моля, експортирайте вашите съобщения и после качете файла през помощния център на Session, за да помогнете за разрешаването на този проблем." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার রিকভারি পাসওয়ার্ড লোড করার সময় একটি ত্রুটি ঘটেছে।

সমস্যাটি সমাধান করতে অনুগ্রহ করে আপনার লগগুলি রপ্তানি করুন এবং Session-এর সাহায্য ডেস্কের মাধ্যমে ফাইলটি আপলোড করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha produït un error en intentar carregar la vostra contrasenya de recuperació.

Exporteu els vostres registres, després pengeu el fitxer a través del servei d'assistència de Session per ajudar a resoldre aquest problema." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo k chybě při pokusu o načtení vašeho hesla pro obnovení.

Pro vyřešení problému prosím exportujte své logy a soubor nahrajte pomocí Session Help Desku." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cafodd gwall pan oedd yn ceisio llwytho eich cyfrinair adfer.

Allforiwch eich logiau, yna uwchgwynwch y ffeil drwy'r Help Desk Session i helpu i ddatrys y mater hwn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der opstod en fejl ved indlæsning af din recovery password.

Eksporter dine logs, og upload derefter filen via Sessions Help Desk for at hjælpe med at løse dette problem." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beim Laden des Wiederherstellungspassworts ist ein Fehler aufgetreten.

Bitte exportiere die Logs und lade die Datei über den Session Helpdesk hoch, um das Problem zu lösen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προέκυψε ένα σφάλμα προσπαθώντας να φορτώσετε τον κωδικό αποκατάστασης.

Παρακαλούμε εξάγετε τα αρχεία καταγραφής σας και ανεβάστε το αρχείο μέσω του Κέντρου Υποστήριξης της Session για να βοηθήσετε στην επίλυση αυτού του προβλήματος." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occurred when trying to load your recovery password.

Please export your logs, then upload the file though Session's Help Desk to help resolve this issue." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eraro okazis dum provado ŝarĝi vian savopasvorton.

Bonvolu eksporti viajn protokolojn, tiam alŝutu la dosieron tra la helpfono de Session por helpi solvi ĉi tiun problemon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un error al intentar cargar tu contraseña de recuperación.

Por favor exporta tus registros, luego sube el archivo a través del Help Desk de Session para ayudar a resolver este problema." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocurrió un error mientras intentábamos cargar tu contraseña de recuperación.

Por favor exporta los logs, luego sube el archivo mediante Session's Help Desk para ayudarte a resolver este problema." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taastamise parooli avamisel ilmnes viga.

Palun ekspordi oma logifail ja laadi fail üles Session'i läbi Kasutajatoe, et sellele probleemile lahendus leida." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore bat gertatu da zure berreskuratze pasahitza kargatzean.

Mesedez esportatu zure erregistroak, eta igo fitxategia Session-en Laguntza Mahaiaren bidez arazo hau konpontzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطایی هنگام تلاش برای بارگیری رمز بازیابی شما رخ داد.

لطفا فایل گزارش خطا را استخراج کنید و سپس ان را از طریق میز پشتیبانی سشن اپلود کنید تا این مشکل حل شود." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virhe palautelauseen latauksessa.

Ratkaistaksesi tämän ongelman, voit viedä lokitiedot ja lähettää sen Session Help Deskiin." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nagkaroon ng isang error sa pag-load ng iyong recovery password.

Paki-export ang iyong mga log, pagkatapos ay i-upload ang file sa pamamagitan ng Session's Help Desk upang matulungan na malutas ang isyung ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une erreur s'est produite lors de la tentative de chargement de votre mot de passe de récupération.

Veuillez exporter vos logs, puis télécharger le fichier via le service d'assistance de Session pour aider à résoudre ce problème." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occurred when trying to load your recovery password.

Please export your logs, then upload the file though Session's Help Desk to help resolve this issue." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אירעה שגיאה בניסיון לטעון את סיסמת השחזור שלך.

אנא ייצא את היומנים שלך, ואז העלה את הקובץ דרך שירות הלקוחות של Session כדי לעזור בפתרון הבעיה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पुनर्प्राप्ति पासवर्ड को लोड करने का प्रयास करते समय एक त्रुटि हुई।

कृपया अपनी लॉग निर्यात करें, फिर इस समस्या को हल करने में मदद के लिए फ़ाइल को Session की हेल्प डेस्क के माध्यम से अपलोड करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do pogreške prilikom učitavanja vaše lozinke za oporavak.

Molimo izvezite svoje zapise, zatim učitajte datoteku putem Session Pomoć Desk kako biste pomogli u rješavanju ovog problema." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba történt a visszaállítási jelszó betöltésekor.

Exportáld a naplóidat, majd töltsd fel a fájlt a Session ügyfélszolgálaton keresztül a probléma megoldása érdekében." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ տեղի ունեցավ ձեր վերականգնման գաղտնաբառը բեռնելու ժամանակ:

Խնդրում ենք արտահանել ձեր հաղորդագրությունների գրառումները, ապա վերբեռնել ֆայլը Session-ի օժանդակ կենտրոնի միջոցով, որպեսզի օգնեք լուծելու այս խնդիրը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terjadi kesalahan saat mencoba memuat kata sandi pemulihan Anda.

Silakan ekspor log Anda, lalu unggah file melalui Help Desk Session untuk membantu menyelesaikan masalah ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si è verificato un errore durante il caricamento della tua password di recupero.

Esporta i log e invia il file tramite il Centro Assistenza di Session per aiutarti a risolvere il problema." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "回復パスワードの読み込み中にエラーが発生しました。

ログをエクスポートしてから、Sessionのヘルプデスクにファイルをアップロードし、この問題の解決に役立ててください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაფიქსირდა შეცდომა თქვენი აღდგენის პაროლის ჩატვირთვისას.

გთხოვთ, ექსპორტით გამოსაწერეთ თქვენი ლოგები, შემდეგ ატვირთეთ ეს ფაილი Session-ის დახმარების სერვისზე რათა ეს პრობლემა მოაგვაროსთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មានកំហុសមួយកើតឡើងនៅពេលព្យាយាមផ្ទុកពាក្យសម្ងាត់ដំណើរការ៖

សូមបញ្ចូលកំណត់ហេតុរបស់អ្នក រួចផ្ញើឯកសារនៅតាមរយៈមជ្ឈមណ្ឌលជំនួយរបស់ Session ដើម្បីជួយដោះស្រាយបញ្ហានេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪುನಶ್ಚೇತನ ಪಾಸ್ವರ್ಡ್ ಲೋಡ್ ಮಾಡುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ.

ದಯವಿಟ್ಟು ನಿಮ್ಮ ಲಾಗ್‌ಗಳನ್ನು ರಫ್ತು ಮಾಡಿ, ನಂತರ ಈ ಸಮಸ್ಯೆಯನ್ನು ಪರಿಹರಿಸಲು ಸೆಷನ್‌ನ ಹೆಲ್ಪ್ ಡೆಸ್ಕ್ ಮೂಲಕ ಕಡತವನ್ನು ಅಪ್‌ಲೋಡ್ ಮಾಡಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "2차 비밀번호을 불러오는 도중 오류가 발생했습니다.

이 문제를 해결하려면 Session의 헬프 데스크로 로그 파일을 보내주시기 바랍니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xeletî çû dema ku hûn şîfreya vegerê xwe barkirin.

Ji kerema xwe logên xwe bişînin, paşê pel bihêle bi sesyona saziya alîkarîyê da ku vê pirsgirêkê bihêle." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi yabaddewo ng’ogezaako okutikkula recovery password yo.

Kuuma ssensa zyo, olwo olaze failo eri omwerezebwa ogobezzaamu okukyusa ekizibu mu Session Help Desk." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliant jūsų atkūrimo slaptažodį įvyko klaida.

Prašome eksportuoti savo žurnalus ir įkelkite failą per \"Session\" pagalbos tarnybą, kad galėtume išspręsti šią problemą." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се случи грешка при обид за вчитување на вашата лозинка за опоравување.

Ве молиме извезете ги вашите логови, а потоа прикачете го атракот преку Help Desk на Session за да помогнете во решавањето на овој проблем." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргээх нууц үгийг ачаалахад алдаа гарлаа.

Асуудлыг шийдвэрлэхийн тулд лог файлуудаа экспортлоод, Session-ий Тусламжийн төвөөр дамжуулан файлыг оруулаарай." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat berlaku semasa cuba memuatkan kata laluan pemulihan anda.

Sila eksport log anda, kemudian muat naik fail tersebut melalui Meja Bantuan Session untuk membantu menyelesaikan isu ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်၏ Recovery password ကို ဖွင့်ပါစဉ် အမှားအယွင်းတစ်ခု ဖြစ်ပွါးနေသည်။

သင်၏ မှတ်တမ်းများ ကို တင်ပို့ပြီး Session ၏အကူအညီဌာနမှတဆင့် ကိုယ်မူတည်ကို ပြန်တင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En feil oppstod når vi prøvde å laste inn din gjenopprettingsnøkkel.

Vennligst eksporter loggene dine og last opp filen via Sessions Help Desk for å hjelpe med å løse problemet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको पुनप्राप्ति पासवर्ड लोड गर्ने प्रयास गर्दा एउटा त्रुटि देखा पर्यो।

कृपया आफ्नो लकहरू निर्यात गर्नुहोस्, त्यसपछि यस मुद्दाको समाधान गर्न मद्दत गर्न यसलाई Sessionको हेल्प डेस्क मार्फत अपलोड गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een fout opgetreden bij het laden van uw herstelwachtwoord.

Gelieve je logboeken te exporteren en vervolgens het bestand te uploaden via de Sessie-Helpdesk om ons te helpen dit probleem op te lossen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein feil oppstod når vi prøvde å laste inn gjenopprettingspassordet ditt.

Eksporter loggane dine, og last deretter opp fila via Session si hjelpeside for å få hjelp med dette problemet." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Panachitika vuto loyesa kutsegula achinsinsi anu obwezeretsa.

Chonde tumizani ma logs anu, ndiye kukweza fayilo kupyolera mu Session's Help Desk kuti athandize kuthetsa vutoli." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਲੋਡ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਗਲਤੀ ਹੋਈ।

ਕਿਰਪਾ ਕਰਕੇ ਆਪਣੇ ਲੌਗ ਐਕਸਪੋਰਟ ਕਰੋ, ਫਿਰ ਫਾਈਲ ਨੂੰ Session ਦੀ ਹੈਲਪ ਡੈਸਕ ਵਿੱਚ ਅਪਲੋਡ ਕਰੋ ਤਾੰ ਜੋ ਇਸ ਸਮੱਸਿਆ ਨੂੰ ਹੱਲ ਕਰਨ ਵਿੱਚ ਮਦਦ ਮਿਲੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wystąpił błąd podczas próby załadowania hasła odzyskiwania.

Wyślij swoje dzienniki, a następnie prześlij plik przez deskę ratunkową Sesji, aby pomóc rozwiązać ten problem." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د بیا رغونې پټنوم لوډ کولو هڅه کې تېروتنه رامنځته شوه.

مهرباني وکړئ خپل لوګونه صادر کړئ، بیا فایل د Session د مرستې ډیسټاپ له لارې اپلوډ کړئ ترڅو دا ستونزه حل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Um erro ocorreu ao tentar carregar a sua senha de recuperação. U

Por favor, exporte seus logs e, em seguida, envie o arquivo no Suporte de Sessão para ajudar a resolver esse problema." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu um erro ao tentar carregar a sua palavra-passe.

Por favor exporte os seus logs e, depois envie o ficheiro para o Centro de Ajuda da Sessão para ajudar a resolver este problema." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "A apărut o eroare la încărcarea parolei de recuperare.

Te rugăm să exporți jurnalele, apoi să încarci fișierul prin intermediul Biroului de asistență Session pentru a ajuta la soluționarea acestei probleme." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Произошла ошибка при попытке загрузить ваш Пароль Восстановления.

Пожалуйста, экспортируйте ваш журнал отладки, а затем загрузите его через службу поддержки Session, чтобы помочь решить эту проблему." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pojavila se greška pri pokušaju učitavanja vaše Recovery Password.

Molimo izvezite vaše logove, zatim prenesite tu datoteku kroz Session-ov Help Desk kako bi se ovaj problem rešio." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ප්‍රතිසාධක විසර්ජන(Recovery password) පෙරළන්න ට උත්සාහ කරන විට දෝෂයක් සිදුවිය.

කරුණාකර ඔබගේ ලඝු සටහන් අයාත කරන්න. එවිට Session 's Help Desk මගින් මෙම ගැටලුවට පිළිතුරක් ලැබෙනු ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pri pokuse o načítanie hesla na obnovenie došlo k chybe.

Prosím, exportujte svoje protokoly a potom súbor odošlite prostredníctvom asistenčnej služby Session, aby vám pomohli vyriešiť tento problém." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prišlo je do napake pri nalaganju vašega obnovitvenega gesla.

Prosimo, izvozite svoje dnevnike in nato naložite datoteko prek kupca za pomoč Session, da pomagajo rešiti to težavo." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një gabim gjatë ngarkimit të fjalëkalimit tuaj të rimëkëmbjes.

Ju lutemi eksportoni logjet tuaja, pastaj ngarkoni skedarin përmes Zyrës së Ndihmës të Session për të ndihmuar në zgjidhjen e kësaj çështje." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дошло је до грешке при покушају учитавања ваше лозинке за опоравак.

Извезите своје записе, а затим отпремите датотеку преко Session центра за помоћ како бисте помогли у решавању овог проблема." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do greške prilikom učitavanja vaše recovery password.

Molimo izvezite svoje logove, zatim pošaljite fajl putem Session-ovog Help Desk-a da biste pomogli u rešavanju ovog problema." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett fel inträffade vid försök att läsa in ditt återställningslösenord.

Exportera dina loggar och ladda upp filen via Sessions Help Desk för att hjälpa oss att lösa det här problemet." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitilafu ilitokea wakati wa kujaribu kupakia nywila yako ya kurejesha.

Tafadhali hamisha kumbukumbu zako za matumizi, kisha pakia faili kupitia Dawati la Usaidizi la Session ili kusaidia kutatua tatizo hili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் Recovery Password ஐ ஏற்றுவதில் பிழை ஏற்பட்டது.

தயவுசெய்து உங்கள் பதிவசைகளை ஏற்றுமதி செய்யவும், பின்னர் இந்த பிரச்சினையை தீர்க்க Session இன் உதவிப்பணிக்குழுவின் மூலமாக கோப்பை பதிவேற்றுக." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ రికవరీ పాస్‌వర్డ్ లోడ్ చేయడానికి ప్రయత్నించినప్పుడు లోపం ఏర్పడింది.

ఈ సమస్యను పరిష్కరించడంలో సహాయపడటానికి దయచేసి మీ లాగ్‌లను ఎగుమతి చేసి, ఆ తర్వాత ఫైల్‌ను Session సహాయం డెస్క్ ద్వారా అప్‌లోడ్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะพยายามโหลดรหัสผ่านกู้คืนของคุณ.

กรุณาส่งออกบันทึกของคุณ แล้วอัปโหลดไฟล์ผ่าน Help Desk ของ Session เพื่อช่วยแก้ไขปัญหานี้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma şifreni yüklemeye çalışırken bir sorun meydana geldi.

Lütfen kayıtları (logları) dışa aktarın, ardından Session'un Yardım Merkezi üzerinden dışa aktarılmış dosyayı yükleyerek sorunun çözümlenmesine yardımcı olun." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Під час завантаження паролю для відновлення сталася помилка.

Будь ласка, експортуйте ваші журнали, а потім вивантажте отриманий файл через службу підтримки Session для розв'язання цієї проблеми." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے بازیافت پاسورڈ کو لوڈ کرنے کی کوشش کے دوران ایک خرابی پیش آئی۔

براہ کرم اپنے لاگز کو برآمد کریں، پھر مسئلہ حل کرنے میں مدد کے لیے فائل کو سیشن کی ہیلپ ڈیسک کے ذریعے اپلوڈ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizni yuklashda xatolik yuz berdi.

Muammoni hal qilishda yordam berish uchun ilovangiz jurnallarini eksport qiling, so'ngra Session Yordam Markaziga faylni yuklang." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã xảy ra lỗi khi cố gắng tải mật khẩu khôi phục của bạn.

Vui lòng xuất nhật ký của bạn, sau đó tải tệp lên Trung tâm Hỗ trợ của Session để giúp giải quyết vấn đề này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impazamo yenzekile xa uzama ukulayisha iphasiwedi yakho yokubuyisela.

Nceda upapashe iilog zenkqubo yakho, uze ulayishe ifayile e-Desk ka-Session yokuNceda ukusombulula lo mba." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "加载恢复密码时出错。

请导出您的日志,然后通过Session服务台上传文件来帮助解决这个问题。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "載入您的恢復密碼時發生錯誤。

請匯出您的日誌,然後透過 Session 的協助台上傳檔案以解決此問題。" + } + } + } + }, + "recoveryPasswordErrorMessageGeneric" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan jou herstel wagwoord na en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء التحقق من كلمة المرور الخاصة بالاسترداد وحاول مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfən geri qaytarma parolunuzu yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی اپنے بازیابی رمز چیک کنیں و دوبارہ کوشش کنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, праверце ваш пароль для аднаўлення і паспрабуйце зноў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, проверете вашата възстановителна парола и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার পুনরুদ্ধার পাসওয়ার্ড যাচাই করুন এবং আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si us plau, comprova la teva contrasenya de recuperació i torna-ho a intentar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkontrolujte prosím své heslo pro obnovení a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiriwch eich cyfrinair adfer a cheisio eto." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check your recovery password and try again." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte überprüfe dein Wiederherstellungspasswort und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ ελέγξτε τον κωδικό πρόσβασης για ανάκτηση και προσπαθήστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check your recovery password and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu kontroli vian riparan pasvorton kaj reprovu." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comprueba tu clave de recuperación y vuelve a intentarlo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comprueba tu clave de recuperación y vuelve a intentarlo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun kontrollige oma taastamisparooli ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, egiaztatu zure berreskurapen pasahitza eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لطفاً شناسه بازیابی خود را بررسی و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarkista palautuslauseesi ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakibanggitin ang iyong recovery password at subukang muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez vérifier votre mot de passe de récupération et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, comproba o teu contrasinal de recuperación e téntao de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba kalmar maidowarka kuma sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בדוק את סיסמת השחזור שלך ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check your recovery password and try again." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite svoju lozinku za oporavak i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ellenőrizd a visszaállítási jelszavad és próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք ստուգել ձեր վերականգնման գաղտնաբառը և փորձել նորից:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silakan periksa kata sandi pemulihan Anda dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controlla la tua password di recupero e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリーパスワードを確認してもう一度やり直してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეამოწმოთ თქვენი აღდგენის პაროლი და სცადეთ კიდევ ერთხელ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមពិនិត្យពាក្យសម្ងាត់ ស្តារអោយដូចដើម របស់អ្នក ហើយព្យាយាមម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪುನಃಪ್ರಾಪ್ತಿ ಪಾಸ್ವರ್ಡನ್ನು ಪರಿಶೀಲಿಸಿ ಮತ್ತು ಮತ್ತೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 비밀번호를 확인하시고 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kerem bike şîfreya vê bidawî bike û dîsa biceribîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kakasa akasumulizo k’okwenyiga kwoziize okubiddamu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Patikrinkite atkūrimo slaptažodį ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu, pārbaudi savu atkopšanas paroli un mēģini vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме проверете ја вашата лозинка за обновување и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргээх нууц үгээ шалгаж дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila semak kata laluan pemulihan anda dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ပြန်လည်ရယူဖို့ စကားဝှက်ကို စစ်ဆေးပြီး ထပ်မံကြိုးစားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sjekk gjenopprettingspassordet ditt og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया आफ्नो रिकभरी पासवर्ड जाँच गर्नुहोस् र प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Controleer je herstelwachtwoord en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst sjekk gjenoppretting passordet ditt og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde onani chinsinsi chanu chobwezera ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਆਪਣਾ ਸੰਨਜੀਵਨ ਪਾਸਵਰਡ ਜਾਂਚੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sprawdź hasło odzyskiwania i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ خپل ریکوری پاسورډ وګورئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique sua senha de recuperação e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique a sua chave de recuperação e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să verificați parola de recuperare și să încercați din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, проверьте ваш пароль восстановления и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo provjerite lozinku za oporavak i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර ඔබේ ප්‍රතිසාධන මුරපදය පරීක්ෂා කර නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skontrolujte prosím frázu na obnovenie a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosimo, preveri svoje geslo za obnovitev in poskusi znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi kontrolloni fjalëkalimin tuaj të rikuperimit dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Проверите вашу Recovery Password и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo proverite lozinku za oporavak i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrollera ditt återställningslösenord och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali kagua nyila yako ya kurejesha na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் மீட்பு கடவுச்சொல்லைச் சரிபார்த்து மறுபடியும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి మీ రికవరీ పాస్‌వర్డ్‌ను తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดตรวจสอบรหัสการกู้คืนของคุณและลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen kurtarma parolanızı kontrol edin ve tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, перевірте свій пароль для відновлення і повторіть спробу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم اپنے recovery password کو چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizni tekshiring va qaytadan urinib ko‘ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng kiểm tra mật khẩu khôi phục của bạn và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ujonge ipassword yakho yokubuyisela kwaye uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请检查您的恢复密码并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請檢查您的恢復密碼,再試一次。" + } + } + } + }, + "recoveryPasswordErrorMessageIncorrect" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sommige van die woorde in jou herstel wagwoord is verkeerd. Kontroleer en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بعض الكلمات في كلمة الاسترداد الخاصة بك غير صحيحة. تحقق وحاول مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzdakı bəzi sözlər yanlışdır. Lütfən yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کچھ کلمہاں بشکیند درمانی خلق مجھولات ناستیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некаторыя з слоў у вашым Recovery password няправільныя. Калі ласка, праверце і паспрабуйце яшчэ раз." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Някои от думите в Паролата за възстановяване са неправилни. Моля, проверете и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার রিকভারী পাসওয়ার্ডের কিছু শব্দ ভুল আছে। দয়া করে পরীক্ষা করে আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunes de les paraules de la vostra contrasenya de recuperació són incorrectes. Comproveu-ho i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Některá ze slov ve vašem hesle pro obnovení jsou nesprávná. Zkontrolujte je a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae rhai o'r geiriau yn eich Cyfrinair Adfer yn anghywir. Gwiriwch a cheisiwch eto." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nogle af ordene i din Recovery Password er forkerte. Venligst tjek igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einige Wörter in deinem Wiederherstellungspasswort sind falsch. Bitte überprüfe sie und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κάποιες από τις λέξεις στον Κωδικό Ανάκτησης σας είναι λανθασμένες. Παρακαλώ ελέγξτε και προσπαθήστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of the words in your Recovery Password are incorrect. Please check and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iuj vortoj en via Ripara Pasvorto estas malĝustaj. Bonvolu kontroli kaj provi denove." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunas de las palabras en tu Recovery Password son incorrectas. Por favor verifica y vuelve a intentarlo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunas de las palabras en tu clave de recuperación son incorrectas. Por favor verifica e inténtalo de nuevo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mõned teie taastamislause sõnad on valed. Palun kontrollige ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure berreskurapen pasahitzean hitz batzuk okerrak dira. Mesedez, egiaztatu eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برخی از کلمات در رمز بازیابی شما نادرست است. لطفاً بررسی کنید و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jotkin palautuslausekkeesi sanat ovat virheelliset. Tarkista ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang ilan sa mga salita sa iyong Recovery Password ay mali. Pakisuyong tingnang mabuti at subukan muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certains mots de votre mot de passe de récupération sont incorrects. Veuillez vérifier et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algunhas das palabras no teu Recovery Password son incorrectas. Por favor revisa e tenta de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wasu kalmomin cikin Kalmar Tseratarku ba daidai bane. Da fatan za ku duba kuma ku sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חלק מהמילים בסיסמת השחזור שלך שגויות. בדוק ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आपके पुनर्प्राप्ति पासवर्ड के कुछ शब्द गलत हैं। कृपया जांच कर पुनः प्रयास करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neke riječi u vašoj lozinci za oporavak nisu točne. Provjerite i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A visszaállítási jelszó néhány szava helytelenül lett megadva. Ellenőrizd őket és próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերականգնման գաղտնաբառի որոշ բառեր սխալ են։ Խնդրում ենք ստուգեք և փորձեք նորից։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beberapa kata dalam Kata Sandi Pemulihan Anda salah. Silakan periksa dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alcune delle parole nella tua password di recupero sono errate. Si prega di controllare e riprovare." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "いくつかのリカバリパスワードの単語が間違っています。確認して再試行してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ზოგიერთი სიტყვა თქვენი აღდგენის პაროლში არასწორია. გთხოვთ, შეამოწმეთ და სცადეთ კიდევ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យមួយចំនួនក្នុង Recovery Password របស់អ្នកមិនត្រឹមត្រូវទេ។ សូមពិនិត្យនិងព្យាយាមម្តងទៀត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಮರುಪಡೆಯ гунರ್ಪದದிழமைನಗಳಲ್ಲಿ ಕೆಲವು ಪದಗಳು ತಪ್ಪಾಗಿದೆ. ದಯವಿಟ್ಟು ಪರಿಶೀಲಿಸಿ ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 암호의 일부 단어가 잘못되었습니다. 확인하고 다시 시도해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hin ji peyamên recoveyê we ne raste. Ji kerema xwe kontrol bikin û cardin biceribînin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebimu ku bigambo mu Recovery Password si bituufu. Funa endala osuubuye nate." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai kurie jūsų atkūrimo slaptažodžio žodžiai neteisingi. Prašome patikrinti ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daži vārdi no tavas atjaunošanas paroles ir nepareizi. Lūdzu pārbaudi un mēģini vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некои од зборовите во твојата Recovery Password се некоректни. Ве молиме провери ги и обиди се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны нөхөн сэргээх нууц үгний зарим үгс буруу байна. Шалгаад дахин оролдоорой." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beberapa perkataan dalam Kata Laluan Pemulihan anda adalah tidak tepat. Sila periksa dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကြောင့် သင့် Recovery Password ထဲက စကားလုံးအချို့မှားနေသည်။ ပြန်လည်စစ်ဆေးပြီးထပ်မံကြိုးစားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noen av ordene i gjenopprettingspassordet ditt er feil. Vennligst sjekk og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंका रिकभरी पासवर्डका केही शब्दहरू गलत छन्। कृपया जाँच गर्नुहोस् अनि फेरि प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sommige woorden in je Recovery Password zijn onjuist. Controleer ze en probeer opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nokre av orda i gjenopprettingspassordet ditt er feil. Ver venleg å sjekke og prøve igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of the words in your Recovery Password are incorrect. Please check and try again." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਬਚਾਓ ਪਾਸਵਰਡ ਦੇ ਕੁਝ ਸ਼ਬਦ ਗਲਤ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niektóre ze słów w haśle odzyskiwania są nieprawidłowe. Sprawdź i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ځینې ستاسو د بیا رغونې پټنوم کلمې ناسمې دي. مهرباني وکړئ بیا یې وګورئ او هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algumas das palavras em sua senha de recuperação estão incorretas. Por favor, verifique e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Algumas das palavras na sua Chave de Recuperação estão incorretas. Por favor verifique e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unele din cuvintele din Parola de Recuperare sunt incorecte. Te rugăm să verifici și să încerci din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Некоторые из слов в вашем Пароле Восстановления неверны. Пожалуйста, проверьте и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neke riječi u vašoj lozinki za oporavak su netačne. Provjerite i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ප්රතිසාධන මුරපදයේ පදවල් කිහිපයක් වැරටිය. කරුණාකර නැවත පරීක්ෂා කර උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Niektoré slová vo vašom Recovery Password sú nesprávne. Skontrolujte ich prosím a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekatere besede v vašem geslu za obnovitev so napačne. Prosim preverite in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disa fjalë në fjalëkalimin tuaj për rikuperim janë të pasakta. Ju lutem kontrolloni dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неки од речи у твојој Рекавери Лозинки су погрешне. Молимо провери и покушај поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neke reči u vašoj Recovery Password su netačne. Proverite i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Några av orden i din återställningsfras är felaktiga. Kontrollera och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baadhi ya maneno katika Nywila yako ya Urejeshaji si sahihi. Tafadhali angalia na jaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் மீட்பு கடவுச்சொல்லின் சில வார்த்தைகள் தவறாக உள்ளன. தயவுசெய்து சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ రికవరీ పాస్‌వర్డ్‌లోని కొన్ని పదాలు తప్పు. దయచేసి చూసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บางคำในรหัสผ่านการกู้คืนของคุณไม่ถูกต้อง กรุณาตรวจสอบและลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma Şifrenizdeki bazı kelimeler yanlış. Lütfen kontrol edip tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Деякі слова у вашому паролі для відновлення хибні. Будь ласка, перевірте все та спробуйте ще раз." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کے بازیافت پاس ورڈ کے کچھ الفاظ غلط ہیں۔ براہ کرم چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizdagi ayrim so'zlar noto'g'ri. Iltimos, tekshirib ko'ring va qaytadan urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một số từ trong Mật khẩu Khôi phục của bạn không đúng. Vui lòng kiểm tra lại và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Some of the words in your Recovery Password are incorrect. Please check and try again." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "你的恢复密码中的一些词语不正确。请检查后重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您復原密碼中的某些詞不正確。請檢查並重試。" + } + } + } + }, + "recoveryPasswordErrorMessageShort" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Herwinningswagwoord wat jy ingevoer het, is nie lank genoeg nie. Gaan dit asseblief na en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة استرداد الحساب التي أدخلتها غير كافية. يرجى التحقق والمحاولة مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daxil etdiyiniz Geri qaytarma parolu yetərincə uzun deyil. Lütfən, yoxlayıb yenidən sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شل کنتریک ریکوری پاسورڈ درست نہ ونی۔ مہر بانی کرکے چک کنیں و پہ دوباره اَز آزمائیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "The Recovery Password you entered is not long enough. Please check and try again." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведеният от вас възстановителна парола не е достатъчно дълга. Моля, проверете и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার প্রবেশ করা রিকভারি পাসওয়ার্ড যথেষ্ট দীর্ঘ নয়। দয়া করে চেক করুন এবং পুনরায় চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contrasenya de recuperació que heu introduït no és prou llarga. Comproveu-ho i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadané heslo pro obnovení není dostatečně dlouhé. Prosím zkontrolujte ho a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nid yw'r Cyfrinair Adfer y gwnaethoch ei nodi yn ddigon hir. Gwiriwch a rhowch gynnig arall arni os gwelwch yn dda." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Den indtastede Gendannelseskode er ikke lang nok. Kontroller den og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das eingegebene Wiederherstellungspasswort ist nicht lang genug. Bitte überprüfen und erneut versuchen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ο κωδικός ανάκτησης που εισαγάγατε δεν είναι αρκετά μεγάλος. Παρακαλώ ελέγξτε και δοκιμάστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The Recovery Password you entered is not long enough. Please check and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "La ripara pasvorto, kiun vi enmetis, ne estas sufiĉe longa. Bonvolu kontroli kaj reprovi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "La Recuperación Password que ingresaste no es lo suficientemente larga. Por favor verifica e inténtalo de nuevo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "La contraseña de recuperación que ingresaste no es lo suficientemente larga. Por favor verifica e intenta nuevamente." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestatud taastamislause ei ole piisavalt pikk. Palun kontrollige ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu duzun Berreskuratze Pasahitza ez da nahikoa luzea. Mesedez, egiaztatu eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز بازیابی وارد شده به اندازه کافی طولانی نیست. لطفا بررسی کنید و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syöttämäsi palautusavain on liian lyhyt. Tarkista ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ang Recovery Password na iyong ipinasok ay hindi sapat ang haba. Paki-check at subukan muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le mot de passe de récupération que vous avez entré n'est pas assez long. Veuillez vérifier et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "O teu contrasinal de recuperación non é o suficientemente longo. Por favor, comproba e tenta de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar wucewar Warkar da ka shigar ba ta daɗe sosai ba. Da fatan a duba kuma a sake gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסיסמה שהזנת קצרה מדי. אנא בדוק ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "The Recovery Password you entered is not long enough. Please check and try again." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesena lozinka za oporavak nije dovoljno dugačka. Provjerite i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A megadott visszaállítási jelszó nem elég hosszú. Ellenőrizd és próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր մուտքագրած վերականգնման գաղտնաբառը բավական երկար չէ։ Խնդրում ենք ստուգեք և նորից փորձեք։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Sandi Pemulihan yang Anda masukkan tidak cukup panjang. Silakan periksa dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "La password di recupero inserita non è abbastanza lunga. Controlla e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "入力したリカバリーパスワードが十分な長さではありません。確認して再試行してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ მიერ შეყვანილი აღდგენის პაროლი არ არის საკმარისად გრძელი. გთხოვთ, გადაამოწმეთ და სცადეთ თავიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "The Recovery Password you entered is not long enough. Please check and try again." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಮೂದಿಸಿದ ರಿಕವರಿ ಪಾಸ್ವರ್ಡ್ ಸಾಕಷ್ಟು ಉದ್ದವಿಲ್ಲ. ದಯವಿಟ್ಟು ಪರಿಶೀಲಿಸಿ ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "입력한 복구 비밀번호가 충분하지 않습니다. 확인 후 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya paqij bişînî ya neyê giring ne gihîştî. Ji kerema xwe bijêre û dubare biceribîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akazambayiro k'obufuzi k'oyo yeetegedde tekiri kiwanvu. Kebera gwe kyusa lowooza edaako." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įvestas atkūrimo slaptažodis yra per trumpas. Prašome patikrinti ir bandyti dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadītā atjaunošanas parole nav pietiekami gara. Lūdzu, pārbaudiet un mēģiniet vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесената лозинка за опоравка не е доволно долга. Проверете и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны оруулсан нууц үг хангалттай урт биш байна. Шалгаж дахин оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Laluan Pemulihan yang anda masukkan tidak cukup panjang. Sila semak dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်ရေးထည့်ထားသော Recovery Password ပေးပို့ပီးပြီးမှအတိအကျမရပါဘူး။ ကျေးဇူးပြု၍ ပို၍ထည့်သွင်းပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjenopprettingspassordet du oppga er ikke langt nok. Vennligst sjekk og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले प्रविष्ट गरेको रिकभरी पासवर्ड पर्याप्त लामो छैन। कृपया जाँच गर्नुहोस् अनि फेरि प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Het herstelwachtwoord dat je hebt ingevoerd is niet lang genoeg. Controleer en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjenopprettingspassordet du skrev inn er ikke langt nok. Vennligst sjekk og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password Yobwezeretsa yomwe mwalowetsa siyonse bwino. Chonde fufuzani ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਦੁਆਰਾ ਦਰਜ ਕੀਤਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਕਾਫੀਂ ਲੰਬਾ ਨਹੀਂ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਜਾਂਚ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadzone hasło odzyskiwania nie jest wystarczająco długie. Sprawdź i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هغه بیا رغونه پاسورډ تاسې داخل کړی نه ډیر اوږد دی. مهرباني وکړئ چک کړئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Recovery Password que você inseriu não é longa o suficiente. Por favor, verifique e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A Chave de Recuperação inserida não é longa o suficiente. Por favor, verifique e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola de Recuperare introdusă nu este suficient de lungă. Te rugăm să verifici și să încerci din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введенный вами Пароль Восстановления недостаточно длинный. Пожалуйста, проверьте и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesena Lozinka za Oporavak nije dovoljno dugačka. Provjerite i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ ඇතුළත් කළ ප්‍රතිසාධන මුරපදය ප්‍රමාණවත් ලෙස දිග නැහැ. කරුණාකර පිරික්සා නැවත උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadané heslo na obnovenie nie je dostatočne dlhé. Skontrolujte ho a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geslo za obnovitev, ki ste ga vnesli, ni dovolj dolgo. Preverite in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjalëkalimi i Rimëkëmbjes që keni futur nuk është mjaftueshëm i gjatë. Ju lutem kontrolloni dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унета фраза за опоравак није довољно дуга. Молимо проверите и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uneta Recovery Password nije dovoljno dugačka. Molimo proverite i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Den återställningslösenord du angav är inte tillräckligt lång. Kontrollera och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila ya Urejeshaji uliyoweka haijatosha. Tafadhali angalia na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள் உள்ளிட்ட மீட்பு கடவுச்சொல் போதுமான நீளமாக இல்லை. தயவுசெய்து சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు నమోదు చేసిన రికవరీ పాస్వర్డ్ చాలు పొడవుగా లేదు. దయచేసి తనిఖీ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสผ่านกู้คืนที่ท่านใส่ยังไม่พอ กรุณาตรวจสอบแล้วลองใหม่อีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Girdiğiniz Kurtarma Şifresi yeterince uzun değil. Lütfen kontrol edin ve tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введений вами пароль для відновлення надто короткий. Будь ласка, перевірте і повторіть спробу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کا داخل کردہ بازیابی پاس ورڈ کافی لمبا نہیں ہے۔ براہ کرم چیک کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiritilgan Recovery Password yetarlicha uzun emas. Iltimos, tekshiring va qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu Khôi phục bạn nhập chưa đủ dài. Vui lòng kiểm tra và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-Password yokubuyisela oyifakileyo ayide. Nceda ujonge uze uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您输入的恢复密码长度不够。请检查后重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "你輸入的恢復密碼不夠長。請檢查並重試。" + } + } + } + }, + "recoveryPasswordErrorTitle" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verkeerde Herstel Wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة مرور الاسترداد خاطئة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolu yanlışdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط بحالی پاس ورڈ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няправільны Recovery Password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешна Парола за Восстановление" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ভুল হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contrasenya de recuperació incorrecta" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesprávné heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfrinair Adfer Anghywir" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forkert Recovery Password" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falsches Wiederherstellungspasswort" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Λάθος Κωδικός Ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incorrect Recovery Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malĝusta ripara pasvorto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clave de Recuperación Incorrecta" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clave de Recuperación Incorrecta" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vale Recovery Password" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berreskuratze pasahitz okerra" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گذرواژه ی بازیابی نادرست است" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virheellinen Recovery Password" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maling Recovery Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mot de passe de récupération incorrect" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password Incorrecto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalmar Warke Mara Daidai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password שגוי" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गलत Recovery Password" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neispravna Recovery Password" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hibás visszaállítási jelszó" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ վերականգնման գաղտնաբառ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Sandi Pemulihan Salah" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password di recupero non corretta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリーパスワードが正しくありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არასწორი Recovery Password" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password មិនត្រឹមត្រូវ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪುನಃಪಡೆಯಲು ಪಾಸ್ವರ್ಡ್ ತಪ್ಪಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 복구 비밀번호" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya veşartî yê xelet" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password y'ekiino si kituufu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neteisingas Recovery Password" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepareiza atgūšanas parole" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неправилна Лозинка за обновување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөв нууц үгийг оруулаагүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Laluan Pemulihan Tidak Betul" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password မှားနေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Galt Recovery Password" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गलत पुन:प्राप्ति पासवर्ड" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onjuist Herstel Wachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil Recovery Password" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mawekerede wa Ndondomeko wosalakwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤ ਡੀਕੋਡ ਪਾਸਵਰਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieprawidłowe hasło odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلطه بیرته راګرځېدونکي رمز" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senha de Recuperação incorreta" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chave de Recuperação Incorreta" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolă de recuperare incorectă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неверный Пароль восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Netočna Recovery Password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සාවද්‍ය Recovery Password" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nesprávna fráza pre obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napačno Recovery Password" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password e pasaktë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нетачна лозинка за обнову" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogrešna Recovery Password" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Felaktig Recovery Password" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila ya Urejeshaji Iliyokosewa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தவறான பதிவெடுப்பு கடவுச்சொல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సరికాని Recovery password" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ไม่ถูกต้อง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanlış Kurtarma Şifresi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неправильний пароль відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلط Recovery Password" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noto‘g‘ri qayta tiklash paroli" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password không chính xác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iphasiwedi yokubuyisela engalunganga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "恢复密码错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "恢復密碼錯誤" + } + } + } + }, + "recoveryPasswordExplanation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Om jou rekening te laai, voer jou Herwinningswagwoord in." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لتحميل حسابك، أدخل عبارة الاسترداد الخاصة بك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yükləmək üçün geri qaytarma parolunuzu daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا اکاؤنٹ لوڈ کرنے کے لئے ریکوری پاسورڈ اندر کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для загрузкі вашага акаўнта ўвядзіце ваш Recovery Password." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "За да заредите акаунта си, въведете вашата възстановителна парола." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার অ্যাকাউন্ট লোড করতে, আপনার রিকভারি পাসওয়ার্ড প্রবেশ করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per a carregar el vostre compte, entreu la vostra contrasenya de recuperació." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pro načtení vašeho účtu, zadejte vaše heslo pro obnovení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "I lwytho eich cyfrif, rhowch eich cyfrinair adfer." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast din Gendannelseskode for at indlæse din konto." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Um deinen Account zu laden, gib dein Wiederherstellungspasswort ein." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Για να φορτώσετε τον λογαριασμό σας, εισαγάγετε τον κωδικό ανάκτησης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "To load your account, enter your recovery password." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por ŝargi vian konton, enmetu vian riparan pasvorton." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Para cargar tu cuenta, ingresa tu recovery password." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Para cargar tu cuenta, introduce tu contraseña de recuperación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konto laadimiseks sisestage oma taastamislause." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure kontua kargatzeko, sartu zure berreskuratze pasahitza." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بارگیری حساب کاربری، رمز بازیابی خود را وارد کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lataa tilisi syöttämällä palautussalasanasi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upang i-load ang iyong account, ilagay ang iyong recovery password." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pour charger votre compte, entrez votre mot de passe de récupération." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Para cargar a túa conta, introduce o teu contrasinal de recuperación." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Don ɗora asusunka, shigar da kalmar wucewarka ta mayar da hankali." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כדי לטעון את חשבונך, הזן את סיסמת ההחלמה שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना खाता लोड करने के लिए, अपना recovery password दर्ज करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da učitate svoj račun, unesite lozinku za oporavak." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A fiók betöltéséhez add meg a visszaállítási jelszavadat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր հաշիվը բեռնավորելու համար մուտքագրեք ձեր վերականգնման գաղտնաբառը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Untuk memuat akun Anda, masukkan kata sandi pemulihan Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per caricare il tuo account, inserisci la tua password di recupero." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントをロードするには、リカバリーパスワードを入力してください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ანგარიშის ჩატვირთვისათვის, შეიყვანეთ თქვენი აღდგენის პაროლი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "To load your account, enter your recovery password." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಅಕೌಂಟ್ ಅನ್ನು ಲೋಡ್ ಮಾಡಲು, ನಿಮ್ಮ ರಿಕವರಿ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정을 로드하려면 복구 비밀번호를 입력하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji bo hesana hesaban bişinê şîfreya hesaban te." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "To lowolanirako, yingiza kazambi k'ofoyo ka account yyo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norėdami įkelti savo paskyrą, įveskite savo atkūrimo slaptažodį." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lai ielādētu tavu kontu, ievadi savu atjaunošanas paroli." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "За да ја учитате вашата сметка, внесете ја вашата лозинка за опоравка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны аккаунт ачаалагдах үед, сэргээх нууц үгээ оруулна уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Untuk memuatkan akaun anda, masukkan kata laluan pemulihan anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကောင့်ကို ဖွင့်ရန် သင်၏ recovery password ကိုထည့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "For å laste din konto, skriv inn din gjenopprettingsfrase." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफ्नो खाता लोड गर्न, तपाईंको रिकभरी पासवर्ड प्रविष्ट गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer uw herstelwachtwoord in om uw account te laden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "For å laste kontoen din, skriv inn gjenopprettingspassordet ditt." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuti mutsegule akaunti yanu, lowetsani password yanu yobwezeretsa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਖਾਤਾ ਲੋਡ ਕਰਨ ਲਈ, ਆਪਣਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wczytać konto, wprowadź hasło odzyskiwania." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل حساب پورته کولو لپاره خپل بیا رغونه پاسورډ داخل کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Para carregar sua conta, insira sua senha de recuperação." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Para carregar a sua conta, insira a sua chave de recuperação." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pentru a vă încărca contul, introduceți parola de recuperare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Для загрузки учетной записи введите ваш Пароль Восстановления." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da učitaš svoj račun, unesi svoju lozinku za oporavak." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ගිණුම පූරණය කිරීමට, ලඟාකරන මුරපදය ඇතුළත් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítanie vášho účtu, zadajte vaše heslo na obnovenie." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za nalaganje vašega računa vnesite svoje geslo za obnovitev." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Për të ngarkuar llogarinë tuaj, futni fjalëkalimin e rimëkëmbjes." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да бисте учитали свој налог, унесите фразу за опоравак." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za učitavanje vašeg naloga, unesite vašu recovery password." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "För att läsa in ditt konto, ange ditt återställningslösenord." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ili kupakia akaunti yako, weka nywila yako ya urejeshaji." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கை ஏற்ற, உங்கள் மீட்பு கடவுச்சொல்லை உள்ளிடவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఖాతాను లోడ్ చేయడానికి, మీ రికవరీ పాస్వర్డ్ ని నమోదు చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กรอกรหัสผ่านกู้คืนของคุณเพื่อโหลดบัญชีของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yüklemek için kurtarma şifrenizi girin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Щоб завантажити ваш обліковий запис, введіть ваш пароль для відновлення." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا اکاؤنٹ لوڈ کرنے کے لیے، اپنا بازیابی پاس ورڈ درج کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisobingizni yuklash uchun, Recovery password ni kiriting." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Để tải tài khoản của bạn, hãy nhập mật khẩu khôi phục của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukhuphulela iakhawunti yakho, faka i-Password yakho yokubuyisela." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "要加载您的账户,请输入您的恢复密码。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "欲加載您的帳戶,請輸入您的恢復密碼。" + } + } + } + }, + "recoveryPasswordHidePermanently" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek Herstel Wagwoord Permanent" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء كلمة مرور الاسترداد بشكل دائم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunu həmişəlik gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "همیشه پناهی بیر شارت کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схаваць Recovery Password назусім" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Пароль за Восстановление Постоянно" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্থায়ীভাবে Recovery Password গোপন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga permanentment la contrasenya de recuperació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trvale skrýt heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio Cyfrinair Adfer yn Barhaol" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password permanent" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiederherstellungspasswort dauerhaft ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη του Κωδικού Ανάκτησης Μόνιμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Recovery Password Permanently" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi la riparan pasvorton porĉiam" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Clave de Recuperación Permanentemente" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar clave de recuperación permanentemente" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida Recovery Password alatiseks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berreskuratze Pasahitza Ezabatu Betiko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گذرواژه بازیابی خود را به طور دایم مخفی کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota Recovery Password pysyvästi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago ang Recovery Password Nang Permanente" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacher définitivement le mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Recovery Password Permanentemente" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ɓoye Kalmar Warke Har Abada" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר את Recovery Password לצמיתות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password स्थायी रूप से छुपाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrij Recovery Password" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visszaállítási jelszó végleges elrejtése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մշտապես թաքցնել պահուստային գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Kata Sandi Pemulihan Secara Permanen" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi la password di recupero permanentemente" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリパスワードを永久に隠す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password-ის მუდმივად დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់ Recovery Password ជាអចិន្ត្រៃយ៍" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪುನಃಪಡೆಯಲು ಪಾಸ್ವರ್ಡ್ ಶಾಶ್ವತವಾಗಿ ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 비밀번호 영구적으로 숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya veşartîyê herdem veşêre" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka Recovery Password Pmanenti" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visam laikui slėpti Recovery Password" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastāvīgi slēpt atgūšanas paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постојани сокриј Лозинка за обновување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг дарагдсаар нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Kata Laluan Pemulihan Secara Kekal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ကို အပြီးတိုင်ဖျောက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password permanent" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password स्थायी रूपमा लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herstel Wachtwoord Permanent Verbergen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password permanent" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa Chibisobisobwe cha Ndondomeko Chokhazikika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਮੇਸ਼ਾ ਲਈ ਹਤਿਆਰ ਲੁਕਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj hasło odzyskiwania na stałe" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د تل لپاره بیرته راګرځېدونکي رمز پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Senha de Recuperação Permanentemente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esconder Chave de Recuperação Permanentemente" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde definitiv Parola de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Пароль Восстановления навсегда" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrij Recovery Password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ස්ථිරවම සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť frázu pre obnovu natrvalo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij Recovery Password za vedno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshih Përgjithmonë Recovery Password" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Трајно сакриј лозинку за обнову" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrij Recovery Password" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj Recovery Password Permanent" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha Nywila ya Urejeshaji Milele" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவெடுப்பு கடவுச்சொல்லை நிரந்தரமாக மறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery password శాశ్వతంగా దాచండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อน Recovery Password อย่างถาวร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma Şifresini Kalıcı Olarak Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приховати пароль відновлення назавжди" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ہمیشہ کے لیے چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolini doimiy yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn Recovery Password vĩnh viễn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla Iphasiwedi yokubuyisela Ngokupheleleyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "永久隐藏恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "永久隱藏恢復密碼" + } + } + } + }, + "recoveryPasswordHidePermanentlyDescription1" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonder jou herstelwagwoord, kan jy nie jou rekening op nuwe toestelle laai nie.

Ons beveel sterk aan dat jy jou herstelwagwoord op 'n veilige plek stoor voor jy voortgaan." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بدون كلمة المرور الاستردادية، لا يمكنك تحميل حسابك على الأجهزة الجديدة.

نوصيك بشدة بحفظ كلمة المرور الاستردادية في مكان آمن قبل المتابعة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuz olmadan hesabınızı yeni cihazlarda yükləyə bilməzsiniz.

Davam etməzdən əvvəl geri qaytarma parolunuzu təhlükəsiz və güvənli yerdə saxlamağınızı şiddətlə tövsiyə edirik." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اوتے گی پسی تے تہ انقوم رازانی پسورد نیستگ، شمای اکونت نوی داس گپپدیں۔

ما قوتی دیتا کنت ہور پسی تے انقوم رازانی پسورد ہامینت بیت امن جگہ۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без вашага Recovery password вы не зможаце загрузіць свой уліковы запіс на новыя прылады.

Мы настойліва рэкамендуем захаваць ваш Recovery password у надзейным і бяспечным месцы перад прадаўжэннем." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без вашата парола за възстановяване не можете да заредите акаунта си на нови устройства.

Силно препоръчваме да запазите паролата си за възстановяване на сигурно и надеждно място, преди да продължите." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Without your recovery password, you cannot load your account on new devices.

We strongly recommend you save your recovery password in a safe and secure place before continuing." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sense la vostra recovery password, no podeu carregar el vostre compte en nous dispositius.

Us recomanem que guardeu la vostra recovery password en un lloc segur abans de continuar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez hesla pro obnovení nelze účet načíst do nových zařízení.

Důrazně doporučujeme, abyste si před pokračováním uložili heslo pro obnovení na bezpečné místo." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heb eich cyfrinair adfer, ni allwch lwytho eich cyfrif ar ddyfeisiau newydd.

Rydym yn argymell yn gryf eich bod yn cadw eich cyfrinair adfer mewn lle diogel cyn parhau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uden din recovery password kan du ikke indlæse din konto på nye enheder.

Vi anbefaler kraftigt, at du gemmer din recovery password et sikkert sted, inden du fortsætter." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du kannst dein Account nicht ohne dein Wiederherstellungspasswort auf neuen Geräten laden.

Wir empfehlen dringend, dein Wiederherstellungspasswort an einem sicheren Ort aufzubewahren, bevor Du fortfährst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χωρίς τον κωδικό ανάκτησης, δεν μπορείτε να φορτώσετε τον λογαριασμό σας σε νέες συσκευές.

Συνιστούμε ανεπιφύλακτα να αποθηκεύσετε τον κωδικό ανάκτησης σε ένα ασφαλές και σίγουρο μέρος πριν συνεχίσετε." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Without your recovery password, you cannot load your account on new devices.

We strongly recommend you save your recovery password in a safe and secure place before continuing." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen via reakirebla pasvorto, vi ne povas ŝarĝi vian konton en novaj aparatoj.

Ni forte rekomendas konservi vian reakireblan pasvorton en sekura kaj sekura loko antaŭ ol daŭri." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sin su clave de recuperación no puede iniciar sesión en otros dispositivos.

Le recomendamos que guarde su clave de recuperación en un lugar a salvo y seguro antes de seguir." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sin su clave de recuperación no puede iniciar sesión en otros dispositivos.

Le recomendamos que guarde su clave de recuperación en un lugar a salvo y seguro antes de seguir." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilma teie taastamisparoolita ei saa te oma kontot uutesse seadmetesse laadida.

Soovitame tungivalt salvestada oma taastamisparool turvalisse ja ohutusse kohta enne jätkamist." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zure berreskurapen-pasabiderik gabe, ezin izango duzu zure kontua kargatu gailu berrietan.

Gomendatzen dugu zure berreskurapen-pasabidea toki seguru batean gordetzea jarraitzen baino lehen." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بدون رمز عبور بازیابی، نمی‌توانید حساب خود را در دستگاه‌های جدید بارگیری کنید.

ما قویاً توصیه می‌کنیم گذرواژه بازیابی خود را قبل از ادامه در مکانی امن و مطمئن ذخیره کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilman palautussalasanaasi et voi ladata tiliäsi uusille laitteille.

Suosittelemme vahvasti, että tallennat palautussalasanasi turvalliseen paikkaan ennen jatkamista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kung wala ang iyong recovery password, hindi mo ma-load ang iyong account sa bagong devices.

Lubos naming inirerekumenda na itago mo ang iyong recovery password sa ligtas at secure na lugar bago magpatuloy." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sans votre mot de passe de récupération, vous ne pouvez pas charger votre compte sur de nouveaux appareils.

Nous vous recommandons fortement de sauvegarder votre mot de passe de récupération dans un endroit sûr et sécurisé avant de continuer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sen o teu contrasinal de recuperación, non poderás cargar a túa conta en dispositivos novos.

Recoméndase encarecidamente gardar o contrasinal de recuperación nun lugar seguro antes de continuar." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba tare da kalmar sirrin dawowa ba, ba za ku iya ɗora asusunku a kan sabbin na'urori ba.

Muna ba da shawara sosai ku ajiye kalmar sirrin dawowarku a cikin wuri mai aminci kafin ci gaba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ללא סיסמת השחזור שלך, אינך יכול/ה לטעון את החשבון שלך במכשירים חדשים.

אנו ממליצים בחום לשמור את סיסמת השחזור במקום בטוח ומאובטח לפני ההמשך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "बिना अपने रिकवरी पासवर्ड के, आप अपने खाते को नए उपकरणों पर लोड नहीं कर सकते।

हम दृढ़ता से अनुशंसा करते हैं कि आप जारी रखने से पहले अपने रिकवरी पासवर्ड को सुरक्षित और सुरक्षित स्थान पर सहेज लें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez vaše lozinke za oporavak, ne možete učitati svoj račun na nove uređaje.

Preporučujemo da spremite svoju lozinku za oporavak na sigurno mjesto prije nastavka." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A visszaállítási jelszó nélkül nem tudod betölteni a felhasználódat új eszközökön.

Erősen ajánljuk a visszaálltási jelszó biztonságos helyen történő mentését." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Առանց ձեր վերականգնման գաղտնաբառի, դուք չեք կարող բեռնել ձեր հաշիվը նոր սարքերի վրա։

Մենք ուժեղաբար խորհուրդ ենք տալիս պահպանել ձեր վերականգնման գաղտնաբառը ապահով և անվտանգ վայրում՝ շարունակելուց առաջ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanpa kata sandi pemulihan, Anda tidak dapat memuat akun Anda di perangkat baru.

Kami sangat menyarankan Anda menyimpan kata sandi pemulihan Anda di tempat yang aman dan terlindungi sebelum melanjutkan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senza la tua password di recupero, non puoi caricare il tuo account su nuovi dispositivi.

Ti consigliamo vivamente di salvare la tua password di recupero in un luogo sicuro prima di continuare." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリパスワードがなければ、新しいデバイスでアカウントを読み込むことはできません。

続行する前に、リカバリパスワードを安全で安全な場所に保存することを強くお勧めします。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უსაფრთხოების პაროლის გარეშე არ შეგიძლიათ თქვენი ანგარიშის ჩატვირთვა ახალ მოწყობილობებზე.

გვსულად გირჩევთ, შეინახოთ თქვენი უსაფრთხოების პაროლი უსაფრთხო და დაცულ ადგილას, სანამ გააგრძელებთ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ដោយគ្មានលេខសម្ងាត់បណ្ដាញ តើ អ្នកមិនអាចផ្ទុកគណនីស៊ីសិនរបស់អ្នកនៅលើឧបករណ៍ថ្មីបានទេ។

យើងណែនាំឱ្យអ្នករក្សា Recovery password នៅឋាននៃ​ដែលសុវត្ថិភាព និងសន្តិសុខ មុនពេលបន្ត។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಪಟ ಕಾಣು ಪಾಸ್ವರ್ಡ್ ಇಲ್ಲದೆ, ನೀವು ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಹೊಸ ಸಾಧನಗಳಲ್ಲಿ ಲೋಡ್ಗೆ ಮಾಡಲಾಗುವುದಿಲ್ಲ.

ದಯವಿಟ್ಟು ನಿಮ್ಮ ಪಟ ಕಾಣು ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ಸುರಕ್ಷಿತ ಸ್ಥಳದಲ್ಲಿ ಉಳಿಸಿ ಮುಂದುವರಿಯಲು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 비밀번호가 없으면 새로운 기기에서 계정을 불러올 수 없습니다.

계속하기 전에 안전하고 보안된 곳에 복구 비밀번호를 저장할 것을 강력히 권장합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sema navê şifreya te yê derbasî, hûn navê hesabek xwe li sermasanayên nû radkebikin.

Em bi piştriyariyan navê şifreya te yê derbasî li cihê muşterî û aram bike berdewamde." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wabula enkizi y'owkubassezibwa, toubula enkiza y'ókugazi nirirambula oluwadde.

Tumukubiriza mwebuddirize enkiza y'okubassenguka ku bulabirira bwewucuya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Be atkūrimo slaptažodžio, Jūs negalite užkrauti savo paskyros naujuose įrenginiuose.

Primygtinai rekomenduojame išsaugoti savo atkūrimo slaptažodį saugioje vietoje prieš tęsiant." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez jūsu atjaunošanas paroles jūs nevarat ielādēt savu kontu jaunās ierīcēs.

Mēs stingri iesakām saglabāt savu atjaunošanas paroli drošā vietā, pirms turpināt." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без вашата лозинка за обновување, не можете да ја вчитате вашата сметка на нови уреди.

Силно препорачуваме да ја зачувате вашата лозинка за обновување на безбедно и сигурно место пред да продолжите." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Таны сэргээх нууц үггүйгээр та шинэ төхөөрөмжүүддээ таны аккаунтыг ачаалж чаднагүй.

Та сэргээх нууц үгээ аюулгүй, хамгаалагдсан газар хадгалахыг бид хүчтэй зөвлөж байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanpa kata laluan pemulihan anda, anda tidak boleh memuatkan akaun anda pada peranti baru.

Kami sangat mengesyorkan anda menyimpan kata laluan pemulihan anda di tempat yang selamat dan terjamin sebelum meneruskan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Without your recovery password, you cannot load your account on new devices.

We strongly recommend you save your recovery password in a safe and secure place before continuing." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uten gjenopprettingspassordet kan du ikke laste kontoen din på nye enheter.

Vi anbefaler sterkt at du lagrer gjenopprettingspassordet ditt på et trygt og sikkert sted før du fortsetter." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको रिकभरी पासवर्ड विना, तपाईंले नयाँ उपकरणहरूमा आफ्नो खाता लोड गर्न सक्नुहुन्न।

हामी कडा सिफारिस गर्दछौं कि तपाईंसँग आश्रय र सुरक्षित स्थानमा आफ्नो रिकभरी पासवर्ड बचाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zonder uw herstelwachtwoord kunt u uw account niet op nieuwe apparaten laden.

We raden u ten zeerste aan uw herstelwachtwoord op een veilige plaats op te slaan voordat u doorgaat." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utan ditt gjenoppretta passord kan du ikkje laste kontoen din på nye einingar.

Vi tilrår sterkt at du lagrer ditt gjenoppretta passord på ein sikker stad før du fortsetter." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Popanda chinsinsi chanu chapamwamba chobwezeretsa, simungathe kulembera nambala yanu pa zipangizo zatsopano.

Timakondwera kwambiri kuti muwonetse chinsinsi chanu chapamwamba chobwezeretsa ku malo otetezeka komanso otetezedwa musanayambe." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਡੇ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਤੋਂ ਬਿਨਾਂ, ਤੁਸੀਂ ਆਪਣੇ ਖਾਤੇ ਨੂੰ ਨਵੇਂ ਉਪਕਰਣਾਂ ਤੇ ਲੋਡ ਨਹੀਂ ਕਰ ਸਕਦੇ।

ਅਸੀਂ ਬਹੁਤ ਸਖਤ ਸਿਫਾਰਸ਼ੀ ਕਰਦੇ ਹਾਂ ਕਿ ਤੁਸੀਂ ਆਪਣੇ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਨੂੰ ਸੁਰੱਖਿਅਤ ਅਤੇ ਸੁਰੱਖਿਅਤ ਜਗ੍ਹਾ ਵਿੱਚ ਰੱਖੋ ਜਾਂਜਾਰੀ ਰੱਖਣ ਤੋਂ ਪਹਿਲਾਂ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez hasła odzyskiwania nie można wczytać konta na nowych urządzeniach.

Zanim przejdziesz dalej, zdecydowanie zalecamy zapisanie hasła odzyskiwania w bezpiecznym miejscu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو د بیا رغونې رمز پرته، تاسو نشئ کولی خپل حساب په نویو وسیلو کې بار کړئ.

موږ په کلکه سپارښتنه کوو چې تاسو خپل بیا رغونې رمز په خوندي او خوندي ځای کې خوندي کړئ مخکې له دې چې پرمخ ولاړ شئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem sua senha de recuperação, você não pode carregar sua conta em novos dispositivos.

Recomendamos fortemente que você salve sua senha de recuperação em um local seguro e seguro antes de continuar." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sem a sua chave de recuperação, não pode carregar a sua conta em novos dispositivos.

Recomendamos fortemente que guarde a sua chave de recuperação num lugar seguro antes de continuar." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fără parola de recuperare, nu vă puteți încărca contul pe dispozitive noi.

Vă recomandăm insistent să salvați parola de recuperare într-un loc sigur și securizat înainte de a continua." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без Пароля Восстановления вы не можете загрузить учетную запись на новых устройствах.

Мы настоятельно рекомендуем вам сохранить Пароль Восстановления в безопасном месте перед продолжением." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez vaše lozinke za oporavak, ne možete učitati vaš nalog na novim uređajima.

Snažno preporučujemo da sačuvate vaše lozinke za oporavak na sigurnom mestu pre nastavka." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ පුනර්ජනන මුරපදය නොමැතිව, ඔබට ඔබේ ගිණුම නව උපකරණ වලට පූරන්න නොහැක.

අපි පාහේයක් විෂයයුරාක් ලෙස මාධ්‍ය පිරවුමට ඔබේ පුනර්ජනන මුරපදය ආරක්ෂිත ස්ථානයකට පූරන්න කියා ස්මාරක දෙනු ලැබේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez frázy na obnovenie nemôžete načítať svoje konto do nových zariadení.

Dôrazne odporúčame, aby ste si pred pokračovaním uložili frázu na obnovenie na bezpečné miesto." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brez obnovitvenega gesla ne morete naložiti svojega računa na novih napravah.

Močno priporočamo, da obnovitveno geslo shranite na varno mesto, preden nadaljujete." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pa fjalëkalimin tuaj të rimëkëmbjes, nuk mund të ngarkoni llogarinë tuaj në pajisje të reja.

Ne ju rekomandojmë fort që ta ruani fjalëkalimin tuaj të rimëkëmbjes në një vend të sigurt përpara se të vazhdoni." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без ваше recovery password, не можете учитати свој налог на новим уређајима.

Снажно препоручујемо да сачувате своју recovery password на безбедном и сигурном месту пре наставка." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bez vaše rezervne lozinke, nećete moći da učitate svoj nalog na novim uređajima.

Preporučujemo da sačuvate vašu rezervnu lozinku na sigurnom mestu pre nego što nastavite." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utan ditt återställningslösenord kan du inte ladda ditt konto på nya enheter.

Vi rekommenderar starkt att du sparar ditt återställningslösenord på ett säkert och tryggt ställe innan du fortsätter." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bila nenosiri lako la kupona, huwezi kupakia akaunti yako kwenye vifaa vipya.

Tunapendekeza sana ulihifadhi nenosiri lako la kupona mahali salama kabla ya kuendelea." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் ரெகவர் ரகசிய வார்த்தை இல்லாமல், புதிய சாதனங்களில் உங்கள் கணக்கை ஏற்ற முடியாது.

தொடங்குவதற்கு முன் உங்கள் ரெகவர் ரகசிய வார்த்தையை பாதுகாப்பான ஒரு இடத்தில் சேமிக்க பரிந்துரைக்கிறோம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ రికవరీ పాస్‌వర్డ్ లేకుండా, మీరు మీ ఖాతాను కొత్త పరికరాలలో లోడ్ చేయలేరు.

మరింత కొనసాగించే ముందు మీ రికవరీ పాస్‌వర్డ్‌ను ఒక సురక్షితమైన స్థలంలో సేవ్ చేయాలని మేము బలంగా సిఫారసు చేస్తున్నాము." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หากไม่มีรหัสผ่านกู้คืน คุณไม่สามารถโหลดบัญชีของคุณในอุปกรณ์ใหม่ได้

เราขอแนะนำอย่างยิ่งให้คุณบันทึกความปลอดภัยของรหัสผ่านกู้คืนของคุณไว้ในที่ปลอดภัย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery password olmadan hesabınızı yeni cihazlarda yükleyemezsiniz.

Devam etmeden önce recovery password'ınızı güvenli bir yerde saklamanızı şiddetle tavsiye ederiz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Без вашого пароля для відновлення ви не зможете завантажити свій обліковий запис на нових пристроях.

Ми наполегливо рекомендуємо зберігати ваш пароль для відновлення у безпечному місці перед продовженням." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے ریکوری پاس ورڈ کے بغیر، آپ نۓ آلات پر اپنا اکاؤنٹ لوڈ نہیں کر سکتے۔

ہم سختی سے سفارش کرتے ہیں کہ جاری رکھنے سے پہلے اپنے ریکوری پاس ورڈ کو ایک محفوظ جگہ پر محفوظ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolingizsiz, siz yangi qurilmalarda hisobingizni yuklay olmaysiz.

Davom ettirishdan oldin qayta tiklash parolingizni xavfsiz joyda saqlashingizni qat'iyan tavsiya qilamiz." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không có mật khẩu phục hồi, bạn không thể tải tài khoản của mình trên thiết bị mới.

Chúng tôi khuyến cáo bạn nên lưu mật khẩu phục hồi ở nơi an toàn trước khi tiếp tục." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngaphandle kwegama lakho eligqithisiweyo lokubuyisela, awukwazi ukulayisha iakhawunti yakho kwizixhobo ezintsha.

Sikugxininise kakhulu ukuba ugcine igama lakho lokubuyisela kwindawo ekhuselekileyo neyimfihlo phambi kokuqhubeka." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有您的恢复密码,您将不能在新设备上加载您的账户。

我们强烈建议您在继续之前将恢复密码保存在一个安全的地方。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "沒有您的恢復密碼,您無法在新設備上加載您的帳戶。

我們強烈建議您在繼續操作前,將您的恢復保存在一個安全可靠的地方。" + } + } + } + }, + "recoveryPasswordHidePermanentlyDescription2" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil jou herstel wagwoord permanent op hierdie toestel versteek? Dit kan nie ongedaan gemaak word nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد إخفاء كلمة مرور الاسترداد الخاصة بك على هذا الجهاز نهائيًا؟ لا يمكن التراجع عن هذا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzu bu cihazda həmişəlik gizlətmək istədiyinizə əminsiniz? Bunun geri dönüşü yoxdur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی خفیہ استعانت کوڈ ایی ڈیوائیس سرمنداً چھپا بکنی؟ ایی خال ھچگاں نہ بیت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце пастаянна схаваць ваш канчатковы пароль аднаўлення на гэтай прыладзе? Гэта немагчыма адмяніць." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да скриеш своята възстановителна парола за постоянно на това устройство? Това действие не може да бъде отменено." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই যন্ত্রে আপনার পুনরুদ্ধার পাসওয়ার্ড স্থায়ীভাবে গোপন করতে নিশ্চিত? এটি পূর্বাবস্থায় ফেরানো যাবে না।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu amagar permanentment la vostra contrasenya de recuperació en aquest dispositiu? Això no es pot desfer." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete trvale skrýt heslo pro obnovení na tomto zařízení? Tuto akci nelze vrátit." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am guddio eich cyfrinair adfer am byth ar y ddyfais hon? Ni ellir dadwneud hyn." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du permanent vil skjule din gendannelseskode på denne enhed? Dette kan ikke fortrydes." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du das Wiederherstellungspasswort auf diesem Gerät dauerhaft ausblenden möchtest? Dies kann nicht mehr rückgängig gemacht werden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Είστε βέβαιοι ότι θέλετε να αποκρύψετε μόνιμα τον κωδικό σας ανάκτησης σε αυτήν τη συσκευή; Αυτό δεν μπορεί να αναιρεθεί." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas porĉiame kaŝi vian reakiraj pasvorton sur ĉi tiu aparato? Ĉi tio ne povas esti malfaro." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Está seguro que desea ocultar permanentemente su contraseña de recuperación en este dispositivo? Esto no se puede deshacer." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Está seguro que desea ocultar permanentemente su contraseña de recuperación en este dispositivo? Esto no se puede deshacer." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas olete kindel, et soovite oma taastamisparooli sellel seadmel jäädavalt peita? Seda ei saa tühistada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude zure berreskurapen pasahitza gailu honetan betirako ezkutatu nahi duzula? Ezin da desegin." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا مطمئن هستید که می‌خواهید گذرواژه بازیابی خود را روی این دستگاه به صورت دائمی پنهان کنید؟ این کار قابل برگشت نیست." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti piilottaa palautussalasanan pysyvästi tässä laitteessa? Tätä ei voi peruuttaa." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang gusto mong permanenteng itago ang iyong recovery password sa device na ito? Hindi na ito mababawi." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir masquer définitivement votre mot de passe de récupération sur cet appareil ? Cela ne peut pas être annulé." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tes a certeza de querer ocultar permanentemente o teu contrasinal de recuperación neste dispositivo? Isto non se pode desfacer." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka asirce kalmar dawowa dindindin a wannan na'ura? Wannan ba za a iya warwarewa ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך להסתיר את הסיסמה לשחזור שלך לצמיתות במכשיר זה? זה לא ניתן לביטול." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई अपने रिकवरी पासवर्ड को इस डिवाइस पर स्थायी रूप से छिपाना चाहते हैं? इसे पूर्ववत नहीं किया जा सकता है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite trajno sakriti zaporku za oporavak na ovom uređaju? To se ne može poništiti." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy véglegesen el akarod rejteni a visszaállítási jelszavad ezen az eszközön? Ezt nem lehet visszafordítani." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ուզում եք մշտապես թաքցնել Ձեր վերականգնման գաղտնաբառը այս սարքի վրա: Սա անհնար է հետքը քայլել:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin menyembunyikan sandi pemulihan secara permanen di perangkat ini? Hal ini tidak dapat dibatalkan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler nascondere permanentemente la tua password di recupero su questo dispositivo? Questa azione non può essere annullata." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "この端末でリカバリパスワードを永久に非表示にしてもよろしいですか? これは元に戻すことはできません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ აღდგენის პაროლის ამ მოწყობილობაზე სამუდამოდ დამალვა? ამის დაბრუნება შეუძლებელია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាចង់លាក់ពាក្យសម្ងាត់សង្គ្រោះរបស់អ្នកដោយស្នាក់នៅលើឧបករណ៍នេះជាអចិន្ត្រៃយ៍? វាមិនអាចត្រូវបានមិនធ្វើវិញបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಈ ಸಾಧನದಲ್ಲಿ ನಿಮ್ಮ ಪುನಃ ಪಡೆಯುವ ರಹಸ್ಯ ಪದವನ್ನು ಶಾಶ್ವತವಾಗಿ ಮರೆಮಾಡಲು ಖಚಿತವಾಗಿದ್ದೀರಾ? ಇದನ್ನು ರದ್ದುಮಾಡಲಾಗುವುದಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "정말 이 장치에서 복구 비밀번호를 영구적으로 숨기겠습니까? 이 작업은 되돌릴 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu piştrast î ku tu dixwazî şîfreya rewşên xilasî ya cîhazê veşêrî daîmen? Ev nekaribe vegere." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okutereka ebisumuluzo by'okuddabiriza ku kidirisa kino emirembe gyonna? Kino tekijja kusoboka okujeemebwa." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ທ່ານຫມັ່ນໃຈບໍ່ວ່າທ່ານຈະເມືອນຊົ່ວຫມົດ Recovery password ຂອງທ່ານເລັວ? ການນັ້ນບໍ່ສາມາດຖືກຄືນໄດ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite visam laikui paslėpti savo atkūrimo slaptažodį šiame įrenginyje? To atšaukti negalima." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties pastāvīgi slēpt savu atkopšanas paroli šajā ierīcē? Tas nav atgriezenisks." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате трајно да ја сокриете вашата лозинка за обновување на овој уред? Ова не може да се поништи." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэхүү нууц үгийг энэ төхөөрөмжөөс нуухдаа итгэлтэй байна уу? Энэ үйлдлийг буцаах боломжгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu menyembunyikan kata laluan pemulihan anda secara kekal pada peranti ini? Ini tidak boleh diundurkan." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤစက်ကိရိယာတွင် သင့် ပြန်လည်ရယူရေးစကားဝှက်ကို အပြီးဖျောက်လိုသည်မှာ သေချာပါသလား။ ၎င်းကို ပြန်ဆောင်ရွက်၍မရပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil permanent skjule ditt Recovery Password på denne enheten? Dette kan ikke angres." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंले आफ्नो पुनःस्थापना पासवर्ड स्थायी रूपमा यो उपकरणमा लुकाउन निश्चित हुनुहुन्छ? यो पूर्ववत गर्न सकिदैन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u uw herstelwachtwoord permanent wilt verbergen op dit apparaat? Dit kan niet ongedaan gemaakt worden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å skjule ditt gjenopprettingspassord for godt på denne eininga? Dette kan ikkje angre." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kubisitsa chinsinsi chanu chobwezeretsanso pa chipangizo ichi? Izi sizingathe kusinthidwa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਆਪਣੇ ਮਨੁੱਖੀ ਕਰੋੜੀ ਸੰਕੇਤਾਂ ਨੂੰ ਇਸ ਜੰਤਰ 'ਤੇ ਅਸਥਾਈ ਤੌਰ ਤੇ ਛੁਪਾਉਣਾ ਚਾਹੁੰਦੇ ਹੋ? ਇਹ ਮੁੜ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz trwale ukryć hasło odzyskiwania na tym urządzeniu? Nie można tego cofnąć." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ خپل recovery password په دې وسیله کې دایمي پټ کړئ؟ دا نشي بیرته اخیستل کیدی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja ocultar permanentemente sua senha de recuperação neste dispositivo? Isso não pode ser desfeito." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que deseja esconder permanentemente a sua chave de recuperação neste dispositivo? Isso não pode ser desfeito." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești ascunderea definitivă a parolei de recuperare de pe acest dispozitiv? Această acțiune nu poate fi anulată." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите навсегда скрыть ваш пароль восстановления на этом устройстве? Это действие не может быть отменено." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš trajno sakriti svoju recovery password na ovom uređaju? Ovo se ne može poništiti." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ ප්‍රතිසාධන මුරපදය මෙම උපාංගයෙන් ස්ථිරවම සඟවීමට අවශ්‍ය බව විශ්වාසද? මෙය හකුලා නොගත හැකි වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete trvalo skryť frázu na obnovenie na tomto zariadení? Toto sa nedá vrátiť späť." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali res želite trajno skriti svoje obnovitveno geslo na tej napravi? Tega ni mogoče razveljaviti." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta fshini përgjithmonë fjalëkalimin e rikuperimit në këtë pajisje? Kjo nuk mund të zhbëhet." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите трајно да сакријете вашу Recovery Password на овом уређају? Ово не може бити поништено." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da trajno sakrijete svoju Recovery password na ovom uređaju? Ovo ne može biti poništeno." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill permanent dölja ditt återställningslösenord på denna enhet? Detta kan inte ångras." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je, una uhakika unataka kuficha recovery password yako kabisa kwenye kifaa hiki? Hii haiwezi kubatilishwa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் மீட்பு கடவுச்சொல்லை இந்த சாதனத்தில் நிரந்தரமாக மறைக்க விரும்புகிறீர்களா? இது ஆவணப்படுத்த முடியாது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మీ రికవరీ పాస్వర్డ్‌ను ఈ పరికరంలో శాశ్వతంగా దాచాలనుకుంటున్నారా? ఇది rückgängig చేయడం సాధ్యం కాదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการซ่อนไว้รหัสผ่านการกู้คืนบนอุปกรณ์นี้อย่างถาวร? ไม่สามารถย้อนกลับได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu cihazdaki kurtarma şifrenizi kalıcı olarak gizlemek istediğinizden emin misiniz? Bu geri alınamaz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете назавжди приховати пароль для відновлення на цьому пристрої? Це не можна буде скасувати." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اپنے ریکوری پاس ورڈ کو اس ڈیوائس پر مستقل طور پر چھپانا چاہتے ہیں؟ یہ رد نہیں ہو سکے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham tiklash parolingizni ushbu qurilmada doimiy tarzda yashirmoqchimisiz? Bu qaytarib bo'lmaydi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắc rằng bạn muốn ẩn mật khẩu khôi phục của bạn vĩnh viễn trên thiết bị này? Điều này không thể hồi phục." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukufihla rhoqo iphasiwedi yakho yokubuyisela kule sixhobo? Oku akunakubuyiselwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要在此设备上永久隐藏您的恢复密码吗?该操作无法撤消。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要在此裝置上永久隱藏您的恢復密碼嗎?此操作無法撤銷。" + } + } + } + }, + "recoveryPasswordHideRecoveryPassword" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek Herstel Wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء كلمة المرور للاسترجاع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunu gizlət" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ریکوری پاسورڈ ۏرپڑانی پاہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схаваць Recovery Password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Пароль за Восстановление" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password গোপন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaga la contrasenya de recuperació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrýt heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio Cyfrinair Adfer" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiederherstellungspasswort ausblenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόκρυψη Κωδικού Ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide Recovery Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaŝi la riparan pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Clave de Recuperación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Clave de Recuperación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peida Recovery Password" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezkutatu Recovery Password" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "گذرواژه بازیابی خود را مخفی کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota Recovery Password" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itago ang Recovery Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cacher le mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Recovery Password" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ɓoye Kalmar Warke" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסתר את Recovery Password" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password छुपाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij Recovery Password" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visszaállítási jelszó elrejtése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թաքցնել Recovery գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan Kata Sandi Pemulihan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi password di recupero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリパスワードを隠す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password-ის დამალვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់ Recovery Password" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪುನಃಪಡೆಯಲು ಪಾಸ್ವರ್ಡ್ ಮರೆಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복구 비밀번호 숨기기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya veşartîyê veşêre" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kweka Recovery Password" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slėpti Recovery Password" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slēpt atgūšanas paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сокриј Лозинка за обновување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг нуух" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyi Kata Laluan Pemulihan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password ကို ဖျောက်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password लुकाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verberg Herstel Wachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul Recovery Password" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bisa Chibisobisobwe cha Ndondomeko" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਤਿਆਰ ਲੁਕਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukryj hasło odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیرته راګرځېدونکي رمز پټ کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Senha de Recuperação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar Chave de Recuperação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde Parolă de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скрыть Пароль Восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij Recovery Password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password සඟවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skryť frázu pre obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrij Recovery Password" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi Recovery Password" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сакриј лозинку за обнову" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sakrij Recovery Password" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj Recovery Password" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ficha Nywila ya Urejeshaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவெடுப்பு கடவுச்சொல்லை மறை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery password దాచండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อน Recovery Password" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma Şifresini Gizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приховати пароль відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password چھپائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolini yashirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn Recovery Password" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla Iphasiwedi yokubuyisela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐藏恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱藏恢復密碼" + } + } + } + }, + "recoveryPasswordHideRecoveryPasswordDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versteek jou herstel wagwoord permanent op hierdie toestel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إخفاء كلمة المرور الخاصة بالاسترداد على هذا الجهاز بشكل دائم." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolunuzu bu cihazda həmişəlik gizlədin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شُمسا بازیابی رمز نا ایی دستگاهء بازگہد ثبت دائمی گماہ بکنیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Схавайце ваш пароль для аднаўлення на гэтай прыладзе назаўжды." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перманентно скриване на възстановителната парола на това устройство." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই ডিভাইসে আপনার পুনরুদ্ধার পাসওয়ার্ড স্থায়ীভাবে লুকিয়ে রাখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oculta permanentment la teva contrasenya de recuperació en aquest dispositiu." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trvale skrýt moje heslo pro obnovení v tomto zařízení." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuddio eich cyfrinair adfer yn barhaol ar y ddyfais hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanent skjul din gendannelsessætning på denne enhed." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blende dein Wiederherstellungspasswort auf diesem Gerät dauerhaft aus." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μόνιμη απόκρυψη του κωδικού ανάκτησης σε αυτή τη συσκευή." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanently hide your recovery password on this device." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Porĉiame kaŝi vian riparan pasvorton en ĉi tiu aparato." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocultar permanentemente tu clave de recuperación en este dispositivo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oculta permanentemente tu clave de recuperación en este dispositivo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Päriselt peida taastamisparool sellel seadmel." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berreskuratu pasahitza gailu honetan betiko ezkutatu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بازیابی رمز عبور خود را در این دستگاه برای همیشه پنهان کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Piilota palautuslause pysyvästi tällä laitteella." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanente itago ang iyong password sa pagbawi sa device na ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masquer définitivement votre mot de passe de récupération sur cet appareil." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwashe kalmar maidowa a wannan na'ura dindindin." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "להסתיר את סיסמת השחזור במכשיר זה לצמיתות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इस डिवाइस पर अपने पुनर्प्राप्ति पासवर्ड को स्थायी रूप से छिपाएँ।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrijte svoju lozinku za oporavak na ovom uređaju." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A visszaállítási jelszó végleges elrejtése ezen az eszközön." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընդմիշտ թաքցնել վերականգնման գաղտնաբառը այս սարքում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan kata sandi Pemulihan Anda secara permanen di perangkat ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nascondi permanentemente la tua password di recupero su questo dispositivo." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "このデバイスでリカバリーパスワードを完全に非表示にします。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მუდმივად დამალეთ აღდგენის პაროლი ამ მოწყობილობაზე." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លាក់ពាក្យសម្ងាត់ស្តាររបស់អ្នកនៅលើឧបករណ៍នេះជាអចិន្រ្តៃយ៍។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಪುನಃಪ್ರಾಪ್ತಿ ಪಾಸ್ವರ್ಡನ್ನು ಈ ಸಾಧನದ ಮೇಲೆ ಶಾಶ್ವತವಾಗಿ ಮರೆಯಾಗಿಸಲು ಇಚ್ಛಿಸುತ್ತೀರಾ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 기기에서 복구 비밀번호를 영구적으로 숨깁니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya vegerê xwe ya herî encam hêle îdi vê amûreyê." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwekweka permanenti akasumulizo ko ku kkumyamu kino." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visam laikui paslėpti atkūrimo slaptažodį šiame įrenginyje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neatgriezeniski paslēpt savu atkopšanas paroli šajā ierīcē." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Трајно сокриј ја вашата лозинка за обновување на овој уред." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Танай сэргээх нууц үгийг энэ төхөөрөмж дээр бүрмөсөн нуух." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sembunyikan kata laluan pemulihan anda secara kekal pada peranti ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤကိရိယာတွင် သင်၏ပြန်လည်ရယူရန် စကားဝှက်ကို အပြီးတိုင် ဖျက်ပစ်ရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjul gjenopprettingspassord permanent på denne enheten." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यस उपकरणमा तपाइँको पुनर्प्राप्ति पासवर्ड स्थायी रूपमा लुकाउनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw herstelwachtwoord op dit apparaat permanent verbergen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanently hide your recovery password on this device." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kubisa chinsinsi chobwezera pa chipangizochi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਸ ਜੰਤਰ 'ਤੇ ਆਪਣਾ ਸੰਨਜੀਵਨ ਪਾਸਵਰਡ ਸਥਾਈ ਤੌਰ 'ਤੇ ਛੁਪਾਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na stałe ukryj na tym urządzeniu hasło odzyskiwania konta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پخپله وسیله کې د خپل بیا رغونې پاسورډ تل لپاره پټ کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permanentemente esconda sua senha de recuperação neste dispositivo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esconder permanentemente a sua palavra-passe de recuperação neste dispositivo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascunde definitiv parola de recuperare pe acest dispozitiv." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постоянно скрывать ваш пароль восстановления на этом устройстве." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrijte lozinku za oporavak na ovom uređaju." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙම උපාංගයේ ඔබගේ ප්‍රතිසාධන මුරපදය ස්ථිරවම සඟවන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Natrvalo skryť frázu na obnovenie na tomto zariadení." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno skrij geslo za obnovitev na tej napravi." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi përgjithmonë fjalëkalimin e rikuperimit në këtë pajisje." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неопозиво сакријте вашу Recovery Password на овом уређају." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trajno sakrijte svoju lozinku za oporavak na ovom uređaju." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dölj återställningslösenordet permanent på denna enhet." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa nyila ya kurejesha kwa kudumu kwenye kifaa hiki." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த சாதனத்தில் மறைந்துகாணும் கடவுச்சொல்லை நிரந்தரமாக மறைக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఈ పరికరంలో రికవరీ పాస్‌వర్డ్‌ను శాశ్వతంగా దాచండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ซ่อนรหัสการกู้คืนของคุณบนอุปกรณ์นี้อย่างถาวร" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kurtarma parolanızı bu cihazda kalıcı olarak gizleyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назавжди прибрати пароль відновлення на цьому пристрої." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے ریکوری پاس ورڈ کو اس ڈیوائس پر مستقل طور پر چھپائیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash parolini ushbu qurilmadan doimiy yashirish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ẩn mật khẩu khôi phục trên thiết bị này vĩnh viễn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fihla upangisiwe wakho wokubuyisela esisigxina kwesi sixhobo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "在此设备上永久隐藏您的恢复密码。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在此設備上永久隱藏您的恢復密碼。" + } + } + } + }, + "recoveryPasswordRestoreDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou herstel wagwoord in om jou rekening te laai. As jy dit nie gestoor het nie, kan jy dit in jou app-instellings kry." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أدخل كلمة مرور الاسترجاع لتحميل حسابك. إذا لم تقم بحفظها، يمكنك العثور عليها في إعدادات التطبيق." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yükləmək üçün geri qaytarma parolunuzu daxil edin. Saxlamamısınızsa, onu tətbiq ayarlarınızda tapa bilərsiniz." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنا اکاؤنٹ لوڈ کرنے کیلئے اپنا ریکوری پاسورڈ درج بکنا۔ اگر آپ نے اسے محفوظ نہیں کیا ہے، تو آپ اسے اپنی ایپ کی سیٹنگز میں پا سکتے ہیں۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Увядзіце recovery password для загрузкі Вашага ўліковага запісу. Калі вы не захавалі гэта, то можаце знайсці ў наладах праграмы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Въведете паролата за възстановяване, за да заредите своя профил. Ако не сте я запазили, може да я намерите в настройките на приложението." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার একাউন্ট লোড করার জন্য আপনার recovery password লিখুন। যদি আপনি এটি সংরক্ষণ না করে থাকেন, আপনি এটি আপনার অ্যাপ সেটিংসে খুঁজে পেতে পারেন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introdueix la teva contrasenya de recuperació per carregar el teu compte. Si no l'has guardat, la pots trobar a la configuració de l'aplicació." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte heslo pro obnovení k načtení účtu. Pokud ho nemáte uložené, naleznete ho v nastavení aplikace." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhowch eich cyfrinair adfer i lwytho eich cyfrif. Os nad ydych wedi'i gadw, gallwch ddod o hyd iddo yn eich gosodiadau app." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast din gendannelsesadgangskode for at indlæse din konto. Hvis du ikke har gemt den, kan du finde den i dine app-indstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gib dein Wiederherstellungspasswort ein, um deinen Account zu laden. Wenn du es nicht gespeichert hast, findest du es in deinen App-Einstellungen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εισαγάγετε τον κωδικό σας ανάκτησης για να φορτώσετε τον λογαριασμό σας. Αν δεν τον έχετε αποθηκεύσει, μπορείτε να τον βρείτε στις ρυθμίσεις της εφαρμογής." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enigu vian riparan pasvorton por ŝargi vian konton. Se vi ne konservis ĝin, vi povas trovi ĝin en viaj aplikaĵa agordoj." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrese su clave de recuperación para cargar su cuenta. Si no la ha guardado, puede encontrarla en la configuración de su aplicación." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingrese su clave de recuperación para cargar su cuenta. Si no la ha guardado, puede encontrarla en la configuración de la aplicación." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sisestage oma taastamise parool, et laadida oma konto. Kui te ei ole seda salvestanud, leiate selle oma rakenduse seadetest." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sartu zure berreskuratze pasahitza zure kontua kargatzeko. Gorde ez baduzu, aurki dezakezu aplikazioaren ezarpenetan." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای بارگذاری حساب خود، رمز بازیابی خود را وارد کنید. اگر آن را ذخیره نکرده‌اید، می‌توانید آن را در تنظیمات برنامه خود پیدا کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Syötä palautussalasanasi ladataksesi tilisi. Jos et ole tallentanut sitä, löydät sen sovelluksen asetuksista." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilagay ang iyong recovery password upang i-load ang iyong account. Kung hindi mo pa ito nai-save, makikita mo ito sa iyong app settings." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entrez votre mot de passe de récupération pour charger votre compte. Si vous ne l'avez pas enregistré, vous pouvez le trouver dans les paramètres de l'application." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o seu contrasinal de recuperación para cargar a súa conta. Se non o gardou, pode atopalo na configuración da súa aplicación." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da kalmar sirrin dawo da ku don lodin asusunku. Idan ba ku ajiye shi ba, za ku iya samun shi a cikin saitunan aikinku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपना खाता लोड करने के लिए अपना पुनर्प्राप्ति पासवर्ड दर्ज करें। यदि आपने इसे सहेजा नहीं है, तो आप इसे अपनी ऐप सेटिंग में पा सकते हैं।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite svoju lozinku za oporavak kako biste učitali svoj račun. Ako je niste spremili, možete je pronaći u postavkama aplikacije." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Írd be a visszaállítási jelszavad a fiókod betöltéséhez. Ha nem mentetted el, az alkalmazás beállításai között találhatod meg." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մուտքագրեք ձեր վերականգնման գաղտնաբառը Ձեր հաշիվը բեռնելու համար։ Եթե չեք պահել այն, կարող եք գտնել ձեր հավելվածի պարամետրերում։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan kata sandi pemulihan Anda untuk memuat akun Anda. Jika Anda belum menyimpannya, Anda dapat menemukannya di pengaturan aplikasi Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inserisci la tua password di recupero per caricare il tuo account. Se non l'hai salvata, puoi trovarla nelle impostazioni dell'app." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アカウントを読み込むためにリカバリーフレーズを入力してください。 保存していない場合は、アプリの設定で確認できます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეიყვანეთ თქვენი ქსელის პაროლი თქვენი ანგარიშის ჩამოსატვირთად. თუ ის არ აქვს შენახული, შეგიძლიათ იპოვოთ მისი აპლიკაციის პარამეტრებში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ចូល Recovery password របស់អ្នកដើម្បីផ្ទុកគណនីរបស់អ្នក។ ប្រសិនបើអ្នកមិនបានរក្សាទុកវាទេ អ្នកអាចរកវាបានឯក្នុងការកំណត់កម្មវិធីរបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಲೋಡ್ ಮಾಡಲು ನಿಮ್ಮ ಮರುಪಡೆಯುವ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ. ನೀವು ಅದನ್ನು ಉಳಿಸಿಕೊಂಡಿರುವುದಿಲ್ಲವಾದರೆ, ನೀವು ನಿಮ್ಮ ಆಪ್ ಸೆಟಿಂಗ್‌ಗಳಲ್ಲಿ ಅದನ್ನು ಹುಡುಕಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계정을 로드하려면 복구 비밀번호를 입력하세요. 저장되지 않았다면, 앱 설정에서 찾을 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji bo barkirina hesabê teya, şîfreya vegerandinê xwe binivîse. Ger tu ez neqeydkirî ye, tu dikarî wê di mîhengan xwe de bibîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingiza Recovery password yo okulongoosa akawunti yo. Bw'oba tewegasse, ojja kusobola okubiraba mu mateeka g'ekigambo munda mu pulogulamu yo" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ປ້ອນລະຫັດການຟື້ນຄືນຂອງທ່ານເພື່ອດາວໂຫຼດບັນດານຂອງທ່ານ. ຖ້າທ່ານຍັງບໍ່ໄດ້ຟອມມັນ, ທ່ານສາມາດຫາມັນໄດ້ໃນການຕັ້ງຄ່າແອັບຂອງທ່ານ." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite savo atkūrimo slaptažodį, norėdami įkelti savo paskyrą. Jei jo neišsaugojote, galite jį rasti savo programėlės nustatymuose." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ievadiet savu atjaunošanas paroli, lai ielādētu savu kontu. Ja jūsu atjaunošanas parole nav saglabāta, jūs varat atrast to lietotnes iestatījumos." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внесете ја вашата лозинка за враќање за да ја вчитате вашата сметка. Ако не ја имате зачувано, можете да ја најдете во поставките на вашата апликација." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Аккаунтаа сэргээхэд сэргээх нууц үгээ оруулах. Хэрвээ хадгалаагүй бол, аппынхаа тохиргооноос олж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Masukkan kata laluan pemulihan untuk memuatkan akaun anda. Jika anda belum menyimpannya, anda boleh menemukannya dalam tetapan aplikasi anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်အကောင့်ကို load ပြုလုပ်ရန် Recovery စကားဝှက်ကို ထည့်ပါ။ သိမ်းထားမှုပြစ်သည်မှာ app ဆက်တင် တွင် ရှာဖွေကြည့်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn ditt gjenopprettingspassord for å laste kontoen din. Hvis du ikke har lagret det, kan du finne det i app-innstillingene dine." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको खाता लोड गर्न पुनर्प्राप्ति पासवर्ड प्रविष्ट गर्नुहोस्। यदि तपाईंले यसलाई सुरक्षित गर्नुभएको छैन भने, तपाईं यो आफ्नो अनुप्रयोगको सेटिङहरूमा पाउन सक्नुहुन्छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer je herstel wachtwoord in om je account te laden. Als je het niet hebt opgeslagen, kun je het vinden in je app-instellingen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriv inn gjenopprettingspassordet ditt for å lasta inn kontoen din. Om du ikkje har lagra det, kan du finna det i appinnstillingane dine." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lemberani mawu achinsinsi a kubwereranso kuti mulowe muakaunti yanu. Ngati simunazisunge, mutha kuzipeza muzoikamo za pulogalamu yanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣਾ ਖਾਤਾ ਲੋਡ ਕਰਨ ਲਈ ਆਪਣਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ। ਜੇ ਤੁਸੀਂ ਇਸਨੂੰ ਸੰਭਾਲ ਕੇ ਨਹੀਂ ਰੱਖਿਆ, ਤਾਂ ਤੁਸੀਂ ਇਸਨੂੰ ਆਪਣੇ ਐਪ ਦੀਆਂ ਸੈਟਿੰਗਾਂ ਵਿੱਚ ਲੱਭ ਸਕਦੇ ਹੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby wczytać konto, wprowadź hasło odzyskiwania. Jeśli nie zostało ono zapisane, można je znaleźć w ustawieniach aplikacji." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ستاسو recovery password ولیکئ څو خپل حساب پورته کړئ. که تاسو دا نه دی ساتلی، تاسو کولی شئ دا په خپل ایپ تنظیماتو کې ومومئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digite sua senha de recuperação para carregar sua conta. Se você não a salvou, você pode encontrá-la nas configurações do aplicativo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insira a sua chave de recuperação para carregar a sua conta. Se não a salvou, pode encontrá-la nas configurações da aplicação." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduceți parola de recuperare pentru a încărca contul dvs. Dacă nu ați salvat-o, o puteți găsi în setările aplicației." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введите ваш пароль восстановления для загрузки вашей учетной записи. Если вы не сохранили его, вы можете найти его в настройках приложения." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesi svoju recovery password za učitavanje računa. Ako je niste sačuvali, možete je pronaći u postavkama aplikacije." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබගේ ගිණුම පූරණය කිරීමට ඔබේ ප්‍රතිසාධන මුරපදය ඇතුළත් කරන්න. ඔබ එය සුරක්ෂිත කර නැත්නම්, ඔබගේ යෙදුමේ සැකසුම්වලින් එය සොයා ගත හැකිය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte frázu pre obnovenie na načítanie účtu. Ak ste ju neuložili, nájdete ju v nastaveniach aplikácie." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite vaše obnovitveno geslo, da naložite vaš račun. Če ga niste shranili, ga lahko najdete v nastavitvah aplikacije." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jepni fjalëkalimin e rikthimit tuaj për të ngarkuar llogarinë tuaj. Nëse nuk e keni ruajtur, mund ta gjeni në cilësimet e aplikacionit tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите вашe recovery password да учитате налог. Ако га нисте сачували, можете га пронаћи у подешавањима апликације." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite vašu lozinku za oporavak da učitate vaš račun. Ako je niste sačuvali, možete je pronaći u podešavanjima aplikacije." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange ditt recovery password för att ladda ditt konto. Om du inte har sparat det kan du hitta det i dina appinställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka nenosiri lako la kurejeshea akaunti ili kubeba akaunti yako. Kama hujahifadhi, unaweza kulikuta kwenye mipangilio ya programu yako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் கணக்கை ஏற்ற, உங்கள் recovery password ஐ உள்ளிடவும். நீங்கள் அதை சேமிக்கவில்லை என்றால், நீங்கள் அதை உங்கள் பயன்பாட்டு அமைப்புகளில் காணலாம்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ ఖాతాను లోడ్ చేయడానికి మీ మరుపు తిరిగి పొందుపాస్వర్డ్ ఎంటర్ చేయండి. మీరు దాన్ని సేవ్ చేయకపోతే, దాన్ని మీ యాప్ సెట్టింగ్‌లలో కనుగొనవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ป้อนรหัสผ่านสำหรับการกู้คืนของคุณเพื่อโหลดบัญชีของคุณ หากคุณยังไม่บันทึก คุณสามารถค้นหาในการตั้งค่าแอปของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesabınızı yüklemek için kurtarma parolanızı girin. Kaydetmediyseniz, uygulama ayarlarınızda bulabilirsiniz." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Введіть свій пароль відновлення, щоб завантажити свій обліковий запис. Якщо ви його не зберегли, ви можете знайти його в налаштуваннях додатку." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے اکاؤنٹ کو لوڈ کرنے کے لیے اپنا بازیابی پاس ورڈ درج کریں۔ اگر آپ نے اسے محفوظ نہیں کیا ہے، تو آپ اسے اپنے ایپ سیٹنگز میں دیکھ سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisobingizni yuklash uchun qayta tiklash parolingizni kiriting. Agar siz uni saqlamagan bo'lsangiz, uni dastur sozlamalarida topishingiz mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nhập mật khẩu khôi phục của bạn để nạp tài khoản. Nếu chưa lưu, bạn có thể tìm thấy nó trong cài đặt của ứng dụng." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngenisa i-password yakho yokubuyisela ukuze ulayishe iakhawunti yakho. Ukuba awuyigcinanga, ungayifumana kwisethingi zohlelo lwakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "输入您的恢复密码以加载您的账户。如果您没有保存它,您可以在应用设置中找到该恢复密码。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入您的恢復密碼以載入您的帳戶。如果您尚未保存它,可以在應用設置中找到。" + } + } + } + }, + "recoveryPasswordView" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyk Wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرض كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolu göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ دیکھیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказаць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед на паролата" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড দেখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit heslo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gweld Cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προβολή Κωδικού" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidi Pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita parooli" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikusi pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش گذرواژه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä salasana" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "View Password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba kalmar wucewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג סיסמא" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड देखें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogledaj lozinku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó megtekintése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դիտել Գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat Kata Sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualizza password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを見る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის პარამეტრების ჩვენება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មើលពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹುಡುಕಿ ನೋಡಿ ಪಾಸ್ವರ್ಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaziniya Password" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba Password" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti slaptažodį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parādīt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед на лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг харах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat Kata Laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password ကြည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis Password" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हेर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekijk wachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis passord" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onani Chinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਵੇਖੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobacz hasło" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورډ وګورئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver Senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver Palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vizualizați parola" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Посмотреть пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži lozinku" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය පෙන්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogled gesla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shihni Fjalëkalimin" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Погледај лозинку" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled lozinke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tazama Nywila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லைக் காண்பிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ చూడండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดูรหัสผ่าน." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şifreyi Görüntüle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показати пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ دیکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni ko‘rish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem Mật khẩu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jonga Iphasiwedi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "查看密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檢視密碼" + } + } + } + }, + "recoveryPasswordWarningSendDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hierdie is jou Herwinningswagwoord. As jy dit aan iemand stuur, sal hulle volle toegang tot jou rekening hê." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هذه هي عبارة الاسترداد الخاصة بك. إذا قمت بإرساله إلى شخص ما ، فسيكون لديه حق الوصول الكامل إلى حسابك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, sizin geri qaytarma parolunuzdur. Kiməsə göndərsəniz, hesabınıza tam müraciət edə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کا ریکوری پاسورڈ ہی۔ اگے آپ اسے کسی کو بھیجتے ہوت، تو انہیں آپکے حساب تک پورا رسائی ہووستی." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your recovery password. If you send it to someone they'll have full access to your account." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това е вашата възстановителна парола. Ако я изпратите на някого, той ще има пълен достъп до вашия акаунт." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি আপনার রিকভারি পাসওয়ার্ড। আপনি যদি এটি কাউকে পাঠান তবে তাদের কাছে আপনার অ্যাকাউন্টের সম্পূর্ণ অ্যাক্সেস থাকবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aquesta és la vostra contrasenya de recuperació. Si l'envieu a algú, tindrà accés complet al vostre compte." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto je vaše heslo pro obnovení. Pokud ho někomu pošlete, bude mít plný přístup k vašemu účtu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dyma eich cyfrinair adfer. Os byddwch yn ei anfon at rywun, bydd ganddynt fynediad llawn i'ch cyfrif." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det her er din gendannelsessætning. Hvis du sender den til nogen vil de have fuld adgang til din konto." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dies ist dein Wiederherstellungspasswort. Wenn du es jemandem sendest, wird diese Person vollen Zugriff auf deinen Account haben." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτός είναι ο κωδικός ανάκτησής σας. Αν τον στείλετε σε κάποιον, θα έχει πλήρη πρόσβαση στον λογαριασμό σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your recovery password. If you send it to someone they'll have full access to your account." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tio estas via ripara pasvorto. Se vi sendas ĝin al iu, tiam tiu havos tutan aliron al via konto." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta es tu recovery password. Si la envías a alguien, tendrá acceso completo a tu cuenta." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta es tu contraseña de recuperación. Si la envías a alguien, tendrá acceso completo a tu cuenta." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See on teie taastamislause. Kui saadate selle kellelegi, on tal täielik juurdepääs teie kontole." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hau zure kontuaren berreskuratze pasahitza da. Norbaiti bidaltzen badiozu, zure kontura sartzeko aukera osoarekin izango dute." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این رمز بازیابی شماست. اگر آن را برای کسی ارسال کنید، آن‌ها به حساب شما دستری کامل خواهند داشت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä on palautussalasanasi. Jos lähetät sen jollekulle, he saavat täyden pääsyn tilillesi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ito ang iyong recovery password. Kung ipapadala mo ito sa ibang tao, magkakaroon sila ng buong access sa iyong account." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voici votre mot de passe de récupération. Si vous l'envoyez à quelqu'un, il aura un accès complet à votre compte." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este é o teu contrasinal de recuperación. Se llo envías a alguén, terá acceso completo á túa conta." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan shine kalmar wucewarka ta mayar da hankali. Idan ka aika shi ga wani zasu sami cikakken damar zuwa asusunka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "זו סיסמת ההחלמה שלך. אם תשלח אותה למישהו, תהיה לו גישה מלאה לחשבון שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह आपका पुनर्प्राप्ति वाक्यांश है। अगर आप इसे किसी को भेजते हैं तो उनके पास आपके खाते की पूरी पहुंच होगी।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je vaša lozinka za oporavak. Ako je pošaljete nekome, imat će potpuni pristup vašem računu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a visszaállítási jelszavad. Ha elküldöd valakinek, teljes hozzáférést kap a fiókodhoz." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա ձեր վերականգնման գաղտնաբառն է։ Եթե այն ուղարկեք ինչ-որ մեկին, նա կունենա ձեր հաշիվը լիարժեք մուտք գործելու հնարավորություն։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini adalah kata sandi pemulihan Anda. Jika Anda mengirimkannya ke seseorang, mereka akan memiliki akses penuh ke akun Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questa è la tua password di recupero. Se la dovessi inviare a qualcuno, avrà pieno accesso al tuo account." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "これはあなたのリカバリーパスワードです。誰かに送信すると、その人はあなたのアカウントにフルアクセスできます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს არის თქვენი აღდგენის პაროლი. თუ ვინმეს ამას გაგზავნით, მისი ექნება სრული წვდომა თქვენს ანგარიშზე." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your recovery password. If you send it to someone they'll have full access to your account." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇದು ನಿಮ್ಮ ರಿಕವರಿ ಪಾಸ್ವರ್ಡ್. ನೀವು ಇದನ್ನು ಯಾರಿಗಾದರೂ ಕಳುಹಿಸಿದರೆ ಅವರಿಗೆ ನಿಮ್ಮ ಅಕೌಂಟ್‌ಗೆ ಸಂಪೂರ್ಣ ಪ್ರವೆಶವಿರುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이것은 당신의 복구 비밀번호입니다. 다른 사람에게 보내면 그들이 당신의 계정에 완전히 접근할 수 있게 됩니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ev şîfreya paqij bişînî ya te ye. Eğer tu wekî bina bikî tu şîfreya te yekî maf e ku li ser tomara te hişyaritin giştiyê dike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kiri akazambi k'ofoyo k'omukubuukyeerako akabaka kena ku akawunti." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai yra jūsų atkūrimo slaptažodis. Jei jį išsiųsite kam nors, jie turės pilną prieigą prie jūsų paskyros." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šī ir tava atjaunošanas parole. Ja kādam to nosūtīsi, tad viņš iegūs pilnas piekļuves tiesības tavam kontam." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова е вашата лозинка за опоравка. Ако ја испратите на некого, ќе имаат целосен пристап до вашата сметка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ таны нууц үг юм. Хэрэв та үүнийг хүнд илгээвэл таны аккаунтанд бүрэн нэвтрэх боломжтой болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini adalah kata laluan pemulihan anda. Jika anda menghantarnya kepada seseorang, mereka akan mempunyai akses penuh ke akaun anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသည် သင့်၏ Recovery Password ဖြစ်သည်။ ၎င်းကို တစ်စုံတစ်ဉီး အವರಿಗೆပေးပို့ပါက သူတို့သည် သင့်အကောင့် အပြည့်အဝ အသုံးပြုနိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette er din gjenopprettingsfrase. Hvis du sender den til noen vil de ha full tilgang til din konto." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो तपाईंको रिकभरी पासवर्ड हो। यदि तपाईंले यसलाई कसैलाई पठाउनु भयो भने उनीहरूको तपाईंको खातामा पूर्ण पहुँच हुनेछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit is uw herstelwachtwoord. Als u het naar iemand stuurt hebben ze volledige toegang tot uw account." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette er ditt gjenopprettingspassord. Hvis du sender det til noen, vil de få full tilgang til kontoen din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iyi ndiyo password yanu yobwezeretsa. Ngati mutumiza kwa wina, adzakhala ndi mwayi wathunthu pa akaunti yanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਤੁਹਾਡਾ ਰਿਕਵਰੀ ਪਾਸਵਰਡ ਹੈ। ਜੇ ਤੁਸੀਂ ਇਸਨੂੰ ਕਿਸੇ ਨੂੰ ਭੇਜਦੇ ਹੋ ਤਾਂ ਉਹ ਤੁਹਾਡੇ ਖਾਤੇ ਵਿੱਚ ਪੂਰੀ ਪਹੁੰਚ ਪ੍ਰਾਪਤ ਕਰ ਸਕਣਗੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To jest Twoje hasło odzyskiwania. Jeśli je komuś wyślesz, osoba ta będzie miała pełny dostęp do Twojego konta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا ستاسو د بیا رغونې پاسورډ دی. که تاسو دا چاته واستوئ دوی به ستاسو حساب ته بشپړ لاسرسی ولري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Essa é sua senha de recuperação. Se você mandá-la para alguem, essa pessoa terá acesso completo a sua conta." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta é a sua chave de recuperação. Se você enviá-la para alguém, essa pessoa terá acesso total à sua conta." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceasta este parola ta de recuperare. Dacă o trimiți cuiva, acea persoană va avea acces complet la contul tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это ваш Пароль Восстановления. Если вы отправите его кому-либо, у них будет полный доступ к вашей учетной записи." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je tvoja lozinka za oporavak. Ako je pošalješ nekome, imat će potpuni pristup tvom računu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය ඔබගේ ප්‍රතිසාධන මුරපදයයි. ඔබ එය යමෙක්ට යැවුවහොත් ඔවුන්ට ඔබේ ගිණුමට සම්පූර්ණ ප්‍රවේශය ඇත." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto je vaše heslo na obnovenie. Ak ho niekomu pošlete, získa plný prístup do vášho účtu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To je vaše geslo za obnovitev. Če ga pošljete nekomu, bo imel popoln dostop do vašega računa." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky është fjalëkalimi juaj i rimëkëmbjes. Nëse ia dërgoni dikujt, ata do të kenë qasje të plotë në llogarinë tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово је ваша фраза за опоравак. Уколико је пошаљете неком, имаће комплетан приступ вашем налогу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo je vaša recovery password. Ako je pošaljete nekome, imaće potpuni pristup vašem nalogu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta är ditt återställningslösenord. Om du skickar det till någon kommer de att ha full tillgång till ditt konto." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii ni nywila yako ya urejeshaji. Ukiituma kwa mtu atapata ufikiaji kamili wa akaunti yako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது உங்கள் மீட்பு கடவுச்சொல். நீங்கள் இதை யாருக்கும் அனுப்பினால், அவர்களுக்கு உங்கள் கணக்கிற்கு முழு அணுகல் கிடைக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది మీ రికవరీ పాస్వర్డ్. మీరు దానిని ఎవరితోనైనా పంపిస్తే వారు మీ ఖాతాకు పూర్తి ప్రాప్యత కలిగి ఉంటారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "นี่คือรหัสผ่านกู้คืนของคุณ หากคุณส่งให้คนอื่น พวกเขาจะเข้าถึงบัญชีของคุณได้เต็มที่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizin kurtarma ifadenizdir. Birine gönderirseniz, hesabınızda tam erişime sahip olurlar." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це ваш Recovery password. Якщо ви надішлете його комусь, він матиме повний доступ до вашого облікового запису." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کا بازیابی پاس ورڈ ہے۔ اگر آپ اسے کسی کو بھیجتے ہیں تو ان کے پاس آپ کے اکاؤنٹ تک مکمل رسائی ہوگی۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sizning Recovery Password qismingiz. Agar biror kimsaga yuborsangiz, u sizning akkauntingizga to'liq kirish imkoniyatiga ega bo'ladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đây là Mật khẩu Khôi phục của bạn. Nếu bạn gửi nó cho ai đó, họ sẽ có toàn quyền truy cập vào tài khoản của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le yi-Password yakho yokubuyisela. Ukuba uyithumela kumntu othile baya kuba nelungelo lokufikelela kwi-akhawunti yakho ngokupheleleyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "这是您的恢复密码。如果您发送给他人,他们将能够完全访问您的账户。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這是你的恢復密碼。獲得這段復密碼的任何人都可以全權存取你的帳戶。" + } + } + } + }, + "redo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herdoen" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعادة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təkrar et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паўтарыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вернуть" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "রিডো" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refés" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znovu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ailbennu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gentag" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiederholen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επανάληψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redo" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refari" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rehacer" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rehacer" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tee uuesti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berriro egin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انجام دوباره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tee uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulitin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rétablir" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refacer" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanya sabo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עשה מחדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फिर से करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újra" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կրկնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "mengulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ripeti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "やり直す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აღდგენა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ធ្វើឡើងវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮತ್ತೆ ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 실행" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dîsa bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaaminika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Grąžinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atkārtot" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повтори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин хийх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat Semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်ပြင်လုပ်ခြင်း" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjenta" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुन: गर्नुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opnieuw doen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjenta" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kubwezeretsanso" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੀ-ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیا کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refazer" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Refazer" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Repetă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вернуть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පසුසේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znova" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno uveljavi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ribëje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Понови" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovi radnju" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gör om" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rudia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் செய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మళ్లీ ప్రయత్నించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ทำซ้ำ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yinele" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вперед" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta bajarish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoàn tác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phinda" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重做" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "重做" + } + } + } + }, + "remove" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwyder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إزالة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sil" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "برس ک" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выдаліць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Премахни" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অপসারণ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suprimeix" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstranit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tynnu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entfernen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αφαίρεση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eemalda" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kendu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poista" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alisin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cire" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הסר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हटा दें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eltávolítás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հեռացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rimuovi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "削除" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წაშლა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបចេញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತೆಗೆದುಹಾಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rake" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyaawo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šalinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noņemt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отстрани" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Устгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alih Keluar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဖယ်ရှားရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हटाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijderen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਟਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuń" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لرې کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimină" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඉවත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrániť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odstrani" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уклони" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukloni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ta bort" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ondoa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அகற்று" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తొలగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เอาออก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaldır" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видалити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olib tashlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bỏ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Susa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除" + } + } + } + }, + "removePasswordFail" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kon nie wagwoord verwyder nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فشل في إزالة كلمة المرور" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parol silmə uğursuz oldu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسورڈ برس کرنے میں ناکامی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не ўдалося выдаліць пароль" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно премахване на парола" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাসওয়ার্ড অপসারণ করতে ব্যর্থ হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'ha pogut eliminar la contrasenya" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odebrání hesla selhalo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methwyd dileu cyfrinair" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne adgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Entfernen des Passworts" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποτυχία κατάργησης κωδικού πρόσβασης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to remove password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malsukcesis forigi pasvorton" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al eliminar la contraseña" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fallo al eliminar la contraseña" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasõna eemaldamine ebaõnnestus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez da posible izan pasahitza kentzea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حذف گذرواژه ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salasanan poisto epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo sa pag-alis ng password" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Échec de supprimer le mot de passe" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se puido cambiar o contrasinal" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An kasa cire kalmar sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נכשל להסיר סיסמה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हटाने में विफल" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uklanjanje lozinke nije uspjelo" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jelszó eltávolítása sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց հեռացնել գաղտնաբառը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal menghapus kata sandi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile rimuovere la password" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "パスワードを削除できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პაროლის წაშლა ვერ მოხერხდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បរាជ័យក្នុងការដកពាក្យសម្ងាត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪಾಸ್ವರ್ಡ್ ತೆಗೆದುಹಾಕಲು ವಿಫಲವಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "비밀번호를 제거하지 못했습니다" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi ser neket ku şîfre rave dike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi okuzaako okwongeza ekigambo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko pašalinti slaptažodžio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neizdevās noņemt paroli" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно отстранување на лозинка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууц үгийг устгахад алдаа гарлаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gagal untuk mengeluarkan kata laluan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားဝှက်ဖျက်ရန် မအောင်မြင်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikke fjerne passord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पासवर्ड हटाउन असफल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verwijderen wachtwoord mislukt" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunne ikkje fjerna passordet" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zalephera kuchotsa achinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪਾਸਵਰਡ ਹਟਾਉਣ ਵਿੱਚ ਅਸਫਲ ਹੋਇਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się usunąć hasła" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پټنوم لرې کولو کې ناکام" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover senha" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha ao remover a palavra-passe" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare la eliminarea parolei" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось удалить пароль" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije uspjelo uklanjanje lozinke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මුරපදය ඉවත් කිරීමට අසමත් විය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepodarilo sa odstrániť heslo" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni uspelo odstraniti gesla" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi heqja e fjalëkalimit" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспех у уклањању лозинке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neuspešno uklanjanje lozinke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Misslyckades med att ta bort lösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imeshindikana kuondoa nyila" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கடவுச்சொல்லை நீக்க முடியவில்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పాస్‌వర్డ్ తొలగించడం విఫలమైంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบรหัสผ่านล้มเหลว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parola kaldırma başarısız oldu" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося видалити пароль" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاس ورڈ ہٹانے میں ناکامی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolni olib tashlashda muammo chiqdi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa mật khẩu thất bại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koyekile ukususa iphasiwedi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "移除密码失败" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法移除密碼" + } + } + } + }, + "reply" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "رد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cavabla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "جواب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адказаць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "উত্তর দিন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responeu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpovědět" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ateb" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svar" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antworten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απάντηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reply" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Respondi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responder" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responder" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vasta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erantzun" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاسخ" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vastaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sagutin" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Répondre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responder" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amsa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जवाब" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovori" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Válasz" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատասխանել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balas" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rispondi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "返信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Პასუხი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឆ្លើយតប" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮಾರುತ್ತರ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "답장" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cewab bide" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsakyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atbildēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одговори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хариулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Balas" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စာပြန်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svare" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जवाफ" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Antwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svare" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yankhani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "sooner" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpowiedz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ځواب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responder" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Responder" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Răspunde" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ответить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovori" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පිළිතුරු" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpovedať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovori" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përgjigju" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Одговор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odgovori" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Svara" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jibu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதில்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్పంధించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตอบกลับ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanıtla" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відповісти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جواب" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Javob berish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trả lời" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phendula" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "回复" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "回覆" + } + } + } + }, + "resend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herstuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعادة الإرسال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təkrar göndər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ موکراں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць паўторна" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторно изпращане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনরায় পাঠান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reenviar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat znovu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ailanfon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send igen" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut senden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επαναποστολή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resend" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resendi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reenviar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reenviar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada uuesti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berriro bidali" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال مجدد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipadala muli" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renvoyer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reenviar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sake aikawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח שוב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फिर से भेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno pošalji" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újraküldés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կրկին ուղարկել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim ulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reinvia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再送" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თავიდან გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើជាថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮತ್ತೆ ಕಳುಹಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "재전송" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dîsa bişîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezayo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti iš naujo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sūtīt atkārtoti" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторно испрати" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин илгээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်ပို့မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send på nytt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुनः पठाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opnieuw verzenden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send på nytt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumizani Kachiwiri" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦੁਬਾਰਾ ਭੇਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij ponownie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بيا واستوه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reenviar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar novamente" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrimite" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить повторно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovo pošalji" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත යවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znovu odoslať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno pošlji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ridërgoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи поново" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji ponovo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka på nytt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma tena" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் அனுப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తిరిగి పంపండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekrar gönder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслати повторно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ بھیجیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta joʻnatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela kwakhona" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新傳送" + } + } + } + }, + "resolving" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Land inligting laai..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاري تحميل معلومات الدولة..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ölkə məlumatları yüklənir..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملک معلومات منظوری دےنہ…" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка інфармацыі аб краіне..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зареждане на информация за държавите..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দেশের তথ্য লোড হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'estan carregant les dades del país..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítám informace o zemi..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho gwybodaeth gwlad..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indlæser landet information..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Länder werden geladen ..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται φόρτωση χωρών..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading country information..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ŝargante landliston..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando información del país..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando información del país..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riigi teabe laadimine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herrialdearen informazioa kargatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات کشورها در حال بارگذاری است..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan maatietoja..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading country information..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chargement des pays…" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando información do país..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana loda bayanan ƙasa..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "טוען מידע על מדינות..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "देश की जानकारी लोड हो रही है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje informacija o zemlji..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Országinformációk betöltése..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բեռնում է երկրի տվյալները..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat informasi negara..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caricamento delle informazioni sul paese..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "国名を読み込み中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ტვირთვა ქვეყნის ინფორმაციის..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ទុកព័ត៌មានប្រទេស..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದೇಶದ ಮಾಹಿತಿ ಲೋಡ್ ಆಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "국가 로드 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahîyên welêtî tê barkirin..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okujjulula ebikwata ku nsi..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama šalių informacija..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ielādē valsts informāciju..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се вчитува информацијата за земјите..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Улсын мэдээллийг ачааллаж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuatkan maklumat negara..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နိုင်ငံအချက်အလက်များကို တင်နေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster inn land..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "देशको जानकारी लोड हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Landinformatie wordt geladen..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lastar inn land …" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mamallaktakunata sikachikun..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦੇਸ਼ ਦੀ ਜਾਣਕਾਰੀ ਲੋਡ ਕੀਤੀਆ ਜਾ ਰਹੀ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wczytywanie informacji o kraju..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د هیواد معلومات بار کول..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando informações do país..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A carregar lista de países..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se încarcă informațiile despre țară..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загружаем страны..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje informacija o zemlji..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "රට තොරතුරු පූරණය වෙමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Načítavanie krajín…" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje podatkov o državi ..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ngarkohen të dhënat e vendit..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Учитавање информација о државама..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Učitavanje informacija o zemlji..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Läser in landinformation ..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inapakia taarifa za nchi..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நாட்டின் தகவலை ஏற்றுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దేశ సమాచారాన్ని లోడ్ చేస్తోంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังโหลดข้อมูลประเทศ..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ülke bilgileri yükleniyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження інформації про країни..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملک کی معلومات لوڈ ہو رہی ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mamlakat ma'lumotlari yuklanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang nạp thông tin quốc gia..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayishwa kolwazi lwezwe..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在读取国家列表..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "載入國家代號資料..." + } + } + } + }, + "restart" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herbegin" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعادة التشغيل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenidən başlat" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ شروع" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перазапуск" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рестартирай" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনরায় চালু করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restartovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ailgychwyn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genstart" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neustart" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επανεκκίνηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restart" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restartigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taaskäivita" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berrabiarazi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "راه‌اندازی مجدد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käynnistä uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restart" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redémarrer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fara da Sakewa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הפעל מחדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुनः आरंभ करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno pokreni" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újraindítás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերագործարկում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muat Ulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riavvia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再起動" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხელახლა დაწყება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចាប់ផ្តើមឡើងវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮರುಾರಂಭಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "재시작" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dîsa dest pê bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddamu kutandika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paleisti iš naujo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restartēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рестартирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин эхлүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mulakan Semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်စလုပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Start på nytt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुनः सुरु गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herstart" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restart" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restart" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੜ ਚਾਲੂ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uruchom ponownie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له سره پیل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Repornește" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перезапуск" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno pokreni" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත ආරම්භ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reštartovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovni zagon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rindize" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поново покрени" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovo pokreni" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Starta om" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Washa tena" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் தொடங்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రీస్టార్ట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รีสตาร์ท" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden başlat" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перезапустити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ شروع کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta yuklash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khởi động lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qalisa kwakhona" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新启动" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新啟動" + } + } + } + }, + "resync" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resinkroniseer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعادة المزامنة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Təkrar sinxronlaşdır" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوباره ہمآھنگی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сінхранізаваць паўторна" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ресинхронизиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনঃসিংক্রোনাইজ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resincronitzar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znovu synchronizovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aildrefnu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resync" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut synchronisieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επανασυγχρονισμός" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resync" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resinkronigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reiniciar sincronización" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resincronizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sünkro" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berrsinkronizatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بازنشانی همگام‌سازی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkronoi uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resync" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resynchroniser" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resincronizar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sake daidaitawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סנכרן מחדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुनः सिंक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno sinkroniziraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újraszinkronizálás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերասինխ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinkronkan Ulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizza di nuovo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再同期" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "რესინქრონიზაცია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សមកាលវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮತ್ತೆ ಸಿಂಕ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동기화 재시도" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dengandinê nûve bikin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddamu okutaba mu nteekateeka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resinchronizuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinhronizēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ресинхронизирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segerakan Semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်ချိန်းလုပ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkroniser på nytt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुन: समक्रमण गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opnieuw synchroniseren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synk på nytt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resync" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੜ ਸ਼ੰਕਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synchronizuj ponownie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "له سره همغږي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizar novamente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ressincronizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resincronizează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ресинхронизировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovno sinhroniziraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත සම්බන්ධ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znova synchronizovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovna sinhronizacija" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resincronizo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поново синхронизуј" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponovo sinhronizuj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Synkronisera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resync" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் ஒத்திசைவு செய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రీసింక్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "รีซิงค์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden Senkronize Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Синхронізувати повторно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ ہم آہنگ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta sinxronlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đồng bộ lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phinda usinike" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新同步" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "重新同步" + } + } + } + }, + "retry" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probeer weer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إعادة المحاولة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenidən sına" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوپتین" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паўтарыць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Опитай отново" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনরায় চেষ্টা করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reintentar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opakovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceisio eto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv igen" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut versuchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επανάληψη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reprovi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reintentar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reintentar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proovi uuesti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saiatu berriro" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تلاش مجدد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yritä uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Réessayer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volver tentar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sake gwadawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נסה שוב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुनः प्रयास करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj ponovno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újra" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կրկին փորձել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coba lagi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprova" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再試行" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Სცადე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមព្យាយាម​" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 시도" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dîsa biceribîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ddamu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandykite dar kartą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēģināt vēlreiz" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обиди се повторно" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин оролдох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuba Semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ထပ်ကြိုးစားမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv på nytt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "फेरि प्रयास गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opnieuw proberen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv på nytt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੜ ਕੋਸ਼ਿਸ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ponów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیا هڅه وکړه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentar novamente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentar novamente" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reîncearcă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторить попытку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj ponovno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත උත්සාහ කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Znova" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poskusi ponovno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Provo përsëri" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покушај поново" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj ponovo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försök igen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jarribu tena" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் முயற்சி செய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రీట్రై" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden Dene" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спробувати знову" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ کوشش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta urinib ko'ring" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thử lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phinda uzame" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重试" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "重試" + } + } + } + }, + "save" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حفظ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saxla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیمپان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запази" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংরক্ষণ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cadw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gem" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speichern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθήκευση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvesta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gorde" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ذخیره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallenna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Save" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gardar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajiye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שמור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संरक्षित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salva" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Შენახვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រក្សាទុក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಳಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저장" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qeyd bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuuma" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabāt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хадгалах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Simpan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သိမ်းရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagre" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेभ गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opslaan" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagra" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allichina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੇਂਵੇ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساتل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохранить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සුරකින්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložiť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shrani" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruaje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvaj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spara" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hifadhi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேமி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "భద్రపరుచు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaydet" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зберегти" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "محفوظ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saqlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lưu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gcina" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "儲存" + } + } + } + }, + "saved" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gestoor" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم الحفظ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saxlanıldı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترسیمپان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захавана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазено" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংরক্ষিত হয়েছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desat" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uloženo" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wedi cadw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gespeichert" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκεύτηκε" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservita" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardado" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardado" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvestatud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gordeta" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ذخیره شد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallennettu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistré" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gardado" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An ajiye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נשמר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेव किया गया" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremljeno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elmentve" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանված է" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disimpan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvato" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存済み" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Შენახულია" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានរក្សាទុក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಳಿಸಲಾಗಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저장 완료" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hate qeydkirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kikuumiddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašyta" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabāts" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувано" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хадгалагдсан" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disimpan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သိမ်းဆည်းထားသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagret" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेभ भयो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opgeslagen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagra" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਭਾਲੀ ਗਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisano" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "وساتل شو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardado" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvat" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохранено" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සුරකින ලදී" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložené" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shranjeno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "U ruajt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувано" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sparad" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "imehifadhiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேமிக்கப்பட்டது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సేవ్ చేయబడింది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกแล้ว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaydedildi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збережено" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "محفوظ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saqlandi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã lưu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igcinwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已保存" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已儲存" + } + } + } + }, + "savedMessages" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gestoor boodskappe" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرسائل المحفوظة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saxlanılan mesajlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترسیمپان مسیجات" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаваныя паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазени съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংরক্ষিত বার্তাগুলি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missatges desats" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložené zprávy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Negeseuon wedi'u cadw" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemte beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gespeicherte Nachrichten" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθηκευμένα μηνύματα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved messages" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservitaj mesaĝoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes guardados" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensajes guardados" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvestatud sõnumid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu gordetakoak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیام‌های ذخیره‌شده" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallennetut viestit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved messages" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messages enregistrés" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensaxes gardadas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saƙonnin da aka ajiye" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הודעות שנשמרו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेव किए गए संदेश" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremljene poruke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elmentett üzenetek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանված հաղորդագրություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesan yang Disimpan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Messaggi salvati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存済みのメッセージ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შენახული შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារ​រក្សាទុក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಳಿಸಿದ ಸಂದೇಶಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저장된 메시지" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peyamên hate qeydkirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obubaka obukuumiddwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašytos žinutės" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabātie ziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зачувани пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хадгалагдсан зурвасууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesej yang Disimpan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သိမ်းဆည်းထားသော မက်ဆေ့ချ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagrede meldinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बाटो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opgeslagen berichten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved messages" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saved messages" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਭਾਲੇ ਗਏ ਸਮੇਸਜ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisane wiadomości" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ساتل شوې پیغامونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens Salvas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mensagens guardadas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaje salvate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохраненные сообщения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvane poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සුරක් වුණු පණිවිඩ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uložené správy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shranjena sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhe te ruajtura" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачуване поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sačuvane poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sparade meddelanden" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jumbe zilizohifadhiwa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேமிக்கப்பட்ட செய்திகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సేవ్ చేసిన సందేశాలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความที่บันทึก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaydedilen mesajlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збережені повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "محفوظ شدہ پیغامات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "O'z-o'ziga saqlangan xabarlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các tin nhắn đã lưu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imiyalezo egciniwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "已保存的消息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已儲存的訊息" + } + } + } + }, + "saving" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stoor..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاري الحفظ..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saxlanılır..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ترسیمپان جرؤب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захаванне..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запазване..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সংরক্ষণ করা হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukládám..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn cadw..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gemmer..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird gespeichert ..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποθήκευση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saving..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konservante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guardando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvestamine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gordetzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال ذخیره..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tallennetaan..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saving..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enregistrement..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A gardar..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana ajiye..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שומר..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सहेजा जा रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentés folyamatban..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահպանվում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menyimpan..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvataggio in corso..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存中..." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Შენახვა..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងរក្សាទុក..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಉಳಿಸಲಾಗುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "저장 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teqayîş..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okujjululako..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įrašoma..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saglabā..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се зачувува..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хадгалж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sedang Menyimpan..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သိမ်းဆည်းနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagrer..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "बचत हुँदैछ..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opslaan..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lagrar..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saving..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਭਾਲਣ ਲਾਗੇ ਹੋਏ ਜੀ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zapisywanie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ساتلو په حال کې..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salvando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A gravar..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se salvează..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сохранение..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spremanje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සුරකින වේ..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukladá sa..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shranjevanje ..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po ruhet..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сачувавање..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Čuvanje..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sparar..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inahifadhi..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சேமித்து கொண்டிருக்கிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సేవ్ అవుతోంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังบันทึก..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaydediliyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Збереження..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "محفوظ کر رہا ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saqlanmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang lưu..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigcina..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "保存中..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "儲存中..." + } + } + } + }, + "scan" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skandeer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skan et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سکان" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканирай" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্ক্যান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escaneja" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sganiwch" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skan" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scannen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σάρωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanu" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skaneeri" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskaneatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسکن" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lue" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scanner" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סרוק" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्कैन" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beolvasás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pindai" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scansiona" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スキャン" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სკანირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្កេន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಕ್ಯಾನ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "스캔" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Li têqrîna qr kodê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skan" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenuoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скенирај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скан хийх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbas" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကန်ဖတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skann" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्यान गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scannen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skann" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scan" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਕੈਨ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسکن کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Digitalizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Escanear" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scanează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканировать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පරිලෝකනය කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skenovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanoni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скенирај" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skeniraj" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanna" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Changanua" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஸ்கான்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్కాన్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สแกน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сканувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسکین کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skanerlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quét" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skani" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "扫描" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "掃瞄" + } + } + } + }, + "screenSecurity" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skermveiligheid" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أمان الشاشة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran güvənliyi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سکرین سیکورٹی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бяспека экрану" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурност на екрана" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্ক্রীন সিকিউরিটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguretat de pantalla" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabezpečení obrazovky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diogelu'r sgrin" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skærmsikkerhed" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildschirmschutz" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ασφάλεια Οθόνης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screen Security" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrana sekurigo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguridad de pantalla" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguridad de pantalla" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekraani turvalisus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pantailaren Segurtasuna" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "امنیت صفحه نمایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytön suojaus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screen Security" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sécurité d'écran" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seguranza da pantalla" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsaron Allo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אבטחת מסך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रीन सुरक्षा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurnost zaslona" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Képernyőbiztonság" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Էկրանի անվտանգություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keamanan Layar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sicurezza Schermo" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スクリーン・セキュリティ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეკრანის დაცვა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សុវត្ថិភាពអេក្រង់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪರದೆಯ ಭದ್ರತೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "화면 보안" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parastina Ekranê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obukuumi bwa ekikola ekiriko akabonero" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrano saugumas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrāna drošība" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Екранска Безбедност" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн аюулгүй байдал" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keselamatan Skrin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မျက်နှာပြင် လုံခြုံရေး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermsikkerhet" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रीन सुरक्षा" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scherm beveiliging" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermtryggleik" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rikuripa pakallayachina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਕ੍ਰੀਨ ਸੁਰੱਖਿਆ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ochrona ekranu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سکرین امنیت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segurança de Tela" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segurança de ecrã" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Securitate ecran" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Защита экрана" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurnost ekrana" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තිර ආරක්ෂාව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zabezpečenie obrazovky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varnost zaslona" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siguri ekrani" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Безбедност екрана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bezbednost ekrana" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skärmsäkerhet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usalama wa Skrini" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "திரை பாதுகாப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్క్రీన్ భద్రత" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ความปลอดภัยหน้าจอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran Güvenliği" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Безпека перегляду" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سکرین سیکیورٹی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran xavfsizligi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "An ninh màn hình" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukhuseleko lweSikrini" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "屏幕安全性" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "螢幕安全性" + } + } + } + }, + "screenshotNotifications" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skermskoot Kennisgewings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إشعارات لقطة الشاشة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran şəkli bildirişi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سکرین شاٹ نوٹفکیشنز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні аб здымках экрана" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия за скрийншот" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্ক্রীনশট নোটিফিকেশনস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions de captura de pantalla" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění na snímek obrazovky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau Sgrinlun" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skærmbillede Notifikationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildschirmfoto-Benachrichtigungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις Στιγμιότυπου Οθόνης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screenshot Notifications" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciigoj pri Ekrankopio" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de captura de pantalla" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones de capturas de pantalla" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekraanipildi teavitused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pantaila-irudiaren Abisuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلانات اسکرین‌شات." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoita kuvankaappauksesta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screenshot Notifications" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications de capture d'écran" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacións de captura de pantalla" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwar Hoton Allon" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות על צילומי מסך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रीनशॉट सूचनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti o snimanju zaslona" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Képernyőkép értesítések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սքրինշոթի ծանուցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi Tangkapan Layar" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche Screenshot" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "スクリーンショット撮影時の通知" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეკრანის კადრის შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សេចក្ដីជូនដំណឹងផ្ទាំងថត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಕ್ರೀನ್‌ಶಾಟ್ ಪ್ರಕಟಣೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "스크린샷 알림" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahdariyên Screenshot" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kubeera na obukuumi obukwata ku butabudde amawulire agafunye ku kikolwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai apie ekrano kopijas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekrāna uzņemšanas paziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања за снимка на екран" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэлгэцийн зураг авах мэдэгдэл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi Tangkapan Skrin" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စခရင်ရှော့(တ်) အသိပေးချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermbilde varsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्क्रिनसट सूचनाहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screenshot Notificaties" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skjermbilde varsler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screenshot Notifications" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਕ੍ਰੀਨਸ਼ੌਟ ਨੋਟੀਫਿਕੇਸ਼ਨ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia o zrzucie ekranu" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سکرین شاټ خبرتیاوې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações de captura de tela" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações de Screenshot" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări captură ecran" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления о скриншотах" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti o snimci ekrana" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තිරසේයා දැනුම්දීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia na snímku obrazovky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila o zaslonskih posnetkih" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime për screenshot" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења о снимцима екрана" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obaveštenja o screenshot-ovima" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviseringar för skärmdump" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa za Picha za Skrini" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஸ்கிரீன்ஷாட் அறிவிப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్క్రీన్‌షాట్ ప్రకటనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือนการบันทึกหน้าจอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekran Görüntüsü Bildirimleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення про скриншот" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسکرین شاٹ نوٹیفکیشن" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Screenshot bildirishnomalari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo chụp màn hình" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso zeswidi" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "屏幕截图通知" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "螢幕截圖通知" + } + } + } + }, + "screenshotNotificationsDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vereis 'n kennisgewing wanneer 'n kontak 'n kiekie neem van 'n een-tot-een geselsie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تطلب إشعار عندما يلتقط شخص آخر لقطة شاشة لمحادثة واحد لواحد." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Birə bir söhbətdə qarşı tərəf ekran şəklini çəkəndə bir bildiriş al." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نوتفیکشن درکار انگگاں یک دوستو اسکرین شاٹ کوا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Атрымаць апавяшчэнне, калі кантакт робіць скрыншот прыватнай размовы." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изисквайте известие, когато контакт направи скрийншот на чат от един към един." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "যখন কোনো কন্ট্যাক্ট একটি এক-একটি চ্যাটের স্ক্রিনশট নেয় তখন একটি নোটিফিকেশন প্রয়োজন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rebeu una notificació quan un contacte faci una captura de pantalla d'un xat individual." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Požadovat upozornění, když kontakt pořídí snímek obrazovky v individuálním chatu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gofyn am hysbysiad pan fydd cyswllt yn cymryd llun-sgrin o sgwrs un-i-un." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kræv en notifikation, når en kontakt tager et skærmbillede af en en-til-en samtale." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erhalte eine Benachrichtigung, wenn ein Kontakt ein Bildschirmfoto eines Eins-zu-eins-Chats erstellt." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απαιτείται ειδοποίηση όταν μια επαφή λαμβάνει ένα στιγμιότυπο οθόνης σε μια ένας προς έναν συνομιλία." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Require a notification when a contact takes a screenshot of a one-to-one chat." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postuli sciigon kiam kontakto kaptas ekranbildon de unu-al-unu babilejo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requerir una notificación cuando un contacto tome una captura de pantalla de un chat individual." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requerir una notificación cuando un contacto haga una captura de pantalla de un chat individual." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nõua teavitust, kui kontakt teeb kuvatõmmise üks-ühele vestlusest." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eskatu jakinarazpen bat kontaktu batek elkarrizketa batean pantaila-argazki bat ateratzen duenean." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست مطلع شدن بده وقتی یک مخاطب از یک چت یک به یک اسکرین شات می‌گیرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaadi ilmoitus, kun yhteystieto ottaa kuvankaappauksen kahdenkeskisestä keskustelusta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kailangan ng isang notipikasyon kapag kumuha ng screenshot ang isang kontak ng one-to-one chat." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recevoir une notification lorsqu'un contact fait une capture d'écran d'une conversation individuelle." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Requerir unha notificación cando un contacto faga unha captura de pantalla dun chat un a un." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nemi sanarwa lokacin da tuntuɓar ta ɗauki hoton allo na tattaunawar daga mutum ɗaya zuwa mutum ɗaya." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "דרוש התראה כאשר איש קשר לוקח צילום מסך שלים-על-אחד." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जब कोई संपर्क एक-से-एक चैट का स्क्रीनशॉट लेता है तो अधिसूचना की आवश्यकता होती है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtijevaj obavijest kada kontakt napravi snimak zaslona jednog-na-jedan chata." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítés igénylése, ha egy ismerős képernyőképet készít az egyéni csevegésről." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պահանջեք ծանուցում, երբ կոնտակտը վերցնում է սքրինշոթ մեկ առ մեկ զրույցի մասին:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terima notifikasi saat kontak mengambil tangkapan layar dari obrolan pribadi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ricevi una notifica quando un contatto fa uno screenshot di una chat privata." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先が1対1チャットのスクリーンショットを撮ったときに通知を受け取ります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოთხოვნა შეტყობინება, როდესაც კონტაქტი აკეთებს ეკრანშოტს ერთ-ერთი-კონტაქტის ჩატში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ទាមទារការ ជូន​ដំណឹង នៅពេលទំនាក់ទំនងបានថតរូបអេក្រង់នៃការជជែកមួយទល់មួយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಒಂದು-ಒಂದು ಚಾಟ್‌ ಹಿಂದೆ ಕೊಂಡಿದಾಗ ಕವರಿಕೆ ತೆಗೆದಾಗ ನಿಮಗೆ ಮುಚ್ಚಿದ ಒಂದು ಅಳಿಸುವಿಕೆಯ ಅಗತ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처가 일대일 채팅의 스크린샷을 찍을 때 알림을 필요로 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahdarîya ekrana nêpirr bi tenê belaş dibe?" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ntegekera okussa omukulu okuva ku byambi n'okuva mu ngero ez'effiisa ez'emikutu." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pageidaukite pranešimo, kai kontaktas padaro vieno su vienu pokalbio ekrano kopiją." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pieprasīt paziņojumu, ja kontakts izveido ekrānšāviņu no privātās sarunas." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бара известување кога контакт прави скриншот од еден на еден чет." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хэрэглэгч нэг нэгээр захиалбал зургийн хэмжээг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memerlukan notifikasi apabila seseorang mengambil tangkapan skrin bagi sembang satu-satu." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်သွယ်သူသည် တစ်ဦးနှင့် တစ်ဦး ပြောဆိုမှု၏ screenshot ရိုက်ခြင်းကို အသိပေးချက် တောင်းဆိုပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev et varsel når en kontakt tar et skjermbilde av en en-til-en-chat." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै सम्पर्कले एक-देखि-एक च्याटको स्क्रीनसट लिँदा सूचनाको अनुरोध गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een melding vereisen wanneer een contact een screenshot maakt van een een-op-een-chat." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Krev eit varsel når ein kontakt tek eit skjermbilete av ein en-til-en samtale." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Funsani chidziwitso ngati mnzanu atenga chithunzithunzi cha macheza amodzi ndi mmodzi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਦੋਂ ਇੱਕ ਸੰਪਰਕ ਇੱਕ-ਤੁ-ਇੱਕ ਗੱਲਬਾਤ ਦਾ ਸਕ੍ਰੀਨ ਸ਼ੌਟ ਲੈਂਦਾ ਹੈ ਤਾਂ ਸੂਚਨਾ ਦੀ ਲੋੜ ਹੁੰਦੀ ਹੈ ਜੀ." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wymagaj powiadomienia, gdy kontakt wykona zrzut ekranu rozmowy prywatnej." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اړینه ده چې د یو چا له چټ څخه سکرین شاټ اخیستل کیدو په اړه خبرتیا واخیستل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exigir uma notificação quando um contato fizer uma captura de tela de um chat um-a-um." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Receber uma notificação quando um contato captura um screenshot de uma conversa." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Primește o notificare atunci când un contact face o captură de ecran a unei conversații unu-la-unu." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получать уведомление, когда контакт делает скриншот личного чата." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj obaveštenje kada kontakt napravi snimak ekrana jednonačnog čata." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සමනල මානවජන ආරක්ෂණ සක්‍රිය කර කිරීමේ විස්තරය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyžadujte upozornenie, keď kontakt urobí snímku obrazovky z individuálnej konverzácie." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevaj obvestilo, ko stik zajame zaslon en-na-en pogovora." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko një njoftim kur një kontakt bën një screenshot të një bisede një-me-një." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтевај обавештење када контакт направи снимак екрана један-на-један разговора." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebno je obaveštenje kada kontakt snimi screenshot jednonačnog četa." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kräv en avisering när en kontakt tar en skärmdump av en enskild chatt." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "omba arifa wakati mawasiliano anapotuma picha skrini ya mazungumzo ya moja kwa moja." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆரா எச்சரிக்கையை { சிலை வகையான } குவைத்தால் சேப தீங்கு பிண்ட" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వినియోగదారు ఒకటి-ఒకటి చాట్ స్క్రీన్‌షాట్ తీసినప్పుడు నోటిఫికేషన్ కావాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "จำเป็นต้องมีการแจ้งเตือนเมื่อมีผู้ติดต่อแคปหน้าจอของแชทส่วนตัว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir kişi bire bir sohbetin ekran görüntüsünü aldığında bildirim alın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отримувати сповіщення, коли контакт робить скриншот особистої бесіди." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جب کوئی رابطہ ایک سے ایک چیٹ کا اسکرین شاٹ لیتا ہے تو ایک اطلاع کی ضرورت ہوتی ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakt birma-bir chatning ekran suratini olganda xabarnoma talab qilinadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yêu cầu thông báo khi một liên hệ chụp ảnh màn hình của một cuộc trò chuyện một-một." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fumana isaziso xa unxibelelwano lwenza into yeskrini se-one-to-one chat." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "当联系人在一对一聊天中截屏时通知您。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在聯絡人擷取一對一聊天的截圖時,收到通知。" + } + } + } + }, + "screenshotTaken" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} het 'n skermskoot geneem" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} قام بتصوير الشاشة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ekran şəklini çəkdi." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} Screenshot bireht." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} зрабіў(-ла) скрыншот." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} направи екранна снимка." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} একটি স্ক্রিনশট নিয়েছে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha fet una captura de pantalla." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} pořídil(a) snímek obrazovky." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cymerodd {name} lun o'r sgrin." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tog et skærmbillede." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} hat einen Screenshot gemacht." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} τράβηξε ένα στιγμιότυπο οθόνης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} took a screenshot." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} kreis ekrankopion." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha hecho una captura de pantalla." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha hecho una captura de pantalla." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tegi ekraanipildi." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}(e)k bistaragailu argazki bat egin du." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} از صفحه یک عکس گرفت." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} otti kuvakaappauksen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumuha ng screenshot si {name}." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a pris une capture d'écran." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fixo unha captura de pantalla." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ya ɗauki hoto." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‏ צילם מסך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ने स्क्रीनशॉट लिया।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napravio/la snimku zaslona." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} készített egy képernyőképet." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} նկարել է էկրանը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mengambil tangkapan layar." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ha fatto uno screenshot." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}はスクリーンショットを撮りました" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ს გადაიღო სკრინშოტი." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}‍ បានថតរូបថតអេក្រង់។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ಅವರು ಸ್ಕ್ರೀನ್‌ಶಾಟ್ ತೆಗೆದುಕೊಂಡಿದ್ದಾರೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}님이 스크린샷을 찍었습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wêneyekî ekranê kişand." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} yakuba ekifananyi ekya ekifaananyi eky'emisana." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ໄດ້ຮອບພາບເຊັນຈໍ (screenshot)." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} padarė ekrano kopiją." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} veica ekrānuzņēmumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} направи скриншот." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} скриншот хийсэн." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mengambil tangkapan skrin." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} က မျက်နှာပြင်ဓာတ်ပုံကို ရိုက်ယူခဲ့သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tok et skjermbilde." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ले स्क्रीनशट लिए।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} heeft een schermafbeelding gemaakt." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tok eit skjermbilde." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} wapanga chithunzi chazithunzi." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}ਨੇ ਸਕ੍ਰੀਨਸ਼ਾਟ ਲਿਆ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} zrobił(a) zrzut ekranu." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} یو سکرین شاټ واخیست." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fez uma captura de tela." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} fez uma captura de ecrã." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} a făcut o captură de ecran." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} сделал(а) снимок экрана." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napravio snimak zaslona." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} තිර රුවක් ගත්තා." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} urobil/a snímku obrazovky." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je posnel posnetek zaslona." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} mori një pamje ekrani." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} је направио скриншут." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} je napravio/la snimak ekrana." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} tog en skärmbild." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} amechukua picha ya skrini." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} திரைப் பிடிப்பு எடுத்தார்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} స్క్రీన్ షాట్ తీసుకున్నారు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ได้ถ่ายสกรีนช็อต" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ekran görüntüsü aldı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} зробив скриншот." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} نے اسکرین شاٹ لیا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} skrinshot qildi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} đã chụp màn hình." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} ithathe umfanekiso wescreen." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name}进行了截图。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{name} 擷取了螢幕畫面。" + } + } + } + }, + "search" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بحث" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axtar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرچ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Търсене" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "খুঁজুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hledat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwilio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søg" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναζήτηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serĉi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otsi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جستجو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hae" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recherche" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bincike" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חיפוש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सर्च" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keresés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փնտրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "検索" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ძიება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្វែងរក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹುಡುಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "검색" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gerr" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noonya" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieškoti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meklēt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хайх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရှာဖွေရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खोज्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maskana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖੋਜ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szukaj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پلټنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesquisar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Căutați" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поиск" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සොයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hľadať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тражи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraga" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sök" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafuta" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தேடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వెతకండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ค้นหา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تلاش" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qidirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tìm kiếm" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khangela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜索" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜尋" + } + } + } + }, + "searchContacts" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soek Kontakte" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ابحث في جهات الاتصال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktları axtar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرچ روابط" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук кантактаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Търсене на контакти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কন্টাক্ট খুঁজুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca contactes" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prohledat kontakty" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwilio Cysylltiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søg Kontakter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontakte durchsuchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναζήτηση σε επαφές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Contacts" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serĉi Kontaktpersonojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar Contactos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar contactos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otsi kontakte" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktuak Bilatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جستجوی مخاطبین" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etsi yhteystietoja" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Contacts" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chercher parmi les contacts" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar contactos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bincika Lambobin Sadarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חפש אנשי קשר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संपर्क खोजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži kontakte" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapcsolatok keresése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Որոնել կոնտակտներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari Kontak" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca tra i contatti" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "連絡先を検索" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Კონტაქტების ძიება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្វែងរកទំនាក់ទំនង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಪರ್ಕಗಳನ್ನು ಹುಡುಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연락처 검색" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Li kontaktekî bigerrin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noonya Bakonti" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieškoti kontaktų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meklēt kontaktus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барај Контакти" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Холбоо барих хайх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari Kenalan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်သွယ်ရန်ကို ရှာဖွေပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk etter kontakter" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सम्पर्कहरू खोज्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contacten zoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk etter kontakter" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Contacts" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੌੰਟੈਕਟ ਖੋਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szukaj kontaktów" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اړیکو پلټنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar contatos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesquisar contactos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cauta contacte" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поиск контактов" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži kontakte" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සබඳතා සොයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hľadať kontakty" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskanje stikov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko Kontaktet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Претражи контакте" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraga kontakata" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sök kontakter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafuta Mawasiliano" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடர்புகளை தேடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పరిచయాలను వెతకండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ค้นหาผู้ติดต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişileri Bul" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук контактів" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "رابطے تلاش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontaktlarni qidirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tìm kiếm liên lạc" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khangela Iincwadi Zokunxibelelana" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜索联系人" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜尋聯絡人" + } + } + } + }, + "searchConversation" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soek Gesprek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بحث عن محادثة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıq axtar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرچ گفت و شنید" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шукаць у размове" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Търсене на разговор" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন অনুসন্ধান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca la conversa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prohledat konverzaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwilio Sgwrs" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søg I Beskeder" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unterhaltung durchsuchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναζήτηση στη Συνομιλία" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Conversation" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serĉi Konversacion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar en el chat" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar en la conversación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otsi vestlust" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketa Bilatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جستجو در مکالمه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etsi keskustelusta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Conversation" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chercher dans la conversation" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar na conversa" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bincika Fahimtarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חפש שיחה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संभाषण खोजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraživanje razgovora" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keresés a beszélgetésben" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Որոնել զրույցները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Penelusuran Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca nella chat" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話の検索" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Საუბრის ძიება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្វែងរកការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಯನ್ನು ಹುಡುಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화 검색" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Li söylek bigerrin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noonya Olubaga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieškoti pokalbio" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meklēt sarunu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барај Разговор" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцан яриаг хайх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောဆိုမှုရှာဖွေရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk i samtale" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुराकानी खोज्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprek zoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk i samtale" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Conversation" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤ ਖੋਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyszukiwanie konwersacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خبرو اترو پلټنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar na Conversa" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesquisar conversa" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Căutare în conversație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Искать в разговоре" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži razgovor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාදය සොයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hľadať v konverzácii" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskanje pogovora" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkoni bisedën" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тражи разговор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraga konverzacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sök i konversation" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafuta Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடலை தேடுங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణను వెతకండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ค้นหาอะไรในการสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbet Ara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук бесіди" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "گفتگو تلاش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatni qidirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tìm kiếm hội thoại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khangela Udliwano-ndlebe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜索会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜尋對話" + } + } + } + }, + "searchEnter" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer jou soektog in." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الرجاء إدخال كملة بحث." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zəhmət olmasa, axtarışınızı daxil edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہء مہربانی اپنی تلاش ڈالیں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Калі ласка, увядзіце тэкст для пошуку." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля, въведете вашето търсене." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার অনুসন্ধান লিখুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduïu la vostra cerca." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadejte své vyhledávání." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodwch eich chwiliad." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indtast venligst din søgning." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte gib deine Suche ein." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παρακαλώ εισάγετε την αναζήτηση." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter your search." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bonvolu enigi vian serĉon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce el término de búsqueda." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce el término de búsqueda." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palun sisestage oma otsing." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesedez, sartu zure bilaketa." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "عبارت مورد نظر خود را وارد کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirjoita hakutermi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakilagay ang iyong hinahanap." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez saisir votre recherche." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, introduce a túa procura." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shigar da binciken" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אנא הזן את החיפוש שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please enter your search." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unesite svoju pretragu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add meg a keresési kifejezést." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Խնդրում ենք մուտքագրել ձեր որոնումը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mohon masukkan pencarian anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scrivi quello che vuoi cercare." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "検索語を入力してください" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გთხოვთ შეიყვანოთ ძებნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមបញ្ចូលការស្វែងរករបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಹುಡುಕಾಟವನ್ನು ನಮೂದಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "검색할 내용을 입력하십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kerem bike tu li ser Giphy ne girêdane - ne têketina gêrê, usbikirina tambûra têkeve" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geba kuzinzewo kw’osaka." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įveskite paieškos tekstą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lūdzu ievadi savu meklējumu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ве молиме внесете го вашето пребарување." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хайлтаа оруулна уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sila masukkan carian anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်ရှာဖွေရန် ရိုက်ထည့်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn søkeord." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कृपया तपाईको खोज प्रविष्ट गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voer je zoekopdracht in." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vennligst skriv inn søkeord." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chonde lowetsani kafukufuku wanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕ੍ਰਿਪਾ ਕਰਕੇ ਆਪਣੀ ਖੋਜ ਡਾਲੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wprowadź swoje wyszukiwanie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مهرباني وکړئ خپل لټون ولیکئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, insira a sua busca." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Introduza o texto para pesquisar." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vă rugăm să introduceţi căutarea." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, введите ваш запрос." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite pretragu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කරුණාකර ඔබගේ සෙවුම ඇතුලත් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadajte prosím čo hľadáte." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vnesite iskalni pogoj." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi futni kërkimin tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Унесите вашу претрагу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Molimo unesite vaš upit za pretragu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vänligen ange sökord." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali weka utafutaji wako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் தேடலை உள்ளிடவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "దయచేసి మీ సెర్చ్ ఎంటర్ చేయండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เขียนที่ค้นหา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lütfen aramanızı girin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, введіть текст для пошуку." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "براہ کرم اپنی تلاش درج کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izlashni kiriting." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vui lòng nhập để tìm kiếm." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nceda ngenisa uphando lwakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请输入您的搜索词。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請輸入搜尋內容" + } + } + } + }, + "searchMatches" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} van %lld pas aan" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} van %lld passings" + } + } + } + } + }, + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld مطابقات" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld مطابقات" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld إجابة" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld مطابقات" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld مطابقات" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} من %lld مطابقة" + } + } + } + } + }, + "az" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld uyuşma" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld uyuşma" + } + } + } + } + }, + "bal" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} از %lld مقابلہ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} از %lld مقابلہاں" + } + } + } + } + }, + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld супадзенняў" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld супадзенняў" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld супадзенне" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld супадзенняў" + } + } + } + } + }, + "bg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld от {found_count} съвпадения" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld от {found_count} съвпадения" + } + } + } + } + }, + "bn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}টি ম্যাচের মধ্যে %lldটি" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}টি ম্যাচের মধ্যে %lldটি" + } + } + } + } + }, + "ca" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld coincidència" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld coincidències" + } + } + } + } + }, + "cs" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld odpovídají" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld odpovídá" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld odpovídá" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld odpovídá" + } + } + } + } + }, + "cy" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gemau" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gemau" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gêm" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gemau" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gemau" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} o %lld gemau" + } + } + } + } + }, + "da" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ud af %lld match" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ud af %lld matches" + } + } + } + } + }, + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} von %lld Treffern" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} von %lld Treffern" + } + } + } + } + }, + "el" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} από %lld αντιστοίχιση" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} από %lld αντιστοιχίσεις" + } + } + } + } + }, + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld match" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld matches" + } + } + } + } + }, + "eo" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} el %lld informpeto" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} el %lld informpetoj" + } + } + } + } + }, + "es-419" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultado" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultados" + } + } + } + } + }, + "es-ES" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultado" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultados" + } + } + } + } + }, + "et" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld vastest" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld vastetest" + } + } + } + } + }, + "eu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} / %lld bat dator" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} / %lld bat datoz" + } + } + } + } + }, + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} از %lld مطابقت دارد" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} از %lld مطابقت دارد" + } + } + } + } + }, + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld osumasta" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld osumasta" + } + } + } + } + }, + "fil" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} sa %lld na katugma" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} sa %lld na mga katugma" + } + } + } + } + }, + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} resultat sur %lld" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} resultats sur %lld" + } + } + } + } + }, + "ha" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} daga cikin %lld dacewa" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} daga cikin %lld dacewa" + } + } + } + } + }, + "he" : { + "variations" : { + "plural" : { + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} מתוך %lld תוצאות" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} מתוך %lld תוצאה" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} מתוך %lld תוצאות" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} מתוך %lld תוצאות" + } + } + } + } + }, + "hi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} में से %lld मिलान" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} में से %lld मिलान" + } + } + } + } + }, + "hr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld podudaranja" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld podudaranja" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld podudaranja" + } + } + } + } + }, + "hu" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld találat" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld találat" + } + } + } + } + }, + "hy-AM" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} %lld համապատասխան" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} %lld համապատասխանում է" + } + } + } + } + }, + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} dari %lld cocok" + } + } + } + } + }, + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} di %lld corrispondenza" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} di %lld corrispondenze" + } + } + } + } + }, + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ( %lld のうち)" + } + } + } + } + }, + "ka" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} და %lld შეესაბამება" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} და %lld შეესაბამება" + } + } + } + } + }, + "km" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} នៃ %lld លទ្ធផលស្វែងរក" + } + } + } + } + }, + "kn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld ಹೊಂದಾಣಿಕೆ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld ಹೊಂದಾಣಿಕೆಗಳು" + } + } + } + } + }, + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld개 중 {found_count}개 결과" + } + } + } + } + }, + "ku" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ji %lld lihevhatû" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} li li %lld yên din" + } + } + } + } + }, + "lg" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ku %lld empandiika" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} ku %lld empandiika" + } + } + } + } + }, + "lt" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} iš %lld atitikmenų" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} iš %lld atitikmenų" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} iš %lld atitikmuo" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} iš %lld atitikmenų" + } + } + } + } + }, + "lv" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} no %lld sakritība" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} no %lld sakritības" + } + }, + "zero" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} no %lld sakritības" + } + } + } + } + }, + "mk" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} од %lld резултат" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} од %lld резултати" + } + } + } + } + }, + "mn" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld тааралт" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}/%lld тааралтууд" + } + } + } + } + }, + "ms" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} daripada %lld padanan" + } + } + } + } + }, + "my" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld ရမှတ်နှင့် {found_count} ရမှတ်" + } + } + } + } + }, + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld treff" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld treff" + } + } + } + } + }, + "ne-NP" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} को %lld मिल्यो" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} को %lld मिल्यो।" + } + } + } + } + }, + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} van de %lld overeenkomst" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} van de %lld overeenkomsten" + } + } + } + } + }, + "nn-NO" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld treff" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld treff" + } + } + } + } + }, + "ny" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} mwa %lld zimagwirizana" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} mwa %lld zogwirizana" + } + } + } + } + }, + "pa-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld ਮੈਚ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld ਮੈਚ" + } + } + } + } + }, + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld wyników" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld wyników" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld wyniku" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld wyników" + } + } + } + } + }, + "ps" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} د %lld څخه برابر" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} د %lld څخه برابرونه" + } + } + } + } + }, + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultado" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld resultados" + } + } + } + } + }, + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld correspondência" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} de %lld correspondências" + } + } + } + } + }, + "ro" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potriviri {found_count} din %lld" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrivire {found_count} din %lld" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potriviri {found_count} din %lld" + } + } + } + } + }, + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} из %lld совпадений" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} из %lld совпадений" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} из %lld совпадений" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} из %lld совпадений" + } + } + } + } + }, + "sh" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + } + } + } + }, + "si-LK" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} න් %lld තරඟ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} න් %lld තරඟ" + } + } + } + } + }, + "sk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld zhôd" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld zhôd" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld zhoda" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} z %lld zhôd" + } + } + } + } + }, + "sl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld se ujemajo" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld natančen zadetek" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld se ujemajo" + } + }, + "two" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld se ujemata" + } + } + } + } + }, + "sq" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} nga %lld ndeshje" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} of %lld match" + } + } + } + } + }, + "sr" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} од %lld резултата" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} од %lld резултат" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} од %lld резултата" + } + } + } + } + }, + "sr-RS" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultat" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} od %lld rezultata" + } + } + } + } + }, + "sv-SE" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld matchning" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} av %lld matchningar" + } + } + } + } + }, + "sw" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} wa %lld inayolingana" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} wa %lld zinazolingana" + } + } + } + } + }, + "ta" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} இல் %lld பொருந்தும்" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} இல் %lld பொருந்தல்கள்" + } + } + } + } + }, + "te" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld లొ {found_count} సరిపోలినది" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld లొ {found_count} సరిపోలినవకలు" + } + } + } + } + }, + "th" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} จาก %lld รายการ" + } + } + } + } + }, + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld eşleşmeden {found_count} sonuç" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lld eşleşmeden {found_count} sonuç" + } + } + } + } + }, + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld збігаються" + } + }, + "many" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld збігів" + } + }, + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld збіг" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} з %lld збігаються" + } + } + } + } + }, + "ur-IN" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} کا %lld مقابلہ" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} کا %lld مقابلے" + } + } + } + } + }, + "uz" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} dan %lld ta natija" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} dan %lld ta natijalar" + } + } + } + } + }, + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} trên %lld phù hợp" + } + } + } + } + }, + "xh" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} kwe %lld zikhankanyi" + } + }, + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count} kwizinto %lld" + } + } + } + } + }, + "zh-CN" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "{found_count}个匹配项,共%lld个结果" + } + } + } + } + }, + "zh-TW" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示{found_count} 个匹配項,一共%lld 个結果" + } + } + } + } + } + } + }, + "searchMatchesNone" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen resultate gevind nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم يتم العثور على أي نتيجة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heç bir nəticə tapılmadı." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ نتیجه کوتگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма вынікаў." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма открити резултати." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কোনো ফলাফল পাওয়া যায়নি।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No s'han trobat resultats." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nebyly nalezeny žádné výsledky." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim canlyniadau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen resultater fundet." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Ergebnisse gefunden." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε βρέθηκαν αποτελέσματα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No results found." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu rezulto." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se han encontrado resultados." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se han encontrado resultados." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulemused puuduvad." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago emaitzarik." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیچ نتیجه‌ای یافت نشد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei tuloksia." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang nakita para dito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun résultat trouvé." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ningún resultado atopado." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu sakamako da aka samu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא נמצאו תוצאות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कोई परिणाम नहीं मिला।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs találat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արդյունքներ չեն գտնվել." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasil tidak ditemukan." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun risultato trovato." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "検索結果がありません" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "არაფერი მოიძებნა." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រកមិនឃើញលទ្ធផលទេ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಯಾವುದೇ ಫಲಿತಾಂಶಗಳಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "검색 결과가 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Encam peyda nebû" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezirikibwa." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nėra rezultatų." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav rezultātu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не се пронајдени резултати." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үр дүн олдсонгүй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada hasil dijumpai." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရလဒ် မရှိပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fant ingen resultater." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कुनै परिणाम फेला परेन।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen resultaten gevonden." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fann ingen resultat." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Maphunziro Omwe Apezeka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੋਈ ਨਤੀਜਾ ਨਹੀਂ ਲੱਭੇ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie znaleziono wyników." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هیڅ پایلې ونه موندل شوې." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum resultado encontrado." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhuns resultados de pesquisa encontrados." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-au găsit rezultate." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ничего не найдено." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ප්‍රතිඵල හමු නොවිණි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenašli sa žiadne výsledky." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni rezultatov." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’ka përfundime për." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема пронађених резултата." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga resultat hittades." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna matokeo yamepatikana." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தேடல் முடிவுகள் எதுவும் இல்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫలితాలు కనుగొనబడలేదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบข้อมูลเลย" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiçbir sonuç bulunamadı." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нічого не знайдено." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کوئی نتائج نہیں ملے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hech narsa topilmadi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy kết quả nào." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho ziphumo ezifumanekayo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "找不到结果。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到結果" + } + } + } + }, + "searchMatchesNoneSpecific" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen resultate gevind vir {query}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لم يتم العثور على أية نتيجة لـ {query}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"{query}\" üçün nəticə tapılmadı" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query}ءِ لئی گون ایسر نتیں نتیجه کوتگ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Няма вынікаў для {query}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не са открити резултати за {query}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} এর জন্য কোনো ফলাফল পাওয়া যায়নি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No hi ha cap resultat per a \"{query}\"." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenalezeno nic, co by odpovídalo {query}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dim canlyniadau ar gyfer {query}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen resultater fundet for {query}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keine Ergebnisse für »{query}« gefunden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δε βρέθηκαν αποτελέσματα για \"{query}\"" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No results found for {query}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neniu rezulto pri \"{query}\"" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontraron resultados para {query}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se encontraron resultados para «{query}»" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulemusi ei leitud otsingule '{query}'" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez dago emaitzarik {query} bilaketarako" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نتایجی برای {query} یافت نشد" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei tuloksia haulle: {query}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Walang nakita para sa {query}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun résultat n’a été trouvé pour « {query} »" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ningún resultado atopado para '{query}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babu sakamako da aka samu a {query}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא נמצאו תוצאות עבור {query}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} के लिए कोई परिणाम नहीं मिला" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata za {query}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nincs találat a következőre: {query}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արդյունք չգտնվեց «{query}»-ի համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak ditemukan hasil untuk '{query}'" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nessun risultato trovato per {query}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "「{query}」に一致する情報は見つかりませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} -ზე არაფერი მოიძებნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "គ្មានលទ្ធផលសម្រាប់ {query}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} ಗೆ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬಂದಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "'{query}'에 대한 검색결과가 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Encam peyda nebû ji bo {query}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tezirangiddwa ku {query}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} negrąžino jokių rezultatų" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nav atrasti rezultāti meklēšanai {query}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не се пронајдени резултати за {query}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} хайлтанд үр дүн олдсонгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiada hasil dijumpai untuk {query}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} နှင့် အတွက် အရိပ်မရှိသေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ingen resultater funnet for {query}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} लागि कुनै परिणाम फेला परेन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geen resultaten voor {query}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fann ingen resultat for «{query}»" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palibe Maphunziro Omwe Apezeka Kwa {query}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} ਲਈ ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਲੱਭੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brak wyników dla {query}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {query} لپاره هیڅ پایلې ونه موندل شوې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum resultado encontrado para {query}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foram encontrados resultados para '{query}'" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu s-au găsit rezultate pentru {query}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Результаты не найдены для {query}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata za {query}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} සඳහා සෙවුම් ප්‍රතිඵල නැත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadne výsledky pre {query}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ni rezultatov za {query}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’kemi gjetur rezultate për {query}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нема резултата за '{query}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nema rezultata za {query}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inga resultat hittades för {query}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hakuna matokeo yamepatikana kwa {query}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"{query}\" க்கான தேடல் முடிவுகள் எதுவும் இல்லை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} కోసం ఫలితాలు కనుగొనబడలేదు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบข้อมูลเกี่ยวกับ '{query}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} için arama sonucu yok" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не знайдено результатів для '{query}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{query} کے لئے کوئی نتائج نہیں ملے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"{query}\" boʻyicha hech narsa topilmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không tìm thấy kết quả nào cho '{query}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akukho ziphumo ezifumanekayo kwi-{query}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有找到“{query}”的相关结果。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無 \"{query}\" 的搜尋結果" + } + } + } + }, + "searchMembers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soek Lede" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "بحث عن الأعضاء" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzv axtar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرچ ممبرز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук удзельнікаў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Търсене на членове" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সদস্য অনুসন্ধান করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca membres" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prohledat členy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwilio Aelodau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søg Medlemmer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitglieder durchsuchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναζήτηση στα Μέλη" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Members" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serĉi Membrojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar Miembros" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscar miembros" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otsi liikmeid" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kideak Bilatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "جستجوی اعضا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etsi jäseniä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Members" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rechercher des membres" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar membros" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bincika Mambobi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חפש חברים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सदस्यों को खोजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži članove" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tagok keresése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Որոնել անդամներին" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari Anggota" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerca membri" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メンバーを検索" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "წევრების ძიება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្វែងរកសមាជិក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸದಸ್ಯರನ್ನು ಹುಡುಕು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "멤버 검색" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Li angoştek bigerrin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noonya Bammemba" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieškoti narių" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meklēt dalībniekus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барај Членови" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гишүүдийг хайх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cari Ahli" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အဖွဲ့ဝင်များကို ရှာဖွေပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk etter medlemmer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सदस्यहरू खोज्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leden zoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søk etter medlemmer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search Members" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੇਂਬਰਾਂ ਖੋਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Szukaj członków" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د غړو پلټنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar membros" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurar Membros" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Căutare membri" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поиск участников" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traži članove" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සාමාජිකයින් සොයන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hľadať členov" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskanje članov" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërko Anëtarët" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Претражи чланове" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraga članova" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sök medlem" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafuta Wanachama" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உறுப்பினர்களை தேடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సభ్యులను వెతకండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ค้นหาสมาชิก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üyeleri Ara" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук учасників" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اراکین تلاش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "A'zolarni qidirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tìm kiếm thành viên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khangela Amalungu" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜索群成员" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜尋成員" + } + } + } + }, + "searchSearching" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar word gesoek..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاري البحث..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axtarılır..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سرچینگ..." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Търсене..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "খোঁজা হচ্ছে..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cercant..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyhledávání..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwilio..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søger..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird gesucht..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναζήτηση..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Searching..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serĉante..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otsimine..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilatzen..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درحال جستجو..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etsitään..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Searching..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recherche..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A procurar..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana bincike..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחפש..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "खोजा जा रहा है..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraživanje..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keresés..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փնտրում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mencari..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cerco..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "検索中です。。。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ძიება..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងស្វែងរក..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹುಡುಕುತ್ತಿದೆ..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "검색 중..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "گەڕان بەدوای..." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okunoonya..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ieškoma..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meklē..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се бара..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хайж байна..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sedang Mencari..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရှာဖွေနေသည်..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søker..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "खोज्दै..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zoeken..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Søker..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Searching..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyszukiwanie..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د لټون په حال کې..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procurando..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pesquisando..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Căutare..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поиск..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Traženje..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සෙවෙමින්..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hľadá sa..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iskanje ..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duke kërkuar..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тражим..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pretraga..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Söker..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inatafuta..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தேடுகிறது..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వెతుకుతోంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังค้นหา..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Araştırılıyor..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошук..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تلاش ہو رہی ہے..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qidirilmoqda..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tìm kiếm..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sikhangela..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在搜索..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "搜尋中…" + } + } + } + }, + "select" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حدد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбраць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccioneu" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewis" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auswählen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλογή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elekti" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vali" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hautatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sélectionner" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "चुने" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiválasztás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleziona" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "選択" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონიშვნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើស" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಯ್ಕೆಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "선택" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "هەڵبژێرە" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasirinkti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atlasīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сонгох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ရွေးချယ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "छन्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecteren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚੁਣੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wybierz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selectează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбрать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përzgjidhni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изабери" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välj" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தேர்வு செய்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఎంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือก" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seç" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanlash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "选择" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選取" + } + } + } + }, + "selectAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kies alles" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اختر الكل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamısını seç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب انتخاب" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вылучыць усё" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери всичко" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব নির্বাচন করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecciona-ho tot" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrat vše" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dewis popeth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vælg Alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle auswählen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Επιλογή Όλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select All" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elekti ĉion" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar todo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar todo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vali kõik" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hautatu Dena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتخاب همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valitse kaikki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select All" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tout sélectionner" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleccionar todo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaɓi Duk" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בחר הכל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी को चुन लो स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes kiválasztása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ընտրել բոլորը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Semua" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seleziona tutto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべて選択" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონიშნე ყველას" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជ្រើសរើស​ទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲ ಆಯ್ದುಕೊಳ್ಳಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select All" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hemûyan hilbijêre" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Londa Byonna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žymėti viską" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atlasīt visus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Избери Сите" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүгдийг сонгох" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pilih Semua" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အားလုံးကို ရွေးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Velg alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै छिन्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alles selecteren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vel alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select All" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਭ ਨੂੰ ਉਮੀਦਵਾਰ ਬਣਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaznacz wszystko" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول انتخاب کړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar todas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selecionar tudo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Selectează tot" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выбрать Все" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odaberi sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියල්ල තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vybrať všetko" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izberi vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përzgjidhi krejt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изабери све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaberi sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markera alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chagua Vyote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனைத்தையும் தேர்ந்தெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అన్ని ఎంచుకో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลือกทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tümünü Seç" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обрати все" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "تمام منتخب کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barchasini belgilash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chọn tất cả" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khetha Zonke" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "全选" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "選取全部" + } + } + } + }, + "send" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адправіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odeslat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αποστολή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saada" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidali" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שלח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invia" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Გაგზავნა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "전송" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناردن" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sindikira" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siųsti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испрати" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့သည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzenden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kachana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyślij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لیږل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimite" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යවන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošlji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërgoje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пошаљи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošalji" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skicka" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపుము" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönder" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відправити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo'natish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送" + } + } + } + }, + "sending" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stuur" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إرسال" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərilir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج رہا ہے" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адпраўка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпращане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রেরণ করা হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviant" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesílání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn anfon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird gesendet ..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Γίνεται Αποστολή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendante" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saatmine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidaltzen" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال ارسال" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetetään" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoi" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "A enviar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aika" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שולח" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजा जा रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küldés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկվում է..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengirim" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invio in corso" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Გაგზავნით" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "전송 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi şandin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusindika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siunčiama" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sūta" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се испраќа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sedang Menghantar" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाउँदै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzenden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sender" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sending" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਨਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysyłanie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "په لیږلو کې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A enviar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimitere" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Šaljem" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යවමින්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odosiela sa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pošiljanje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po dërgohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шаљем" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Slanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skickar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inatuma" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்புகிறது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపుతోంది" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังส่ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderiliyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надсилання" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیج رہا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo'natilmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang gửi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "UkuThumela" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送中" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送中" + } + } + } + }, + "sent" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gestuur:" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم الإرسال:" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göndərildi:" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا گیا:" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даслана:" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изпратено:" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পাঠানো হয়েছে:" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviat:" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odesláno:" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfonwyd:" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt:" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesendet:" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Στάλθηκε:" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sent:" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendita:" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado:" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado:" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saadetud:" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidalia:" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ارسال شد:" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lähetetty:" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sent:" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Envoyé :" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviada:" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An aiko:" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נשלח:" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "भेजा गया:" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano:" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elküldve:" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ուղարկված է:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terkirim:" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviato:" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信済み:" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაგზავნილი:" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បានផ្ញើ៖" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಳುಹಿಸಿರುವುದು:" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보냄:" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hate şandin:" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kiriddwamu:" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išsiųsta:" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nosūtīts:" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Испратено:" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Илгээгдсэн:" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dihantar:" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပို့ထားသည်:" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt:" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पठाइएको:" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzonden:" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sendt:" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kachashka:" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਭੇਜਿਆ:" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wysłano:" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "لېږلی شوی:" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviada:" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviado:" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trimis:" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отправлено:" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano:" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යවා ඇත:" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odoslané:" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslano:" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dërguar më:" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Послато:" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poslata:" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skickat:" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imetumwa:" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுப்பப்பட்டது:" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంపిన:" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่งแล้ว:" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gönderildi:" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Надіслано:" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "بھیجا:" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo'natildi:" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đã gửi:" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumile:" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "发送:" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "傳送與:" + } + } + } + }, + "sessionAppearance" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voorkoms" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مظهر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünüş" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ظہور" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Знешні выгляд" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Външен вид" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাপিয়ারেন্স" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparença" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vzhled" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Golwg" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udseende" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Darstellung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εμφάνιση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appearance" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aspekto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apariencia" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apariencia" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Välimus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itxura" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ظاهر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulkoasu" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hitsura" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apparence" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparencia" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayyanar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מראה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "दिखावट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgled" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megjelenés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Արտաքին տեսք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aspetto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "デザイン設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გარეგნობა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "រូបរាង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆಕೃತಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "디자인" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xuyang" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okulabika" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຮູບລັກສະນະ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvaizda" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izskats" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изглед" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гадаад үзэмж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Penampilan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသွင်အပြင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utseende" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "देखावट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uiterlijk" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utsjåande" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maonekedwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦਿਖਾਵਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wygląd" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ظاهر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparência" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aparência" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aspect" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внешний вид" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgled" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙනුම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vzhľad" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videz" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dukje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изглед" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izgled" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utseende" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muonekano" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Session பதிப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్వరూపం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลักษณะที่ปรากฎ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünüm" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зовнішній вигляд" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "حضور" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko'rinish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diện mạo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndabika" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "外观" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "外觀" + } + } + } + }, + "sessionClearData" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vee Data Uit" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مسح البيانات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dataları təmizlə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاٹا صفا کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сцерці даныя" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изчистване на данните" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডেটা মুছুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esborrar les dades" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistit data" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clirio data" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ryd data" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daten löschen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Διαγραφή Δεδομένων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clear Data" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viŝi datumojn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar datos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Borrar datos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tühjenda andmed" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datuak garbitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پاک کردن اطلاعات" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tyhjennä tiedot" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burahin ang Data" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Effacer les données" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar datos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Goge Bayanai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נקה נתונים" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटा हटाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši podatke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adataid törlése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զրոյացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hapus Data" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elimina dati" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データを消去する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მონაცემების გასუფთავება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លុបទិន្នន័យ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೆಟಾ ತೆರವು ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터 삭제" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daneyê paqij bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jjamu Ebyetaago" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ລ້າງເວດຂໍ້ມູນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Išvalyti duomenis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izdzēst datus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Исчисти ги податоците" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өгөгдлийг арилгах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosongkan Data" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာများကို ရှင်းလင်းပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern data" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाटा मेटाउनुहोस" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gegevens wissen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fjern data" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pukuta Zomwe" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾ ਸਾਫ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyczyść dane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "معلومات له منځه یوسه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Dados" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Limpar Dados" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Șterge datele" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистить данные" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriši podatke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්ත හිස් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vyčistiť údaje" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti podatke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshij të dhënat" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очисти податке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Počisti podatke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rensa data" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Futa Data" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தகவலை அழி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటాను క్లియర్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูล" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verileri Temizle" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Очистити дані" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا صاف کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlarni tozalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xóa dữ liệu" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coca Idatha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除数据" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "清除資料" + } + } + } + }, + "sessionConversations" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprekke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المحادثات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danışıqlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "گپ وڑانی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Размовы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разговори" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কথোপকথন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Converses" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konverzace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sgyrsiau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaler" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chats" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συνομιλίες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversations" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Interparoloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversaciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversaciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vestlused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elkarrizketak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمه‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keskustelut" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga usapan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversations" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversas" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tattaunawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיחות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संवाद" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Razgovori" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beszélgetések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զրույցներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Percakapan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversazioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "会話" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "საუბრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការសន្ទនា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಭಾಷಣೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대화" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbet" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okwekeneenya" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ຫຼາຍເເລກ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokalbiai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sarakstes" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разговори" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харилцан ярианууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Perbualan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စကားပြောဆိုမှုများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtaler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "वार्ताहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gesprekken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samtalar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zokambirana" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗੱਲਬਾਤਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konwersacje" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کاپي شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversas" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conversații" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Беседы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Razgovori" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සංවාද" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konverzácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogovori" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biseda" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преписке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pripiske" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konversationer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mazungumzo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உரையாடல்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సంభాషణలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสนทนา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sohbetler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Розмови" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مکالمات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suhbatlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chuyện trò" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iincoko" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "会话" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "對話" + } + } + } + }, + "sessionHelp" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "المساعدة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kömək" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدار" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дапамога" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помощ" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "হেল্প" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajuda" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nápověda" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cymorth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjælp" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hilfe" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Βοήθεια" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Helpo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayuda" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayuda" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spikker" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laguntza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمک" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tulong" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aide" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axuda" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taimako" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עזרה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "मदद" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoć" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Segítség" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Աջակցություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bantuan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aiuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ヘルプ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დახმარება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ជំនួយ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಹಾಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "도움말" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alîkarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okuyamba" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pagalba" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Palīdzība" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помош" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тусламж" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bantuan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အကူအညီ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjelp" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मद्दत" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Help" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjelp" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thandizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਹਾਇਤਾ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoc" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "مرسته" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajuda" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajuda" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajutor" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помощь" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoć" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උදව්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoc" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoč" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndihmë" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помоћ" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pomoć" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hjälp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Msaada" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உதவி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సహాయం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ช่วยเหลือ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yardım" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Допомога" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدد" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yordam" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trợ giúp" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uncedo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "帮助" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "幫助" + } + } + } + }, + "sessionInviteAFriend" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi 'n Vriend" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أُدعُ صديق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir dostu dəvət et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک دوست کو دعوت دیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрасіць сябра" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покани приятел" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "একজন বন্ধুকে আমন্ত্রণ জানান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convideu un amic" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvat přítele" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahodd Ffrind" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter en ven" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einen Kontakt einladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσκλήσεις στα Επαφές" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite a Friend" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviti Amikon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar a un Amigo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitar a un Amigo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu sõber" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laguna gonbidatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دعوت از یک دوست" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu ystäviä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbitahin ang Kaibigan" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter un ami" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar a un amigo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yi Wa Aboki Gayyata" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמן חבר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "किसी मित्र को आमंत्रित करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi prijatelja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismerős meghívása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրել ընկերոջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undang Teman" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita un amico" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "友達を招待" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოწვიე მეგობარი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញមិត្តភក្តិម្នាក់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಒರ್ವ ಸ್ನೇಹಿತನನ್ನು ಆಮಂತ್ರಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구 초대" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hevalehek bipayîn" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuyita enjuuyi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakviesti draugą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaicināt draugu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканете Пријател" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзаа урь" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemput Rakan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သူငယ်ချင်းတစ်ဦးကို ဖိတ်ကြားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter en venn" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "मित्रलाई निमन्त्रणा गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodig een vriend uit" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter en venn" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina Wolemba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਦੋਸਤ ਨੂੰ ਬੁਲਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproś znajomego" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ملګری بلنه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convide um amigo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convidar um Amigo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invită un prieten" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пригласить друга" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovi prijatelja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මිතුරෙකුට ආරාධනා කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvať priateľa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabi prijatelja" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fto një Mik" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позови пријатеља" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite prijatelja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bjud in en vän" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alika Rafiki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு நண்பனை அழைக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒక స్నేహితున్ని ఆహ్వానించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญเพื่อน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir Arkadaş Davet Et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросити друга" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوست کو مدعو کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do'stni taklif qilish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mema umhlobo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀请好友" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "邀請好友" + } + } + } + }, + "sessionMessageRequests" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Boodskap Versoeke" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "طلبات المُراسلة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj tələbləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запыты на паведамленні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Заявки за съобщения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "বার্তা অনুরোধ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sol·licituds de missatges" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žádosti o komunikaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceisiadau Negeseuon" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beskedanmodninger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nachrichtenanfragen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αιτήματα μηνυμάτων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaĝpetoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de Mensaje" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de mensajes" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sõnumitaotlused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mezu-eskaerak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "درخواست‌های پیام" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viestipyynnöt" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Kahilingan sa Pagmemensahe" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demandes de message" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitudes de mensaxes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neman Saƙo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בקשות הודעה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "संदेश अनुरोध" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtjevi za porukama" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üzenetkérelmek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հաղորդագրության հարցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan Pesan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Richieste di messaggi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "メッセージリクエスト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინების მოთხოვნები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សំណាងល្អនៅមុខបន្ថែម!" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메시지 요청" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daxwazên Peyamê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okikusa ekizamanyo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziņu pieprasījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Барања за пораки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мессеж хүсэлтүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permintaan Mesej" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်သည် မက်ဆေ့ချ်လဒ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsforespørsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सन्देश अनुरोधहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berichtverzoeken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meldingsforespørsler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kapebangu kachikalata" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੁਨੇਹਾ ਬੇਨਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prośby o wiadomość" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام غوښتنې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pedidos de mensagem" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pedidos de Mensagem" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitări de mesaje" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запросы на переписку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtjevi za poruke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පණිවිඩ ඉල්ලීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Žiadosti o správu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahteve za sporočila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesazhe Session" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Захтеви за поруке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zahtevi za poruke" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Meddelandeförfrågningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Requests" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సందేశ అభ్యర్ధనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อความร้องขอ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mesaj İstekleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запити на повідомлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیغام کی درخواستیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xabar So'rovlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Các yêu cầu tin nhắn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izicelo zoMyalezo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "消息请求" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "訊息請求" + } + } + } + }, + "sessionNotifications" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennisgewing" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الإشعارات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirişlər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چھوابما" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апавяшчэнні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известия" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "নোটিফিকেশনের সেটিংস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacions" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hysbysiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikationer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benachrichtigungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ειδοποιήσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sciigoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaciones" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teatised" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jakinarazpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلان‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilmoitukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga abiso" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificacións" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanarwa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "התראות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obavijesti" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Értesítések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծանուցումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifiche" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეტყობინებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សារជូនដំណឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಧಿಸೂಚನೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알림" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahdarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okufuna Okutegeera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pranešimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paziņojumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Известувања" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Мэдэгдэлүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pemberitahuan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အသိပေးချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सूचनाहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificaties" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsler" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Willachikuna" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੂਚਨਾਵਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Powiadomienia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اعلانونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificações" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notificări" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уведомления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikacije" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැනුම්දීම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozornenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obvestila" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njoftime" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обавештења" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifikacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviseringar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arifa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறிவிப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ప్రకటనలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแจ้งเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirimler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сповіщення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bildirishnomalar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izaziso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "通知" + } + } + } + }, + "sessionPermissions" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toestemmings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الصلاحيات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İcazələr" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازتاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дазволы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешения" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অনুমতি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisos" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oprávnění" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caniatâd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tilladelser" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berechtigungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άδειες" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissions" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permesoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Õigused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baimenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دسترسی‌ها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käyttöoikeudet" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Pahintulot" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissions" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izini" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הרשאות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुमतियाँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dopuštenja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engedélyek" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թույլտվություններ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izin" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permessi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "権限" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უფლებები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការអនុញ្ញាត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅನುಮಿತಿಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "권한" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Îzn" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obusobozi" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leidimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atļaujas" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Зөвшөөрөл" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kebenaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ခွင့်ပြုချက်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillatelser" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनुमतिहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toestemmingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tillatelser" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zilolezo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਨੁਮਤੀਆਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uprawnienia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازې" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisiuni" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Разрешения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvole" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවසර" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povolenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dovoljenja" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволе" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dozvole" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Behörigheter" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruhusa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அனுமதிகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనుమతులు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สิทธิ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İzinler" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дозволи" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اجازتیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ruxsatlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quyền" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izimvume" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "权限" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "權限" + } + } + } + }, + "sessionPrivacy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatheid" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الخصوصية" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نجی رہائش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прыватнасць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поверителност" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "গোপনীয়তা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privadesa" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Soukromí" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preifatrwydd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatliv" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenschutz" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Απόρρητο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privateco" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidad" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidad" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privaatsus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pribatutasuna" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "حریم خصوصی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yksityisyys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pribado" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confidentialité" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sirri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "פרטיות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "गोपनियता" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adatvédelem" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գաղտնիություն" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "プライバシー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პირადი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ឯកជនភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಖಾಸಗಿತನ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인정보 보호" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nihênî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Katibako n’ekizindalo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatumas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privātums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приватност" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нууцлал" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privasi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကိုယ်ရေးလုံခြုံမှု" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvern" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "गोपनीयता" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personvern" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinsinsi" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਪ੍ਰਾਇਵੇਸੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prywatność" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "محرمیت" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacidade" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Confidenţialitate" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Конфиденциальность" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෞද්ගලිකත්වය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Súkromie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zasebnost" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatësi" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Приватност" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privatnost" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Integritet" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faragha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தனியுரிமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "గోప్యత" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ความเป็นส่วนตัว" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gizlilik" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Конфіденційність" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "پرائیویسی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maxfiylik" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riêng tư" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ubumfihlo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "隐私" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "隱私" + } + } + } + }, + "sessionRecoveryPassword" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herstellings wagwoord" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "كلمة مرور الاسترداد" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri qaytarma parolu" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "واپس گیری رمز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Парола за възстановяване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পুনরুদ্ধার পাসওয়ার্ড" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heslo pro obnovení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cyfrinair Adfer" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gendannelsesadgangskode" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wiederherstellungspasswort" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κωδικός Ανάκτησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ripara Pasvorto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clave de Recuperación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clave de Recuperación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taasteparool" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berreskuratze Pasahitza" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رمز عبور بازیابی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password sa Pag-recover" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mot de passe de récupération" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contrasinal de recuperación" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ƙalmar Maidowa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "סיסמת שיחזור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिपवरी पासवर्ड" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka za oporavak" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visszaállítási Jelszó" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Sandi Pemulihan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password di recupero" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リカバリパスワード" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აღდგენის პაროლი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ពាក្យសម្ងាត់ Recovery" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರಿಕವರಿ ಪಾಸ್‌ವೋರ್ಡ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şîfreya Veşartinê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsarginės kopijos slaptažodis" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atjaunošanas parole" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Лозинка за обновување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сэргээх нууц үг" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kata Laluan Pemulihan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjenopprettingspassord" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herstelwachtwoord" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Achinsinsi Ochira" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰੀਕਵਰੀ ਪਾਸਵਰਡ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hasło odzyskiwania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د بیا رغونې پټنوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senha de Recuperação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chave de Recuperação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parolă de recuperare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль восстановления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fráza pre obnovenie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geslo za obnovitev" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Рековери Лозинка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lozinka za oporavak" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Återställningslösenord" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nywila ya Urejeshaji" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவேற்றவுண்டு கடவுச்சொல்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పునర్‌మూల్యపాస్‌వర్డ్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пароль для відновлення" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ریکوری پاس ورڈ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta tiklash paroli" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mật khẩu khôi phục" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recovery Password" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "恢复密码" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "恢復密碼" + } + } + } + }, + "sessionSettings" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Instellings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التعديلات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayarlar" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "مدیریـــــــت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налады" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настройки" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সেটিংস" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuració" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavení" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosodiadau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstillinger" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einstellungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ρυθμίσεις" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Settings" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agordoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajustes" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configuración" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seaded" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezarpenak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیمات" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Asetukset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Settings" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paramètres" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Axustes" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saituna" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדרות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेटिंग्स" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beállítások" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կարգավորումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pengaturan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impostazioni" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "პარამეტრები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការកំណត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಂಯೋಜನೆಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mîheng" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebyokutereeza" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatymai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatījumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поставки" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тохиргоо" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်တင်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Innstillinger" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेटिङहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Instellingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Innstillingar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Munashka" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੈਟਿੰਗਸ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawienia" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیمات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurações" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurações" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setări" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настройки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavke" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සැකසුම්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavenia" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavitve" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rregullime" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подешавања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podešavanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inställningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mipangilio" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அமைப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అమరికలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตั้งค่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayarlar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налаштування" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیٹنگز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamir" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cài Đặt" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Settings" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定" + } + } + } + }, + "set" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تعيين" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayarla" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Задаване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সেট করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gosod" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indstil" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Speichern" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ορισμός" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fiksu" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Määra" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezarri" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیم" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aseta" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itakda" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appliquer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Establecer" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saita" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הגדר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेट करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beállít" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սահմանել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atur" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imposta" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "セット" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მითითება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណត់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸೆಟ್" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "설정" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Danîn" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tereka" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nustatyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iestatīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Постави" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тохируулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetapkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သတ်မှတ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sett" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सेट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Instellen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੈੱਟ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ustawiono" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تنظیمول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplicar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Configurar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Setează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Установить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සකසන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastaviť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendos" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Потврди" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postavi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ange" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weka" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அமை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సెట్" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตั้งค่า" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Застосувати" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سیٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Belgilash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thiết Lập" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Miselani" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "设置" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "設定" + } + } + } + }, + "settingsRestartDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy moet {app_name} herbegin om jou nuwe instellings toe te pas." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "يجب عليك إعادة تشغيل {app_name} لتطبيق الإعدادات الجديدة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni ayarlarınızı tətbiq etmək üçün {app_name} yenidən başladılmalıdır." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ما گپ درخواست قبول کردی {app_name} شروعین کار کنت کہ نویں تنظیماتاں اپنا بیوت." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вам неабходна перазапусціць {app_name} для прымянення новых налад." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Трябва да рестартирате {app_name}, за да приложите новите си настройки." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার নতুন সেটিংস প্রয়োগ করতে আপনাকে {app_name} পুনরায় চালু করতে হবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Heu de reiniciar {app_name} per aplicar la vostra nova configuració." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pro použití nových nastavení musíte restartovat {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae’n rhaid i chi ailgychwyn {app_name} i gymhwyso'r gosodiadau newydd." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du skal genstarte {app_name} for at anvende dine nye indstillinger." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du musst {app_name} neu starten, um die neuen Einstellungen zu übernehmen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πρέπει να επανεκκινήσετε το {app_name} για να εφαρμόσετε τις νέες ρυθμίσεις σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You must restart {app_name} to apply your new settings." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi devas rekomenci {app_name} por apliki viajn novajn agordojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes reiniciar {app_name} para aplicar las nuevas configuraciones." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes reiniciar {app_name} para aplicar las nuevas configuraciones." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uute seadete rakendamiseks peate taaskäivitama {app_name}." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} berrabiarazi behar duzu zure ezarpen berriak aplikatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "برای اعمال تنظیمات جدید نیاز است {app_name} را دوباره راه‌اندازی کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinun on käynnistettävä {app_name} uudelleen, jotta uudet asetuksesi tulevat voimaan." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dapat mong i-restart ang {app_name} upang ilapat ang iyong bagong mga setting." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous devez redémarrer {app_name} pour appliquer ces changements." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Debes reiniciar {app_name} para aplicar a túa nova configuración." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dole ne ku sake farawa {app_name} don aiwatar da sabbin saitunan ku." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עליך להפעיל מחדש את {app_name} כדי להחיל את ההגדרות החדשות שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपनी नई सेटिंग्स लागू करने के लिए आपको {app_name} पुनः प्रारंभ करना होगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morate ponovno pokrenuti {app_name} da biste primijenili nove postavke." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Újra kell indítanod a {app_name}-t a beállítások érvényesítéséhez." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ձեր նոր կարգավորումներն կիրառելու համար դուք պետք է վերագործարկեք {app_name}։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda harus memulai ulang {app_name} untuk menerapkan setelan baru." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "È necessario riavviare {app_name} per applicare le modifiche." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新しい設定を適用するために {app_name} を再起動する必要があります." + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ უნდა გადატვირთოთ {app_name} თქვენი ახალი პარამეტრებისთვის." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក​ត្រូវចាប់ផ្តើម {app_name} ឡើងਵੀញ ដើម្បីអនុវត្តការកំណត់ថ្មីរបស់អ្នក។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಹೊಸ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಅನ್ವಯಿಸಲು ನೀವು {app_name} ಅನ್ನು ಪುನರಾರಂಭಿಸಬೇಕು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 설정을 적용하려면 {app_name}을 재시작해야 합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ji bo bi aliyekî kirina mîhengekên xwe yên nû, {app_name}ê ji nû ve vekin." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Olina okukozizza {app_name} okusobozesa settings empya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Norėdami taikyti naujus nustatymus, privalote paleisti iš naujo {app_name}." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lai lietotu jaunus iestatījumus, jums jārestartē {app_name}." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Морате повторно да го вклучите {app_name} за да ги примените новите поставки." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэ тохиргоог хэрэгжүүлэхийн тулд {app_name}-ийг дахин эхлүүлнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda mesti memulakan semula {app_name} untuk menerapkan tetapan baru anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် အဆင်ပြေမှုကို အသုံးချရန် {app_name} ကို ပြန်စပြီး ကိရိယာများကို အသုံးပြုပြီးနောက် ပြန်လည်တင်ဆက်ထားပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du må starte {app_name} på nytt for å ta i bruk dine nye innstillinger." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "आफ्नो नयाँ सेटिङहरू लागू गर्न {app_name} पुनः सुरु गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw moet {app_name} opnieuw starten om uw nieuwe instellingen toe te passen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du må starte {app_name} på nytt for å bruke dei nye innstillingane dine." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Muyenera kuyambiranso {app_name} kuti mutseke zosintha zanu zatsopano." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਹਾਨੂੰ ਆਪਣੇ ਨਵੇਂ ਸੈਟਿੰਗਾਂ ਲਾਗੂ ਕਰਨ ਲਈ {app_name} ਨੂੰ ਦੁਬਾਰਾ ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aby zastosować nowe ustawienia, należy ponownie uruchomić aplikację {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو باید خپل {app_name} بیا پیل کړئ ترڅو ستاسو نوي تنظیمات وکاریږي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você precisa reiniciar o {app_name} para aplicar as novas configurações." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem que reiniciar o {app_name} de modo a aplicar as novas definições." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trebuie să reporniți {app_name} pentru a aplica noile setări." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы должны перезапустить {app_name}, чтобы применить новые настройки." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moraš restartovati {app_name} da bi primijenio nove postavke." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ නව සැකසුම් අදාළ කිරීමට {app_name} නැවත ආරම්භ කළ යුතුය." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ak chcete použiť nové nastavenia, musíte reštartovať {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Za uporabo novih nastavitev morate znova zagnati {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duhet të rifilloni {app_name} për të zbatuar cilësimet e reja." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Морате рестартовати {app_name} да примените нова подешавања." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Morate ponovo pokrenuti {app_name} da biste primenili nova podešavanja." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du måste starta om {app_name} för att tillämpa dina nya inställningar." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lazima uanzishe tena {app_name} ili kutumia mipangilio yako mipya." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் புதிய அமைப்புகளை புதுப்பிக்க {app_name} -ஐ மறுதொடக்கம் செய்யவேண்டி உள்ளது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ కొత్త సెట్టింగ్స్‌ని ఉపయోగించాలంటే, మీరు {app_name}ను రీస్టార్ట్ చేయాలి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณต้องรีสตาร์ท {app_name} เพื่อใช้งานการตั้งค่าใหม่ของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeni ayarların uygulanması için {app_name}'i yeniden başlatmanız gerekiyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вам необхідно перезапустити {app_name}, щоб застосувати нові налаштування." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ کو نئی سیٹنگز کے اطلاق کے لئے {app_name} کو دوبارہ شروع کرنا ضروری ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangi sozlamalarni qo'llash uchun {app_name} ni qayta ishga tushirishingiz shart." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn phải khởi động lại {app_name} để áp dụng các cài đặt mới của mình." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kufuneka uqale kwakhona {app_name} ukufaka isicelo setshedulo sakho esitsha." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您必须重新启动{app_name}以应用您的新设置。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您必須重新啓動 {app_name} 以應用您的新設定。" + } + } + } + }, + "share" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارك" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaş" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پھریبندو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абагуліць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Споделяне" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "শেয়ার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílet" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhannu" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teilen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κοινοποίηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partekatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به اشتراک گذاری" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "I-share" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partager" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partillar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parve bike" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שיתוף" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "शेयर करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megosztás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "共有" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაზიარება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹಂಚು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "공유" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Par" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendrinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dalīties" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хуваалцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "မျှဝေမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "साझा गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yallichirina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਾਡੇ ਨਾਲ ਸਾਂਝਾ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępnij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "شریکول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Distribuie" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделиться" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dijeli" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "බෙදාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdieľať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deli" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndaje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дели" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeli" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பகிர்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบ่งปัน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaş" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поділитися" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "شیئر" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bo'lishish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chia sẻ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享" + } + } + } + }, + "shareAccountIdDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nooi jou vriend om op {app_name} met jou te gesels deur jou Rekening ID met hulle te deel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "ادعُ صديقك للدردشة معك على {app_name} بمشاركة معرف حسابك معهم." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hesab kimliyinizi paylaşaraq dostunuzu sizinlə {app_name} üzərində söhbət etməyə dəvət edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ءَ شُم تکگفتوں دیمانت سہراج بک عاليةکیک شُمسا اکاونٹ ID آئنتے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрасіце сябра пагутарыць у {app_name}, пры дапамозе вашага Account ID." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканете приятеля си да чатите в {app_name}, като споделите своя ИД акаунт с него." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "প্রত্যেককে আপনার অ্যাকাউন্ট আইডি শেয়ার করে {app_name} এ আপনাকে চ্যাট করার জন্য আমন্ত্রণ জানান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convideu el vostre amic a xatejar a {app_name} compartint el vostre ID de compte amb ell." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvěte svého přítele nebo přítelkyni ke komunikaci pomocí {app_name} sdílením svého ID účtu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwahodd dy ffrind i sgwrsio gyda ti ar {app_name} drwy rannu dy ID Cyfrif gyda nhw." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite din ven til at chatte med dig på {app_name} ved at dele din Account ID med dem." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lade deine Kontakte ein, mit dir auf {app_name} zu chatten, indem du deine Account-ID mit ihnen teilst." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσκαλέστε τον φίλο σας να συνομιλήσει μαζί σας στο {app_name} μοιράζοντας το Account ID σας με αυτόν." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite your friend to chat with you on {app_name} by sharing your Account ID with them." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitu vian amikon babili kun vi en {app_name} dividante vian Konta Identigilo kun ili." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita a tu amigo a chatear contigo en {app_name} compartiendo tu ID de cuenta con ellos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita a tu amigo a hablar contigo en {app_name} compartiendo tu ID de Cuenta con él." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu oma sõber endaga vestlema {app_name} rakenduses jagades enda Account ID nendega." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gonbida ezazu zure laguna zure Kontu IDa partekatuz {app_name}-en zurekin txateatzeko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "از دوست ات دعوت کن تا با تو در {app_name} با اشتراک گذاری شناسه کاربری ات چت کند." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsu ystäväsi keskustelemaan kanssasi {app_name}-sovelluksessa jakamalla heille tilisi ID:n." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imbitahin ang iyong kaibigan na makipag-chat sa iyo sa {app_name} sa pamamagitan ng pagbabahagi ng iyong Account ID sa kanila." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invitez votre ami à discuter avec vous sur {app_name} en partageant votre ID de compte avec lui." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gayyaci abokinka don hira da kai a {app_name} ta hanyar raba Account ID ɗinka tare da su." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הזמן את חברך לשוחח איתך על {app_name} על ידי שיתוף מספר הזיהוי שלך איתו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने मित्र को अपने साथ {app_name} पर चैट करने के लिए Account ID साझा करके आमंत्रित करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite prijatelja na chatanje sa {app_name} dijeljenjem svog Account ID-ja s njima." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oszd meg a Felhasználó ID-dat ismerőseiddel, hogy a {app_name} alkalmazáson csevegjetek." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հրավիրե՛ք ձեր ընկերոջը զրուցելու ձեզ հետ {app_name}-ում՝ կիսվելով ձեր Account ID-ով." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undang teman Anda untuk mengobrol dengan Anda di {app_name} dengan membagikan ID Akun Anda kepada mereka." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invita i tuoi amici su {app_name} condividendo con loro il tuo codice utente." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "友達を{app_name} に招待して、チャットを始めましょう。アカウントIDを共有して招待できます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "მოუწვიე შენი მეგობარი ჩატის დასაწყებად {app_name}-ში გაუზიარეთ მათ თქვენი Account ID." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អញ្ជើញមិត្តរបស់អ្នកមកជជែកជាមួយអ្នកនៅលើ {app_name} ដោយចែករំលែក Account ID របស់អ្នកទៅពួកគេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನಿಮ್ಮ ಖಾತೆ ID ಹಂಚಿಕೊಂಡು ನಿಮ್ಮ ಸ್ನೇಹಿತನನ್ನು {app_name} ನೊಂದಿಗೆ ಚಾಟ್ ಮಾಡಲು ಆಹ್ವಾನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구에게 계정 ID를 공유하고 {app_name} 에서 친구들과 대화하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hevalê xwe dawet bike ku bi te li ser {app_name} sohbet bike bi şêrnînasî Nasnameya Kontê xwe re." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yingira enjuuyi ku {app_name} ng'ogabana nabo Account ID." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pakvieskite savo draugą į pokalbį {app_name} dalindamiesi su jais savo Account ID." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzaiciniet savu draugu tērzēt ar jums {app_name}, daloties ar savu konta ID ar viņiem." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поканете го пријателот да разговара со вас на {app_name} споделувајќи ја вашата ИД на сметка." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзаа урьж, {app_name} дээр чатлах боломжтой. Account ID-г найздаа хуваалцана уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jemput rakan anda untuk berbual dengan anda di {app_name} dengan berkongsi ID Akaun anda dengan mereka." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့် သူငယ်ချင်းကို {app_name} တွင် ဆွေးနွေးရန် သင့် Account ID ကို ဝေမျှပြီး ဖိတ်ကြားပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter vennen din til å chatte med deg på {app_name} ved å dele Account ID-en din med dem." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईंको मित्रलाई तपाईंसँग च्याट गर्न {app_name} मा सम्मिलित गराउन आफ्नो खाता आईडी साझा गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nodig uw vriend uit om met u te chatten op {app_name} door uw Account ID met hen te delen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inviter vennen din til å chatte med deg på {app_name} ved å dele din Account ID med dei." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kayachina mnzanu woti azilankhula nanu pa {app_name} powatumizirani Account ID yanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਆਪਣੇ ਦੋਸਤਾਂ ਨਾਲ ਗੱਲਬਾਤ ਕਰਨ ਲਈ ਉਹਨਾਂ ਨੂੰ ਆਪਣੇ {app_name} ਤੇ ਸੇਸ਼ਨ ਮਧਿਅਮ ਪਾਸ, ਆਪਣੇ ਅਕਾਊਂਟ ਆਈਡੀ ਨੂੰ ਸਾਂਝਾ ਕਰ ਕੇ ਸੱਦੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaproś znajomego do rozmowy w aplikacji {app_name}, udostępniając mu swój identyfikator konta." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل ملګری ته بلنه وړاندې کړئ چې ستاسو سره {app_name} کې چیټ وکړي د هغه سره ستاسو حساب ID شریکولو له لارې." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convide seu amigo para conversar com você no {app_name} compartilhando seu ID de Conta com ele." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Convide os seus amigos para conversarem consigo no {app_name} partilhando o ID da sua Conta com eles." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invită-ți prietenul să converseze cu tine pe {app_name} partajându-i ID-ul contului tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пригласите друга пообщаться с вами в {app_name}, поделившись с ним своим ID аккаунта." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite svog prijatelja na razgovor na {app_name} dijeljenjem svog Account ID-a s njima." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබේ ගිණුම් හැඳුනුම් අංකය බෙදා මෙම {app_name} සමඟ කතාබස් කිරීමට ඔබේ මිතුරාට ආරාධනා කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozvite svojho priateľa, aby s vami chatoval v {app_name} zdieľaním svojho Account ID s ním." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Povabite svojega prijatelja k pogovoru v {app_name} tako, da z njim delite svoj Account ID." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftoni shokët tuaj të bisedojnë me ju në {app_name} duke ndarë Account ID tuaj me ta." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Позовите пријатеља на ћаскање на {app_name} тако што ћете делити свој Account ID са њима." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pozovite prijatelja da razgovara s vama na {app_name} tako što ćete mu podeliti vaš Account ID." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bjud in din vän att chatta med dig på {app_name} genom att dela ditt Account ID med dem." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mwalike rafiki yako azungumze nawe kwenye {app_name} kwa kushirikisha Kitambulisho chako cha Akaunti." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இல் தங்கள் கணக்கு ஐடியைப் பகிர்வதன் மூலம் நண்பரை உரையாட விசைப்பதிவு செய்ய அழைக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ స్నేహితునితో చాట్ చేయడానికి మీ ఖాతా ID ని పంచడం ద్వారా మీ స్నేహితున్ని {app_name} లో ఆహ్వానించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชิญเพื่อนของคุณมาแชทกับคุณใน {app_name} ด้วยการแชร์ Account ID ของคุณกับพวกเขา" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arkadaşını {app_name} üzerinde seninle konuşmaya davet etmek için onunla Hesap ID'ni paylaşabilirsin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрошуйте друзів спілкуватись у {app_name}, поділившись з ними власним Account ID." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے دوست کو اپنی Account ID شئیر کر کے {app_name} پر آپ کے ساتھ بات چیت کرنے کی دعوت دیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hisob ID ni ulashish orqali {app_name} da suhbatlashishi uchun do'stingizni taklif qiling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mời bạn bè để trò chuyện với bạn trên {app_name} bằng cách chia sẻ Account ID của bạn với họ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mema umhlobo wakho ukuba ancokole nawe ku- {app_name} ngokwabelana nge-ID yeAkhawunti yakho kunye naye." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "通过与好友分享您的账号ID来邀请他们与您在{app_name}上聊天" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享您的帳號 ID 來邀請好友在 {app_name} 上聊天。" + } + } + } + }, + "shareAccountIdDescriptionCopied" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel met jou vriende waar jy gewoonlik met hulle praat - en skuif die gesprek hier." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "شارك مع أصدقائك حيثما تتحدث معهم عادةً — ثم نقل المحادثة هنا." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostlarınızla harada adətən danışsanız paylaşın — sonra söhbəti buraya daşıyın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "لیستی گپتاری ککیانتو انتظام کھیت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Падзяліцеся сваім ID акаўнта з сябрамі ў месцы, дзе вы звычайна з імі размаўляеце, а потым перанясіце гутарку сюды." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Споделете с вашите приятели там, където обикновено говорите с тях — след това преместете разговора тук." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনার বন্ধুদের সাথে সেখানেই শেয়ার করুন যেখানে আপনি সাধারণত কথা বলেন — তারপর কথোপকথনটি এখানে সরান।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartiu amb els vostres amics allà on acostumeu a parlar-hi; després, traslladeu la conversa aquí." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílejte se svými přáteli tam, kde s nimi obvykle mluvíte — a pak konverzaci přesuňte sem." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhannwch gyda'ch ffrindiau ble bynnag yr ydych chi fel arfer yn siarad gyda nhw — yna symudwch y sgwrs yma." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del med dine venner, uanset hvor du normalt taler med dem — og fortsæt samtalen her." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teile deine Account-ID mit Freunden und verlegt das Gespräch dann hierher." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μοιραστείτε με τους φίλους σας όπου και αν μιλάτε συνήθως μαζί τους — στη συνέχεια μετακινήστε τη συζήτηση εδώ." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share with your friends wherever you usually speak with them — then move the conversation here." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigu kun viaj amikoj kien ajn vi kutime parolas kun ili — tiam movu la konversacion ĉi tie." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comparte con tus amigos dondequiera que hables con ellos — luego mueve la conversación aquí." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Comparte con tus amigos dondequiera que hables con ellos — luego mueve la conversación aquí." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga oma sõpradega seal, kus te tavaliselt suhtlete — seejärel liikuge siia vestlema." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partekatu zure lagunekin non normalean hitz egiten duzun — gero ekarri elkarrizketa hona." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "با دوستان خود به اشتراک بگذارید هرجا که معمولاً با آنها صحبت می‌کنید — سپس مکالمه را به اینجا منتقل کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa ystävien kanssa missä yleensä puhut heidän kanssaan - siirrä sitten keskustelu tänne." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ibahagi sa iyong mga kaibigan kung saan ka karaniwang nakikipag-usap sa kanila — pagkatapos i-move ang pag-uusap dito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partagez avec vos amis où vous communiquez habituellement avec eux - puis déplacez la conversation ici." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilla con teus amigos onde normalmente falas con eles, logo move a conversa aquí." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raba tare da abokan ku a duk inda kuka saba magana da su — sai ku koma nan ku ci gaba da magana." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שתף עם חבריך היכן שאתה מדבר איתם בדרך כלל - ואז העבר את השיחה לכאן." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपने दोस्तों के साथ वहां साझा करें जहां आप आमतौर पर उनसे बात करते हैं - फिर यहां बातचीत को स्थानांतरित करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijelite sa svojim prijateljima gdje obično razgovarate s njima - a zatim premjestite razgovor ovdje." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ossza meg barátaival ott, ahol általában beszélgetni szokott velük - majd helyezze át a beszélgetést ide." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվեք ձեր ընկերների հետ որտեղ սովորաբար խոսում եք նրանց հետ - ապա տեղափոխեք զրույցը այստեղ։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan dengan teman Anda di mana pun Anda biasa berbicara dengan mereka — lalu pindahkan percakapan ke sini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi l'ID utente con i tuoi amici in qualsiasi app di messaggistica utilizziate per comunicare — successivamente potrete spostare qui la conversazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "いつもどこでも友達と共有してください — ここで会話を移動します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაზიარეთ თქვენი მეგობრებთან, სადაც მათთან საუბრობთ, შემდეგ გადადით საუბარში აქ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែកជាមួយមិត្តភក្តិរបស់អ្នកនៅទីកន្លែងដែលអ្នកភាគច្រើននិយាយជាមួយពួកគេនិងបន្ទាប់មកផ្លាស់ប្តូរប្រសាសន៍មកទីនេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ಸಾಮಾನ್ಯವಾಗಿ ಜೊತೆಗೆ ಮಾತನಾಡುವ ನಿಮ್ಮ ಸ್ನೇಹಿತರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ ಮತ್ತು ನಂತರ ಸಂಭಾಷಣೆಯನ್ನು ಇಲ್ಲಿ ಪ್ರಾರಂಭಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "친구들이 자주 사용하는 곳에서 공유해 주세요 — 그러면 여기로 대화를 이동하십시오." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi hevalên xwe bi hû zekê qeseyê bikin û niha baye birre deri zanînuwe." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana n'emikwano gyo gy'oba ogiyogera nabo bulijjo — lwezo mulange eno okutandika okunyumya." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pasidalinkite su draugais ten, kur jie kalbasi — tada perkelkite pokalbį čia." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dalies ar saviem draugiem, kur tu parasti saraksties ar viņiem — pēc tam pārcel sarunu šeit." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели со твоите пријатели каде што вообичаено разговараш со нив — потоа премести ја конверзацијата овде." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Найзуудтайгаа хаана ч байгаа яриагаа энд шилжүүлээрэй." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi dengan rakan-rakan anda di mana sahaja anda biasanya bercakap dengan mereka — kemudian pindahkan perbualan ke sini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင့်သူငယ်ခ်င်းကို မေးမြန်းရာမှာ စသည်မျှဝေ လောလောဆယ်တော့ ဒီနေရာတွင်စာဆက်ပြောပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del med vennene dine der du vanligvis snakker med dem — flytt deretter samtalen hit." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जहाँ तपाईंले प्राय: तिनीहरूसँग कुरा गर्नुहुन्छ, त्यहाँ आफ्ना साथीहरूसँग साझा गर्नुहोस् — अनि कुराकानीलाई यहाँ सार्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel met uw vrienden waar u normaal gesproken contact mee hebt - en vervolg vervolgens het gesprek hier." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del med vennane dine der du vanlegvis pratar med dei — så flyttar du samtalen hit." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share with your friends wherever you usually speak with them — then move the conversation here." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਿੱਥੇ ਤੁਸੀਂ ਆਮ ਤੌਰ 'ਤੇ ਉਹਨਾਂ ਨਾਲ ਗੱਲ ਕਰਦੇ ਹੋ, ਉਨਾਂ ਨਾਲ ਆਪਣੇ ਦੋਸਤਾਂ ਨਾਲ ਸਾਂਝਾ ਕਰੋ – ਫਿਰ ਗੱਲਬਾਤ ਇੱਥੇ ਲਿਆਓ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępnij znajomym tam, gdzie zwykle z nimi rozmawiasz, a następnie przenieś rozmowę tutaj." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپلو ملګرو ته چیرته چې تاسو معمولا ورسره خبرې کوئ شریک کړئ - بیا خبرې دلته راولی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhe com seus amigos onde quer que você costuma falar com eles — então mova a conversa para cá." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhe com seus amigos onde você geralmente conversa com eles — depois mova a conversa para cá." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Împărtășește cu prietenii tăi oriunde comunici de obicei cu ei — apoi mută conversația aici." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделитесь с друзьями любым удобным способом — и продолжите беседу здесь." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli sa svojim prijateljima gdje god obično razgovarate s njima — zatim premjestite razgovor ovdje." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ ප්‍රයෝජනයේ පවතින ස්ථාන වල පිරිසුවල් සමඟ බෙදාගන්න — පසුව සංවාදය මෙහි ක්‍රමවේදය කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeľte sa oň so svojimi priateľmi tam, kde s nimi zvyčajne komunikujete — a potom sem presuňte konverzáciu." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delite s prijatelji, kjer običajno komunicirate — nato pa premaknite pogovor tukaj." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndani me miqtë tuaj kudo që flisni zakonisht me ta — pastaj zhvendosni bisedën këtu." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дели са својим пријатељима где год је уобичајено – затим настави разговор овде." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podelite sa svojim prijateljima gde god obično komunicirate sa njima — zatim prebacite razgovor ovde." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela med dina vänner var du än brukar prata med dem — flytta sedan konversationen hit." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki na marafiki zako popote unapo kawaida kuzungumza nao — kisha hamishiana mazungumzo hapa." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "உங்கள் நண்பர்களுடன் எங்குச் சென்று பேசுவது உங்களுக்குத் தெரியும் — பின்னர் உரையாடலை இங்கு நகர்த்தவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీ స్నేహితులతో ఎక్కడైనా మీరు సాధారణంగా మాట్లాడే చోట కలుసుకోండి - తరువాత సంభాషణను ఇక్కడకు తరలించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบ่งปันกับเพื่อน ๆ ของคุณไม่ว่าพวกเขาจะอยู่ที่ไหนแล้วจึงย้ายการสนทนามาที่นี่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arkadaşlarınızla genellikle nerede konuştuğunuzu paylaşın ve ardından sohbeti buraya taşıyın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поширте друзям у застосунках, де ви зазвичай спілкуєтеся, а потім перенесіть розмову сюди." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپنے دوستوں کے ساتھ جہاں آپ معمول کے مطابق بات کرتے ہیں شیئر کریں — پھر یہاں گفتگو کو منتقل کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do'stlaringiz bilan odatda gaplashayotgan joyingizda bo'lishing - keyin suhbatni bu yerga o'tkazing." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chia sẻ với bạn bè của bạn bất cứ nơi nào bạn thường nói chuyện với họ — sau đó chuyển cuộc trò chuyện đến đây." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share with your friends wherever you usually speak with them — then move the conversation here." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "随时随地和朋友分享,并将会话移到此处。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "在任何與朋友連線的地方與他們分享, 然後將你們的對話轉移至此。" + } + } + } + }, + "shareExtensionDatabaseError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daar is 'n probleem met die oopmaak van die databasis. Herlaai asseblief die toepassing en probeer weer." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هناك مشكلة في فتح قاعدة البيانات. يرجى إعادة تشغيل التطبيق والمحاولة مرة أخرى." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Databazanı açarkən bir problem baş verdi. Lütfən, tətbiqi yenidən başladıb bir daha sınayın." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا بیس کو باز کردن میں ایشو. براہ کرم ایپلیکیشن کی دوبارہ شروع کریں و پہ دوبارہ کوشش کریں." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Узнікла праблема адкрыцця базы даных. Перазапусціце праграму і паўтарыце спробу." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Съществува проблем при отварянето на базата данни. Моля, рестартирайте приложението и опитайте отново." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ডাটাবেস খুলতে একটি সমস্যা আছে। দয়া করে অ্যাপ পুনরায় চালু করুন এবং আবার চেষ্টা করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi ha un problema en obrir la base de dades. Siusplau, reinicieu l'aplicació i torneu-ho a provar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Při otevírání databáze se vyskytl problém. Prosím, restartujte aplikaci a zkuste to znovu." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae problem wrth agor y gronfa ddata. Ailgychwyn yr ap a rhowch gynnig arall arni os gwelwch yn dda." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der er et problem med at åbne databasen. Genstart appen og prøv igen." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein Datenbankfehler ist aufgetreten. Bitte starte die App neu und versuche es erneut." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Υπάρχει ένα πρόβλημα κατά το άνοιγμα της βάσης δεδομένων. Παρακαλώ επανεκκινήστε την εφαρμογή και δοκιμάστε ξανά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There is an issue opening the database. Please restart the app and try again." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okazis problemo dum malfermo de la datumbazo. Bonvolu restartigi la aplikon kaj reprovi." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay un problema al abrir la base de datos. Por favor reinicia la aplicación y vuelve a intentarlo." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay un problema al abrir la base de datos. Por favor, reinicia la aplicación e inténtalo de nuevo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andmebaasi avamisel esines probleem. Palun taaskäivitage rakendus ja proovige uuesti." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hautaketa Datu-basea irekitzeko arazo bat dago. Mesedez, berrabiarazi aplikazioa eta saiatu berriro." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "مشکلی در باز کردن پایگاه داده وجود دارد. لطفا اپلیکیشن را ریستارت کنید و دوباره تلاش کنید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongelma avattaessa tietokantaa. Käynnistä sovellus uudelleen ja yritä uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May isyu sa pagbukas ng database. Paki-restart ang app at subukan muli." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il y a un problème pour ouvrir la base de données. Veuillez redémarrer l'application et réessayer." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai un problema ao abrir a base de datos. Por favor, reinicia a aplicación e tenta de novo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akwai matsala wajen buɗe bayanan. Da fatan a sake kunna manhaja kumat saka gwadawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "יש בעיה בפתיחת מאגר הנתונים. אנא הפעל את האפליקציה מחדש ונסה שוב." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डेटाबेस खोलने में समस्या हो रही है। कृपया एप्लिकेशन को पुनः प्रारंभ करें और फिर से कोशिश करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Postoji problem s otvaranjem baze podataka. Ponovo pokrenite aplikaciju i pokušajte ponovno." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba történt az adatbázis megnyitásakor. Indítsd újra az alkalmazást, majd próbáld újra." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տվյալների բազան բացելու հետ խնդիր է առաջացել: Խնդրում ենք կրկին փորձեք:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terjadi masalah saat membuka database. Silakan mulai ulang aplikasi dan coba lagi." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "C'è un problema nell'apertura del database. Riavvia l'app e riprova." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "データベースを開く際に問題が発生しました。アプリを再起動して再度お試しください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ტრენტის ბაზაზე გაერთიანებაა პრობლემა. გთხოვთ, ხელახლა დაიწყეთ აპლიკაცია და სცადეთ თავიდან." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "There is an issue opening the database. Please restart the app and try again." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಡೇಟಾಬೇಸ್ ತೆರೆಯುವುದರಲ್ಲಿ ಸಮಸ್ಯೆ巌ಧ. ಡ್ಯಾಷ್ ಅಪ್ ಮತ್ತು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스를 열 때 문제가 발생했습니다. 앱을 재시작하고 다시 시도해주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hingehî bibe dazik xwe tisteka te bide qedandin. Ji kerema xwe karan daye ber xwe xwe dubare agir bike." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waliwo okusoomoozebwa ofula database. Kebera app ekobeera." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įvyko klaida atidarant duomenų bazę. Perkraukite programėlę ir bandykite dar kartą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Radās problēma, atverot datubāzi. Lūdzu, restartējiet lietotni un mēģiniet vēlreiz." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Има проблем при отворање на базата на податоци. Рестартирајте ја апликацијата и обидете се повторно." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Өгөгдлийн бааз нээхэд асуудал гарлаа. Програмыг дахин эхлүүлээд оролдоно уу." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terdapat masalah membuka pangkalan data. Sila mulakan semula aplikasi dan cuba lagi." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဒေတာဘေ့စ် ပြဿနာရှိပါသည်။ အက်ပလီကေးရှင်းကို ပြန်ပြေးပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er et problem med å åpne databasen. Vennligst omstart appen og prøv igjen." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "डाटाबेस खोल्नमा समस्या छ। कृपया एप पुनः सुरु गर्नुहोस् अनि फेरि प्रयास गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een probleem bij het openen van de database. Herstart de app en probeer het opnieuw." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det er et problem med å åpne databasen. Vennligst start appen på nytt og prøv igjen." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pali vuto pantchito yokonza deta. Chonde yambitsaninso pulogalamu ndikuyesanso." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਡਾਟਾਬੇਸ ਖੋਲ੍ਹਣ ਵਿੱਚ ਇੱਕ ਸਮੱਸਿਆ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਐਪ ਨੂੰ ਰੀਸਟਾਰਟ ਕਰੋ ਅਤੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wystąpił problem podczas otwierania bazy danych. Uruchom ponownie aplikację i spróbuj ponownie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ډیټابیس په پرانیستلو کې ستونزه شته. مهرباني وکړئ ایپ بیا پیل کړئ او بیا هڅه وکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Existe um problema ao abrir o banco de dados. Por favor, reinicie o aplicativo e tente novamente." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Há um problema ao abrir a base de dados. Por favor, reinicie a aplicação e tente novamente." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "A apărut o eroare la deschiderea bazei de date. Te rugăm să repornești aplicația și să încerci din nou." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Возникла проблема с открытием базы данных. Пожалуйста, перезапустите приложение и попробуйте снова." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Problem prilikom otvaranja baze podataka. Ponovno pokrenite aplikaciju i pokušajte ponovo." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දත්තගබඩාව තුළ ගැටළුවක් ඇත. ඇප් නැවත ආරම්භ කොට උත්සාහ කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastal problém s otvorením databázy. Reštartujte aplikáciu a skúste to znova." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prišlo je do težave pri odpiranju baze podatkov. Znova zaženite aplikacijo in poskusite znova." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka një problem në hapjen e bazës së të dhënave. Ju lutem rindizni aplikacionin dhe provoni përsëri." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Појавио се проблем при отварању базе података. Поново покрените апликацију и покушајте поново." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Došlo je do problema prilikom otvaranja baze podataka. Molimo ponovo pokrenite aplikaciju i pokušajte ponovo." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finns ett problem med att öppna databasen. Starta om appen och försök igen." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuna tatizo la kufungua hifadhidata. Tafadhali anzisha programu upya na ujaribu tena." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தரவுத்தொகுப்பை திறப்பதில் சிக்கல் உள்ளது. பயன்பாட்டை மீண்டும் ஆரம்பித்து முயற்சிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "డేటాబేస్ ను ఓపెన్ చేయడానికి సమస్య ఉంది. దయచేసి యాప్ ని రీస్టార్ట్ చేసి మళ్ళీ ప్రయత్నించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดปัญหาในการเปิดฐานข้อมูล กรุณารีสตาร์ทแอปพลิเคชันแล้วลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanını açarken bir sorun oluştu. Lütfen uygulamayı yeniden başlatıp tekrar deneyin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виникла проблема при відкритті бази даних. Будь ласка, перезапустіть застосунок і повторіть спробу." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیٹا بیس کھولنے میں مسئلہ ہے۔ براہ کرم ایپ کو دوبارہ شروع کریں اور دوبارہ کوشش کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ma'lumotlar bazasini ochishda muammo yuzaga keldi. Iltimos, ilovani qayta yoqing va qayta urinib ko'ring." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Có vấn đề khi mở cơ sở dữ liệu. Vui lòng khởi động lại ứng dụng và thử lại." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukho ingxaki ekuvuleni i-database. Nceda uqale kwakhona uze uzame kwakhona." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "打开数据库时出现问题。请重新启动应用程序并重试。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "打開資料庫時出現問題。請重新啟動應用程式並重試。" + } + } + } + }, + "shareToSession" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deel aan {app_name}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مشاركة إلى {app_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ilə paylaş" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کباز کرا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абагуліць у {app_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Споделяне в {app_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এ শেয়ার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartiu a {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sdílet do {app_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhannu i {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del til {app_name}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teilen auf {app_name}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Κοινοποιήστε στο {app_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share to {app_name}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunhavigi al {app_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir en {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir en {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaga {app_name}'ile" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ra Partekatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اشتراک گذاری به {app_name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaa {app_name}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ibahagi sa {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partager sur {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Raba zuwa {app_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שתף ל־{app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को साझा करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli sa {app_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megosztás {app_name}-en" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կիսվել {app_name}-ի հետ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bagikan ke {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condividi su {app_name}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}に共有" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაზიარება {app_name}-თან" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចែករំលែកទៅកាន់ {app_name}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ಗೆ ಹಂಚು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}에 공유" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bi {app_name} re parve bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabana ku {app_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bendrinti su {app_name}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dalīties ar {app_name}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сподели во {app_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-д хуваалцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kongsi kepada {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ထိမှီမည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del til {app_name}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} संग साझा गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delen met {app_name}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Del til {app_name}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaypi allichishka {app_name}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਨਾਲ ਸਾਂਝਾ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Udostępnij w aplikacji {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "شریک کړئ ته {app_name}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhar com {app_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Partilhar para {app_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Distribuie către {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поделиться в {app_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podijeli na {app_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} වෙත බෙදාගන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zdieľať cez {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deli z {app_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shpërndaje në {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дели са {app_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podeli na {app_name}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dela till {app_name}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shiriki kwa {app_name}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} க்கு பகிர்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} కు పంచుకోండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แบ่งปันไปยัง {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}'ya paylaşın" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Поділитись з {app_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس کو {app_name} سے شیئر کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ga ulashish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chia sẻ đến {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yabelana ku-{app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享到{app_name}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "分享到 {app_name}" + } + } + } + }, + "show" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wys" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أظهر" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایشـــی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказаць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দেখান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εμφάνιση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erakutsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipakita" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nîşan bide" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הראה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "दिखाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megjelenítés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "表示" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ჩვენება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ತೋರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nîşan bide" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laga" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parādīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Харуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paparkan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "देखाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rikuchina" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸ਼ੋਅ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokaż" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښودل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показать" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙන්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaqe" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காட்டு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కనబర్చు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göster" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перегляд" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دکھائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ochish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "显示" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示" + } + } + } + }, + "showAll" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wys almal" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إظهار الكل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hamısını göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ســـبے نمایـــش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паказаць усё" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покажи всички" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সব দেখান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra-ho tot" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit všechny" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos Pob Un" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis alle" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alle anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εμφάνιση Όλων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show All" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri ĉiujn" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar todo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar todas" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita kõiki" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Denak erakutsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش همه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä kaikki" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ipakita lahat" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tout afficher" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar Todo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nîşan bide Dukansu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הראה הכל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सभी को दिखाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži sve" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Összes megjelenítése" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ցուցադրել բոլորը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan Semua" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra tutto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "すべて表示" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ყველას ჩვენება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញទាំងអស់" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಲ್ಲ ತೋರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모두 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Temamê wan nîşan bide" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laga Byonna" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti visus" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parādīt Visus" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи Сè" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бүгдийг харуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paparkan Semua" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အပြည့်အဝ ပြပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis alle" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सबै देखाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alles tonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis alle" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show All" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਭ ਦਿਖਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokaż wszystko" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ټول ښودل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar todas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar tudo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează tot" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показать все" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži sve" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සියල්ල පෙන්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukázať všetky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži vse" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaqi Krejt" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи све" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži sve" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa alla" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha Zote" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எல்லாம் காண்பி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "పూర్తిగా చూపించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงทั้งหมด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hepsini Göster" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показати все" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سب دکھائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Barchasini ko'rsatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị tất cả" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show All" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "全部显示" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示全部" + } + } + } + }, + "showLess" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wys minder" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرض أقل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha az göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "کمتر نمایـــش" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Згарнуць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покажи по-малко" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "কিছু দেখান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostreu menys" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit méně" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangos Llai" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis mindre" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weniger anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εμφάνιση Λιγότερων" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show Less" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Montri malpli" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar menos" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar menos" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita vähem" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gutxiago erakutsi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش کمتر" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä vähemmän" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Magpakita ng Mas Kaunti" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher moins" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar menos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nîşan bide Ƙasa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הראה פחות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "कम दिखाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži manje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kevesebb mutatása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ավելի քիչ ցույց տալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tampilkan Sedikit" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra meno" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "最小化" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ნაკლები ჩვენება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញតិចជាង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಡಿಮೆ ತೋರಿಸು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "간략히 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kêmtir nîşan bide" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laga Kitono" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti mažiau" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parādīt mazāk" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи Помалку" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бага харуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paparkan Kurang" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "နည်းနည်းပြမယ်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis færre" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "कम देखाउनुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Minder tonen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis færre" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show Less" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਘੱਟ ਦਿਖਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokaż mniej" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کم ښودل" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar menos" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostrar menos" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afișează mai puțin" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Свернуть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži manje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අඩුවෙන් පෙන්වන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť menej" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži manj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shfaqi më pak" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикажи мање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži manje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa färre" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyesha Chache" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "குறைவாக காட்டு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తక్కువ కనపరచు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "แสดงน้อยลง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha az göster" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Показати менше" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کم دکھائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kamroq ko'rsatish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiển thị ít hơn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show Less" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "收起" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "顯示較少" + } + } + } + }, + "stickers" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Plakkers" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "الملصقات" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stikerlər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسٹیکرز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стыкеры" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стикери" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "স্টিকার্স" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adhesius" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nálepky" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sticeri" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klistermærker" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sticker" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτοκόλλητα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stickers" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Glumarkoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pegatinas (stickers)" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pegatinas (stickers)" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kleepsud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eranskailuak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "استیکرها" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tarrat" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stickers" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autocollants" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adhesivos" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stickers" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מדבקות" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्टिकर" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naljepnice" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matricák" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պիտակներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stiker" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adesivi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ステッカー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სტიკერები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ស្ទីកគ័រ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸ್ಟಿಕರ್‌‌ಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "스티커" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanjqlar" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eziteekebwaawo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paveiksliukai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzlīmes" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стикери" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Наадаг зурагнууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pelekat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စတစ်ကာများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klistremerker" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "स्टिकरहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stickers" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klistremerke" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llutanakukuna" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਟਿੱਕਰਸ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naklejki" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "سټيکرونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Figurinhas" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autocolantes" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autocolante" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стикеры" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naljepnice" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ස්ටිකර්ස්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nálepky" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalepke" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngjitëse" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налепнице" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalepnice" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klistermärken" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stika" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஸ்டிக்கர்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "స్టిక్కర్లు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สติกเกอร์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çıkartmalar" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стікери" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اسٹیکرز" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stikerlar" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hình dán" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stickers" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "贴图" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "貼圖" + } + } + } + }, + "supportGoTo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan na Ondersteun Bladsy" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اِذهب اِلى صفحة الدعم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dəstək Səhifəsinə get" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "سپورٹ پیج بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перайсці на старонку падтрымкі" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отворете страницата за поддръжка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সাপোর্ট পেইজে যান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vés a la pàgina de suport" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přejít na stránky podpory" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ewch i Dudalen Cymorth" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til supportsiden" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zum Helpdesk gehen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μετάβαση στη Σελίδα Υποστήριξης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Go to Support Page" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iri al helppaĝo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a la página de soporte técnico" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a la página de soporte técnico" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mine kasutajatoelehele" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joan Laguntza Orriara" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رفتن به صفحه پشتیبانی" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siirry tukisivulle" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumunta sa Suporta Page" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accéder à la page d’assistance" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir á páxina de asistencia" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je zuwa Shafin Tallafi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לך אל דף התמיכה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सहायता पेज पर जाएँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi na stranicu za podršku" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Támogatási oldal megnyitása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բացեք աջակցության էջը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cek halaman bantuan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai alla pagina di supporto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "サポートページへ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გადადით მხარდაჭერის გვერდზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចូលទៅកាន់ទំព័រគាំទ្រ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಬೆಂಬಲ ಪುಟಕ್ಕೆ ಹೋಗಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "지원 페이지로 이동" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Her Rûpela Destekê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genda ku Page ya Support" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pereiti į palaikymo puslapį" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iet uz atbalsta lapu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оди до страницата за поддршка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дэмжлэгийн хуудсанд очих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pergi ke Laman Sokongan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပံ့ပိုးမှုပေါ်မှာသွားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til støttesiden" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सपोर्ट पेज तिर जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ga naar ondersteuningspagina" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til støttesiden" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pitani ku tsamba la Thandizo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਹਾਇਤਾ ਪੰਨੇ ਤੇ ਜਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przejdź do strony wsparcia technicznego" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ملاتړ پاڼې ته لاړ شئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para Página de Suporte" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para a página de suporte" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mergi la Pagina de asistență" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти на страницу поддержки" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi na stranicu podrške" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "සහාය පිටුවට යන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navštíviť Stránku Podpory" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pojdite na Podporno stran" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalo te Faqja e Asistencës" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идите на Страницу подршке" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idite na stranicu za podršku" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå till supportsidan" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenda kwenye Ukurasa wa Usaidizi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆதரவு பக்கத்திற்குச் செல்லவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సహాయ పేజీకి వెళ్ళండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไปที่หน้าการสนับสนุน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destek Sayfasına Git" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти на сторінку підтримки" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سپورٹ پیج پر جائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yordamchilar sahifasini och" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đi đến trang Hỗ trợ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yiya ku Iphepha leNkxaso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "跳转到支持页面" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "前往支援頁面" + } + } + } + }, + "systemInformationDesktop" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stelsel Inligting: {information}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "System Information: {information}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem məlumatı: {information}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "System Information: {information}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сістэмная інфармацыя: {information}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системна информация: {information}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "সিস্টেম তথ্য: {information}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informació del sistema: {information}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systémové informace: {information}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwybodaeth am y System: {information}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systemoplysninger: {information}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeminformation: {information}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Πληροφορίες Συστήματος: {information}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "System Information: {information}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemajn Informojn: {information}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información del Sistema: {information}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información del Sistema: {information}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Süsteemi info: {information}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemaren Informazioa: {information}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "اطلاعات سیستم: {information}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Järjestelmän tiedot: {information}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impormasyon ng System: {information}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Information système : {information}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información do sistema: {information}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bayanin Tsarin: {information}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מידע מערכת: {information}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "सिस्टम सूचना: {information}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacije o sustavu: {information}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rendszerinformáció: {information}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Համակարգի տեղեկությունը՝ {information}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informasi Sistem: {information}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informazioni di sistema: {information}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "システム情報: {information}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "სისტემის ინფორმაცია: {information}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ព័ត៌មានប្រព័ន្ធ: {information}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಸಿಸ್ಟಮ್ ಮಾಹಿತಿ: {information}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "시스템 정보: {information}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agahiyên Sîstemî: {information}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akabuuze Akankeesi: {information}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemos informacija: {information}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информации за систем: {information}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системийн мэдээлэл: {information}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maklumat Sistem: {information}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စနစ်အချက်အလက်: {information}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeminformasjon: {information}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "प्रणाली जानकारी: {information}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeeminformatie: {information}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeminformasjon: {information}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zambiri za System: {information}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸਿਸਟਮ ਜਾਣਕਾਰੀ: {information}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacja systemowa: {information}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د سیستم معلومات: {information}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informações do Sistema: {information}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informação do Sistema: {information}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informații de sistem: {information}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Информация о системе: {information}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemske informacije: {information}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පද්ධති තොරතුරු: {information}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systémové informácie: {information}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemske informacije: {information}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informacionet e Sistemit: {information}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Системске информације: {information}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistemske informacije: {information}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Systeminformation: {information}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maelezo ya Mfumo: {information}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "சிஸ்டம் தகவல்: {information}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "సిస్టమ్ సమాచారం: {information}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลระบบ: {information}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sistem Bilgisi: {information}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Про систему: {information}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "سسٹم معلومات: {information}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tizim ma'lumotlari: {information}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thông tin hệ thống: {information}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulwazi lweNkqubo: {information}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "系统信息:{information}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "系統資訊:{information}" + } + } + } + }, + "theContinue" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan voort" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "التالي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davam" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "وارؤں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Працягнуць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продължи" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "চালিয়ে যান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokračovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parhau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fortsæt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weiter" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Συνέχεια" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continue" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daŭrigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jätka" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jarraitu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ادامه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jatka" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ituloy" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ci gaba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "המשך" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "जारी रखें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folytatás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Շարունակել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lanjutkan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continua" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "続行" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაგრძელება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បន្ត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮುಂದುವರಿಯಿರಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "계속" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Berdewam" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Komekkereza" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເຂົ້າໄປ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tęsti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Turpināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продолжи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үргэлжлүүлэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Teruskan" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဆက်လုပ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fortsett" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "जारी राख्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doorgaan" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hald fram" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pitilizani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਾਰੀ ਰੱਖੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontynuuj" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرتیا حذف شوی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Continuă" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продолжить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඉදිරියට" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokračovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nadaljuj" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vazhdo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Настави" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nastavi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fortsätt" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Endelea" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தொடரு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "కొనసాగించు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไปต่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Devam et" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продовжити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جاری رکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davom etish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiếp tục" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qhubeka" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "继续" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "繼續" + } + } + } + }, + "theDefault" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verstek" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "افتراضي" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "İlkin" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "بنیادی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Па змаўчанні" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "По подразбиране" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "পূর্ব-নির্ধারিত" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Per defecte" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Výchozí" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhagosodedig" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προεπιλογή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Default" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defaŭlta" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por defecto" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por defecto" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaikimisi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lehenetsia" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پیش‌فرض" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oletus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Default" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valeur par défaut" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por defecto" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jiki" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ברירת מחדל" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "डिफ़ॉल्ट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadano" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alapértelmezett" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սկզբնական" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bawaan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predefinito" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "デフォルト" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ნაგულისხმევი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "លំនាំដើម" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಪೂರ್ವನಿಯೋಜಿತ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기본값" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bawerî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkola" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ການຕັ້ງຕົ້ນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Numatytoji" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noklusējums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Стандарден" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үндсэн" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lalai" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပုံသေ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forvalgt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूर्वनिर्धारित" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standaard" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Forvald" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chakale" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੂਲ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Domyślne" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ډیفالټ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Padrão" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pré-definição" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Implicit" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "По умолчанию" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zadano" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙරනිමි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Predvolené" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privzeto" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parazgjedhje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подразумеван" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Podrazumevano" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chaguo Msingi" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "முன்னிருப்பு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అప్రమేయ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ค่าเริ่มต้น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varsayılan" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "За Замовчуванням" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈیفالٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standart" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mặc định" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okungagqibekanga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "默认" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "預設" + } + } + } + }, + "theError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطأ" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xəta" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلطی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Памылка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ত্রুটি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwall" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fejl" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σφάλμα" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eraro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tõrge" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errorea" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "خطا" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Virhe" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kuskure" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "שגיאה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "त्रुटि" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiba" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սխալ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kesalahan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Errore" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "エラー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "შეცდომა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បញ្ហា" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ದೋಷ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "에러" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şaşî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ensobi" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ມີຂໍ້ຜິດພາດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klaida" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kļūda" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Алдаа" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ralat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမှား" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "त्रुटि" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fout" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feil" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cholakwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਗਲਤੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Błąd" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تیر" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eroare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greška" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දෝෂය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chyba" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Napaka" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Грешка" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Greska" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fel" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kosa" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கோலாரு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "లోపం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Помилка" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "غلطی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xato" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lỗi" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impazamo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "错误" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "錯誤" + } + } + } + }, + "tryAgain" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probeer Weer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "حاول مرة أخرى" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yenidən sına" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "پهر کوشش کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Паспрабаваць зноў" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Опитай отново" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আবার চেষ্টা করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Torna a provar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkusit znovu" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceisio eto" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv igen" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut versuchen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προσπαθήστε Ξανά" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Try Again" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Provi Denove" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Intentar de nuevo" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Intentar de nuevo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proovi uuesti" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saiatu berriro" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوباره تلاش کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yritä uudelleen" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Subukang Muli" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Réessayer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Volver tentar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sake Gwada" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "נסה שוב" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "फिर से कोशिश करो" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušaj ponovno" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Próbáld újra" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Փորձել նորից" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Coba Lagi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprova" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "再試行" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "კვლავ სცადეთ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូមព្យាយាម​ម្តង​ទៀត" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 시도" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cardin biceribîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lowooza edaako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bandykite dar kartą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mēģiniet vēlreiz" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обиди се повторно" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дахин оролдоно уу" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cuba Lagi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်ကြိုးစားပါလိုအပ်သည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv igjen" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पुन: प्रयास गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probeer opnieuw" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prøv igjen" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yesaninso" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spróbuj ponownie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بیا هڅه وکړه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tente novamente" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentar Novamente" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Încercați din nou" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Повторить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušajte ponovno" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නැවත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skúsiť znova" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poskusite znova" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprovo" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Покушај поново" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokušajte ponovo" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Försök igen" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jaribu tena" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "மீண்டும் முயற்சிக்கவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మళ్ళీ ప్రయత్నించండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekrar Dene" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Спробуйте ще" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دوبارہ کوشش کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qayta urinish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thử lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zama kwakhona" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "重试" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "再試一次" + } + } + } + }, + "typingIndicators" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tik Aanduiders" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "مؤشرات الكتابة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yazma göstəriciləri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹائپنگ انڈیکیٹرز" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Індыкатары ўвода" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Индикатори за писане" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "টাইপিং নির্দেশিকা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicadors de tecleig" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikátory psaní" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dangosyddion Teipio" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrive Indicatorer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipp-Indikatoren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δείκτες Πληκτρολόγησης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typing Indicators" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tajpantaj indikiloj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicadores de escritura" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicadores de escribiendo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tippimisnäidikud" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idazketa Adierazleak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نشانگرهای تایپ" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kirjoitusindikaattorit" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga Indikasyon sa Pag-type" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicateurs de saisie" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicador de escritura" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alamomin Rubutu" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מחווני הקלדה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाइपिंग सूचक" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikatori tipkanja" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gépelés-indikátorok" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Գրելու ինդիկատորներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikator penulisan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicatori di scrittura" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "入力中アイコン" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ტიპინგის ინდიკატორები" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សូចនាករវាយអក្សរ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಟೈಪಿಂಗ್ ಸೂಚಕರು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "입력 지시자 깜박임" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Îndîkatorên nivîsînê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Engeri z'okukola okubala mu kwogera" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rašymo indikatoriai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rakstīšanas indikatori" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Индикатори за пишување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бичиж буй индикаторууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikator Taip" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စာရိုက်နေသည်ကို ပြထားမှုများ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skriver indikatorer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाइपिङ संकेतकहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Typindicatoren" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inntastingsindikatorer" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zizindikiro Zolemba" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਟਾਈਪਿੰਗ ਸੂਚਕ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wskaźniki pisania" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د تایپ شاخصونه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicadores de digitação" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicadores de escrita" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indicatori tastare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Индикаторы ввода текста" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pokazatelji tipkanja" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ලිවීමේ දර්ශකය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikátory písania" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikatorji tipkanja" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tregues shtypjeje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Индикатори куцања" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Indikatori pisanja" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skrivindikatorer" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andika viashiria" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தட்டச்சு குறியீடுகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "టైపింగ్ సూచికలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "บ่งชี้การพิมพ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yazım Belirtileri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Індикатор введення тексту" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹائپ کرنے کے اشارے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yozish ko'rsatkichlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chỉ báo nhập văn bản" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iimpawu zokuChwetheza" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "“正在输入”提示" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "輸入狀態" + } + } + } + }, + "typingIndicatorsDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sien en deel tik aanduiders." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "شاهد وشارك مؤشرات الكتابة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yazma göstəricilərini gör və paylaş." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "تور و اثیند زِمجی انڈیکیٹرز." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Глядзіце і перадавайце індыкатар набору." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Виж и сподели индикаторите за писане." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "টাইপিং ইনডিকেটরগুলি দেখুন এবং শেয়ার করুন।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veure i compartir indicadors d'escriptura." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit a sdílet indikátor probíhajícího psaní." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gweld a rhannu dangosyddion teipio." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se og del skrive indikatorer." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sehe und teile Tippindikatoren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Δείτε και κοινοποιήστε δείκτες πληκτρολόγησης." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "See and share typing indicators." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidi kaj kunhavigi tajp-indikilojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver y compartir indicadores de escritura." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver y compartir el indicador de escritura." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näe ja jaga kirjutamisindikaatoreid." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikusi eta partekatu idazketa adierazleak." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نشانگرهای در حال تایپ رو ببین و به اشتراک بگذار." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näe ja jaa kirjoitusindikaattorit." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tingnan at ibahagi ang mga indikasyon sa pagta-type." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Voir et partager les indicateurs de saisie." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba kuma raba alamun rubutu." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "ראה ושתף מחווני הקלדה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाइपिंग सूचक देखें और साझा करें।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pogledajte i podijelite indikatore tipkanja." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gépelés-indikátorok küldése és fogadása." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսեք և տարածեք մուտքագրման ցուցիչները." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat dan bagikan indikator mengetik." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualizza e condividi gli indicatori di digitazione." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "入力中アイコンを表示する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იხილეთ და გააზიარეთ აკრეფის მაჩვენებლები." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មើល និងចែករំលែកសញ្ញាបង្ហាញពេលកំពុងវាយអក្សរ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಟೈಪಿಂಗ್ ಸೂಚಕಗಳನ್ನು ನೋಡಿ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "입력 중 아이콘 보고 공유." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nîşandan û parvebûna nîşanên nivîsandinê bibinê." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Labira n'okugabana eby'okukuba amawulire." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Matyti ir dalintis rašymo indikatoriais." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redzēt un dalīties ar rakstīšanas indikatoriem." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Види и сподели индикатори за пишување." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бичих заалтуудыг үзэх, хуваалцах." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat dan kongsi petunjuk menaip." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "စာရိုက်နေကြောင်းပြသောအချက်ပြများကို ကြည့်ပြီး ဝေမျှပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se og del skriveindikatorer." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "टाइपिङ सूचकहरू देख्नुहोस् र साझेदारी गर्नुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekijk en deel typ indicatoren." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sjå og del tastevisning." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "See and share typing indicators." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਟਾਈਪਿੰਗ ਇੰਡਿਕੇਟਰ ਦੇਖੋ ਅਤੇ ਸਾਂਝੇ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wyświetlaj i udostępniaj wskaźniki pisania." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د ټایپ کولو شاخصونه وګورئ او شريک کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veja e compartilhe indicadores de digitação." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver e partilhar indicadores de escrita." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vizualizează și distribuie indicatorii de tastare." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видеть и отправлять уведомления о наборе текста." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidi i podijeli tipkajuće indikatore." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ටයිප් කිරීමේ දර්ශක බලන්න සහ බෙදාගන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť a zdieľať indikátory písania." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poglejte in delite indikatorje tipkanja." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shihni dhe ndani indikatorët e shtypjes." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Погледај и дели тип индикаторе." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregledaj i deli indikatore kucanja." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se och dela inmatningsmarkörer." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angalia na shiriki viashiria vya kuandika." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "தட்டச்சு குறிக்கிக்காட்டுகளை காணவும் மற்றும் பகிரவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "టైపింగ్ సూచనలను చూడండి మరియు పంచుకోండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดูและแชร์ตัวบ่งชี้การพิมพ์" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yazım göstergelerini görün ve paylaşın." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Бачити та надсилати індикатори набору тексту." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ٹائپنگ کے اشارے دیکھیں اور شیئر کریں." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yozish ko'rsatkichlarini ko'rish va ulashish." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem và chia sẻ các chỉ báo đang gõ." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jonga kwaye wabelane ngezikhombisi zokuchwetheza." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "接收并发送”正在输入“提示。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "查看並分享鍵入狀態。" + } + } + } + }, + "undo" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongedaan Maak" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تراجع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri al" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "واپس کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скасаваць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отмяна" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আন্ডু" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfés" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vrátit zpět" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dadwneud" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fortryd" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rückgängig" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αναίρεση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Undo" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Malfari" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deshacer" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deshacer" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Võta tagasi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desegin" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "لغو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kumoa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ibalik sa dati" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuler" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfacer" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mayar" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "בטל עשייה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वापस लाएं" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poništi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visszavonás" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չեղարկել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annulla" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "元に戻す" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დაბრუნება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនធ្វើវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರದ್ದುಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실행 취소" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vegerîne" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggyako" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atšaukti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsaukt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откажи" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Буцах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buat asal" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြန်လိုအပ်မည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angre" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "पूर्ववत गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ongedaan maken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Angre" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fufuta" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਡੂੰ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cofnij" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "بېرته راوګرځوئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfazer" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desfazer" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anulează" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отменить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poništi" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "පෙරසේ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Späť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Razveljavi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhbëje" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Опозови" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poništi" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ångra" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rudisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பின்வாங்கு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తిరిగి చేయి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เลิกทำ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geri al" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Назад" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "واپس لانا" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qaytarish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoàn tác" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhoxisa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "撤销" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "復原" + } + } + } + }, + "unknown" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekend" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "غير معروف" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невядомае" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непознат" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অজানা" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconegut" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznámé" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anhysbys" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukendt" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekannt" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άγνωστο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nekonata" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconocido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconocido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tundmatu" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezezaguna" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناشناس" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tuntematon" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi kilala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inconnu" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descoñecido" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba a sani ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ידוע" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अनजान" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznato" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ismeretlen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Անհայտ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dikenal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sconosciuto" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "不明" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "უცნობი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនដឹង" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಜ್ಞಾತ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없음" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenas" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kitaategeerekesebwa" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nežinoma" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nezināms" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непознато" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тодорхойгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak Diketahui" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမည်မသိ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjent" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अज्ञात" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onbekend" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukjend" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zosadziwika" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਣਜਾਣ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieznane" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نامعلوم" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconhecido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconhecido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Necunoscut" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неизвестно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznato" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නොදන්නා" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznáme" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neznano" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "E panjohur" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Непознато" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepoznato" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okänd" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isiyojulikana" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "அறியாத" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "తెలియని" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่ทราบ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невідомо" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "نا معلوم" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Noma’lum" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không rõ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayaziwa" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "未知" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "不明" + } + } + } + }, + "updateApp" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "App-opdaterings" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحديثات التطبيق" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tətbiq güncəlləmələri" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایپ کی تازہ کاری" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абнаўленні праграмы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обновления на приложението" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "অ্যাপ আপডেট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualitzacions de l'aplicació" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizace aplikace" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diweddariadau ap" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "App opdateringer" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "App-Aktualisierungen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ενημερώσεις εφαρμογής" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "App updates" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikaĵaj ĝisdatigoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizaciones de la aplicación" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizaciones de la aplicación" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rakenduse uuendused" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aplikazio eguneratzeak" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بروزرسانی‌های برنامه" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sovellusten päivitykset" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mga update sa App" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mises à jour de l’application" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizacións da app" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabuntawar App" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עדכוני יישום" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "ऐप अपडेट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranja aplikacije" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "App frissítések" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ծրագրի թարմացումներ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pembaruan aplikasi" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiornamenti app" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "アプリ更新" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "აპლიკაციის განახლება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បច្ចុប្បន្នភាពកម្មវិធី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಪ್ಲಿಕೇಶನ್ ನವೀಕರಣಗಳು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "앱 업데이트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rojanekirinên sepanê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ebyokula" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ອັບເດດແອັບພລິເຄຊັນ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Programėlės atnaujinimai" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietotnes atjauninājumi" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ажурирања на апликацијата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Апп шинэчлэлтүүд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kemas kini Aplikasi" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အက်ပ် အပ်ဒိတ်များ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "App oppdateringer" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एप अपडेटहरू" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nieuwe versies van de app" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Programoppdateringar" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zosintha za App" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਐਪ ਅਪਡੇਟਸ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizacje aplikacji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د اپلیکیشن تازه معلومات" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualizações de app" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualizações da aplicação" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizări aplicație" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обновления приложения" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranja aplikacije" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යෙදුම් යාවත්කාල" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizácie aplikácie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posodobitve aplikacije" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përditësime aplikacioni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ажурирања апликације" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranja aplikacije" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "App-uppdateringar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sasisho za programu" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆப்ஸ் புதுப்பிப்புகள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అనువర్తన నవీకరణలు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอัปเดตแอป" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uygulama güncellemeleri" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оновлення застосунку" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایپ اپڈیٹس" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ilova yangilanishlari" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cập nhật ứng dụng" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ihlaziywa Inkqubo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "应用更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "應用程式更新" + } + } + } + }, + "updateDownloaded" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opdatering geïnstalleer, klik om weer te begin" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تم تثبيت التحديث، اضغط لإعادة التشغيل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncəlləmə quraşdırıldı, yenidən başlatmaq üçün toxunun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ ڈیٹ انسٹال ہوا، ری اسٹارٹ کیلئے کلک کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абнаўленне ўстаноўлена, націсніце, каб перазапусціць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Актуализацията е инсталирана, кликнете, за да рестартирате" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপডেট ইন্সটল হয়েছে, পুনরায় চালু করতে ক্লিক করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'ha instal·lat una actualització, feu clic per reiniciar." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizace nainstalována, klikněte pro restartování" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diweddariad wedi'i osod, cliciwch i ailgychwyn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opdatering installeret, klik for at genstarte" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update wurde installiert, klicke zum Neustart" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εγκαταστάθηκε η ενημέρωση, κάντε κλικ για επανεκκίνηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update installed, click to restart" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĝisdatigo instalita, alklaku por rekomenci" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización instalada, haga clic para reiniciar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización instalada, haga clic para reiniciar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Värskendus installitud, klõpsa taaskäivitamiseks" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eguneraketa instalatuta, sakatu berrabiarazteko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بروزرسانی نصب شده، برای راه اندازی مجدد کلیک کنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Päivitys asennettu, klikkaa käynnistääksesi uudelleen." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update installed, click to restart" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mise à jour installée, cliquez pour redémarrer" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización instalada, fai clic para reiniciar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "An saka sabunta, danna don sake farawa" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העדכון הותקן, לחץ לאתחול מחדש" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपडेट इंस्टॉल हो गया, पुनः प्रारंभ करने के लिए क्लिक करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje instalirano, kliknite za ponovno pokretanje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frissítés telepítve, kattints az újraindításhoz" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Թարմացումը տեղադրված է, սեղմեք վերագործարկելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pembaruan terpasang, klik untuk memulai ulang" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aggiornamento installato, clicca per riavviare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新がインストールされました。再起動するにはクリックしてください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "განახლება დაინსტალირებულია, დაწკაპეთ გადასატვირთად" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តំឡើងការអាប់ដេត និងចុចដើម្បីចាប់ផ្តើមឡើងវិញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನವೀಕರಣ ಸ್ಥಾಪಿಸಲಾಗಿದೆ, ಪುನಾರಂಭಿಸಲು ಕ್ಲಿಕ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "업데이트 설치 완료, 클릭하여 재시작" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nûveker tê zêdekirin, bişkînin ji bo destzê kirina xwerê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okusobola okwazaamu, wetaaga kwetandika eda" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atnaujinimas įdiegtas, paspauskite norint paleisti iš naujo" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atjauninājums instalēts, klikšķiniet, lai restartētu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Инсталирано ажурирање, кликни за рестарт" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэчлэлийг суулгасан, дахин эхлүүлэхийн тулд товш" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kemas kini dipasang, klik untuk mulakan semula" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "update ကို ထည့်ထားပြီ၊ ပြန်စလုပ်ဖို့ နှိပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppdatering installert, klikk for å starte på nytt" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपडेट स्थापना गरिएको छ, पुनः सुरुवात गर्न क्लिक गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update geïnstalleerd, klik om opnieuw op te starten" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oppdatering installert, klikk for å starte på nytt" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kusintha kwakwaniritsidwa, dinani kukonzanso" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅੱਪਡੇਟ ਸਥਾਪਿਤ ਕੀਤਾ ਗਿਆ, ਦੁਬਾਰਾ ਚਾਲੂ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizacja zainstalowana. Kliknij, aby uruchomić ponownie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تازه تازه نصب شو، د بیا پیلولو لپاره کلیک وکړئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização instalada, clique para reiniciar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização instalada, clique para reiniciar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizare instalată, faceți clic pentru a reporni" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обновление установлено, нажмите, чтобы перезапустить" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje instalirano, kliknite za ponovno pokretanje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නවීකරණය සවි කර ඇත, නැවත ආරම්භ කිරීමට ක්ලික් කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizácia nainštalovaná, kliknite pre reštart" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posodobitev nameščena, klikni za ponovni zagon" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përditësimi është instaluar, kliko për të rifilluar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ажурирање инсталирано, кликните да бисте поново покренули" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje instalirano, kliknite za ponovno pokretanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uppdatering installerad, klicka för att starta om" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sasisho limewekwa, bofya kuwasha upya" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதுப்பிப்பு நிறுவப்பட்டுள்ளது, மறுதொடக்கம் செய்ய கிளிக் செய்யவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అప్డేట్ ఇన్స్టాల్ చేయబడింది, రీస్టార్ట్ చేయడానికి క్లిక్ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอัปเดตติดตั้งแล้ว คลิกเพื่อเริ่มต้นใหม่." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncelleme yüklendi, yeniden başlatmak için tıklayın" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оновлення встановлено, натисніть, щоб перезапустити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ ڈیٹ انسٹال ہو چکی ہے، دوبارہ شروع کرنے کے لئے کلک کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangilanish o‘rnatildi, qayta yuklash uchun bosing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cập nhật đã cài đặt, nhấn để khởi động lại" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlaziyo lufakiwe, cofa ukuze uqale kwakhona" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新已安装,请点击重启" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "已安裝更新,點擊以重新啟動" + } + } + } + }, + "updateDownloading" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laai Opdatering Af: {percent_loader}%" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تنزيل التحديث: {percent_loader}%" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qoşma endirilir: {percent_loader}%" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ڈاؤن لوڈنگ اپ ڈیٹ: {percent_loader}%" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка абнаўлення: {percent_loader}%" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Изтегляне на актуализация: {percent_loader}%" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপডেট ডাউনলোড করা হচ্ছে: {percent_loader}%" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "S'està baixant l'actualització: {percent_loader}%" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stahování aktualizace: {percent_loader}%" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Llwytho diweddariad: {percent_loader}%" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download af opdatering: {percent_loader}%" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update wird heruntergeladen: {percent_loader}%" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading update: {percent_loader}%" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading update: {percent_loader}%" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elŝutante ĝisdatigon: {percent_loader}%" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando actualización: {percent_loader}%" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando actualización: {percent_loader}%" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allalaaditakse uuendust: {percent_loader}%" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eguneratzea deskargatzen: {percent_loader}%" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "دانلود به‌روزرسانی: {percent_loader}%" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Päivitetään latausta: {percent_loader}%" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dinadownload ang update: {percent_loader}%" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléchargement de la mise à jour : {percent_loader}%" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando actualización: {percent_loader}%" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana zazzage sabuntawa: {percent_loader}%" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מוריד עדכון: {percent_loader}%" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपडेट डाउनलोड हो रहा है: {percent_loader}%" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje ažuriranja: {percent_loader}%" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frissítés letöltése: {percent_loader}%" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ներբեռնում թարմացումը՝ {percent_loader}%" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengunduh pembaruan: {percent_loader}%" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download aggiornamento: {percent_loader}%" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ダウンロード中のアップデート: {percent_loader}%" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "განახლების გადმოტვირთვა: {percent_loader}%" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងទាញយកបច្ចុប្បន្នភាព៖ {percent_loader}%" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಪ್ಡೇಟ್ ಡೌನ್ಲೋಡ್ ಆಗುತ್ತಿದೆ: {percent_loader}%" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "업데이트 다운로드 중: {percent_loader}%" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tê daxistinê xuya dibe: {percent_loader}%" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okulo: {percent_loader}%." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ກຳລັງດາວໂຫລດການປັບປຸງ: {percent_loader}%" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atsisiunčiama naujinys: {percent_loader}%" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejupielādē atjauninājumu: {percent_loader}%" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се симнува ажурирањето: {percent_loader}%" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэчлэл татаж байна: {percent_loader}%" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat turun kemas kini: {percent_loader}%" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အပ်ဒိတ်ကိုဒေါင်းလုဒ်လုပ်နေသည်: {percent_loader}%" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster ned oppdatering: {percent_loader}%" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपडेट डाउनलोड गर्दै: {percent_loader}%" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update aan het downloaden: {percent_loader}%" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster ned oppdatering: {percent_loader}%" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kutsitsa zosintha: {percent_loader}%" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਪਡੇਟ ਡਾਊਨਲੋਡ ਹੋ ਰਾਹੀ ਹੈ: {percent_loader}%" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pobieranie aktualizacji: {percent_loader}%" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د تازه کولو ښکته کول: {percent_loader}%" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixando atualização: {percent_loader}%" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Transferindo atualização: {percent_loader}%" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se descarcă actualizarea: {percent_loader}%" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка обновления: {percent_loader}%" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje ažuriranja: {percent_loader}%" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යාවත්කාලීනය බාගැනීම: {percent_loader}%" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sťahovanie aktualizácie: {percent_loader}%" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prenos posodobitve: {percent_loader}%" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po shkarkohet përditësimi: {percent_loader}%" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преузимам ажурирање: {percent_loader}%" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje ažuriranja: {percent_loader}%" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hämtar uppdatering: {percent_loader}%" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kupakua sasisho: {percent_loader}%" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிவு புதுப்பிப்பு பதிவிறக்கப்படுகிறது: {percent_loader}%" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నవీకరించబడుతోంది: {percent_loader}%" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดาวน์โหลดอัปเดต: {percent_loader}%" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncelleme indiriliyor: {percent_loader}%" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Завантаження оновлення: {percent_loader}%" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ ڈیٹ ڈاؤن لوڈ ہو رہی ہے: {percent_loader}%" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklanmoqda: {percent_loader}%" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải về cập nhật: {percent_loader}%" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Khuphela uhlaziyo: {percent_loader}%" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在下载更新:{percent_loader}%" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在下載更新: {percent_loader}%" + } + } + } + }, + "updateError" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie Opdateer nie" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لا يمكن التحديث" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncəllənə bilmir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ ڈیٹ نہیں ہو سکتا" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма абнавіць" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се актуализира" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপডেট করা সম্ভব নয়" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot actualitzar" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze aktualizovat" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu Diweddaru" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke opdatere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kann nicht aktualisiert werden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία Ενημέρωσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot Update" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Neaktualebligas" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo actualizar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo actualizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ei saa uuendada" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot Update" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپدیت ناموفق بود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Päivitys epäonnistui" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi Magupdate" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de mettre à jour" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode actualizar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya sabunta ba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן לבצע עדכון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अद्यतन नहीं हो रहा" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ažurirati" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A frissítés sikertelen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հնարավոր չէ թարմացնել" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pembeharuan Gagal" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile aggiornare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新できませんでした" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვერ განახლდა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចធ្វើបច្ចុប្បន្នភាព" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನವೀಕರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "업데이트 불가능" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nikare Rojane Bike" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot Update" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ບໍ່ສາມາດອັບເດດໄດ້" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta atnaujinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar atjaunināt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се ажурира" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Шинэчлэх боломжгүй" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak Dapat Kemas Kini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ပြင်ပေး၍ မရပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke oppdatere" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अद्यावधिक गर्न सकिँदैन" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan niet bijwerken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke oppdatere" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cannot Update" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਦੇ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można zaktualizować" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تازه کولو ته نشي" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível atualizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossível Atualizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nu se poate actualiza" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обновить не удается" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne može se ažurirati" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "යාවත්කාල කළ නොහැකිය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné aktualizovať" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posodobitev ni mogoča" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk mund të përditësohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не могу ажурирати" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće ažurirati" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan inte uppdatera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Huwezi Kusasisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "புதுப்பிக்க முடியாது" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "నవీకరించలేం" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถอัปเดตได้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncellenemiyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдалося оновити" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ ڈیٹ نہیں ہوسکتی" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yangilanmadi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể cập nhật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayinakho Uhlaziyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法更新" + } + } + } + }, + "updateErrorDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kon nie opdateer nie. Gaan asseblief na {session_download_url} en installeer die nuwe weergawe handmatig, en kontak dan ons Hulp Sentrum om ons van hierdie probleem in kennis te stel." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} فشل في التحديث. يرجى الانتقال إلى {session_download_url} وتثبيت الإصدار الجديد يدويًا، ثم قم بالاتصال بمركز المساعدة لإعلامنا بالمشكلة." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} güncəllənmədi. Lütfən {session_download_url} ünvanına gedərək yeni versiyanı quraşdırın, daha sonra bu problemi bildirmək üçün Kömək Mərkəzimizə müraciət edin." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} سورین پہ بروز اسلامی. مھرن {session_download_url} بزوک کوہ وِساہ زانتربان نسکیۂ په زر برابرہ وفقث، ہماں مشکلا اسٹہ مذ بہ دوں سا عد مرکزِ پردیسہ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} не ўдалося абнавіць. Калі ласка, перайдзіце на {session_download_url} і ўсталявайце новую версію ўручную, затым звяжыцеся з нашым цэнтрам дапамогі, каб паведаміць пра гэтую праблему." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} не успешна актуализация. Моля, отидете на {session_download_url} и инсталирайте новата версия, която ще намерите там. Моля свържете се с нашия отдел по поддръжка, за да ни уведомите за този проблем." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আপডেট করতে ব্যর্থ হয়েছে। অনুগ্রহ করে {session_download_url} এ যান এবং নতুন ভার্সন নিজে নিজে ইনস্টল করুন, এরপর আমাদের সাহায্য কেন্দ্রের সাথে যোগাযোগ করুন এই সমস্যা সম্পর্কে আমাদের জানাতে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha fallat l'actualització de {app_name}. Aneu a {session_download_url} i instal·leu la nova versió manualment, llavors contacteu amb el nostre Centre de Suport per a informar sobre aquest problema." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} se nepodařilo aktualizovat. Přejděte prosím na {session_download_url} a nainstalujte novou verzi ručně, poté kontaktujte naše Centrum pomoci a dejte nám vědět o tomto problému." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methodd {app_name} i ddiweddaru. Ewch i {session_download_url} a gosodwch y fersiwn newydd â llaw, yna cysylltwch â'n Canolfan Cymorth i'n hysbysu am y broblem hon." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} opdateringen mislykkedes. Gå venligst til {session_download_url} og installer den nye version manuelt, og kontakt derefter vores Hjælpecenter for at informere os om dette problem." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} konnte nicht aktualisiert werden. Bitte besuche {session_download_url} und installiere die neue Version manuell. Kontaktiere anschließend den Helpdesk, um uns über dieses Problem zu informieren." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Το {app_name} απέτυχε να ενημερωθεί. Παρακαλώ πηγαίνετε στο {session_download_url} και εγκαταστήστε τη νέα έκδοση χειροκίνητα, στη συνέχεια επικοινωνήστε με το Κέντρο Βοήθειας για να μας ενημερώσετε για αυτό το πρόβλημα." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} failed to update. Please go to {session_download_url} and install the new version manually, then contact our Help Center to let us know about this problem." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} malsukcesis ĝisdatigi. Bonvolu iri al {session_download_url} kaj instali la novan version permane, poste kontaktu nian HelpoCentron por sciigi nin pri tiu ĉi problemo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} no se pudo actualizar. Por favor, dirígete a {session_download_url} e instala la nueva versión manualmente. Al finalizar, avísanos en el Centro de Ayuda sobre este problema." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} falló al actualizarse. Por favor ve a {session_download_url} e instala la nueva versión manualmente, después contacta con nuestro Centro de Ayuda para informarnos sobre este problema." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} uuendamine ebaõnnestus. Palune avage {session_download_url} ja installige uus versioon käsitsi, seejärel võtke ühendust meie Klienditoega, et sellest probleemist teatada." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)k huts egin du eguneratzean. Mesedez joan {session_download_url} helbidera eta eskuz instalatu bertsio berria, ondoren jar zaitez harremanetan gure Laguntza Zentroarekin arazo honen berri emateko." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} اپدیت نشد. لطفا به {session_download_url} بروید و نسخه جدید را به صورت دستی نصب کنید. سپس با مرکز پشتیبانی ما تماس بگیرید تا ما را در جریان این مشکل قرار دهید." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} päivitys epäonnistui. Mene osoitteeseen {session_download_url} ja asenna uusi versio manuaalisesti. Ota yhteyttä tukipalveluumme ja ilmoita tästä ongelmasta." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nabigo ang {app_name} na mag-update. Pumunta sa {session_download_url} at i-install ang bagong bersyon manu-mano, pagkatapos ay makipag-ugnay sa aming Help Center para ipaalam sa amin ang problemang ito." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La mise à jour de {app_name} a échoué. Veuillez aller sur {session_download_url} et installer la nouvelle version manuellement, contactez ensuite le support pour nous informer du problème." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} alhali tace wajen sabunta. Da fatan za a je zuwa {session_download_url} ku shigar da sabon sigar hannu, sannan a tuntuɓi Cibiyar Taimakonmu don sanar da wannan matsalar." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן היה לעדכן את {app_name}. נא לעבור אל {session_download_url} ולהתקין את הגרסה החדשה ידנית, ואז לפנות למרכז העזרה שלנו כדי לעדכן אותנו על בעיה זו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अपडेट होने में विफल. कृपया {session_download_url} पर जाएं और नए संस्करण को मैन्युअल रूप से इंस्टॉल करें, फिर इस समस्या के बारे में हमें बताने के लिए हमारे सहायता केंद्र से संपर्क करें |" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nije uspio ažurirati. Molimo idite na {session_download_url} i instalirajte novu verziju ručno, zatim kontaktirajte naš Centar za pomoć kako biste nas obavijestili o ovom problemu." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} frissítése sikertelen. Kérlek, látogass el a {session_download_url} oldalra és telepítsd manuálisan az új verziót, majd vedd fel a kapcsolatot az ügyfélszolgálatunkkal, hogy többet tudhassunk a problémáról." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ը չի կարողացել թարմանալ: Խնդրում ենք անցեք {session_download_url} և ձեռքով տեղադրեք նոր տարբերակը, ապա դիմեք մեր Օգնության կենտրոնին՝ մեզ այս խնդրի մասին տեղեկացնելու համար։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gagal diperbarui. Silahkan pergi ke {session_download_url} dan instal versi terbaru secara manual, kemudian hubungi Pusat Bantuan kami untuk memberitahu terkait masalah ini." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} non è riuscito ad aggiornarsi. Vai su {session_download_url} e installa manualmente la nuova versione, poi contatta il nostro centro assistenza per segnalarci il problema." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}の更新に失敗しました。{session_download_url}にアクセスして新しいバージョンを手動でインストールしてください。その後、この問題についてヘルプセンターにご連絡ください。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ვერ განახლდა. გთხოვთ გადადით {session_download_url} და ხელით დააყენეთ ახალი ვერსია, შემდეგ კი დაგვიკავშირდით დახმარების ცენტრში ამ პრობლემის შესახებ." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} បានបរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាព។ សូមចូលទៅកាន់ {session_download_url} ហើយដំឡើងជំនាន់ថ្មីដោយដៃ បន្ទាប់មកទាក់ទងមជ្ឈមណ្ឌលជំនួយរបស់យើង ដើម្បីជំរាបព័ត៌មានអំពីបញ្ហានេះ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನವೀಕರಿಸಲು ವಿಫಲವಾಗಿದೆ. ದಯವಿಟ್ಟು {session_download_url} ಗೆ ಹೋಗಿ ಮತ್ತು ಹೊಸ ಆವೃತ್ತಿಯನ್ನು ಕೈಯಾರೆ ಇನ್‌ಸ್ಟಾಲ್ ಮಾಡಿ, ನಂತರ ಈ ಸಮಸ್ಯೆಯನ್ನು ನಮ್ಮ ಸಹಾಯ ಕೇಂದ್ರಕ್ಕೆ ತಿಳಿಸಿ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 업데이트에 실패했습니다. {session_download_url}에서 새 버전을 수동으로 설치한 후, 이 문제를 알려주시기 위해 고객 지원 센터에 연락해 주세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nêteweyên nûvekirinê bi ser neket. Ji kerema xwe biçe {session_download_url} û wersionekî nû bi destê xwe saz bike, paşê bi Merkezê Yêrimeda me bigere ji bo agahî kirina me vê pirsgirêkê." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ekulemye okwekkulaakulanya. Nnyigamu {session_download_url} n'okuteekamu eddala eddala nga bwotekako, olwo olindako okuyita mu Help Center waffe okututegeeza ku buzibu buno." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyko atnaujinti {app_name}. Prašome eiti į {session_download_url} ir rankiniu būdu įdiegti naują versiją, tada susisiekite su mūsų Pagalbos Centru, kad praneštumėte apie šią problemą." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} neizdevās atjaunot. Lūdzu, dodieties uz {session_download_url} un instalējiet jauno versiju manuāli, tad sazinieties ar mūsu Palīdzības centru, lai informētu par šo problēmu." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} не успеа да се ажурира. Ве молиме одете на {session_download_url} и рачно инсталирајте ја новата верзија, потоа контактирајте го нашиот Центар за помош за да нè известите за овој проблем." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} шинэчлэлт амжилтгүй боллоо. Та {session_download_url} руу орж шинэ хувилбарыг гараар суулгаад, асуудлын талаар бидэнд мэдэгдэнэ үү." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} gagal untuk dikemaskini. Sila pergi ke {session_download_url} dan pasang versi baru secara manual, kemudian hubungi Pusat Bantuan kami untuk memberitahu kami tentang masalah ini." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ကိုအပ်ဒိတ်လုပ်ရန်မအောင်မြင်ပါ။ ကျေးဇူးပြု၍ {session_download_url} သို့သွားပြီး ဗားရှင်းအသစ်ကိုလက်ဝယ်လုပ်ဖွင့်ပါ၊ ၎င်းပြဿနာကြောင့်ကျွန်ုပ်တို့၏အကူအညီစင်တာကိုဆက်သွယ်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kunne ikke oppdateres. Gå til {session_download_url} og installer den nye versjonen manuelt, og kontakt vårt hjelpesenter for å informere oss om dette problemet." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अद्यावधिक गर्न असफल भयो। कृपया {session_download_url} मा जानुहोस् र नयाँ संस्करण म्यानुअली इन्स्टल गर्नुहोस्, त्यसपछि कृपया हाम्रो सहायता केन्द्रलाई यस समस्याबारे जानकारी दिनुहोस्।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} kon niet worden bijgewerkt. Ga naar {session_download_url} en installeer handmatig de nieuwe versie, neem vervolgens contact op met ons Help Center om dit probleem te laten weten." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} klarte ikkje å oppdatere. Gå til {session_download_url} og installer den nye versjonen manuelt, og kontakt deretter vårt brukersenter for å informere om dette problemet." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} walephera kusintha. Chonde pitani ku {session_download_url} ndikuyika mtundu watsopano pamanja, kenako lemberani Thandizo lathu kuti mutidziwitse za vutoli." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਅੱਪਡੇਟ ਕਰਨ ਵਿੱਚ ਅਸਫਲ ਰਿਹਾ। ਕਿਰਪਾ ਕਰਕੇ {session_download_url} 'ਤੇ ਜਾਓ ਅਤੇ ਨਵਾਂ ਸੰਸਕਰਣ ਮੈਨੂਅਲ ਤੌਰ 'ਤੇ ਇੰਸਟਾਲ ਕਰੋ, ਫਿਰ ਇਸ ਸਮੱਸਿਆ ਬਾਰੇ ਸਾਨੂੰ ਦੱਸਣ ਲਈ ਸਾਡੀ ਮੁਦਦ ਕਦਰ ਵਿੱਚ ਸੰਪਰਕ ਕਰੋ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie udało się zaktualizować aplikacji {app_name}. Przejdź do adresu {session_download_url} i zainstaluj nową wersję ręcznie, a następnie skontaktuj się z naszym centrum pomocy, aby poinformować nas o tym problemie." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تازه کولو کې ناکام شو. مهرباني وکړئ {session_download_url} ته لاړ شئ او نوی نسخو د لاسي نصبولو لپاره، بیا زموږ د مرستی مرکز سره اړیکه ونیسئ ترڅو موږ ته د دې ستونزې په اړه خبر راکړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} falhou em atualizar. Por favor, vá para {session_download_url} e instale a nova versão manualmente, depois contate nosso Centro de Ajuda para nos informar sobre o problema." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} falhou a atualização. Por favor, vá a {session_download_url} e instale a nova versão manualmente, depois contacte o nosso Centro de Apoio para nos informar do problema." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nu a reușit să se actualizeze. Vă rugăm să accesați {session_download_url} și să instalați manual noua versiune, apoi contactați Centrul de Asistență pentru a ne informa despre această problemă." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось обновить {app_name}. Пожалуйста, перейдите по ссылке {session_download_url} и установите новую версию вручную, затем свяжитесь с нашим Центром поддержки, чтобы сообщить нам об этой проблеме." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nije uspio ažurirati. Molimo posjetite {session_download_url} i ručno instalirajte novu verziju, a zatim kontaktirajte naš Centar za pomoć kako biste nas obavijestili o ovom problemu." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} යාවත්කාලීන කිරීමට අසාර්ථක විය. කරුණාකර {session_download_url} වෙත ගොස් අනුමාන නව අනුවාදය මැනුවල්ව ස්ථාපනය කර, පසුව මෙම ගැටලුව සම්බන්ධයෙන් අපගේ උදව් මධ්‍යස්ථානය අමතන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} sa nepodarilo aktualizovať. Prosím prejdite na {session_download_url} a manuálne nainštalujte novú verziu, potom kontaktujte naše Help Centrum aby ste nám dali vedieť o tomto probléme." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} posodobitev ni uspela. Obiščite {session_download_url} in ročno namestite novo različico ter nas obvestite o težavi prek centra za pomoč." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nuk arriti të përditësohej. Ju lutemi shkoni te {session_download_url} dhe instaloni versionin e ri manualisht, pastaj kontaktoni qendrën tonë të ndihmës për të na informuar për këtë problem." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} није успео да се ажурира. Молимо идите на {session_download_url} и ручно инсталирајте нову верзију, затим контактирајте наш Центар за помоћ да нас обавестите о овом проблему." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} nije uspeo da se ažurira. Molimo idite na {session_download_url} i instalirajte novu verziju ručno, zatim kontaktirajte naš centar za pomoć i obavestite nas o ovom problemu." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} misslyckades med att uppdatera. Gå till {session_download_url} och installera den nya versionen manuellt, och kontakta vårt Hjälpcenter för att informera oss om detta problem." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} imeshindwa kusasisha. Tafadhali nenda {session_download_url} na usakinishe toleo jipya kwa mkono, kisha wasiliana na kituo chetu cha msaada ili kutujulisha kuhusu tatizo hili." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} புதுப்பிக்கப்படவில்லை. தயவு செய்து {session_download_url} சென்று புதிய பதிப்பை ஹேண்ட் முறையில் நிறுவி, இந்த சிக்கலை எங்களுக்கு தெரிவிக்கவும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} నవీకరించడం విఫలమయింది. దయచేసి {session_download_url}కి వెళ్ళి 새로운 వెర్షన్‌ను మాన్యువల్‌గా ఇన్స్టాల్ చేయండి, ఆపై ఈ సమస్య గురించి తెలియజేయడానికి మా సహాయ కేంద్రాన్ని సంప్రదించండి." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} การอัปเดตล้มเหลว กรุณาไปที่ {session_download_url} เพื่อติดตั้งเวอร์ชันใหม่ด้วยตัวเอง จากนั้นติดต่อศูนย์ช่วยเหลือของเราเพื่อแจ้งให้เราทราบเกี่ยวกับปัญหานี้" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} güncellenirken bir sorun meydana geldi. Lütfen {session_download_url} bağlantısını ziyaret edip yeni sürümü manuel olarak yükleyin, ve Yardım Merkezi üzerinden bu sorunu bize bildirin." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} не вдалося оновити. Будь ласка, перейдіть на {session_download_url} і встановіть нову версію вручну, потім зв'яжіться з нашою Службою підтримки для інформування про цю проблему." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} اپ ڈیٹ کرنے میں ناکام ہو گیا۔ براہ کرم {session_download_url} پر جائیں اور نئی ورژن کو دستی طور پر نصب کریں، پھر اس مسئلے کے بارے میں ہمیں مطلع کرنے کے لیے ہماری ہیلپ سینٹر سے رابطہ کریں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yangilanmadi. Iltimos, {session_download_url} ga o'ting va yangi versiyasini qo'lda o'rnating, keyin bu muammo haqida bizga xabar berish uchun yordam markazimizga murojaat qiling." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} không thể cập nhật. Vui lòng truy cập {session_download_url} và cài đặt phiên bản mới thủ công, sau đó liên hệ Trung tâm trợ giúp của chúng tôi để thông báo về vấn đề này." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ayiphumelelanga ukuhlaziya. Nceda uye ku {session_download_url} ufake inguqulelo entsha ngesandla, emva koko unxibelelane neZiko lethu loNcedo ukuze usixelele ngale ngxaki." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}更新失败。请返回{session_download_url}并手动安装新版本,并联系帮助中心反馈此问题。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 更新失敗。請前往 {session_download_url} 手動安裝新版本,然後聯繫我們的幫助中心通知我們這個問題。" + } + } + } + }, + "updateNewVersion" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "n Nuwe weergawe van {app_name} is beskikbaar tik om op te dateer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إصدار جديد من {app_name} متاح، انقر للتحديث." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} üçün yeni versiyası mövcuddur, güncəlləmək üçün toxunun" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "New version {app_name} wājūd dā, tap ke update beñ." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даступна новая версія {app_name}, націсніце для абнаўлення" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налична е нова версия на {app_name}, докоснете за обновление." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর একটি নতুন সংস্করণ উপলব্ধ, আপডেট করতে ট্যাপ করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi ha disponible una nova versió de {app_name}. Toqueu per actualitzar-lo" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je dostupná nová verze {app_name}, klikněte pro aktualizaci" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae fersiwn newydd o {app_name} ar gael. Tapiwch i ddiweddaru." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny version af {app_name} er tilgængelig, tryk for at opdatere" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine neue Version von {app_name} ist verfügbar. Tippe, um zu aktualisieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μια νέα έκδοση της εφαρμογής {app_name} είναι διαθέσιμη, πατήστε για ενημέρωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A new version of {app_name} is available, tap to update" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova versio de {app_name} disponeblas, tuŝu por ĝisdatigi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay una nueva versión de {app_name} disponible, toca para actualizar" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay una nueva versión de {app_name} disponible, toca para actualizar" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uus versioon {app_name} on saadaval, uuendamiseks puuduta" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}(e)n bertsio berri bat erabilgarri dago, sakatu eguneratzeko" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخه جدیدی از {app_name} موجود است، برای به‌روزرسانی ضربه بزنید" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusi versio {app_name} on saatavilla, napauta päivittääksesi" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May bagong bersyon ng {app_name} na magagamit, i-tap para i-update" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une nouvelle version de {app_name} est disponible, appuyez pour lancer la mise à jour" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai dispoñible unha nova versión de {app_name}, toca para actualizar" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabon sigar {app_name} yana nan, danna don sabuntawa." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גרסה חדשה של {app_name} זמינה, הקש כדי לעדכן" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} का एक नया संस्करण उपलब्ध है, अपडेट करने के लिए टैप करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostupna je nova verzija {app_name}, dodirnite za ažuriranje." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A(z) {app_name} új verziója elérhető, koppints a frissítéshez" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հասանելի է {app_name} նոր տարբերակը, սեղմեք թարմացնելու համար" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi terbaru dari {app_name} telah tersedia, ketuk untuk memperbarui" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "È disponibile una nuova versione di {app_name}, tocca per aggiornare" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} のバージョンアップが利用可能です。タップすると更新します。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ის ახალი ვერსია ხელმისაწვდომია, დააჭირეთ განახლებისთვის" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណែថ្មីរបស់{app_name}អាចប្រើប្រាស់បានហើយ សូមចុចធ្វើបច្ចុប្បន្នភាព។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನ ಹೊಸ ಆವೃತ್ತಿ ಲಭ್ಯವಿದೆ, ನವೀಕರಿಸಲು ಟ್ಯಾಪ್ ಮಾಡಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 버전의 {app_name}이 사용 가능합니다. 눌러서 업데이트 하세요." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wêşaneka nû ya {app_name} berdeqe, ji bo rojekirina pêvekê bitikîne." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkyukakyuka empya ya {app_name} eriwo, kakkirizza okkyusamu" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ວິທີໃຫມ່ຂອງ {app_name} ມີໃຫ້, ກົດເພື່ອອັບເດດ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yra prieinama nauja {app_name} versija, bakstelėkite, norėdami atnaujinti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir pieejama jauna {app_name} versija, pieskarieties, lai atjauninātu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Достапна е нова верзија на {app_name}, допрете за ажурирање" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} шинэ хувилбар гарсан байна, шинэчлэхийн тулд товш" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi baru {app_name} tersedia, ketik untuk mengemaskini" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} မှ အသစ်ဗားရှင်း ရရှိနေပါသည်၊ အပ်ဒိတ်လုပ်ရန် နှိပ်ပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny versjon av {app_name} er tilgjengelig, trykk for å oppdatere" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को नयाँ संस्करण उपलब्ध छ, अपडेट गर्न ट्याप गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een nieuwe versie van {app_name} beschikbaar, tik om bij te werken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Det finst ei ny utgåve av {app_name}; trykk for å oppdatere" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu watsopano wa {app_name} upezeka, dinani kuti muzitha kusintha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਦਾ ਨਵਾਂ ਵਰਜ਼ਨ ਉਪਲਬਧ ਹੈ, ਅਪਡੇਟ ਕਰਨ ਲਈ ਜੋੜੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostępna jest nowa wersja aplikacji {app_name}. Stuknij, aby zaktualizować" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {app_name} نوې نسخه شتون لري، ټایپ وکړئ ترڅو تازه کړئ." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma nova versão de {app_name} está disponível, toque para atualizar" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma nova versão de {app_name} está disponível, toque para atualizar" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este disponibilă o nouă versiune de {app_name}, apăsați pentru actualizare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доступна новая версия {app_name}, нажмите для обновления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova verzija {app_name} je dostupna, pritisni za ažuriranje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} නව අනුවාදය දැනට ලබා ගත හැක, යාවත්කාලීන කිරීමට තෝරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "K dispozícii je nová verzia {app_name}, ťuknite, aby ste aktualizovali" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na voljo je nova različica {app_name}, tapnite za posodobitev" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Është gati një version i ri i {app_name}, prekeni që të përditësohet" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова верзија {app_name} је доступна, тапните за ажурирање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova verzija {app_name} je dostupna, dodirnite da ažurirate" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny version av {app_name} är tillgänglig, tryck för att uppdatera" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toleo jipya la {app_name} linapatikana, gusa ili kusasisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இன் புதிய பதிப்பு கிடைக்கிறது, புதுப்பிக்கத் தட்டவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} యొక్క కొత్త సంస్కరణ అందుబాటులో ఉంది, నవీకరణ కొరకు తట్టండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีเวอร์ชั่นใหม่ของ {app_name} ที่พร้อมให้อัปเดต แตะเพื่ออัปเดต" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeni bir sürümü mevcut, güncellemek için dokunun" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова версія {app_name} доступна." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کا ایک نیا ورژن دستیاب ہے، اپ ڈیٹ کے لیے ٹیپ کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ning yangi versiyasi mavjud, yangilanish uchun bosing" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một phiên bản mới của {app_name} đã có, chạm để cập nhật" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo olutsha lwe-{app_name} luyafumaneka, cofa ukuze uhlaziye" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "有新版本的{app_name}可用,点击更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "有新版本的 {app_name},輕觸更新" + } + } + } + }, + "updateNewVersionDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "n Nuwe weergawe van {app_name} is beskikbaar" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "إصدار جديد من {app_name} متاح." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} üçün yeni versiyası mövcuddur." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "New version {app_name} wājūd dā." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Даступна новая версія {app_name}." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Налична е нова версия на {app_name}." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} এর একটি নতুন সংস্করণ উপলব্ধ।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hi ha disponible una nova versió de {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je dostupná nová verze {app_name}." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mae fersiwn newydd o {app_name} ar gael." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny version af {app_name} er tilgængelig." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine neue Version von {app_name} ist verfügbar." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μια νέα έκδοση της εφαρμογής {app_name} είναι διαθέσιμη." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A new version of {app_name} is available." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova versio de {app_name} disponeblas." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay una nueva versión de {app_name} disponible." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay una nueva versión de {app_name} disponible." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uus versioon {app_name} on saadaval." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bertsio berri bat erabilgarri dago {app_name}-erako." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخه جدیدی از {app_name} موجود است." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uusi versio {app_name} on saatavilla." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "May bagong bersyon ng {app_name} na magagamit." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une nouvelle version de {app_name} est disponible." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hai dispoñible unha nova versión de {app_name}." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabuwar sigar {app_name} yana nan." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גרסה חדשה של {app_name} זמינה." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} का एक नया संस्करण उपलब्ध है।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostupna je nova verzija {app_name}." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "A(z) {app_name} új verziója elérhető." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Հասանելի է {app_name} նոր տարբերակը:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi baru {app_name} telah tersedia." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "È disponibile una nuova versione di {app_name}." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "新バージョンの {app_name} が利用可能です" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ის ახალი ვერსია ხელმისაწვდომია." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណែថ្មីរបស់ {app_name} ចេញហើយ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನ ಹೊಸ ಆವೃತ್ತಿ ಲಭ್ಯವಿದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "새 버전의 {app_name}이 사용 가능합니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wêşaneke nû ya {app_name} berdeste." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enkyukakyuka empya ya {app_name} eriwo." + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ວິທີໃຫມ່ຂອງ {app_name} ມີໃຫ້." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yra prieinama nauja {app_name} versija." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir pieejama jauna {app_name} versija." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Достапна е нова верзија на {app_name}." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} шинэ хувилбар гарсан байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi baru {app_name} tersedia." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} အသစ်ဗားရှင်း ရရှိနေပီး။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny versjon av {app_name} er tilgjengelig." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} को नयाँ संस्करण उपलब्ध छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er is een nieuwe versie van {app_name} beschikbaar." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein ny versjon av {app_name} er tilgjengelig." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu watsopano wa {app_name} ulipezeka." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਦਾ ਨਵਾਂ ਵਰਜ਼ਨ ਉਪਲਬਧ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dostępna jest nowa wersja aplikacji {app_name}." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د {app_name} نوې نسخه شتون لري." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma nova versão de {app_name} está disponível." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma nova versão de {app_name} está disponível." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este disponibilă o nouă versiune de {app_name}." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доступна новая версия {app_name}." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova verzija {app_name} je dostupna." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නව අනුවාදයක් {app_name} ලාබා ගත හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "K dispozícii je nová verzia {app_name}." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na voljo je nova različica {app_name}." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Është gati një version i ri i {app_name}." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нова верзија {app_name} је доступна." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nova verzija {app_name} je dostupna." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ny version av {app_name} är tillgänglig." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toleo jipya la {app_name} linapatikana." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} இன் புதிய பதிப்பு கிடைக்கிறது." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} యొక్క కొత్త సంస్కరణ అందుబాటులో ఉంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีเวอร์ชั่นใหม่ของ {app_name} พร้อมใช้งาน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yeni bir sürümü mevcut." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Доступна нова версія {app_name}." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} کا ایک نیا ورژن دستیاب ہے۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ning yangi versiyasi mavjud." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một phiên bản mới của {app_name} đã có." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uhlobo olutsha lwe-{app_name} luyafumaneka." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "有新版本的{app_name}可用。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "有新版本的 {app_name}。" + } + } + } + }, + "updateReleaseNotes" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gaan na Vrylating notules" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "اِذهب الى ملاحظات الاِصدار" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buraxılış qeydlərinə get" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "رہائی نوٹ بوت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перайсці да Release Notes" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отворете бележките за изданието" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "রিলিজ নোটে যান" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vés a les notes de versió" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Přejít na poznámky k vydání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ewch i Nodiadau Rhyddhau" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til udgivelsesnoter" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu den Release-Notes gehen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μετάβαση στις Σημειώσεις Έκδοσης" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Go to Release Notes" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iri al eldonaj notoj" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a las notas de versión" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir a las notas de versión" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mine väljalaskemärkmete juurde" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joan Azken Oharrak ikustera" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "رفتن به یادداشت‌های ریلیز" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siirry julkaisutietoihin" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pumunta sa Release Notes" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accéder aux notes de mise à jour" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir ás notas de lanzamento" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Je zuwa Bayanan Saki" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לך אל הערות שחרור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिलीज़ नोट्स पे जाइए" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi na bilješke o izdanju" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzióinformáció megnyitása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Կարդացեք թողարկման նշումները" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat Catatan Rilis" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai alle note di rilascio" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "リリースノートを閲覧" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გადადით გამოშვების ჩანაწერებზე" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចូលទៅកាន់កំណត់ចេញថ្មី" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ರಿಲೀಸ್ ಟಿಪ್ಪಣಿಗಳಿಗೆ ಹೋಗಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "패치 노트 보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Here Notên Versiyonê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Genda ku Notiizi za Release" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pereiti į laidos informaciją" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iet uz izlaiduma piezīmēm" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оди до белешки за верзијата" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гаргах тэмдэглэлүүд рүү очих" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pergi ke Nota Keluaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Release Notes သို့သွားပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til utgivelsesmerknader" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "रिलीज नोट्स तिर जानुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ga naar Release Opmerkingen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå til utgivelsesmerknader" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pitani ku Zolemba Zogwira Ntchito" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਰਿਲੀਜ਼ ਨੋਟਸ ਤੇ ਜਾਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przejdź do informacji o wersji" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "د خوشې یادښتونو ته لاړ شئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para Notas de Lançamento" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ir para as Notas de Lançamento" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mergi la Notele de lansare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти к описанию обновления" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idi na Napomene o izdanju" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "නිකුතු සටහන් වෙත යන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Navštíviť Poznámky k Vydaniu" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pojdite na Opombe k izdaji" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kalo te Shënime Versioni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Идите на Напомене о издању" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Idite na napomene o verziji" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gå till versionsanteckningar" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zunguka kwenye Vidokezo vya Toleo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "வெளியீட்டுக் குறிப்புகளுக்குச் செல்லவும்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "రిలీజ్ నోట్స్‌కి వెళ్ళండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไปที่บันทึกประจำรุ่น" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sürüm Notlarına Git" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перейти в примітки до випуску" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ریلیز نوٹس پر جائیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Qaydlarni och" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đi tới các ghi chú phát hành" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yiya kuNgcaciso olupapashiweyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "跳转到版本信息" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "前往發行紀錄" + } + } + } + }, + "updateSession" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Opdateer" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحديث {app_name}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} güncəlləməsi" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} بہ روز آپ ڈیٹ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Абнаўленне {app_name}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Актуализация на {app_name}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} আপডেট" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualització de {app_name}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizace {app_name}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diweddariad {app_name}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Opdatering" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-Update" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ενημέρωση {app_name}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Update" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĝisdatigo de {app_name}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización de {app_name}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización de {app_name}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Uuendus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Eguneraketa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "به‌روزرسانی {app_name}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Päivitys" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update ng {app_name}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mise à jour de {app_name}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualización de {app_name}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sabon {app_name}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "עדכון {app_name}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अपडेट" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje {app_name}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Frissítés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-ի Թարմացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pembaruan {app_name}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ha un nuovo aggiornamento disponibile" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}アップデート" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} განახლება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ភើពុទ្ធ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ನವೀಕರಣ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 업데이트" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Nûvekirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Update" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ອັບເດດ {app_name}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} atnaujinimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} atjaunināšana" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ажурирање на {app_name}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} шинэчлэлт" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kemaskini {app_name}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} မှာထပ်မံ ပြင်ဆင်မှုရှိနေသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-oppdatering" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} अपडेट" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Bijwerken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} oppdatering" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Kusintha" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} ਅੱਪਡੇਟ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizacja aplikacji {app_name}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} تازه" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização de {app_name}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualização do {app_name}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizare {app_name}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Обновление {app_name}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ažuriranje {app_name}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} උත්සවය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualizácia {app_name}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Posodobitev {app_name}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përditësimi i {app_name}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ажурирање {app_name}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Ažuriranje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}-uppdatering" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sasisho la {app_name}." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} அப்டேட்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} నవీకరణ" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอัปเดต {app_name}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} Güncellemesi" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Оновлення {app_name}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} اپ ڈیٹ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} yangilanishi" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cập nhật {app_name}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukuhlaziya i-{app_name}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name}更新" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "{app_name} 更新" + } + } + } + }, + "updateVersion" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weergawe {version}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "النسخة {version}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versiya {version}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ورژن {version}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Версія {version}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Версия {version}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভার্সন {version}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versió {version}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verze {version}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fersiwn {version}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Έκδοση {version}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versio {version}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión {version}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión {version}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versioon {version}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bertsioa {version}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخه {version}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versio {version}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión {version}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siga {version}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "גרסה {version}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वर्ज़न {version}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzija {version}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzió {version}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տարբերակ {version}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi {version}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versione {version}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "バージョン {version}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ვერსია {version}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំណែ {version}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಆವೃತ್ತಿ {version}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "버전 {version}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versîyon {version}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versija {version}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versija {version}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Верзија {version}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хувилбар {version}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versi {version}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဗားရှင်း {version}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versjon {version}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "संस्करण {version}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versie {version}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versjon {version}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mtundu {version}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਸੰਸਕਰਣ {version}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wersja {version}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "نسخه {version}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão {version}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão {version}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versiunea {version}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Версия {version}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzija {version}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අනුවාදය {version}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzia {version}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Različica {version}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versioni {version}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Верзија {version}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verzija {version}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version {version}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toleo {version}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "பதிப்பு: {version}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sanskarana {version}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เวอร์ชัน {version}." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sürüm {version}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Версія {version}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ورژن {version}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versiyasi {version}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phiên bản {version}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inguqulelo {version}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "版本 {version}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "版本: {version}" + } + } + } + }, + "uploading" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oplaai" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "جارٍ تحميل" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yüklənir" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "چک در اِنت" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запампоўка" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прикачване" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপলোড করা হচ্ছে" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pujant" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nahrávání" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yn llwytho i fyny" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wird hochgeladen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μεταφόρτωση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alŝutante" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Subiendo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Üleslaadimine" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igoera" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "در حال آپلود" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ladataan" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nag-uupload" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléversement" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cargando" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ana dora" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "מעלה..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपलोड हो रहा है" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prenošenje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feltöltés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վերբեռնումը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mengunggah" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invio in corso" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "送信中" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "იტვირთება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "កំពុងផ្ញើ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಅಪ್‌ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "업로드 중" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tomarkirin" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okutika" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įkeliama" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Augšupielādē" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Се испраќа" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хадгалж байна" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Memuat naik" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တင်နေသည်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster opp" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "अपलोड गर्दै" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploaden" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laster opp" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kukweza" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਅਪਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Przesyłanie" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپلوډ کېدو دی" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviando" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregando" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Încărcare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Загрузка" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otprema se" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "උඩුගත කිරීම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odovzdáva sa" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nalaganje" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duke ngarkuar" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отпремање" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preuzimanje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laddar upp" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inapakia" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپلوڈ ہو رہا ہے" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అప్లోడ్ చేస్తోంది..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังอัปโหลด..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Karşıya yükleniyor" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вивантаження" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اپ لوڈ ہو رہا ہے" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yuklanmoqda" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Đang tải lên" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ukulayisha" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在上传" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "上傳中" + } + } + } + }, + "urlCopy" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer URL" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "انسخ الرابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ni kopyala" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL کاپی کن" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скапіяваць URL" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирай URL" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL কপি করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zkopírovat URL" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copïo URL" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiér URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link kopieren" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αντιγραφή URL" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopii URL-on" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar la dirección URL" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopeeri URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLa kopiatu" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "کپی کردن URL" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopioi URL" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopyahin ang URL" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copier l'adresse URL" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kwafi URL" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "העתק קישור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यूआरएल कॉपी करें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL másolása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատճենել հղումը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin URL" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copia link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLをコピー" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ის დაკოპირება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ចម្លង URL" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ಅನ್ನು ನಕಲು ಮಾಡು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL 복사" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopîya URLê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koppa URL" + } + }, + "lo" : { + "stringUnit" : { + "state" : "translated", + "value" : "ເສັກກີ້າບເອີຢ໇ລໍ້າ" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopijuoti URL" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nokopēt URL" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај URL" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-г хуулах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salin URL" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ကို ကူးယူပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier URL" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यू.आर.एल प्रतिलिपि गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopieer URL" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopier URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chotsani URL" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ਕਾਪੀ ਕਰੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skopiuj adres URL" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خپل حساب ID کاپي کړئ بیا دا له خپلو دوستانو سره شریک کړئ چې دوی درسره اړیکه ونیسي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URLs" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar URL" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiați adresa URL" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копировать ссылку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL පිටපත් කරන්න" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopírovať URL" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopjo URL-në" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирај URL" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiraj URL" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopiera URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nakili URL" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLஐ நகலெடு" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL కాపీ చేయండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy URL" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL'yi Kopyala" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копіювати URL" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL کاپی کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ni nusxalash" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sao chép URL" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopa i-URL" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "复制链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "複製連結" + } + } + } + }, + "urlOpen" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oop URL" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "افتح الرابط" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ni aç" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL کھولتی" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адкрыць URL" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори URL" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL খোল" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obriu l'URL" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otevřít odkaz" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Agor URL" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åben URL" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL öffnen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Άνοιγμα URL" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Open URL" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu Malfermi Retadreson" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir URL" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir URL" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas avada URL" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ireki URLa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "باز کردن URL" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avataanko URL?" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buksan ang URL" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ouvrir l'URL" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir URL" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bude URL" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לפתוח קישור" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यूआरएल खोलें" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvori poveznicu" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL megnyitása" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Բացել URL" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka URL" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apri link" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLを開く" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გახსენით URL" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បើក URL" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ತೆರೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL 열기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLê Veke" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sumulula URL" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atverti URL nuorodą" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atvērt URL" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори URL" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL нээх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buka URL" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ဖွင့်ရန်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åpne URL" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL खोल्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL openen" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Åpne URL" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tsegulani URL" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ਖੋਲ੍ਹੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otwórz adres URL" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یو آر ایل خلاصول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir URL" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrir URL" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschide URL" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Открыть ссылку" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvori URL" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඒ.ස.නි. විවෘත" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvoriť URL" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Odpri URL" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hap URL" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отвори URL" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otvorite URL" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öppna URL" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fungua URL" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL திறக்க" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL తెరువు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปิด URL" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL açılsın mı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відкрити URL-адресу" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یو آر ایل کھولیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "URLni ochish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mở URL" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vula i-URL" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "打开链接" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "開啟連結" + } + } + } + }, + "urlOpenBrowser" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit sal in jou blaaier oopmaak." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "سيتم فتح هذا في متصفحك." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu, brauzerinizdə açılacaq." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کے براؤزر میں کھل جائے گا." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта адкрыецца ў вашай браўзеры." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това ще се отвори във вашия браузър." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এটি আপনার ব্রাউজারে খুলবে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Això s'obrirà en el vostre navegador." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto se otevře ve vašem prohlížeči." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bydd hyn yn agor yn eich porwr." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette åbnes i din browser." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dies wird in deinem Browser geöffnet." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό θα ανοίξει στο πρόγραμμα περιήγησής σας." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will open in your browser." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tio malfermiĝos en via retumilo." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto se abrirá en tu navegador." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto se abrirá en tu navegador." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See avaneb teie brauseris." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hau zure arakatzailean irekiko da." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "این در مرورگر شما باز خواهد شد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä avautuu selaimessasi." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bubuksan ito sa iyong browser." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ceci s'ouvrira dans votre navigateur." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto abrirase no teu navegador." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan zai buɗe a burauzan ka." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "זה ייפתח בדפדפן שלך." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "यह आपके ब्राउज़र में खुलेगा।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će se otvoriti u vašem pregledniku." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez a böngésződben fog megnyílni." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա կբացվի ձեր զննարկիչում:" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan membuka di peramban Anda." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Questo link si aprirà nel tuo browser." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "これをブラウザで開きます。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს გაიხსნება თქვენს ბრაუზერში." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This will open in your browser." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇವು ನಿಮ್ಮ ಬ್ರೌಸರ್‌ನಲ್ಲಿ ತೆರೆಯಲಾಗುತ್ತದೆ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이것은 당신의 브라우저에서 열립니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ev bibîne di browserê te de." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kijya kugulika mu browser ymmwe." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai atidarys jūsų naršyklėje." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tas tiks atvērts tavam pārlūkā." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова ќе се отвори во вашиот прелистувач." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ таны хөтөч дээр нээгдэнэ." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan dibuka dalam pelayar anda." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသည် သင့် ဘရောက်ဇာတွင် ဖွင့်ပါမည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette vil åpne i nettleseren din." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यो तपाईंको ब्राउजरमा खुल्ने छ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit wordt in uw browser geopend." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette åpner i nettleseren din." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izi zithamangitsidwa mu osatsegulirani wanu." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਤੁਹਾਡੇ ਬ੍ਰਾਊਜ਼ਰ ਵਿੱਚ ਖੁਲ੍ਹੇਗਾ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zostanie otwarte w przeglądarce." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دا به ستاسو په براوزر کې پرانيستل شي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isso será aberto no seu navegador." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isso abrirá no seu navegador." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceasta se va deschide în browserul tău." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Откроется в вашем браузере." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će se otvoriti u vašem pregledniku." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය ඔබගේ අතිරික්සුවෙහි විවෘත වේ." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toto sa otvorí vo vašom prehliadači." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To se bo odprlo v vašem brskalniku." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo do të hapet në shfletuesin tuaj." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово ће се отворити у вашем прегледачу." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo će se otvoriti u vašem pregledaču." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta kommer att öppna i din webbläsare." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii itafunguliwa kwenye kivinjari chako." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது எனது உலாவியில் திறக்கும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది మీ బ్రౌజర్ లో ఓపెన్ అవుతుంది." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "สิ่งนี้จะเปิดในเบราว์เซอร์ของคุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu tarayıcınızda açılacak." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це відкриється у вашому браузері." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ آپ کے براؤزر میں کھلے گا۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu brauzeringizda ochiladi." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Điều này sẽ mở trong trình duyệt của bạn." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oku kuya kuvula kwisikhangeli sakho." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "该链接将在您的浏览器中打开。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這將在您的瀏覽器中打開。" + } + } + } + }, + "urlOpenDescription" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is jy seker jy wil hierdie URL in jou blaaier oopmaak?

{url}" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "هل أنت متأكد من أنك تريد فتح هذا الرابط في متصفحك؟

{url}" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu URL-ni brauzerinizdə açmaq istədiyinizə əminsiniz?

{url}" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دم کی لحاظ انت کہ ایی URL براؤزر؟

{url}" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы ўпэўненыя, што жадаеце адкрыць гэты URL у вашым браўзэры?

{url}" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сигурен ли си, че искаш да отвориш този URL във браузъра си?

{url}" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "আপনি কি এই URL আপনার ব্রাউজারে খুলতে নিশ্চিত?

{url}" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esteu segur que voleu obrir aquest URL al vostre navegador?

{url}" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opravdu chcete otevřít tuto URL adresu ve vašem prohlížeči?

{url}" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ydych chi'n siŵr eich bod am agor y URL hwn yn eich porwr?

{url}" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på, at du vil åbne denne URL i din browser?

{url}" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bist du sicher, dass du diese URL in deinem Browser öffnen wollen?

{url}" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Σίγουρα θέλετε να ανοίξετε αυτό το URL στο πρόγραμμα περιήγησής σας;

{url}" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to open this URL in your browser?

{url}" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉu vi certas, ke vi volas malfermi ĉi tiun URL en via retumilo?

{url}" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que deseas abrir esta URL en tu navegador?

{url}" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "¿Estás seguro de que quieres abrir está URL en tu navegador?

{url}" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kas soovite avada selle URL-i oma brauseris?

{url}" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziur zaude URL hau zure nabigatzailean ireki nahi duzula?

{url}" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایا مطمین هستید می خواهید این ادرس رو در مرورگر خود باز کنید؟

{url}" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haluatko varmasti avata tämän URL-osoitteen selaimessa?

{url}" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sigurado ka bang nais mong buksan ang URL na ito sa iyong browser?

{url}" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Êtes-vous sûr de vouloir ouvrir cette adresse URL dans votre navigateur web ?

{url}" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tabbata kana so ka buɗe wannan URL a burauzarka?

{url}" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "האם אתה בטוח שברצונך לפתוח כתובת URL זו בדפדפן שלך?

{url}" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "क्या आप वाकई इस यूआरएल को अपने ब्राउज़र में खोलना चाहते हैं?

{url}" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jeste li sigurni da želite otvoriti ovu URL adresu u pregledniku?

{url}" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Biztos, hogy meg szeretnéd nyitni a böngésződben a következő linket?

{url}" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Վստա՞հ եք, որ ցանկանում եք բացել այս URL-ը ձեր դիտարկիչում?

{url}" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apakah Anda yakin ingin membuka URL ini di browser?

{url}" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sei sicuro di voler aprire questo link nel tuo browser?

{url}" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "本当にこのURLをブラウザで開きますか?

{url}" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დარწმუნებული ხართ, რომ გსურთ ამ URL-ის გახსნა თქვენს ბრაუზერში?

{url}" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "តើអ្នកប្រាកដទេថាអ្នកចង់បើក URL នេះនៅក្នុងកម្មវិធីរុករករបស់អ្នក?

{url}" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು ನಿಮ್ಮ ಬ್ರೌಸರ್‌ನಲ್ಲಿ ಈ URL ಅನ್ನು ತೆರೆಯಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?

{url}" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 URL을 브라우저에서 여시겠습니까?

{url}" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu piştrast î ku tu dixwazî vê URL'ê di geroka xwe de veke?

{url}" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oli mukakafu nti oyagala okugulawo URL eno mu browser yo?

{url}" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ar tikrai norite atverti šią URL nuorodą naršyklėje?

{url}" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vai esat pārliecināts, ka vēlaties atvērt šo URL savā pārlūkprogrammā?

{url}" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Дали сте сигурни дека сакате да ја отворите оваа URL адреса во вашиот прелистувач?

{url}" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та энэхүү URL-г таны хөтөч дээр нээхдээ итгэлтэй байна уу?

{url}" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adakah anda yakin anda mahu membuka URL ini dalam pelayar anda?

{url}" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤ URL ကို သင့်ဘရာ့ဇာတွင် ဖွင့်လိုသည်မှာ သေချာပါသလား?

{url}" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du vil åpne denne URL-en i nettleseren din?

{url}" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "के तपाईं यो URL आफ्नो ब्राउजरमा खोल्न निश्चित हुनुहुन्छ?

{url}" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weet u zeker dat u deze URL in uw browser wilt openen?

{url}" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Er du sikker på at du ønskjer å opne denne URL-en i nettlesaren din?

{url}" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mukutsimikizika kuti mukufuna kutsegula ulalo uwu mu msakatuli wanu?

{url}" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ URL ਨੂੰ ਆਪਣੇ ਬ੍ਰਾਊਜ਼ਰ ਵਿੱਚ ਖੋਲ੍ਹਣਾ ਚਾਹੁੰਦੇ ਹੋ?

{url}" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Czy na pewno chcesz otworzyć ten adres URL w przeglądarce?

{url}" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "آیا تاسو ډاډه یاست چې غواړئ دا URL په خپل براوزر کې خلاص کړئ؟

{url}" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem certeza de que deseja abrir esta URL no seu navegador?

{url}" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tem a certeza de que quer abrir este URL no seu browser?

{url}" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ești sigur/ă că dorești să deschizi acest URL în browserul tău?

{url}" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы уверены, что хотите открыть эту ссылку в вашем браузере?

{url}" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jesi li siguran da želiš otvoriti ovaj URL u svom pregledniku?

{url}" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබට මෙම URL එක ඔබේ බ්‍රවුසරයේ විවෘත කිරීමට අවශ්‍ය බව විශ්වාසද?

{url}" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naozaj chcete otvoriť túto URL v prehliadači?

{url}" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ali ste prepričani, da želite odpreti ta URL v vašem brskalniku?

{url}" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "A jeni të sigurt që doni ta hapni këtë URL në shfletuesin tuaj?

{url}" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да ли сте сигурни да желите да отворите овај URL у вашем претраживачу?

{url}" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da li ste sigurni da želite da otvorite ovaj URL u svom internet pregledaču?

{url}" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Är du säker på att du vill öppna denna URL i din webbläsare?

{url}" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una uhakika unataka kufungua URL hii kwenye kivinjari chako?

{url}" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இந்த URL ஐ உங்கள் உலாவியில் திறக்க நீங்கள் உறுதியாக உள்ளீர்களா?

{url}" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు మీ బ్రౌజర్‌లో ఈ URL ను తెరవాలనుకుంటున్నారా?

{url}" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณแน่ใจหรือไม่ว่าต้องการเปิด URL นี้ในเบราว์เซอร์ของคุณ?

{url}" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu URL'yi tarayıcınızda açmak istediğinizden emin misiniz?

{url}" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви впевнені, що хочете відкрити цю URL-адресу у своєму браузері?

{url}" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "کیا آپ واقعی اس لنک کو اپنے براؤزر میں کھولنا چاہتے ہیں؟

{url}" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haqiqatan ham ushbu URLni brauzeringizda ochmoqchimisiz?

{url}" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn có chắc chắn rằng bạn muốn mở URL này trong trình duyệt của bạn?

{url}" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uqinisekile ukuba ufuna ukuvula le URL kwisikhangeli sakho?

{url}" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您确定要在浏览器中打开此链接吗?

{url}" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "您確定要在瀏覽器中打開此連結嗎?

{url}" + } + } + } + }, + "useFastMode" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruik Fast Mode" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "استخدم الوضع السريع" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sürətli rejimi istifadə et" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "فاسٹ موڈ استعمال کریں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выкарыстоўваць хуткі рэжым" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Използвайте Бърз Режим" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ফাস্ট মোড ব্যবহার করুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Feu servir el Mode ràpid" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Použít rychlý režim" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Defnyddiwch Dull Cyflym" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brug Hurtig Tilstand" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schnellen Modus verwenden" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Χρήση Γρήγορης Λειτουργίας" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Fast Mode" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uzi Rapidan Reĝimon" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar modo rápido" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar Modo Rápido" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kasuta kiirrežiimi" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erabili Fast Mode" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "استفاده از حالت سریع" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Käytä nopeaa tilaa" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Fast Mode" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Utiliser le mode rapide" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar Fast Mode" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yi amfani da Yanayin Sauri" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "השתמש במצב המהיר" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "तीव्र मोड इस्तेमाल करे" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristi brzi način" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gyors mód használata" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Օգտագործել արագ ռեժիմը" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gunakan Fast Mode" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usa la Modalità rapida" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "高速モードを使用する" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "დააპტიურეთ Fast Mode" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ប្រើមុខងាររហ័ស" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಫಾಸ್ಟ್ ಮೋಡ್ ಬಳಸಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fast 모드 사용하기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bikaranîna Modê Zû" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kozesa Mode Ey'Obwangu" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Naudoti greitą veikseną" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lietot ātro režīmu" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користи Fast Mode" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Хурдтай горимыг ашиглах" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Guna Fast Mode" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "အမြန်မုဒ်ကို သုံးပါ" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruk rask modus" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "द्रुत मोड प्रयोग गर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gebruik Snelle Modus" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bruk rask modus" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwiritsani Ntchito Fast Mode" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਫਾਸਟ ਮੋਡ ਵਰਤੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Użyj trybu szybkiego" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ګړندۍ حالت وکاروئ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar Modo Rápido" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar Modo Rápido" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folosește modul rapid" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Использовать быстрый режим" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristite Brzi režim" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වේගවත් මාදිලිය භාවිතා කරන්න." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Použiť rýchly režim" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uporabi Fast Mode" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdorni Fast Mode" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Користи Fast Mode" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Koristi Fast Mode" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Använd snabbläge" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tumia Hali ya Haraka" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Fast Mode" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఫాస్ట్ మోడ్ వాడండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช้โหมดเร็ว." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hızlı Modu Kullan" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Використовувати швидкий режим" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "فاسٹ موڈ استعمال کریں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tez rejimdan foydalanish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sử dụng Chế độ Nhanh" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sebenzisa Imowudi Ekhawulezayo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用快速模式" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "使用快速模式" + } + } + } + }, + "video" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "فيديو" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویڈیو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відэа" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভিডিও" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vídeo" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fideo" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Βίντεο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videaĵo" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vídeo" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bideoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویدیو" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidéo" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vídeo" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bidiyo" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "וידיאו" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वीडियो" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videó" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Տեսանյութ" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "動画" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვიდეო" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "វីដេអូ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವೀಡಿಯೊ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동영상" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vîdeo" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidiyo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vaizdo įrašas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဗီဒီယို" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भिडियो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kanema" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵੀਡੀਓ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wideo" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویډیو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vídeo" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vídeo" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දෘශ්‍ය" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காணொளி" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వీడియో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "วิดีโอ." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Відео" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویڈیو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidiyo" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "视频" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "影片" + } + } + } + }, + "videoErrorPlay" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan nie video speel nie." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "غير قادر على تشغيل الفيديو." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video oxudula bilmir." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویڈیو چلانے میں ناکامی۔" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Немагчыма прайграць відэа." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Неуспешно възпроизвеждане на видео." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ভিডিও চালাতে অক্ষম।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "No es pot reproduir el vídeo." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nelze přehrát video." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Methu chwarae fideo." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke afspille video." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videowiedergabe fehlgeschlagen." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αδυναμία αναπαραγωγής βίντεο." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unable to play video." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ne eblas ludi videaĵon." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede reproducir el video." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se puede reproducir el vídeo." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videot ei saa mängida." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ezin da bideoa erreproduzitu." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ناتوان از پخش کردن ویدیو." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videon toisto epäonnistui." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hindi ma-play ang video." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de lire la vidéo." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Non se pode reproducir o vídeo." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ba za a iya kunna bidiyo ba." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "לא ניתן להשמיע וידיאו." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "वीडियो चलाने में असमर्थ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reproducirati videozapis." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videó lejátszása sikertelen." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Չհաջողվեց նվագարկել տեսանյութը։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memutar video." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossibile riprodurre il video." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "動画を再生できません。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ვიდეოს დაკვრა ვერ ხერხდება." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "មិនអាចរំកិលវីដេអូបានទេ។" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ವೀಡಿಯೋ ಆಟವಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동영상을 재생할 수 없습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nebil bikarane vîdeo bimeşe." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tekisobola kuzza vidiyo." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nepavyksta paleisti vaizdo įrašo." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nevar atskaņot video." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не може да се пушти видеото." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Видео тоглуулах боломжгүй байна." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tidak dapat memainkan video." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဗီဒီယိုဖွင့်၍မရနိုင်ပါ။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan ikke spille av video." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "भिडियो प्ले गर्न असमर्थ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kan video niet afspelen." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klarte ikkje å spela av video." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zinatheka kusewera kanema." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵੀਡੀਓ ਚਲਾਉਣ ਲਈ ਅਸਮਰੱਥ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie można odtworzyć wideo." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویډیو غږول نشي." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reproduzir o vídeo." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível reproduzir o vídeo." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videoclipul nu poate fi redat." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Невозможно воспроизвести видео." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reprodukovati video." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "වීඩියෝව පවසන්නට නොහැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nie je možné prehrať video." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videoposnetka ni mogoče predvajati." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk u arrit të luhet video." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Није могуће репродуковати видео." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nije moguće reprodukovati video." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kunde inte spela upp video." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Haiwezi kucheza video." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "காணொளியை இயக்க முடியவில்லை." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "వీడియో ప్లే చేయడం సాధ్యపడదు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "เล่นวิดีโอไม่ได้." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Video oynatılamıyor." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не вдається відтворити відео." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ویڈیو چلانے سے قاصر." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Videoni ijro eta olmayman." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Không thể phát video." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ayikwazi ukudlala ividiyo." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法播放视频。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "無法播放影片。" + } + } + } + }, + "view" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyk" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "عرض" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Göstər" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیکھیں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Выгляд" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Преглед" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "দেখুন" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mostra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobrazit" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gweld" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anzeigen" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προβολή" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vidi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näita" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikusi" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "نمایش" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Näytä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "View" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Afficher" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duba" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "הצג" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "राय" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Megtekintés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դիտում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vedi" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "見る" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ხედი" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បង្ហាញ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "دೃಶ್ಯ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "보기" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bant" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Laba" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rodyti" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skatīt" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прегледај" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Үзэх" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lihat" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ကြည့်ရှုပြီး" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हेर्नुहोस्" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekijken" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vis" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onani" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਵੇਖੋ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobacz" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "ښکاره کول" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ver" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vizualizare" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Просмотреть" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prikaži" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "දැක්ම" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zobraziť" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shihni" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Више" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pregled" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visa" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tazama" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "கான" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "చూడండి" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดู." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Görünüm" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вигляд" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "دیکھیں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ko'rish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xem" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jonga" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "查看" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "檢視" + } + } + } + }, + "waitFewMinutes" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit kan 'n paar minute neem." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "قد يستغرق ذلك بضع دقائق." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu bir neçə dəqiqə çəkə bilər." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "یہ چند منٹ لے سکتا ہے." + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Гэта можа заняць некалькі хвілін." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Това може да отнеме няколко минути." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এই কয়েক মিনিট সময় নিতে পারে।" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Això portarà uns minuts." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Může to trvat několik minut." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gall hyn gymryd ychydig funudau." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette kan tage nogle minutter." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dies kann einige Minuten dauern." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Αυτό μπορεί να διαρκέσει μερικά λεπτά." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This can take a few minutes." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ĉi tio povas daŭri kelkajn minutojn." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto puede tomar unos minutos." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esto puede tomar unos minutos." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "See võib võtta paar minutit." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Honek minutu batzuk har ditzake." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "ممکن است چند دقیقه زمان ببرد." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tämä saattaa viedä hetken." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maaaring tatagal ito ng ilang mga minuto." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cela peut prendre quelques minutes." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isto pode levar uns minutos." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wannan na iya ɗaukar mintuna kaɗan." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "זה עלול לקחת כמה דקות." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "इसमें कुछ मिनटों का समय लगेगा ।" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo može potrajati nekoliko minuta." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ez néhány percig eltarthat." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Սա կարող է մի քանի րոպե տևել։" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini akan memerlukan beberapa menit." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Potrebbe richiedere alcuni minuti." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "数分かかる可能性があります。" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ეს შეიძლება რამდენიმე წუთი მიიღოს." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "This can take a few minutes." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಇದು ಕೆಲವು ನಿಮಿಷಗಳ ಕಾಲ ತೆಗೆದುಕೊಳ್ಳಬಹುದು." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 작업은 몇 분 정도 소요될 수 있습니다." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ev dikare hin hûrmekê hemû, this can take a few minutes." + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kino kuyinza okutwala olonozzi." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tai gali užtrukti kelias minutes." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Var paiet dažas minūtes." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ова може да потрае неколку минути." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Энэ хэдэн минут үргэлжилж болно." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ini boleh mengambil masa beberapa minit." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဤသည် တချို့ မိနစ်များ ကြာနိုင်ပါသည်။" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette kan ta noen minutter." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "यसले केहि मिनेट लिन सक्दछ।" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dit kan een paar minuten duren." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dette kan ta noen minutter." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Izi zitha kutenga mphindi zochepa." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਇਹ ਕੁਝ ਮਿੰਟ ਲੈ ਸਕਦਾ ਹੈ।" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Może to potrwać kilka minut." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "دې څو دقیقې وخت نیولی شی." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isso pode levar alguns minutos." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este processo poderá demorar alguns minutos." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Poate dura câteva minute." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Это может занять несколько минут." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo može potrajati nekoliko minuta." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "මෙය විනාඩි කිහිපයක් ගත විය හැක." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Môže to trvať zopár minút." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "To lahko traja nekaj minut." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo mund të zgjasë disa minuta." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ово може потрајати неколико минута." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ovo može potrajati nekoliko minuta." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detta kan dröja några minuter." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hii inaweza kuchukua dakika chache." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "இது சில நிமிடங்கள் ஆகும்." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఇది కొన్ని నిమిషాలు పడవచ్చు." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "นี่อาจใช้เวลาสักไม่กี่นาที" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu işlem birkaç dakika sürebilir." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Це може зайняти кілька хвилин." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "اس میں کچھ منٹ لگ سکتے ہیں۔" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu bir necha daqiqa davom etishi mumkin." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Quá trình này có thể mất vài phút." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oku kungathatha imizuzu embalwa." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "这可能需要几分钟的时间。" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "這可能需要幾分鐘的時間。" + } + } + } + }, + "waitOneMoment" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een oomblik asseblief..." + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "لحظة واحدة من فضلك..." + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir dəqiqə zəhmət olmasa..." + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک دن اور" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Адзін момант, калі ласка..." + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Моля изчакайте един момент..." + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "এক মুহূর্ত প্লিজ..." + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un moment, si us plau..." + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okamžik prosím..." + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un eiliad os gwelwch yn dda..." + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Et øjeblik, tak..." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Einen Moment bitte..." + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Μια στιγμή παρακαλώ..." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "One moment please..." + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Momenton, Bonvolu..." + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un momento, por favor..." + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un momento, por favor..." + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hetk, palun..." + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Momentu bat mesedez..." + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "یک لحظه صبر کنید..." + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hetkinen, ole hyvä..." + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isang sandali lang..." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un moment, s’il vous plaît..." + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un momento, por favor..." + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da Allah Jira nan gaba..." + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "רגע בבקשה..." + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक पल कृपया..." + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo trenutak..." + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Egy pillanat..." + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Մեկ վայրկյան խնդրում եմ..." + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Silakan menunggu..." + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un attimo, per favore..." + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "少々お待ちください…" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ერთი მომენტი გეთაყვა..." + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "សុំនៅមួយភ្លែត..." + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಒಂದು ಕ್ಷಣ ದಯವಿಟ್ಟು..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잠시만 기다려주세요..." + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kerem bike bi hestî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sikiriike egy’ebita obudde obutono..." + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "One moment please..." + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vienu brīdi, lūdzu..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Момент, Ве молиме..." + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нэг мөч хүлээнэ үү..." + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sebentar please..." + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "တစ်ကြိမျသားစီးမောင်း..." + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett øyeblikk, vær så snill..." + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "एक क्षण पर्खनुहोस्..." + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Een moment geduld aub..." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eitt augneblink..." + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dikirani choncho chabe..." + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਜਰਾਹ ਰੁਕੋ ਜੀ..." + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chwileczkę..." + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "یوه شېبه انتظار وکړئ..." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Um momento, por favor..." + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Um momento por favor..." + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Un moment, vă rog..." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, подождите..." + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jedan trenutak, molim..." + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කුඩා මොහොතක් රැදි සිටින්න..." + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moment, prosím..." + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Trenutek prosim..." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Një moment ju lutem..." + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Само тренутак..." + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Samo trenutak..." + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ett ögonblick..." + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tafadhali subiri..." + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஒரு நிமிடம் தயவுசெய்து..." + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "ఒక క్షణంలొపల దయచేసి..." + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "กรุณารอสักครู่..." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir dakika lütfen..." + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Будь ласка, зачекайте..." + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ایک لمحہ برائے مہربانی..." + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir oz kuting..." + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Một chút thôi..." + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mxolela umzuzwana wenqindi..." + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "请稍候..." + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "請稍候..." + } + } + } + }, + "warning" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waarskuwing" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "تحذير" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xəbərdarlıq" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتباہ" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Папярэджанне" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предупреждение" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warning" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Avís" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varování" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rhybudd" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Advarsel" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warnung" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Προειδοποίηση" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warning" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Averto" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Advertencia" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Advertencia" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hoiatus" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Adierazpena" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "هشدار" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varoitus" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Babala" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attention" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviso" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gargadi" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "אזהרה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "चेतावनी" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozorenje" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Figyelmeztetés" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Զգուշացում" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Peringatan" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attenzione" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "警告" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "გაფრთხილება" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ការព្រមាន" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಎಚ್ಚರಿಕೆ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "경고" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hişyarî" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyeɛjo" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Įspėjimas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Brīdinājums" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предупредување" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Анхааруулга" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Amaran" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warning" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Advarsel" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "चेतावनी" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waarschuwing" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Advarsel" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chenjezo" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਚੇਤਾਵਨੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uwaga" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "خبرداری" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviso" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aviso" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atenţie" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Предупреждение" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozorenje" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "අවවාදයයි" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varovanie" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opozorilo" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paralajmërim" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Упозорење" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upozorenje" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Varning" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Onyo" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "எச்சரிக்கை" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "హెచ్చరిక" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำเตือน" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uyarı" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Попередження" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "انتباہ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ogohlantirish" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cảnh báo" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Isilumkiso" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "警告" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "警告" + } + } + } + }, + "window" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venster" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نافذة" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pəncərə" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ونڈو" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Акно" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прозорец" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finestra" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okno" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ffenestr" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vindue" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fenster" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Παράθυρο" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fenestro" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ventana" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ventana" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aken" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leihoa" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "پنجره" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikkuna" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fenêtre" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Xanela" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "חלון" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "विंडो" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prozor" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ablak" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Պատուհան" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jendela" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Finestra" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "ウィンドウ" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "ფანჯარა" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "ផ្ទាំងបង្អួច" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಕಿಟಕಿ" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "창" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pencere" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enju" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Langas" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Logs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прозорец" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Цонхнууд" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tetingkap" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vindu" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "सञ्झ्याल" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Venster" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vindu" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zenera" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਖਿੜਕੀ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okno" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "کړکۍ" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Janela" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Janela" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fereastră" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Окно" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prozor" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "කවුළුව" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Okno" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dritare" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Прозор" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prozor" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fönster" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dirisha" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "விந்டோ" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "విండో" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "หน้าต่าง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pencere" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вікно" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ونڈو" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oyna" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cửa sổ" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Window" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "窗口" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "視窗" + } + } + } + }, + "yes" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "نعم" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bəli" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "ہاں" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Так" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "হ্যাঁ" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sí" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ano" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Iawn" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ναι" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yes" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jes" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sí" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sí" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jah" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bai" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "بله" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyllä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oo" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oui" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Na'am" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "כן" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "हाँ" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Igen" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Այո" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sì" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "はい" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yes" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "បាទ" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ಹೌದು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "예" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erê" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nedda" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Taip" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jā" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Тийм" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "ဟုတ်ကဲ့" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "हो" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ari" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਹਾਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tak" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "هو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sim" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sim" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔව්" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Áno" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Да" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Da" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ja" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndio" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "ஆம்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "అవును" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช่" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Evet" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Так" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "جی ہاں" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Có" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ewe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "是" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "是" + } + } + } + }, + "you" : { + "extractionState" : "manual", + "localizations" : { + "af" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jy" + } + }, + "ar" : { + "stringUnit" : { + "state" : "translated", + "value" : "أنت" + } + }, + "az" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz" + } + }, + "bal" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما" + } + }, + "be" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы" + } + }, + "bg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ти" + } + }, + "bn" : { + "stringUnit" : { + "state" : "translated", + "value" : "তুমি" + } + }, + "ca" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vós" + } + }, + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy" + } + }, + "cy" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chi" + } + }, + "da" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du" + } + }, + "el" : { + "stringUnit" : { + "state" : "translated", + "value" : "Εσείς" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You" + } + }, + "eo" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi" + } + }, + "es-419" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tú" + } + }, + "es-ES" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tú" + } + }, + "et" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sina" + } + }, + "eu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zuk" + } + }, + "fa" : { + "stringUnit" : { + "state" : "translated", + "value" : "شما" + } + }, + "fi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sinä" + } + }, + "fil" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ikaw" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vous" + } + }, + "gl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti" + } + }, + "ha" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kai" + } + }, + "he" : { + "stringUnit" : { + "state" : "translated", + "value" : "את/ה" + } + }, + "hi" : { + "stringUnit" : { + "state" : "translated", + "value" : "आप" + } + }, + "hr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi" + } + }, + "hu" : { + "stringUnit" : { + "state" : "translated", + "value" : "Te" + } + }, + "hy-AM" : { + "stringUnit" : { + "state" : "translated", + "value" : "Դուք" + } + }, + "id" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda" + } + }, + "it" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu" + } + }, + "ja" : { + "stringUnit" : { + "state" : "translated", + "value" : "あなた" + } + }, + "ka" : { + "stringUnit" : { + "state" : "translated", + "value" : "თქვენ" + } + }, + "km" : { + "stringUnit" : { + "state" : "translated", + "value" : "អ្នក" + } + }, + "kn" : { + "stringUnit" : { + "state" : "translated", + "value" : "ನೀವು" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자" + } + }, + "ku" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu" + } + }, + "lg" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ggwe" + } + }, + "lt" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs" + } + }, + "lv" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jūs" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вие" + } + }, + "mn" : { + "stringUnit" : { + "state" : "translated", + "value" : "Та" + } + }, + "ms" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anda" + } + }, + "my" : { + "stringUnit" : { + "state" : "translated", + "value" : "သင်" + } + }, + "nb" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du" + } + }, + "ne-NP" : { + "stringUnit" : { + "state" : "translated", + "value" : "तपाईं" + } + }, + "nl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uw" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du" + } + }, + "ny" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inu" + } + }, + "pa-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "ਤੁਸੀਂ" + } + }, + "pl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ty" + } + }, + "ps" : { + "stringUnit" : { + "state" : "translated", + "value" : "تاسو" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você" + } + }, + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você" + } + }, + "ro" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tu" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вы" + } + }, + "sh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti" + } + }, + "si-LK" : { + "stringUnit" : { + "state" : "translated", + "value" : "ඔබ" + } + }, + "sk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vy" + } + }, + "sl" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vi" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju" + } + }, + "sr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ти" + } + }, + "sr-RS" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ti" + } + }, + "sv-SE" : { + "stringUnit" : { + "state" : "translated", + "value" : "Du" + } + }, + "sw" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wewe" + } + }, + "ta" : { + "stringUnit" : { + "state" : "translated", + "value" : "நீங்கள்" + } + }, + "te" : { + "stringUnit" : { + "state" : "translated", + "value" : "మీరు" + } + }, + "th" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz" + } + }, + "uk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ви" + } + }, + "ur-IN" : { + "stringUnit" : { + "state" : "translated", + "value" : "آپ" + } + }, + "uz" : { + "stringUnit" : { + "state" : "translated", + "value" : "Siz" + } + }, + "vi" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bạn" + } + }, + "xh" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gwe" + } + }, + "zh-CN" : { + "stringUnit" : { + "state" : "translated", + "value" : "您" + } + }, + "zh-TW" : { + "stringUnit" : { + "state" : "translated", + "value" : "你" + } + } + } + } + }, + "version" : "1.0" +} \ No newline at end of file diff --git a/Session/Meta/Translations/ar.lproj/Localizable.strings b/Session/Meta/Translations/ar.lproj/Localizable.strings deleted file mode 100644 index 1eb604fdbb..0000000000 --- a/Session/Meta/Translations/ar.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "ملف مرفق"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "تعليق"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "نوع الملف: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "الحجم: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "تم بلوغ حد الرسالة"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "أرسل"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "ملف مرفق"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "خطأ في إرسال المرفق"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "غير قادر على تحويل الصوره."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "غير قادر على معالجة الفديو."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "غير قار على تحليل الصورة."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "غير قادر على حذف البيانات الوصفية من الصوره."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "غير قادر على تعديل الصورة."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "حجم المرفق عالي."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "المرفق يحتوي على بيانات غير صحيحة."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "صيغة المرفق غير صالحة."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "المرفق فارغ."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "لقد فشل اختيار الوثيقة."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "الرجاء إنشاء أرشيف مضغوط لهذا الملف أو المجلد ومحاولة إرسال ذلك بدلاً من ذلك."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "ملف غير مدعوم"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "رسالة صوتية"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "حظر"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "منع٪؜@؟"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "فتح المنع٪؜@؟"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "إلغاء الحظر"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ تم حظره"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "تم حظر المستخدم"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "تم حظر المستخدم %@."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "لن يتمكن المستخدمين المحظورين من الاتصال بك أو إرسال رسائل إليك."; -/* Label for generic done button. */ -"BUTTON_DONE" = "تم"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "حدد"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "جاري البحث..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "لا يوجد تطابق"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "مطابقة واحدة"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d من %d مطابقة"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "حظر هذا المستخدم"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "اكتم المحادثة"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "بحث عن محادثة"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "تحريك وتعديل"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "قد يستغرق ذلك بضع دقائق."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "تحسين قاعدة البيانات"; -/* The present; the current time. */ -"DATE_NOW" = "الآن"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "الرسائل المؤقتة"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "تعديل المجموعة"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "ليس لديك أي وسائط في هذه المحادثة."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "جارٍ تحميل الوسائط الأحدث…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "جارٍ تحميل الوسائط الأقدم…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "فشل في جلب GIF. الرجاء التحقق من أنك متصل بالإنترنت."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "حدث خطأ غير معروف."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "تعذر اختيار GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "الرجاء إدخال الكلمة الأساسية للبحث."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "خطأ. اضغط لإعادة المحاولة."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "لا توجد نتائج."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "تم إنشاء المجموعة"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ انضم إلى المجموعة. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ غادر المجموعة. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "تمت إزالة %@ من المجموعة. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "تمت إزالة %@ من المجموعة. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "تم تغيير العنوان إلى '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "تم تحديث المجموعة."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "لقد غادرت المجموعة."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " تمت إزالتك من المجموعة. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "لا يمكنك مشاركة اكثر من %@ عنصر."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "فشل في تحديد المرفق."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "الملف الصوتي غير صالح."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "مغادرة"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "مغادرة المجموعة"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "جميع الوسائط"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "حذف %d رسالة"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "حذف الرسالة"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ في %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "أنت"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "هذا الشهر"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "فشل الإرسال."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "مقروءة"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "جاري الإرسال…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "مُرسل"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "يُرسل ملف…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ إلى %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "ملاحظة شخصية"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "ربما تلقيت رسائل أثناء إعادة تشغيل %@ الخاص بك."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "حسناً"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "عطّل %@ خاصية إختفاء الرسائل التلقائي."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ حدد وقت اختفاء الرسالة إلى %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "غير قادر على إلتقاط الصورة."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "غير قادر على إلتقاط الصورة."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "فشل في تهيئة الكاميرا."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "ألبوم بدون إسم"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "اعتبارها مقروءة"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "رد"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "يرجى المصادقة لفتح التطبيق."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "فشل التحقق"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "حذف الوسائط؟"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "تم تجاهل الوسائط"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@(الافتراضي)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "صوت الرسالة"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "لا شيء "; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ أيام"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@يوم"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ ساعات"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ساعة"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ دقائق"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@دقيقة"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ ثواني"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@ثانية"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ يوم"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ ساعة"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ دقيقة"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ أسبوع"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ أسابيع"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@اسبوع"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "إلغاء"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "حذف"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "رسالة صوتية"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "اضغط باستمرار لتسجيل رسالة صوتية."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "رسالة صوتية"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "لقد قمت بتعطيل خاصية الرسائل المؤقتة."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "قمت بتعيين وقت اختفاء الرسالة إلى %@"; -// MARK: - Session -"continue_2" = "التالي"; -"copy" = "نسخ"; -"invalid_url" = "عنوان URL غير صحيح"; -"next" = "التالي"; -"share" = "مشاركة"; -"invalid_session_id" = "معرف سيشن غير صحيح"; -"cancel" = "إلغاء"; -"your_session_id" = "معرف سيشن الخاص بك"; -"vc_landing_title_2" = "تبدأ جلستك هنا..."; -"vc_landing_register_button_title" = "إنشاء معرف سيشن"; -"vc_landing_restore_button_title" = "استئناف الجَلسة"; -"vc_landing_link_button_title" = "ربط جهاز"; -"view_fake_chat_bubble_1" = "ما (Session)؟"; -"view_fake_chat_bubble_2" = "هو تطبيق مراسلة مشفر, لامركزي"; -"view_fake_chat_bubble_3" = "إذن لا يجمع معلوماتي الشخصية ولا المعلومات حول محادثاتي؟ كيف يعمل؟"; -"view_fake_chat_bubble_4" = "باِستخدام مدمج من تقنيات التشفير من الطرفين و توجيه مجهول المسار للمعلومات."; -"view_fake_chat_bubble_5" = "الأصدقاء لا يتركون أصدقائهم يستعملون تطبيق مراسلة مكشوف. مرحبا بك."; -"vc_register_title" = "رحب بعنوان تعريفك"; -"vc_register_explanation" = "عنوان تعريفك هو عنوان وحيد خاص بك, يمكن للناس الاتصال بك عن طريقه. دون معرفة هويتك الحقيقية, هذا العنوان مصمم ليكون خاص و مجهول."; -"vc_restore_title" = "استرجع حسابك"; -"vc_restore_explanation" = "أدخل عبارة الاسترجاع التي أُعطيت لك عندما سجلت الدخول لاِسترجاع حسابك."; -"vc_restore_seed_text_field_hint" = "أدخل عبارة الاسترجاع"; -"vc_link_device_title" = "ربط جهاز"; -"vc_link_device_scan_qr_code_tab_title" = "امسح رمز الاستجابة السريع"; -"vc_display_name_title_2" = "اختر اسم العرض الخاص بك"; -"vc_display_name_explanation" = "هذا سيكون اِسمك عندما تستخدم Session. قد يكون اِسمك الحقيقي, اِسم مستعار أو اي شئ آخر تريده."; -"vc_display_name_text_field_hint" = "أدخل اسم العرض"; -"vc_display_name_display_name_missing_error" = "الرجاء اختيار اسم العرض"; -"vc_display_name_display_name_too_long_error" = "الرجاء اختيار اسم عرض أقصر"; -"vc_pn_mode_recommended_option_tag" = "مستحسن"; -"vc_pn_mode_no_option_picked_modal_title" = "اِختر"; -"vc_home_empty_state_message" = "ليس لديك أي جهة اتصال بعد"; -"vc_home_empty_state_button_title" = "ابدأ Session"; -"vc_seed_title" = "عبارة الاسترجاع الخاصة بك"; -"vc_seed_title_2" = "هذه هي عبارة الاسترجاع الخاصة بك"; -"vc_seed_explanation" = "عبارة الاسترجاع هي مفتاح لحسابك - يمكنك استخدامها لاسترجاع حسابك إذا فقدت الوصول لجهازك. احفظها في مكان آمن و لا تعطها أي أحد."; -"vc_seed_reveal_button_title" = "انقر مطولاً للكشف"; -"view_seed_reminder_subtitle_1" = "أمّن حسابك بحفظ عبارة استرجاع الحساب"; -"view_seed_reminder_subtitle_2" = "اضغط مع الاستمرار على الكلمات المخفاة للكشف عن عبارة الاسترداد الخاصة بم، ثم خزنها بأمان لحماية حسابك."; -"view_seed_reminder_subtitle_3" = "تأكد من الإحتفاظ بكلمات الإسترجاع الخاصة بك في مكان آمن"; -"vc_path_title" = "مسار"; -"vc_path_explanation" = "يقوم session بإخفاء عنوانIP الخاص بك بتمرير الرسائل عبر عدة خوادم في شبكة Session اللامركزية. هذه هي الدول التي يمر عبرها اتصالك:"; -"vc_path_device_row_title" = "أنت"; -"vc_path_guard_node_row_title" = "نقطة الدخول"; -"vc_path_service_node_row_title" = "نقطة الخدمة"; -"vc_path_destination_row_title" = "الوجهة"; -"vc_path_learn_more_button_title" = "معرفة المزيد"; -"vc_create_private_chat_title" = "رسالة جديدة"; -"vc_create_private_chat_enter_session_id_tab_title" = "أدخِل عنوان التعريف"; -"vc_create_private_chat_scan_qr_code_tab_title" = "امسح رمز الاستجابة السريع"; -"vc_enter_public_key_explanation" = "ابدأ محادثة جديدة بإدخال معرف جلسة شخص ما أو مشاركة معرفك معهم."; -"vc_scan_qr_code_camera_access_explanation" = "تطبيق\"الجلسة\"يحتاج الوصول إلى الكاميرا لمسح رموز الاستجابة السريعة"; -"vc_create_closed_group_title" = "انشئ مجموعة"; -"vc_create_closed_group_text_field_hint" = "أدخل إسم المجموعة"; -"vc_create_closed_group_empty_state_message" = "ليست لديك أية جهات اتصال حتى الآن"; -"vc_create_closed_group_group_name_missing_error" = "الرجاء إدخال إسم للمجموعة"; -"vc_create_closed_group_group_name_too_long_error" = "الرجاء إدخال إسم مجموعة أقصر"; -"vc_create_closed_group_too_many_group_members_error" = "المجموعة المغلقة لا يمكن ان تحتوي على أكثر من ١٠٠ مستخدم"; -"vc_join_public_chat_title" = "انضم إلى مجتمع"; -"vc_join_public_chat_enter_group_url_tab_title" = "رابط المجتمع"; -"vc_join_public_chat_scan_qr_code_tab_title" = "مسح رمز QR"; -"vc_enter_chat_url_text_field_hint" = "أدخل رابط المجتمع"; -"vc_settings_title" = "الإعدادات"; -"vc_group_settings_title" = "إعدادات المجموعة"; -"vc_settings_display_name_missing_error" = "الرجاء إختيار إسم العرض"; -"vc_settings_display_name_too_long_error" = "الرجاء إختيار اسم عرض أقصر"; -"vc_settings_privacy_button_title" = "الخصوصية"; -"vc_settings_notifications_button_title" = "الإشعارات"; -"vc_settings_recovery_phrase_button_title" = "عبارة الاسترجاع"; -"vc_settings_clear_all_data_button_title" = "مسح البيانات"; -"vc_qr_code_title" = "رمز الاستجابة السريع"; -"vc_qr_code_view_my_qr_code_tab_title" = "اظهر لي\"رمز الاستجابة السريع\" الخاص بي"; -"vc_qr_code_view_scan_qr_code_tab_title" = "مسح رمز QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "امسح رمز QR لشخص ما لبدء محادثة معهم"; -"vc_view_my_qr_code_explanation" = "هذا هو رمز QR الخاص بك. يمكن للمستخدمين الآخرين فحصه لبدء جلسة معك."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "الوضع السريع"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "الوضع البطيئ"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "إضافة أعضاء"; -"modal_send_seed_title" = "تحذير"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "إرسل"; -"vc_conversation_settings_notify_for_mentions_only_title" = "إشعار للإشارات فقط"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "حذف لي فقط"; -"delete_message_for_everyone" = "حذف للجميع"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "رد"; -"context_menu_save" = "حفظ"; -"context_menu_ban_user" = "حظر المستخدم"; -"context_menu_ban_and_delete_all" = "حظر وحذف الكل"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "أضافه مرفقات"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "مستند"; -"accessibility_library_button" = "مكتبة الصور"; -"accessibility_camera_button" = "الكاميرا"; -"accessibility_main_button_collapse" = "إغلاق خيارات المرفق"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "تجاهل"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "الإعدادات"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "مكالمة فائتة من %@"; -"APN_Message" = "لديك رسالة جديدة."; -"APN_Collapsed_Messages" = "لديك %@ رسائل جديدة."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/be.lproj/Localizable.strings b/Session/Meta/Translations/be.lproj/Localizable.strings deleted file mode 100644 index dc052ba8f2..0000000000 --- a/Session/Meta/Translations/be.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Далучэнне"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Загаловак"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Тып файла: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Памер: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Дасягнуты ліміт паведамленняў"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Адправіць"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Далучэнне"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Памылка адпраўкі далучэння"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Немагчыма канвертаваць выяву."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Немагчыма апрацаваць відэа."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Немагчыма прааналізаваць выяву."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Немагчыма выдаліць метададзеныя з выявы."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Немагчыма змяніць памер выявы."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Далучэнне занадта вялікае."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Далучэнне змяшчае несапраўдны кантэнт."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Далучэнне мае няправільны фармат файла."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Далучэнне адсутнічае."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Памылка выбару дакумента."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Калі ласка, стварыце сціснуты архіў гэтага файла ці папкі і паспрабуйце адправіць яго."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Тып файла не падтрымліваецца"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Галасавое паведамленне"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Заблакаваць"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Заблакіраваць %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Разблакіраваць %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Разблакіраваць"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ быў заблакіраваны."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Карыстальнік заблакіраваны"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ быў разблакіраваны."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Заблакіраваныя карыстальнікі не змогуць тэлефанаваць вам або адпраўляць вам паведамленні."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Гатова"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Выбраць"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Пошук..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Супадзенні не знойдзеныя"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 матч"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d з %d супадзенняў"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Заблакіраваць гэтага карыстальніка"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Выключыць гук"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Шукаць у размове"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Перасоўванне і маштабаванне"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Гэта можа заняць некалькі хвілін."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Аптымізацыя базы даных"; -/* The present; the current time. */ -"DATE_NOW" = "Зараз"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Знікаючыя паведамленні"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Рэдагаваць групу"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "У вас няма медыя ў гэтай размове."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Загрузка новых медыя…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Загрузка старых медыя…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Не атрымалася атрымаць запытаны GIF. Упэўніцеся, што вы знаходзіцеся ў Інтэрнэце."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Адбылася невядомая памылка."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Немагчыма выбраць GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Калі ласка, увядзіце тэкст для пошуку."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Памылка. Націсніце, каб паўтарыць спробу."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Нічога не знойдзена."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Група створана"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ далучыўся да групы. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ пакінуў групу. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ выдалены з групы. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ былі выдалены з групы. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Назва зменена на '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Група абноўлена."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Вы пакінулі групу."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Вас выдалілі з групы. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Вы не можаце падзяліцца больш, чым %@ элементамі."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Не ўдалося выбраць далучэнне."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Некарэктны аўдыяфайл."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Пакінуць"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Пакінуць групу"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Усе медыя"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Выдаліць %d паведамленняў"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Выдаліць паведамленне"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ на %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Вы"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "У гэтым месяцы"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Не ўдалося адправіць."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Прачытана"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Адпраўка…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Даслана"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Загрузка…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ да %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Захаванае"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Заданне можа быць адноўлена з паведамленнямі пасля перазапуску."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Добра"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ адключыў(ла) знікальныя паведамленні."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ паставіў(ла) таймер знікнення паведамлення на %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Немагчыма зрабіць здымак."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Немагчыма зрабіць здымак."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Не атрымалася наладзіць камеру."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Безыменны альбом"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Пазначыць як прачытанае"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Адказаць"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Аўтэнтыфікацыя для адкрыцця Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Не ўдалося ідэнтыфікавацца"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Адхіліць медыя?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Адхіліць медыя"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (па змаўчанні)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Гук паведамлення"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Няма"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ дзён"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@д"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ гадзін"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@г"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ хвілін"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@хв"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ секунд"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@с"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ дзень"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ гадзіна"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ хвіліна"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ тыдзень"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ тыдняў"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@т"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Скасаваць"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Выдаліць"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Галасавое паведамленне"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Націсніце і ўтрымлівайце, каб запісаць галасавое паведамленне."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Галасавое паведамленне"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Вы адключылі знікальныя паведамленні."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Вы паставілі таймер знікнення паведамлення на %@"; -// MARK: - Session -"continue_2" = "Працягнуць"; -"copy" = "Скапіяваць"; -"invalid_url" = "Памылковы URL адрэс"; -"next" = "Далей"; -"share" = "Абагуліць"; -"invalid_session_id" = "Памылковы Session ID"; -"cancel" = "Скасаваць"; -"your_session_id" = "Ваш Session ID"; -"vc_landing_title_2" = "Ваш Session пачынаецца тут..."; -"vc_landing_register_button_title" = "Стварыць Session ID"; -"vc_landing_restore_button_title" = "Увайдзіце ва ўліковы запіс"; -"vc_landing_link_button_title" = "Злучыць прыладу"; -"view_fake_chat_bubble_1" = "Што такое Session?"; -"view_fake_chat_bubble_2" = "Гэта дэцэнтралізаваны, шыфраваны мэсэнджар"; -"view_fake_chat_bubble_3" = "Выходзіць, ён не збірае мае асабістыя звесткі ці метаданыя размовы? Як гэта працуе?"; -"view_fake_chat_bubble_4" = "Ён выкарыстоўвае камбінацыю ананімнага маршрутызавання і скразнога шыфравання."; -"view_fake_chat_bubble_5" = "Сябры не даюць сябрам карыстацца скампраметаванымі месенджарамі. На спажытак."; -"vc_register_title" = "Прывітайцесь з Вашым Session ID"; -"vc_register_explanation" = "Ваш Session ID гэта ўнікальны адрас, які можа выкарыстоўвацца каб звязацца з Вамі ў Session. Без прывязкі да Вашай сапраўднай асобы, Session ID спраектаваны цалкам ананімным і прыватным."; -"vc_restore_title" = "Аднавіць уліковы запіс"; -"vc_restore_explanation" = "Увядзіце фразу аднаўлення, якую Вы атрымалі падчас рэгістрацыі, каб аднавіць свой уліковы запіс."; -"vc_restore_seed_text_field_hint" = "Увядзіце сваю фразу аднаўлення"; -"vc_link_device_title" = "Злучыць прыладу"; -"vc_link_device_scan_qr_code_tab_title" = "Сканаваць QR-код"; -"vc_display_name_title_2" = "Выберыце імя для паказу"; -"vc_display_name_explanation" = "Гэта будзе Ваша імя ў Session. Вы можаце выкарыстаць сапраўднае імя, мянушку, або штосьці іншае."; -"vc_display_name_text_field_hint" = "Увядзіце імя для адлюстравання"; -"vc_display_name_display_name_missing_error" = "Калі ласка, абярыце імя для адлюстравання"; -"vc_display_name_display_name_too_long_error" = "Калі ласка, абярыце карацейшае імя для адлюстравання"; -"vc_pn_mode_recommended_option_tag" = "Рэкамендавана"; -"vc_pn_mode_no_option_picked_modal_title" = "Калі ласка, абярыце варыянт"; -"vc_home_empty_state_message" = "Вы пакуль не маеце кантактаў"; -"vc_home_empty_state_button_title" = "Пачаць гутарку"; -"vc_seed_title" = "Ваша фраза аднаўлення"; -"vc_seed_title_2" = "А вось і ваша сакрэтная фраза для аднаўлення"; -"vc_seed_explanation" = "Ваша фраза аднаўлення гэта галоўны ключ да вашага Session ID — Вы можаце выкарыстаць яе для аднаўлення Вашага Session ID, калі згубіце доступ да сваёй прылады. Захоўвайце сваю фразу аднаўлення ў бяспечным месцы і нікому не перадавайце."; -"vc_seed_reveal_button_title" = "Націсніце, каб адкрыць"; -"view_seed_reminder_subtitle_1" = "Абараніце Ваш уліковы запіс, захаваўшы фразу аднаўлення"; -"view_seed_reminder_subtitle_2" = "Націсніце і ўтрымлівайце вылучаныя словы, каб адкрыць фразу аднаўлення, а затым захавайце яе для абароны Session ID."; -"view_seed_reminder_subtitle_3" = "Пераканайцеся, што захавалі фразу аднаўлення ў бяспечным месцы"; -"vc_path_title" = "Шлях"; -"vc_path_explanation" = "Session хавае ваш IP-адрас, накіроўваючы вашы паведамленні праз некалькі сэрвісных вузлоў у дэцэнтралізаванай сетцы Session. Гэта краіны, праз якія зараз праходзіць ваша злучэнне:"; -"vc_path_device_row_title" = "Вы"; -"vc_path_guard_node_row_title" = "Уваходны вузел"; -"vc_path_service_node_row_title" = "Сэрвісны вузел"; -"vc_path_destination_row_title" = "Месца прызначэння"; -"vc_path_learn_more_button_title" = "Даведацца больш"; -"vc_create_private_chat_title" = "Новае паведамленне"; -"vc_create_private_chat_enter_session_id_tab_title" = "Увядзіце Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Сканаваць QR-код"; -"vc_enter_public_key_explanation" = "Пачaць новую размову, увёўшы чыйсьці Session ID, або падзяліўшыся вашым Session ID."; -"vc_scan_qr_code_camera_access_explanation" = "Session патрэбен дазвол на камеру для сканавання QR-кодаў"; -"vc_create_closed_group_title" = "Стварыць групу"; -"vc_create_closed_group_text_field_hint" = "Увядзіце назву групы"; -"vc_create_closed_group_empty_state_message" = "Вы пакуль не маеце кантактаў"; -"vc_create_closed_group_group_name_missing_error" = "Калі ласка, увядзіце назву групы"; -"vc_create_closed_group_group_name_too_long_error" = "Калі ласка, увядзіце карацейшую назву групы"; -"vc_create_closed_group_too_many_group_members_error" = "Закрытая суполка не можа мець больш за 100 удзельнікаў"; -"vc_join_public_chat_title" = "Далучайцеся да супольнасці"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL супольнасці"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Сканаваць QR-код"; -"vc_enter_chat_url_text_field_hint" = "Увядзіце URL супольнасці"; -"vc_settings_title" = "Налады"; -"vc_group_settings_title" = "Налады групы"; -"vc_settings_display_name_missing_error" = "Калі ласка, абярыце імя для адлюстравання"; -"vc_settings_display_name_too_long_error" = "Калі ласка, абярыце карацейшае імя для адлюстравання"; -"vc_settings_privacy_button_title" = "Прыватнасць"; -"vc_settings_notifications_button_title" = "Апавяшчэнні"; -"vc_settings_recovery_phrase_button_title" = "Фраза аднаўлення"; -"vc_settings_clear_all_data_button_title" = "Сцерці даныя"; -"vc_qr_code_title" = "QR-код"; -"vc_qr_code_view_my_qr_code_tab_title" = "Праглядзець мой QR-код"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Сканаваць QR-код"; -"vc_qr_code_view_scan_qr_code_explanation" = "Праскануйце чыйсьці QR-код каб пачаць з імі гутарку"; -"vc_view_my_qr_code_explanation" = "Гэта Ваш QR-код. Іншыя карыстальнікі могуць прасканаваць яго каб пачаць з Вамі сесію."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Вы будзеце атрымліваць апавяшчэнні аб новых паведамленнях надзейна і адразу ж з дапамогай сервераў апавяшчэнняў Apple."; -"fast_mode" = "Хуткі рэжым"; -"slow_mode_explanation" = "Session будзе перыядычна правяраць наяўнасць новых паведамленняў у фонавым рэжыме."; -"slow_mode" = "Павольны рэжым"; -"vc_pn_mode_title" = "Апавяшчэнні пра паведамленні"; -"vc_link_device_recovery_phrase_tab_title" = "Фраза аднаўлення"; -"vc_link_device_scan_qr_code_explanation" = "Перайдзіце да Налады → Фраза Аднаўлення на вашай іншай прыладзе, каб паказаць Ваш QR-код."; -"vc_enter_recovery_phrase_title" = "Фраза аднаўлення"; -"vc_enter_recovery_phrase_explanation" = "Каб звязаць вашу прыладу, увядзіце сакрэтную фразу, якая была прадстаўлена вам пры рэгістрацыі."; -"vc_enter_public_key_text_field_hint" = "Увядзіце Session ID або імя ONS"; -"admin_group_leave_warning" = "Так як вы з'яўляецеся стваральнікам гэтай групы, яна будзе выдалена для ўсіх. Гэта нельга будзе адмяніць."; -"vc_join_open_group_suggestions_title" = "Або далучыцеся да аднаго з гэтых..."; -"vc_settings_invite_a_friend_button_title" = "Запрасіць сябра"; -"copied" = "Скапіравана"; -"vc_conversation_settings_copy_session_id_button_title" = "Скапіяваць Session ID"; -"vc_conversation_input_prompt" = "Паведамленне"; -"vc_conversation_voice_message_cancel_message" = "Правядзіце каб скасаваць"; -"modal_download_attachment_title" = "Давяраць %@?"; -"modal_download_attachment_explanation" = "Вы ўпэўненыя, што жадаеце загрузіць медыя, дасланае %@?"; -"modal_download_button_title" = "Спампаваць"; -"modal_open_url_title" = "Адкрыць URL?"; -"modal_open_url_explanation" = "Вы ўпэўненыя, што жадаеце адкрыць %@?"; -"modal_open_url_button_title" = "Адкрыць"; -"modal_copy_url_button_title" = "Капіраваць спасылку"; -"modal_blocked_title" = "Разблакіраваць %@?"; -"modal_blocked_explanation" = "Вы ўпэўненыя што жадаеце разблакіраваць %@?"; -"modal_blocked_button_title" = "Разблакіраваць"; -"modal_link_previews_title" = "Уключыць перадпрагляды спасылак?"; -"modal_link_previews_explanation" = "Уключэнне прадпрагляду спасылак пакажа прэв'ю для спасылак, якія адпраўляюцца і атрымліваюцца. Гэта можа быць карысна, але Session трэба будзе злучыцца з сайтамі, звязанымі са спасылкамі, каб згенераваць перадпрагляд. Вы заўсёды можаце адключыць перадпрагляд спасылак у наладах Session."; -"modal_link_previews_button_title" = "Уключыць"; -"vc_share_title" = "Падзяліцца ў Session"; -"vc_share_loading_message" = "Падрыхтоўка ўкладанняў..."; -"vc_share_sending_message" = "Адпраўка..."; -"vc_share_link_previews_unsecure" = "Папярэдні прагляд не загружаны з-за небяспечнай спасылкі"; -"vc_share_link_previews_error" = "Немагчыма загрузіць папярэдні прагляд"; -"vc_share_link_previews_disabled_title" = "Папярэдні прагляд спасылак адключаны"; -"vc_share_link_previews_disabled_explanation" = "Уключэнне папярэдняга прагляду спасылак адлюструе папярэдні прагляд спасылак, якімі вы абагульваеце. Гэта можа быць карысна, але Session трэба будзе звязацца з вэб-сайтамі, каб стварыць папярэдні прагляд.\n\nВы можаце ўключыць папярэдні прагляд спасылак у наладах Session."; -"view_open_group_invitation_description" = "Запрашэнне да адкрытай суполкі"; -"vc_conversation_settings_invite_button_title" = "Дадаць удзельнікаў"; -"modal_send_seed_title" = "Папярэджанне"; -"modal_send_seed_explanation" = "Гэта Ваша фраза аднаўлення. Калі вы дашляце яе камусьці, яны мецьмуць поўны доступ да Вашага ўліковага запісу."; -"modal_send_seed_send_button_title" = "Адправіць"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Апавяшчэнне толькі для згадак"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Калі гэта ўключана, вы будзеце атрымліваць апавяшчэнні толькі аб паведамленнях, у якіх вы згадваецеся."; -"view_conversation_title_notify_for_mentions_only" = "Апавяшчэнне толькі для згадак"; -"message_deleted" = "Гэта паведамленне было выдалена"; -"delete_message_for_me" = "Выдаліць толькі для мяне"; -"delete_message_for_everyone" = "Выдаліць для ўсіх"; -"delete_message_for_me_and_recipient" = "Выдаліць для мяне і %@"; -"context_menu_reply" = "Адказаць"; -"context_menu_save" = "Захаваць"; -"context_menu_ban_user" = "Забараніць карыстальніка"; -"context_menu_ban_and_delete_all" = "Забараніць і выдаліць усе"; -"context_menu_ban_user_error_alert_message" = "Немагчыма заблакіраваць карыстальніка"; -"accessibility_expanding_attachments_button" = "Дадайце ўкладанні"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Дакумент"; -"accessibility_library_button" = "Фотагалерэя"; -"accessibility_camera_button" = "Камера"; -"accessibility_main_button_collapse" = "Згарнуць параметры далучэння"; -"invalid_recovery_phrase" = "Няправільная фраза аднаўлення"; -"DISMISS_BUTTON_TEXT" = "Адхіліць"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Налады"; -"call_outgoing" = "Вы патэлефанавалі"; -"call_incoming" = "%@ тэлефанаваў(ла) Вам"; -"call_missed" = "Прапушчаны выклік ад %@"; -"APN_Message" = "Вы атрымалі новае паведамленне."; -"APN_Collapsed_Messages" = "У вас %@ новых паведамленняў."; -"PIN_BUTTON_TEXT" = "Замацаваць"; -"UNPIN_BUTTON_TEXT" = "Адмацаваць"; -"modal_call_missed_tips_title" = "Выклік прапушчаны"; -"modal_call_missed_tips_explanation" = "Прапушчаны выклік ад \"%@\", таму што вам трэба было ўключыць дазвол \"Галасавыя і відэавыклікі\" у наладах прыватнасці."; -"media_saved" = "%@ захаваў(ла) медыя."; -"screenshot_taken" = "%@ зрабіў(ла) скрыншот."; -"SEARCH_SECTION_CONTACTS" = "Кантакты & Групы"; -"SEARCH_SECTION_MESSAGES" = "Паведамленне"; -"MESSAGE_REQUESTS_TITLE" = "Запыты на паведамленні"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Няма чаканых запытаў паведамленняў"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Ачысціць усё"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Вы ўпэўнены, што жадаеце выдаліць усе запыты на паведамленні і запрашэнні ў групы?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Ачысьціць"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Вы ўпэўнены, што жадаеце выдаліць гэты запыт на паведамленне?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Вы ўпэўненыя, што жадаеце заблакіраваць гэты кантакт?"; -"MESSAGE_REQUESTS_INFO" = "Адпраўка паведамлення гэтаму карыстальніку аўтаматычна прыме іх запыт на паведамленне і раскрые ваш Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Ваш запыт на паведамленне быў прыняты."; -"MESSAGE_REQUESTS_NOTIFICATION" = "У вас ёсць запыт на новае паведамленне"; -"TXT_HIDE_TITLE" = "Схаваць"; -"TXT_DELETE_ACCEPT" = "Прыняць"; -"TXT_BLOCK_USER_TITLE" = "Заблакіраваць карыстальніка"; -"ALERT_ERROR_TITLE" = "Памылка"; -"modal_call_permission_request_title" = "Неабходныя дазволы на выклік"; -"modal_call_permission_request_explanation" = "Вы можаце ўключыць дазвол «Галасавыя і відэазванкі» у наладах прыватнасці."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "На жаль, адбылася памылка"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Паўтарыце спробу пазней"; -"LOADING_CONVERSATIONS" = "Загрузка размоў..."; -"DATABASE_MIGRATION_FAILED" = "Адбылася памылка пры аптымізацыі базы дадзеных\n\nВы можаце экспартаваць летапісы праграмы, каб мець магчымасць абагуліць іх для ліквідацыі непаладак, або вы можаце аднавіць вашу прыладу\n\nПапярэджанне: аднаўленне вашай прылады прывядзе да страты любых даных, старэйшых за два тыдні"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Нешта пайшло не так. Калі ласка, праверце фразу для аднаўлення і паўтарыце спробу."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Здаецца, вы ўвялі недастаткова слоў. Калі ласка, праверце фразу для аднаўлення і паўтарыце спробу."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Выглядае, што ў вашай фразе аднаўлення адсутнічае апошняе слова. Праверце, што вы ўвялі, і паспрабуйце яшчэ раз."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Падобна, што ў вашай фразе ўзнаўлення маецца недапушчальнае слова. Праверце, што вы ўвялі, і паспрабуйце яшчэ раз."; -"RECOVERY_PHASE_ERROR_FAILED" = "Ваша сакрэтная фраза для аднаўлення не можа быць праверана. Калі ласка, праверце, што вы ўвялі і паспрабуйце яшчэ раз."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Няма доступу да аўтэнтыфікацыі."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Не ўдалося аўтэнтыфікавацца."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Занадта шмат няўдалых спроб аўтэнтыфікацыі. Калі ласка, паспрабуйце пазней."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Для выкарыстання блакіроўкі экрана неабходна ўключыць пароль у наладах iOS."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Для выкарыстання блакіроўкі экрана неабходна ўключыць пароль у наладах iOS."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Для выкарыстання блакіроўкі экрана неабходна ўключыць пароль у наладах iOS."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Адправіць"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Паўтарыць"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Паказаць чат"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Ваша паведамленне не можа быць адпраўлена."; -"INVALID_SESSION_ID_MESSAGE" = "Калі ласка, праверце Session ID і паспрабуйце зноў."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Калі ласка, праверце фразу аднаўлення і паспрабуйце яшчэ раз."; -"MEDIA_TAB_TITLE" = "Медыя"; -"DOCUMENT_TAB_TITLE" = "Дакументы"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "У вас няма дакументаў у гэтай размове."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Загрузка новага дакумента…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Загрузка старога дакумента…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Актыўнасці"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Жывёлы & прырода"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Сцягі"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Ежа & напоі"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Аб'екты"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Нядаўнія"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Усмешкі і людзі"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Сімвалы"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Падарожжы і месцы"; -"EMOJI_REACTS_NOTIFICATION" = "%@ адказаў на паведамленне з %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "І яшчэ 1 карыстальнік адрэагаваў %@ на гэта паведамленне."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "І %@ іншых карыстальнікаў адрэагавалі %@ на гэта паведамленне."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Павольней! Вы адправілі занадта шмат рэакцый на эмодзі. Паўтарыце спробу пазней."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Новая гутарка"; -"CREATE_GROUP_BUTTON_TITLE" = "Стварыць"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Далучыцца"; -"PRIVACY_TITLE" = "Прыватнасць"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Бяспека экрану"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Заблакіраваць Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Патрабаваць Touch ID, Face ID або код доступу, каб разблакіраваць сеанс."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Прагляд справаздач"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Прагляд справаздач"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Дасылайце справаздачы пра чытанне ў асабістых размовах."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Індыкатары ўвода"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Індыкатары ўвода"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Глядзіце і перадавайце індыкатар набору ў асабістых размовах."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Папярэдні прагляд спасылак"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Адправіць папярэдні прагляд спасылкі"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Генераваць прадпрагляд спасылак для падтрымліваемых URL."; -"PRIVACY_SECTION_CALLS" = "Званкі (бэта)"; -"PRIVACY_CALLS_TITLE" = "Галасавыя і відэазванкі"; -"PRIVACY_CALLS_DESCRIPTION" = "Дае магчымасць рабіць галасавыя і відэазванкі іншым карыстальнікам."; -"PRIVACY_CALLS_WARNING_TITLE" = "Галасавыя і відэазванкі (бэта)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Ваш IP-адрас бачны суразмоўцу і серверу Oxen Foundation пры выкарыстанні бэта-званкоў. Вы ўпэўнены, што жадаеце ўключыць галасавыя і відэазванкі?"; -"NOTIFICATIONS_TITLE" = "Апавяшчэнні"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Стратэгія апавяшчэнняў"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Выкарыстоўваць хуткі рэжым"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Вы атрымаеце апавяшчэнне аб новым паведамленні надзейна і неадкладна з дапамогай сервераў апавяшчэнняў Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Перайсці ў сістэмныя налады апавяшчэнняў"; -"NOTIFICATIONS_SECTION_STYLE" = "Стыль апавяшчэнняў"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Гук"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Гук, калі праграма адкрыта"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Змест апавяшчэння"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Інфармацыя, якая адлюстроўваецца ў апавяшчэннях."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Імя & Змест"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Толькі імя"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Без імя або змесціва"; -"CONVERSATION_SETTINGS_TITLE" = "Размовы"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Абрэзка паведамленняў"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Абрэжце супольніцтва"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Выдаляць паведамленні старэйшыя за 6 месяцаў з супольнасцяў, у якіх больш за 2000 паведамленняў."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Аўдыяпаведамлення"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Аўтапрайграванне аўдыёпаведамленняў"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Аўтапрайграванне паслядоўных аўдыёпаведамленняў."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Блакіраваныя кантакты"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "У вас няма заблакіраваных кантактаў."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Разблакіраваць"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Вы ўпэўненыя што жадаеце разблакіраваць %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "гэты кантакт"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Вы ўпэўненыя што жадаеце разблакіраваць %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "і %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "і яшчэ %d іншых?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Разблакіраваць"; -"APPEARANCE_TITLE" = "Знешні выгляд"; -"APPEARANCE_THEMES_TITLE" = "Тэмы"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Асноўны колер"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Як справы?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Я ў парадку, дзякуй. Што наконт цябе?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Я ў парадку, дзякуй."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Аўтаматычны начны рэжым"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Выкарыстоўвайце налады сістэмны"; -"HELP_TITLE" = "Дапамога"; -"HELP_REPORT_BUG_TITLE" = "Паведаміць пра хібу"; -"HELP_REPORT_BUG_DESCRIPTION" = "Экспартуйце свае часопісы, затым загрузіце файл у службу падтрымкі Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Экспартаваць часопісы"; -"HELP_TRANSLATE_TITLE" = "Перакласці Session"; -"HELP_FEEDBACK_TITLE" = "Мы будзем рады вашаму водгуку"; -"HELP_FAQ_TITLE" = "Частыя пытанні"; -"HELP_SUPPORT_TITLE" = "Падтрымка"; -"modal_clear_all_data_title" = "Сцерці ўсе даныя"; -"modal_clear_all_data_explanation" = "Гэта прывядзе да незваротнага выдалення вашых паведамленняў і кантактаў. Вы жадаеце сцерці толькі гэту прыладу ці таксама выдаліць свае даныя з сеткі?"; -"modal_clear_all_data_explanation_2" = "Вы ўпэўнены, што жадаеце сцерці даныя з сеткі? Калі вы працягнеце, вы не зможаце аднавіць свае паведамленні або кантакты."; -"modal_clear_all_data_device_only_button_title" = "Сцерці толькі на прыладзе"; -"modal_clear_all_data_entire_account_button_title" = "Сцерці на прыладзе і ў сетцы"; -"dialog_clear_all_data_deletion_failed_1" = "Дадзеныя не выдаляюцца адным сэрвісным вузлом. Ідэнтыфікатар сэрвіснага вузла: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Дадзеныя не выдалены %@ сэрвіснымі вузламі. Ідэнтыфікатары сэрвісных вузлоў: %@."; -"modal_clear_all_data_confirm" = "Сцерці"; -"modal_seed_title" = "Ваша фраза аднаўлення"; -"modal_seed_explanation" = "Вы можаце выкарыстоўваць фразу для аднаўлення ўліковага запісу або спалучэння прылады."; -"modal_permission_explanation" = "Для працягу сеансу патрабуецца доступ да %@. Вы можаце дазволіць доступ у наладах iOS."; -"modal_permission_settings_title" = "Налады"; -"modal_permission_camera" = "камера"; -"modal_permission_microphone" = "мікрафон"; -"modal_permission_library" = "бібліятэкі"; -"DISAPPEARING_MESSAGES_OFF" = "Выкл."; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Выкл."; -"COPY_GROUP_URL" = "Скапіраваць URL групы"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Кантакты"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Калі ласка абярыце прынамсі аднаго ўдзельніка групы"; -"GROUP_CREATION_PLEASE_WAIT" = "Калі ласка, пачакайце, пакуль ствараецца група..."; -"GROUP_CREATION_ERROR_TITLE" = "Не атрымалася стварыць групу"; -"GROUP_CREATION_ERROR_MESSAGE" = "Калі ласка, праверце злучэнне з інтэрнэтам і паспрабуйце яшчэ раз."; -"GROUP_UPDATE_ERROR_TITLE" = "Не ўдалося абнавіць групу"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Нельга пакінуць пры даданні або выдаленні іншых удзельнікаў."; -"GROUP_ACTION_REMOVE" = "Выдаліць"; -"GROUP_TITLE_MEMBERS" = "Удзельнікі"; -"GROUP_TITLE_FALLBACK" = "Група"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Адпраўляць паведамленні карыстальнікам са схаванымі ідэнтыфікатарамі можна толькі ўнутры групы"; -"DM_ERROR_INVALID" = "Калі ласка, праверце Session ID або ONS імя і паспрабуйце зноў"; -"COMMUNITY_ERROR_INVALID_URL" = "Калі ласка, праверце URL, які вы ўвялі, і паўтарыце спробу."; -"COMMUNITY_ERROR_GENERIC" = "Не ўдалося далучыцца"; -"DISAPPERING_MESSAGES_TITLE" = "Знікаючыя паведамленні"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Тып выдалення"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Знікае пасля чытання"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Паведамленні выдаляюцца пасля іх прачытання."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Знікае пасля адпраўкі"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Паведамленні выдаляюцца пасля іх адпраўкі."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Таймер"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Задаць"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Гэты параметр прымяняецца да ўсіх у гэтай размове."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Гэты параметр прымяняецца да ўсіх у гэтай размове.\nТолькі адміністратары групы могуць змяніць гэты параметр."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ усталяваў знікненне паведамленняў %@ пасля таго, як яны былі %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ змяніў паведамленні, каб яны выдаляліся %@ пасля таго, як яны былі %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ адключыў выдаленне паведамленняў"; - -/* context_menu_info */ -"context_menu_info" = "Інфармацыя"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Адбылася памылка падчас адкрыцця базы дадзеных\n\nВы можаце экспартаваць часопісы праграмы, каб абагуліць іх для ліквідацыі непаладак, або вы можаце паспрабаваць аднавіць вашу прыладу\n\nПапярэджанне: аднаўленне вашай прылады прывядзе да страты любых даных, старэйшых за два тыдні"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "Запуск праграмы займае шмат часу\n\nВы можаце працягваць чакаць запуску праграмы, экспартаваць часопісы праграмы, каб абагуліць іх для ліквідацыі непаладак, або паспрабаваць адкрыць праграму яшчэ раз"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Выйсці"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Адбылася памылка падчас адкрыцця адноўленай базы дадзеных\n\nВы можаце экспартаваць часопісы праграмы, каб абагуліць іх для ліквідацыі непаладак, але каб працягваць выкарыстоўваць Session, магчыма, спатрэбіцца пераўсталяваць яго"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Не ўдалося знайсці арыгінальнае паведамленне."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Згарнуць"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Запыты на паведамленні"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Запыт на паведамленне ў супольнасці"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Дазволіць запыты паведамленняў ад супольнасцей."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Вы зможаце адпраўляць галасавыя паведамленні і ўкладанні пасля таго, як атрымальнік ухваліць гэты запыт на паведамленне"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Адпраўка"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Даслана"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Прачытана"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Не атрымалася адправіць"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Даслана"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Атрымана"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Ад"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID файла"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Тып файла"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Памер файла"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Разрозненне"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Працягласць"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Немагчыма выканаць сінхранізацыю"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Ідзе сінхранізацыя"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Немагчыма адправіць паведамленне"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Не ўдалося сінхранізаваць паведамленні з вашымі іншымі прыладамі"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Выдаліць з усіх маіх прылад"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Адправіць паўторна"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Сінхранізаваць паўторна"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Шукаеце GIF?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session падключыцца да Giphy для прадастаўлення вынікаў пошуку. Вы не будзеце мець поўнай абароны метададзеных пры адпраўцы GIF-файлаў."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Інфармацыя аб паведамленні"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Выключыць гук"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Уключыць гук"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Пазначыць як прачытанае"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Пазначыць непрачытаным"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Пакінуць групу"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Пакінуць суполку"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Вы ўпэўнены, што жадаеце выйсці з %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Пакідаем..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Не ўдалося пакінуць групу!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Немагчыма пакінуць групу, паспрабуйце яшчэ раз"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Выдаліць групу"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Вы ўпэўнены, што жадаеце выдаліць %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Выдаліць размову"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Вы ўпэўнены, што жадаеце выдаліць размову з %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Захаванае"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Вы ўпэўнены, што жадаеце схаваць %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Усталюйце выяву для адлюстравання"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Захаваць"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Выдаліць"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Немагчыма выдаліць выяву"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Перавышаны максімальны памер файла"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Выберыце меншы памер фота і паўтарыце спробу"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Не ўдалося абнавіць профіль"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Калі ласка, праверце злучэнне з інтэрнэтам і паспрабуйце яшчэ раз"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Увядзіце імя"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Непрачытаныя паведамленні"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "У вас няма паведамленняў ад %@. Адпраўце паведамленне, каб пачаць размову!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "У %@ няма паведамленняў."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "У вас няма паведамленняў у %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ заблакіраваў запыты паведамленняў ад суполак, таму вы не можаце адпраўляць яму паведамленні."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Некаторыя з вашых прылад выкарыстоўваюць састарэлую версію. Сінхранізацыя можа быць ненадзейнай, пакуль яны не будуць абноўлены."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Пры спробе загрузіць пароль аднаўлення адбылася памылка.\n\nКалі ласка, экспартуйце свае часопісы, а затым загрузіце файл у службу падтрымкі Session, каб вырашыць гэтую праблему."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Адбылася памылка пры спробе захаваць арыгінальнае паведамленне для адпраўкі. Магчыма, вам спатрэбіцца перазапусціць праграму, каб мець магчымасць адправіць паведамленне."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Узнікла праблема адкрыцця базы даных. Перазапусціце праграму і паўтарыце спробу."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Гэты параметр прымяняецца да ўсіх у гэтай размове."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Паведамленні знікнуць пасля іх адпраўкі."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Вы наладзілі знікненне паведамленняў %@ пасля таго, як яны былі %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Вы ўсталявалі знікненне паведамленняў на %@ пасля таго, як яны былі на %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Вы адключылі выдаленне паведамленняў"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Ранейшыя"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Першапачатковы варыянт рэалізацыі знікнення паведамленняў."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ выкарыстоўвае састарэлы кліент. Знікаючыя паведамленні могуць не працаваць належным чынам."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Вы спрабуеце абнавіць з версіі, якая больш не падтрымлівае абнаўленні\n\nВам неабходна аднавіць прыладу, каб працягваць выкарыстоўваць сеанс\n\nПапярэджанне: аднаўленне прылады прывядзе да страты даных, старых больш за два тыдні"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "прачытана"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "даслана"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Знікае праз - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Знікае пасля чытання - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Знікае пасля адпраўкі - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Знікае праз: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Знікае пасля чытання: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Знікае пасля адпраўкі: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Цяпер група называецца \"%@\"."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Назва групы абноўлена."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Фота групы абноўлена."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ быў запрошаны ў групу."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ і %@ былі запрошаны ў групу."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@, %@ і іншыя былі запрошаны ў групу."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ выдалены з групы."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ і %@ былі выдалены з групы."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@, %@ і іншыя былі выдалены з групы."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ пакінуў(ла) групу."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ быў павышаны да адміністратара."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ і %@ былі павышаны да адміністратараў."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@, %@ і іншыя былі павышаны да адміністратараў."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Вас выдалілі з %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Вы ўпэўненыя, што жадаеце выдаліць гэтае запрашэнне ў групу?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Вы ўпэўненыя, што жадаеце заблакіраваць %@? Заблакіраваныя карыстальнікі не могуць адпраўляць вам запыты на паведамленні, запрашэнні ў групы ці тэлефанаваць вам."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ запрашае вас далучыцца да %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Немагчыма выдаліць групу, паспрабуйце яшчэ раз."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Пры адпраўцы паведамлення гэтай групе запрашэнне ў групу будзе аўтаматычна прынята."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "Узнікла праблема з атрыманнем неабходных даных. Калі ласка паспрабуйце зноў пазней."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Удзельнікі групы"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Адпраўка запрашэння"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Запрашэнне адпраўлена"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Не атрымалася запрасіць"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Адпраўка прасоўвання адміністратара"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Павышэнне адміністратара адпраўлена"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Збой павышэння адміністратара"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Усталюйце выяву для групы"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Абнавіць выяву не ўдалося."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Выдаліць выяву не ўдалося."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Увядзіце назву групы"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Калі ласка, абярыце назву групы."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Калі ласка, абярыце карацейшую назву групы."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Увядзіце апісанне групы"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Калі ласка, абярыце карацейшае апісанне групы."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Адміністратары не могуць быць выдаленыя"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Запрасіць"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Запрасіць кантакты"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "У вас больш няма кантактаў."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Адпраўка запрашэння"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Адпраўка запрашэнняў"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Не ўдалося запрасіць %@ у %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Не ўдалося запрасіць %@ і %@ у %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Не ўдалося запрасіць %@, %@ і іншых у %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Павышэнне адміністратара"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Павышэнне"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "У гэтай групе больш няма ўдзельнікаў."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Адпраўка прасоўвання"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Адпраўка перасоўванняў"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Не атрымалася прасунуць %@ у %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Не атрымалася прасунуць %@ і %@ у %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Не атрымалася прасунуць %@, %@ і іншых у %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Групы былі абноўлены, стварыце новую групу для абнаўлення. Функцыянальнасць старой групы будзе пагоршана з %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Абнаўленне інфармацыі аб групе"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Назва і апісанне групы бачныя ўсім карыстальнікам групы."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Абнавіць назву групы"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Назва групы бачна ўсім карыстальнікам групы."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "Вы атрымалі запрашэнне далучыцца да %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ былі запрошаны ў групу."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ быў запрошаны ў групу. Быў адкрыты агульны доступ да гісторыі чата."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ былі запрошаны далучыцца да групы. Быў адкрыты агульны доступ да гісторыі чата."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ і %@ былі запрошаны далучыцца да групы. Быў адкрыты агульны доступ да гісторыі чата."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ і %@ былі запрошаны ў групу."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ і %@ былі запрошаны далучыцца да групы. Быў адкрыты агульны доступ да гісторыі чата."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ і %@ былі запрошаны далучыцца да групы. Быў адкрыты агульны доступ да гісторыі чата."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@, %@ і іншыя былі запрошаны ў групу."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ і %@ былі запрошаны далучыцца да групы. Быў адкрыты агульны доступ да гісторыі чата."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "Пры спробе пачаць запіс галасавога паведамлення адбылася памылка."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Наладзіць, каб вашы паведамленні знікалі %@ пасля таго, як яны былі %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Паведамленні, якія вы адпраўляеце, больш не знікнуць. Вы ўпэўнены, што хочаце адключыць знікаючыя паведамленні?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Пацвердзіць"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/bg.lproj/Localizable.strings b/Session/Meta/Translations/bg.lproj/Localizable.strings deleted file mode 100644 index 0cdd0ec596..0000000000 --- a/Session/Meta/Translations/bg.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Прикачени"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Надпис"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Тип файл: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Големина:%@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Това е пределът на едно съобщение"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Изпрати"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Прикачен файл"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Грешка при прикачването на файл"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Изображението неможе да се преобразува"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Грешка при прикрепянето на видеофайла. Файлът не може да бъде конвертиран във формат MP4."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Изображението не може да бъде анализирано."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Не можахме да премахнем метаданните на файла."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Не можахме да преоразмерим изображението."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Размерът на файла е твърде голям."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Файлът съдържа невалидни или неправилни данни."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Неправилен формат на файла."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Прикаченият файл е празен. Липсват данни."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Провалено избиране на документ."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Моля, пробвайте да изпратите този файл или папка(директория) под формата на архив!"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Не се поддържа този формат"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Гласово съобщение"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Блокиране"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Блокирай%@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Разблокирай%@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Разблокиране"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@Беше блокиран."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Блокиран потребител"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@Беше разблокиран."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Блокираните потребители няма да могат да Ви изпращат съобщения, или гласови повиквания."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Завършено"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Избери"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Търсене..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Няма съвпадения"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 съвпадение"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%dот%d съвпадат"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Блокирай този потребител"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Заглуши"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Намери разговор"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Премести или преоразмери"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Това може да отнеме няколко минути."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Опресняване на данните"; -/* The present; the current time. */ -"DATE_NOW" = "Сега"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Изчезващи съобщения"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Редактирай участниците в групата"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Вие нямате никакви файлове в този разговор."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Зареждане на скорошни файлове…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Зареждане на по-стари файлове…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Извличането на посочения GIF е неуспешно. Моля, проверете интернет връзката си."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Възникна неизвестна грешка."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Невъзможно извличане на посочения GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Моля въведете ключова дума за търсене."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Възникна грешка. Моля натиснете за повторно търсене."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Няма съвпадения."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Групата е създадена"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ се присъедини към групата. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ напусна групата. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ беше премахнат от групата. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ бяха премахнати от групата. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Името на групата е променено на '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Групата е обновена."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Вие напуснахте групата."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Вие бяхте премахнат от групата. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Вие не можете да изберете повече от%@ елементи."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Фаилът не може да бъде прикачен."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Неподдържан формат на звуковия фаил."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Напускане"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Напускане на групата"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Виж всички файлове"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Изтрий %d съобщения"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Изтрий съобщението"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@на%@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "добави%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Ти"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Този Месец"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Изпращането е неуспешно."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Прочетено"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Изпращане…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Изпратено"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Прикачване…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@от%@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Лична бележка"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Възможно е да сте получили съобщения докато сте рестартирали вашият %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Добре"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ е деактивирал или не поддържа изчезващи съобщения."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ настрои таймера за изчезващи съобщения на%@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Снимката не беше направена."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Възникна грешка при снимането."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Грешка в настройките на камерата."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Албум без име"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Маркирай като прочетено"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Отговори"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Идентифицирайте се за да отключите Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Възникна грешка при отключването"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Отмяна на изпращането?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Потвърдете отмяната на изпращането"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (по подразбиране)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Тон на съобщенията"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Без звук"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@дни"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@д"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@часа"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ч"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@минути"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@м"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@секунди"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@с"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ден"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@час"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@минута"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@седмица"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@седмици"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@сц"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Анулиране"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Изтриване"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Гласово съобщение"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Натиснете и задръжте за запис."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Задръжте по време на записването"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Вие деактивирахте изчезващите съобщения."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "Ти"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Научи повече"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Покани приятел"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Изтегляне"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Изпращане..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Камера"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/bn.lproj/Localizable.strings b/Session/Meta/Translations/bn.lproj/Localizable.strings deleted file mode 100644 index be788c44ea..0000000000 --- a/Session/Meta/Translations/bn.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "সংযুক্তি"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "ক্যাপশন"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "ফাইলের ধরণ:"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "আকার"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "বার্তা আকারের সীমায় পৌঁছে গেছেI"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "পাঠান"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "সংযুক্তি"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "সংযুক্তি প্রেরণে ত্রুটি৷"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "ছবি রূপান্তর করতে অক্ষম"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "ভিডিওগুলো লোড করতে অক্ষম"; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "ছবি রূপান্তর করতে অক্ষম |"; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "ছবি থেকে মেটাডেটা সরাতে অক্ষম "; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "চিত্রের আকার পরিবর্তন করতে অক্ষম৷"; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "সংযুক্তি খুব বড়."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "সংযুক্তি অবৈধ বিষয়বস্তু অন্তর্ভুক্ত."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "সংযুক্তি মধ্যে একটি অবৈধ ফাইল বিন্যাস আছে."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "সংযুক্তি খালি."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "নথি চয়ন করতে ব্যর্থ হয়েছে."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "অনুগ্রহ করে এই ফাইল বা ডিরেক্টরির একটি সংকুচিত সংরক্ষণাগার তৈরি করুন এবং পরিবর্তে এটি পাঠানোর চেষ্টা করুন."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "অসমর্থিত ফাইল"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "ভয়েস বার্তা"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "ব্লক"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "ব্লক করবেন %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "%@ আনব্লক করবেন?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "আনব্লক করুন"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ ব্লক করা হয়েছে."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "ইউজার ব্লকড"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "অবরোধমুক্ত করা হয়েছে।"; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "ব্লক করা ব্যবহারকারীরা আপনাকে কল করতে বা মেসেজ পাঠাতে পারবে না।"; -/* Label for generic done button. */ -"BUTTON_DONE" = "সম্পন্ন হয়েছে"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "নির্বাচন করুন"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "মিল নেই"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 টি মিল"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%dটি ম্যাচের মধ্যে %dটি"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "এই ব্যবহারকারীকে ব্লক করুন"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "নিঃশব্দ"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "কথোপকথন অনুসন্ধান করুন"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "সরান এবং মাপুন"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "এই কয়েক মিনিট সময় নিতে পারে."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "ডাটাবেস অপ্টিমাইজ করা হচ্ছে"; -/* The present; the current time. */ -"DATE_NOW" = "এখন"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "অদৃশ্য বার্তা"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "গ্রুপ সম্পাদনা করুন"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "এই কথোপকথনে আপনার কোনো মিডিয়া নেই।"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "নতুন মিডিয়া লোড হচ্ছে…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "পুরানো মিডিয়া লোড হচ্ছে…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "অনুরোধ করা GIF আনতে ব্যর্থ হয়েছে ৷ আপনি অনলাইন আছেন তা যাচাই করুন."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "একটি অজানা ত্রুটি ঘটেছে."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF চয়ন করতে অক্ষম"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "আপনার অনুসন্ধান লিখুন."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "ত্রুটি. পুনরায় চেষ্টা করতে আলতো চাপুন."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "কোন ফলাফল নেই."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "গ্রুপ তৈরি হয়েছে"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "শিরোনাম এখন '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "গ্রুপ আপডেট করা হয়েছে."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "আপনি গ্রুপ থেকে চলে গেছেন."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " আপনাকে গ্রুপ থেকে বের করে দেওয়া হয়েছে. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "আপনি %@ এর বেশি আইটেম শেয়ার করতে পারবেন না."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "সংযুক্তি নির্বাচন করতে ব্যর্থ হয়েছে."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "অবৈধ অডিও ফর্ম্যাট."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "ছেড়ে যান"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "গ্রুপ পরিত্যাগ করুন"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "সমস্ত মিডিয়া"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "বার্তাগুলি %d মুছুন"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "বার্তা মুছুন"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ চালু %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "তুমি"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "এই মাসে"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "কথোপকথন অনুসন্ধান করুন."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "পড়া"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "প্রেরণ করা হচ্ছে…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "পাঠানো হয়েছে"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "আপলোড করা হচ্ছে…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ প্রতি %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "নিজেকে নোট করুন"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "আপনার %@ পুনঃসূচনা করার সময় আপনি বার্তাগুলি পেয়ে থাকতে পারেন."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "ঠিক আছে"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ অদৃশ্য বার্তার সময় সেট করুন %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "ইমেজ ক্যাপচার করতে অক্ষম."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "ইমেজ ক্যাপচার করতে অক্ষম."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "ক্যামেরা কনফিগার করতে ব্যর্থ হয়েছে."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "নামহীন অ্যালবাম"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "পঠিত হিসেবে চিহ্নিত করুন"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "উত্তর দিন"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "সেশন খুলতে প্রমাণীকরণ করুন."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "প্রমাণীকরণ ব্যর্থ হয়েছে"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "মিডিয়া বাতিল করবেন?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "মিডিয়া বাতিল করুন"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@(পূর্ব নির্ধারিত)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "You"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/cs.lproj/Localizable.strings b/Session/Meta/Translations/cs.lproj/Localizable.strings deleted file mode 100644 index 8adfeae0cc..0000000000 --- a/Session/Meta/Translations/cs.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Příloha"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Titulek"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Typ souboru: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Velikost: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Dosažen limit zprávy"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Odeslat"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Příloha"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Chyba při odesílání přílohy"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Obrázek nelze překonvertovat."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Video nelze zpracovat."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Obrázek nelze zpracovat."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nelze odstranit metadata z obrázku."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nelze změnit velikost obrázku."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Příloha je příliš velká."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Příloha obsahuje neplatný obsah."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Příloha má neplatný formát souboru."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Příloha je prázdná."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Nepovedlo se vybrat dokument."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Vytvořte prosím komprimovaný archiv tohoto souboru nebo adresáře a zkuste jej namísto toho odeslat."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nepodporovaný soubor"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Hlasová zpráva"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Zablokovat"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Zablokovat %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Odblokovat %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Odblokovat"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ byl/a zablokován/a."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Uživatel zablokován"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ byl/a odblokován/a."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blokovaní uživatelé vám nebudou moci volat ani vám posílat zprávy."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Hotovo"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Vybrat"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Vyhledávání..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Žádné shody"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 shoda"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d z %d shod"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokovat tohoto uživatele"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Ztlumit"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Vyhledat konverzaci"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Přesun a měřítko"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Může to trvat několik minut."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimalizace databáze"; -/* The present; the current time. */ -"DATE_NOW" = "Teď"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Mizející zprávy"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Upravit skupinu"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "V této konverzaci nemáte žádná média."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Načítání novějších médií…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Načítání starších médií…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Nepodařilo se načíst požadovaný GIF. Zkontrolujte připojení k internetu."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Došlo k neznámé chybě."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nelze vybrat GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Zadejte své vyhledávání."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Chyba. Klepněte pro opakování."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Žádné výsledky."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Skupina vytvořena"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ se připojil/a ke skupině. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ opustil/a skupinu. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ byl/a odebrán/a ze skupiny. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ byli odebráni ze skupiny. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Název je nyní %@. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Skupina aktualizována."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Opustil/a jste skupinu."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Byli jste odebráni ze skupiny. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Nemůžete sdílet více než %@ položek."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nepodařilo se vybrat přílohu."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Neplatný zvukový soubor."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Opustit"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Opustit skupinu"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Všechna média"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Smazat %d zpráv"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Smazat zprávu"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ v %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Vy"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Tento měsíc"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Odeslání selhalo."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Přečteno"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Odesílání…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Odesláno"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Nahrávání…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ do %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Poznámka pro mně"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Možná jste obdrželi zprávy během restartování aplikace %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Uživatel %@ zakázal mizející zprávy."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ nastavil čas pro zmizení zpráv na %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nelze pořídit obrázek."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nelze pořídit obrázek."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Konfigurace kamery selhala."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Nepojmenované album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Označit jako přečtené"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Odpověděť"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Ověření pro otevření Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Ověření se nezdařilo"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Zahodit média?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Zahodit média"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (výchozí)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Zvuk zprávy"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Žádný"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dní"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ h"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ min"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@min"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ s"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dní"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hodina"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuta"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ týden"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ týdny"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@td"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Zrušit"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Smazat"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Hlasová zpráva"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Klepněte a podržte pro nahrání hlasové zprávy."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Hlasová zpráva"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Zakázali jste mizející zprávy."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Nastavil jste čas pro zmizení zpráv na %@"; -// MARK: - Session -"continue_2" = "Pokračovat"; -"copy" = "Kopírovat"; -"invalid_url" = "Neplatná URL adresa"; -"next" = "Další"; -"share" = "Sdílet"; -"invalid_session_id" = "Neplatná ID relace"; -"cancel" = "Zrušit"; -"your_session_id" = "Vaše ID relace"; -"vc_landing_title_2" = "Vaše relace začíná zde..."; -"vc_landing_register_button_title" = "Vytvořit ID relaci"; -"vc_landing_restore_button_title" = "Pokračujte v relaci"; -"vc_landing_link_button_title" = "Propojit zařízení"; -"view_fake_chat_bubble_1" = "Co je Session?"; -"view_fake_chat_bubble_2" = "Je to decentralizovaná, šifrovaná aplikace pro zasílání zpráv"; -"view_fake_chat_bubble_3" = "Takže neshromažďuje mé osobní údaje ani metadata konverzace? Jak to funguje?"; -"view_fake_chat_bubble_4" = "Použitím kombinace pokročilých anonymních směrovacích a end-to-end šifrovacích technologií."; -"view_fake_chat_bubble_5" = "Přátelé nenechávají přátelé používat kompromitované messengery. Není zač."; -"vc_register_title" = "Seznamte se se svým ID relace"; -"vc_register_explanation" = "Vaše Session ID je jedinečná adresa, kterou mohou lidé použít ke kontaktu s vámi na Session. Vaše Session ID není nijak spojeno s vaší skutečnou identitou a je zcela anonymní a soukromé."; -"vc_restore_title" = "Obnovit účet"; -"vc_restore_explanation" = "Zadejte frázi pro obnovení, která vám byla vygenerována během registrace účtu."; -"vc_restore_seed_text_field_hint" = "Zadejte frázi pro obnovení"; -"vc_link_device_title" = "Propojit zařízení"; -"vc_link_device_scan_qr_code_tab_title" = "Skenovat QR kód"; -"vc_display_name_title_2" = "Vaše jméno"; -"vc_display_name_explanation" = "Toto bude váš pseudonym během používání Session. Může to být vaše skutečné jméno, alias, nebo cokoliv jiného, co se vám líbí."; -"vc_display_name_text_field_hint" = "Zadejte zobrazované jméno"; -"vc_display_name_display_name_missing_error" = "Zadejte prosím zobrazované jméno"; -"vc_display_name_display_name_too_long_error" = "Vyberte prosím kratší zobrazované jméno"; -"vc_pn_mode_recommended_option_tag" = "Doporučeno"; -"vc_pn_mode_no_option_picked_modal_title" = "Vyberte si prosím jednu z možností"; -"vc_home_empty_state_message" = "Zatím nemáte žádné kontakty"; -"vc_home_empty_state_button_title" = "Zahájit relaci"; -"vc_seed_title" = "Vaše fráze pro obnovení"; -"vc_seed_title_2" = "Zadejte frázi pro obnovení"; -"vc_seed_explanation" = "Vaše fráze pro obnovení je hlavním klíčem k vašemu Session ID- můžete ji použít k obnovení vašeho Session ID, pokud ztratíte přístup k zařízení. Uložte frázi pro obnovení na bezpečném místě a nikomu ji nesdělujte."; -"vc_seed_reveal_button_title" = "Podržte pro zobrazení"; -"view_seed_reminder_subtitle_1" = "Zabezpečte svůj účet uložením fráze pro obnovení"; -"view_seed_reminder_subtitle_2" = "Klepnutím a podržením redigovaných slov zobrazte frázi pro obnovení a poté ji bezpečně uložte, abyste zabezpečili vaše Session ID."; -"view_seed_reminder_subtitle_3" = "Ujistěte se, že jste frázi pro obnovení uložili na bezpečném místě"; -"vc_path_title" = "Cesta"; -"vc_path_explanation" = "Session skrývá vaši IP adresu tím, že směruje vaše zprávy přes několik provozních uzlů v decentralizované síti Session. Toto jsou země, přes které je vaše připojení aktuálně směrováno:"; -"vc_path_device_row_title" = "Vy"; -"vc_path_guard_node_row_title" = "Vstupní uzel"; -"vc_path_service_node_row_title" = "Provozní uzel"; -"vc_path_destination_row_title" = "Cíl"; -"vc_path_learn_more_button_title" = "Zjistit více"; -"vc_create_private_chat_title" = "Nová zpráva"; -"vc_create_private_chat_enter_session_id_tab_title" = "Zadejte Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Načíst QR kód"; -"vc_enter_public_key_explanation" = "Začněte novou konverzaci zadáním Session ID jiného uživatele a nebo sdílejte své Session ID s ostatními."; -"vc_scan_qr_code_camera_access_explanation" = "Session potřebuje ke skenování kódů QR přístup k fotoaparátu"; -"vc_create_closed_group_title" = "Vytvořit skupinu"; -"vc_create_closed_group_text_field_hint" = "Zadejte název skupiny"; -"vc_create_closed_group_empty_state_message" = "Zatím nemáte žádné kontakty"; -"vc_create_closed_group_group_name_missing_error" = "Zadejte prosím název skupiny"; -"vc_create_closed_group_group_name_too_long_error" = "Zadejte prosím kratší název skupiny"; -"vc_create_closed_group_too_many_group_members_error" = "Uzavřená skupina nemůže mít více než 100 členů"; -"vc_join_public_chat_title" = "Připojit se ke komunitě"; -"vc_join_public_chat_enter_group_url_tab_title" = "Adresa komunity"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Načíst QR kód"; -"vc_enter_chat_url_text_field_hint" = "Zadejte adresu komunity"; -"vc_settings_title" = "Nastavení"; -"vc_group_settings_title" = "Nastavení skupiny"; -"vc_settings_display_name_missing_error" = "Zadejte prosím zobrazované jméno"; -"vc_settings_display_name_too_long_error" = "Zadejte prosím kratší zobrazované jméno"; -"vc_settings_privacy_button_title" = "Soukromí"; -"vc_settings_notifications_button_title" = "Oznámení"; -"vc_settings_recovery_phrase_button_title" = "Fráze pro obnovení"; -"vc_settings_clear_all_data_button_title" = "Vymazat data"; -"vc_qr_code_title" = "QR kód"; -"vc_qr_code_view_my_qr_code_tab_title" = "Zobrazit můj QR kód"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Naskenovat QR kód"; -"vc_qr_code_view_scan_qr_code_explanation" = "Naskenujte něčí QR kód a začněte s nimi konverzaci"; -"vc_view_my_qr_code_explanation" = "Toto je váš QR kód. Ostatní uživatelé jej mohou naskenovat, aby s vámi mohli začít konverzaci."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Budete informováni o nových zprávách spolehlivě a okamžitě pomocí oznamovacích serverů společnosti Apple."; -"fast_mode" = "Rychlý režim"; -"slow_mode_explanation" = "Session občas zkontroluje nové zprávy na pozadí."; -"slow_mode" = "Pomalý režim"; -"vc_pn_mode_title" = "Oznámení zprávy"; -"vc_link_device_recovery_phrase_tab_title" = "Fráze pro obnovení"; -"vc_link_device_scan_qr_code_explanation" = "Přejděte do Nastavení → Fráze pro obnovení na Vašem dalším zařízení a pro zobrazení QR kódu."; -"vc_enter_recovery_phrase_title" = "Fráze pro obnovení"; -"vc_enter_recovery_phrase_explanation" = "Pro propojení vašeho zařízení zadejte frázi pro obnovení, která vám byla přidělena při registraci."; -"vc_enter_public_key_text_field_hint" = "Zadejte Session ID nebo název ONS"; -"admin_group_leave_warning" = "Protože jste tvůrcem této skupiny, bude smazána pro všechny. Tuto akci nelze vrátit zpět."; -"vc_join_open_group_suggestions_title" = "Nebo se připojte k jedné z těchto..."; -"vc_settings_invite_a_friend_button_title" = "Pozvat přítele"; -"copied" = "Zkopírováno"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopírovat Session ID"; -"vc_conversation_input_prompt" = "Zpráva"; -"vc_conversation_voice_message_cancel_message" = "Pro zrušení přejeďte"; -"modal_download_attachment_title" = "Důvěřovat %@?"; -"modal_download_attachment_explanation" = "Opravdu chcete stáhnout přílohu od %@?"; -"modal_download_button_title" = "Stáhnout"; -"modal_open_url_title" = "Otevřít odkaz?"; -"modal_open_url_explanation" = "Opravdu chcete otevřít %@?"; -"modal_open_url_button_title" = "Otevřít"; -"modal_copy_url_button_title" = "Kopírovat odkaz"; -"modal_blocked_title" = "Odblokovat %@?"; -"modal_blocked_explanation" = "Opravdu chcete odblokovat %@?"; -"modal_blocked_button_title" = "Odblokovat"; -"modal_link_previews_title" = "Umožnit náhledy odkazů?"; -"modal_link_previews_explanation" = "Povolením náhledů odkazů budou zobrazeny náhledy URL adres, které odesíláte a přijímáte. To může být užitečné, ale Session se bude muset spojit s danou webovou stránkou pro generování náhledů. Náhled odkazů můžete kdykoli zakázat v nastavení Session."; -"modal_link_previews_button_title" = "Povolit"; -"vc_share_title" = "Sdílet na Session"; -"vc_share_loading_message" = "Připravování příloh..."; -"vc_share_sending_message" = "Odesílání..."; -"vc_share_link_previews_unsecure" = "Náhled nebyl načten pro nezabezpečený odkaz"; -"vc_share_link_previews_error" = "Nelze načíst náhled"; -"vc_share_link_previews_disabled_title" = "Náhledy odkazů vypnuty"; -"vc_share_link_previews_disabled_explanation" = "Povolením náhledů odkazů se zobrazí náhledy sdílených adres URL. To může být užitečné, ale Session bude muset kontaktovat propojené webové stránky, aby vygenerovala náhledy.\n\nNáhledy odkazů můžete povolit v nastavení Session."; -"view_open_group_invitation_description" = "Otevřít pozvánku ke skupině"; -"vc_conversation_settings_invite_button_title" = "Přidat členy"; -"modal_send_seed_title" = "Varování"; -"modal_send_seed_explanation" = "Toto je vaše obnovovací fráze. Pokud ji někomu pošlete, bude mít plný přístup k vašemu účtu."; -"modal_send_seed_send_button_title" = "Odeslat"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Upozorňovat pouze na zmínky"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Pokud je povoleno, budete upozorněni pouze na zprávy, které vás zmiňují."; -"view_conversation_title_notify_for_mentions_only" = "Upozorňování pouze na zmínky"; -"message_deleted" = "Tato zpráva byla odstraněna"; -"delete_message_for_me" = "Smazat pouze pro mě"; -"delete_message_for_everyone" = "Smazat pro všechny"; -"delete_message_for_me_and_recipient" = "Odstranit pro mě a %@"; -"context_menu_reply" = "Odpověděť"; -"context_menu_save" = "Uložit"; -"context_menu_ban_user" = "Zablokovat uživatele"; -"context_menu_ban_and_delete_all" = "Zablokovat a odstranit vše"; -"context_menu_ban_user_error_alert_message" = "Nelze zablokovat uživatele"; -"accessibility_expanding_attachments_button" = "Přidat přílohy"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Knihovna fotografií"; -"accessibility_camera_button" = "Fotoaparát"; -"accessibility_main_button_collapse" = "Sbalit možnosti přílohy"; -"invalid_recovery_phrase" = "Neplatná fráze pro obnovení"; -"DISMISS_BUTTON_TEXT" = "Odmítnout"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Nastavení"; -"call_outgoing" = "Volal jste %@"; -"call_incoming" = "%@ vám volal"; -"call_missed" = "Zmeškaný hovor od %@"; -"APN_Message" = "Máte novou zprávu."; -"APN_Collapsed_Messages" = "Máte %@ nových zpráv."; -"PIN_BUTTON_TEXT" = "Připnout"; -"UNPIN_BUTTON_TEXT" = "Odepnout"; -"modal_call_missed_tips_title" = "Zmeškaný hovor"; -"modal_call_missed_tips_explanation" = "Zmeškaný hovor od \"%@\", protože musíte povolit oprávnění \"Hlasové a video hovory\" v nastavení soukromí."; -"media_saved" = "Uživatel %@ uložil média."; -"screenshot_taken" = "Uživatel %@ pořídil snímek obrazovky."; -"SEARCH_SECTION_CONTACTS" = "Kontakty a skupiny"; -"SEARCH_SECTION_MESSAGES" = "Zprávy"; -"MESSAGE_REQUESTS_TITLE" = "Žádosti o zprávy"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Žádné nevyřízené žádosti o zprávu"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Smazat vše"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Jste si jisti, že chcete vymazat všechny žádosti o zprávy a pozvánky do skupin?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Smazat"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Jste si jisti, že chcete odstranit tuto žádost o zprávu?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Opravdu chcete zablokovat tento kontakt?"; -"MESSAGE_REQUESTS_INFO" = "Odesláním zprávy tomuto uživateli automaticky přijmete jejich žádost o zprávu a odhalíte jim své Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Vaše žádost o zprávu byla přijata."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Máte novou žádost o zprávu"; -"TXT_HIDE_TITLE" = "Skrýt"; -"TXT_DELETE_ACCEPT" = "Přijmout"; -"TXT_BLOCK_USER_TITLE" = "Blokovat uživatele"; -"ALERT_ERROR_TITLE" = "Chyba"; -"modal_call_permission_request_title" = "Požadovaná oprávnění k volání"; -"modal_call_permission_request_explanation" = "Oprávnění pro hlasové a video hovory můžete povolit v Nastavení soukromí."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Jejda, došlo k chybě"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Zkuste to prosím znovu později"; -"LOADING_CONVERSATIONS" = "Načítání konverzací..."; -"DATABASE_MIGRATION_FAILED" = "Při optimalizaci databáze došlo k chybě\n\nProtokoly aplikací můžete exportovat, abyste je mohli sdílet při řešení problémů, nebo můžete zařízení obnovit.\n\nVarování: Obnovení zařízení povede ke ztrátě všech dat starších než dva týdny"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Něco se pokazilo. Zkontrolujte prosím frázi pro obnovení a zkuste to znovu."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Vypadá to, že jste nezadali dostatek slov. Zkontrolujte prosím svou frázi pro obnovení a zkuste to znovu."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Zdá se, že vám chybí poslední slovo k frázi pro obnovení. Zkontrolujte, co jste zadali a zkuste to znovu."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Zdá se, že ve vaší frázi pro obnovení je neplatné slovo. Zkontrolujte, co jste zadali, a zkuste to znovu."; -"RECOVERY_PHASE_ERROR_FAILED" = "Vaši frázi pro obnovení se nepodařilo ověřit. Zkontrolujte, co jste zadali a zkuste to znovu."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "K ověření nebylo možné přistoupit."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Ověření se nezdařilo."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Příliš mnoho neúspěšných pokusů o ověření. Zkuste to prosím později."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Chcete-li používat zámek obrazovky, musíte v nastavení iOS povolit přístupový kód."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Chcete-li používat zámek obrazovky, musíte v nastavení iOS povolit přístupový kód."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Chcete-li používat zámek obrazovky, musíte v nastavení iOS povolit přístupový kód."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Odeslat"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Opakovat"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Zobrazit chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Zprávu se nepodařilo odeslat."; -"INVALID_SESSION_ID_MESSAGE" = "Zkontrolujte prosím Session ID a zkuste to znovu."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Zkontrolujte prosím frázi pro obnovení a zkuste to znovu."; -"MEDIA_TAB_TITLE" = "Média"; -"DOCUMENT_TAB_TITLE" = "Dokumenty"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "V této konverzaci nemáte žádný dokument."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Načítání novějšího dokumentu…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Načítání staršího dokumentu…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktivity"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Zvířata a příroda"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Vlajky"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Jídlo a pití"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Předměty"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Naposledy použité"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smajlíci a lidé"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symboly"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Cestování a místa"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reaguje na zprávu s %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "A 1 další reagoval s %@ na tuto zprávu."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "A %@ další reagovali s %@ na tuto zprávu."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Zpomalte! Poslali jste příliš mnoho emoji reakcí. Zkuste to za chvilku."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nová konverzace"; -"CREATE_GROUP_BUTTON_TITLE" = "Vytvořit"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Připojit se k"; -"PRIVACY_TITLE" = "Soukromí"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Zabezpečení obrazovky"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Zamknout Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Požaduje Touch ID, Face ID nebo kód pro odemčení Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Potvrzení o přečtení"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Potvrzení o přečtení"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Odeslat potvrzení o přečtení při konverzaci s jedním uživatelem."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indikátory psaní"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indikátory psaní"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Zobrazit a sdílet indikátor psaní v konverzaci s jedním uživatelem."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Náhledy odkazů"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Odesílat náhledy odkazů"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Vytvářet náhledy odkazů pro podporované URL adresy."; -"PRIVACY_SECTION_CALLS" = "Volání (Beta)"; -"PRIVACY_CALLS_TITLE" = "Hlasové hovory a videohovory"; -"PRIVACY_CALLS_DESCRIPTION" = "Zapne hlasové a video hovory k ostatním uživatelům i od nich."; -"PRIVACY_CALLS_WARNING_TITLE" = "Hlasové a video hovory (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Vaše IP adresa je při používání beta hovorů viditelná pro toho s kým si voláte i pro Oxen Foundation server. Jste si jisti, že chcete povolit hlasové a video hovory?"; -"NOTIFICATIONS_TITLE" = "Upozornění"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Styl oznámení"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Použít rychlý režim"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Budete informováni o nových zprávách spolehlivě a okamžitě pomocí oznamovacích serverů společnosti Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Přejít do nastavení upozornění pro toto zařízení"; -"NOTIFICATIONS_SECTION_STYLE" = "Styl upozornění"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Zvuk"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Zvuk při otevření aplikace"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Obsah oznámení"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informace uvedené v oznámeních."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Jméno a obsah"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Pouze jméno"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Ani jméno ani zprávu"; -"CONVERSATION_SETTINGS_TITLE" = "Konverzace"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Pročištění zpráv"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Pročištění komunit"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Z komunit vymazat zprávy starší než 6 měsíců a ponechat maximálně 2000 nejnovějších zpráv v každé komunitě."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Zvukové zprávy"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Automaticky přehrát zvukové zprávy"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Automaticky přehrát po sobě následující zvukové zprávy."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blokované kontakty"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nemáte žádné blokované kontakty."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Odblokovat"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Opravdu chcete odblokovat %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "tento kontakt"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Opravdu si přejete odblokovat %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "a %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "a %d dalších?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Odblokovat"; -"APPEARANCE_TITLE" = "Vzhled"; -"APPEARANCE_THEMES_TITLE" = "Motivy"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Výchozí barva"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Jak se máte?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Dobře, jak vy?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Skvěle, děkuji."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Automatický noční režim"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Použít nastavení systému"; -"HELP_TITLE" = "Nápověda"; -"HELP_REPORT_BUG_TITLE" = "Nahlásit chybu"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exportujte své logy, pak nahrajte soubor přes portál podpory Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportovat logy"; -"HELP_TRANSLATE_TITLE" = "Přeložit Session"; -"HELP_FEEDBACK_TITLE" = "Chtěli bychom znát váš názor"; -"HELP_FAQ_TITLE" = "Časté dotazy"; -"HELP_SUPPORT_TITLE" = "Podpora"; -"modal_clear_all_data_title" = "Smazat všechny data"; -"modal_clear_all_data_explanation" = "Tímto trvale smažete vaše zprávy a kontakty. Chcete vymazat data pouze na tomto zařízení, nebo odstranit také data ze sítě?"; -"modal_clear_all_data_explanation_2" = "Jste si jisti, že chcete odstranit svá data ze sítě? Pokud budete pokračovat, nebudete moci obnovit své zprávy nebo kontakty."; -"modal_clear_all_data_device_only_button_title" = "Vymazat pouze data na zařízení"; -"modal_clear_all_data_entire_account_button_title" = "Vymazat data na zařízení i na síti"; -"dialog_clear_all_data_deletion_failed_1" = "Data nebyly smazány jedním provozním uzlem. ID provozního uzlu: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data nebyla odstraněna %@ provozními uzly. ID provozních uzlů: %@."; -"modal_clear_all_data_confirm" = "Vymazat"; -"modal_seed_title" = "Vaše fráze pro obnovení"; -"modal_seed_explanation" = "Obnovovací frázi můžete použít pro obnovení účtu nebo propojení zařízení."; -"modal_permission_explanation" = "Session potřebuje %@ přístup pro pokračování. Právo přístupu můžete zapnout v nastavení iOS."; -"modal_permission_settings_title" = "Nastavení"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofon"; -"modal_permission_library" = "knihovna"; -"DISAPPEARING_MESSAGES_OFF" = "Vypnuto"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Vypnuto"; -"COPY_GROUP_URL" = "Kopírovat adresu skupiny"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontakty"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Vyberte prosím alespoň jednoho člena skupiny"; -"GROUP_CREATION_PLEASE_WAIT" = "Počkejte prosím, než se skupina vytvoří..."; -"GROUP_CREATION_ERROR_TITLE" = "Vytvoření skupiny se nezdařilo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Zkontrolujte své připojení k Internetu a zkuste to znovu."; -"GROUP_UPDATE_ERROR_TITLE" = "Aktualizace skupiny se nezdařila"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Nelze odejít při přidávání nebo odebírání dalších členů."; -"GROUP_ACTION_REMOVE" = "Odstranit"; -"GROUP_TITLE_MEMBERS" = "Členové"; -"GROUP_TITLE_FALLBACK" = "Skupina"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Zprávy můžete posílat pouze na skryté ID v rámci komunity"; -"DM_ERROR_INVALID" = "Zkontrolujte prosím své Session ID nebo název ONS a zkuste to znovu"; -"COMMUNITY_ERROR_INVALID_URL" = "Zkontrolujte prosím zadanou URL a zkuste to znovu."; -"COMMUNITY_ERROR_GENERIC" = "Nelze se připojit"; -"DISAPPERING_MESSAGES_TITLE" = "Mizející zprávy"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Odstranit typ"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Zmizet po přečtení"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Zprávy se po přečtení smažou."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Zmizet po odeslání"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Zprávy se po odeslání smažou."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Časovač"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Nastavit"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Toto nastavení se týká všech účastníků této konverzace."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Toto nastavení se týká všech účastníků této konverzace. Toto nastavení mohou změnit pouze správci skupiny."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ nastavil/a zprávy tak, aby zmizely %@ poté, co byly %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ změnil/a zprávy tak, aby zmizely %@ poté, co byly %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ vypnul/a mizející zprávy"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Při otevření databáze došlo k chybě\n\nProtokoly aplikací můžete exportovat, abyste je mohli sdílet při řešení problémů, nebo můžete zařízení obnovit.\n\nVarování: Obnovení zařízení povede ke ztrátě všech dat starších než dva týdny"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "Spouštění aplikace trvá dlouho\n\nMůžete pokračovat v čekání na spuštění aplikace, exportovat protokoly aplikace a sdílet je pro řešení problémů nebo můžete zkusit aplikaci otevřít znovu"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Ukončit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Při otevírání obnovené databáze došlo k chybě\n\nProtokoly aplikace můžete exportovat do sdílené složky za účelem řešení problémů, ale abyste mohli relaci Session používat i nadále, bude možná nutné ji znovu nainstalovat"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Původní zpráva nebyla nalezena."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Zobrazit méně"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Žádosti o zprávy"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Žádosti o zrávy z komunit"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Povolit požadavky na zprávy z konverzací komunity."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Budete moci posílat hlasové zprávy a přílohy, jakmile příjemce schválí tuto žádost o zprávu"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Odesílání"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Odesláno"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Přečteno"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Odeslání se nezdařilo"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Odesláno"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Přijato"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Od"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID souboru"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Typ souboru"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Velikost souboru"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Rozlišení"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Doba trvání"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Synchronizace se nezdařila"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Synchronizace"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Odeslání zprávy se nezdařilo"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Nepodařilo se synchronizovat zprávu s ostatními zařízeními"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Smazat ze všech mých zařízení"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Odeslat znovu"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Znovu synchronizovat"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Hledat GIFy?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session se připojí k Giphy pro poskytnutí výsledků vyhledávání. Při odesílání GIFů nebudete mít úplnou ochranu metadat."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Informace o zprávě"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Ztlumit"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Zrušit ztlumení"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Označit jako přečtené"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Označit jako nepřečtené"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Opustit skupinu"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Opustit komunitu"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Opravdu chcete opustit %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Opouštění..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Nepodařilo se opustit skupinu!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Nelze opustit skupinu, zkuste to prosím znovu"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Smazat skupinu"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Opravdu chcete smazat %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Smazat konverzaci"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Opravdu chcete smazat konverzaci s %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Skrýt Poznámku pro mně"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Opravdu chcete skrýt %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Nastavit zobrazovaný obrázek"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Uložit"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Odstranit"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Nelze odstranit obrázek avataru"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Překročena maximální velikost souboru"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Vyberte prosím menší fotografii a zkuste to znovu"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Nepodařilo se aktualizovat profil"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Zkontrolujte prosím připojení k internetu a zkuste to znovu"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Zadejte jméno"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Nepřečtené zprávy"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Nemáte žádné zprávy od %@. Pošlete zprávu pro zahájení konverzace!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "V %@ nejsou žádné zprávy."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "V %@ nemáte žádné zprávy."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ má vypnuté žádosti o chat pocházející z komunit. Odeslání zprávy tedy není možné."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Některá z vašich zařízení používají zastaralé verze. Synchronizace může být nespolehlivá, dokud nebudou aktualizovány."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Došlo k chybě při pokusu o načtení hesla pro obnovení.\n\nPro vyřešení problému prosím exportujte své logy a soubor nahrajte pomocí Session Help Desku."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Došlo k chybě při ukládání odchozí zprávy pro odesílání, možná budete muset restartovat aplikaci, než budete moci odesílat zprávy."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Při otevírání databáze se vyskytl problém. Prosím, restartujte aplikaci a zkuste to znovu."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Toto nastavení se týká všech účastníků této konverzace."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Zprávy zmizí po odeslání."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Nastavili jste mizení zpráv %@ po odeslání %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Nastavili jste mizení zpráv %@ po jejich %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Zakázali jste mizející zprávy"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Zastaralé"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Původní verze mizejících zpráv."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ používá zastaralého klienta. Mizející zprávy nemusí fungovat podle očekávání."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Pokoušíte se aktualizovat z verze, která již nepodporuje aktualizaci\n\nChcete-li nadále používat Session, je potřeba obnovit zařízení\n\nVarování: Obnovení zařízení bude mít za následek ztrátu jakýchkoli dat starších než dva týdny"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "přečteno"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "odesláno"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Zmizí po - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Zmizí po přečtení - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Zmizí po odeslání - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Zmizí po: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Zmizí po přečtení: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Zmizí po odeslání: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Název skupiny je nyní %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Název skupiny aktualizován."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Obrázek skupiny aktualizován."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ byl(a) pozván(a) k připojení do skupiny."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ a %@ byli pozváni k připojení do skupiny."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ a %@ další byli pozváni k připojení do skupiny."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ byl/a odebrán/a ze skupiny."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ a %@ byli odebráni ze skupiny."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ a %@ další byli odebráni ze skupiny."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ opustil/a skupinu."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ byl/a povýšen/a na správce."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ a %@ byli povýšeni na správce."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ a %@ další byli povýšeni na správce."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Byli jste odebráni %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Jste si jisti, že chcete smazat tuto pozvánku do skupiny?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Jste si jisti, že chcete zablokovat %@? Zablokovaní uživatelé vám nemohou posílat žádosti o zprávy, pozvánky do skupin ani vám nemohou volat."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ vás pozval(a) přidat se k %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Nelze smazat skupinu, zkuste to prosím znovu."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Odesláním zprávy do této skupiny automaticky přijmete pozvánku do skupiny."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "Došlo k problému při načítání požadovaných dat. Zkuste to prosím později."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Členové skupiny"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Odeslání pozvánky"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Pozvánka odeslána"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Pozvánka se nezdařila"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Odesílání propagace správce"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Propagace správce odeslána"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Propagace správce selhala"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Nastavit zobrazovaný obrázek skupiny"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Nelze aktualizovat zobrazovaný obrázek."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Zobrazovaný obrázek nelze odstranit."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Zadejte název skupiny"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Vyberte název skupiny."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Prosím vyberte kratší název skupiny."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Zadejte popis skupiny"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Prosím vyberte kratší popis skupiny."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Správce nelze odebrat"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Pozvat"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Pozvat kontakty"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "Nemáte žádné další kontakty."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Odeslání pozvánky"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Odeslání pozvánek"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Nepodařilo se pozvat %@ do %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Nepodařilo se pozvat %@ a %@ do %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Nepodařilo se pozvat %@ a %@ další do %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Povýšit správce"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Povýšit"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "V této skupině již nejsou žádní další členové."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Odesílání propagace"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Odesílání propagací"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Selhalo povýšení %@ v %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Selhalo povýšení %@ a %@ v %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Selhalo povýšení %@ a %@ dalších v %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Skupiny byly přepracovány, pro využití tohoto upgrade vytvořte prosím novou skupinu. Funkčnost staré skupiny bude omezena od %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Upravit informace o skupině"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Název a popis skupiny jsou viditelné pro všechny členy skupiny."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Upravit název skupiny"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Název skupiny je viditelný pro všechny členy skupiny."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "Byli jsi pozváni k připojení do %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ jste byli pozváni k připojení do skupiny."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ byl(a) pozván(a) k připojení do skupiny. Historie konverzace byla sdílena."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ jste byli pozváni k připojení do skupiny. Historie konverzace byla sdílena."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ a %@ byli pozváni k připojení do skupiny. Historie konverzace byla sdílena."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ a %@ byli pozváni k připojení do skupiny."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ a %@ jste byli pozváni k připojení do skupiny. Historie konverzace byla sdílena."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ a %@ byli pozváni k připojení do skupiny. Historie konverzace byla sdílena."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ a %@ další byli pozváni k připojení do skupiny."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ a %@ další jste byli pozváni k připojení do skupiny. Historie konverzace byla sdílena."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "Při pokusu o spuštění nahrávání hlasové zprávy došlo k chybě."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Nastavení Sledování"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Nastavit zprávy tak, aby zmizely %@ poté, co byly %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Odeslané zprávy již nebudou mizet. Určitě chcete mizení zpráv vypnout?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Potvrdit"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/da.lproj/Localizable.strings b/Session/Meta/Translations/da.lproj/Localizable.strings deleted file mode 100644 index f70ed69812..0000000000 --- a/Session/Meta/Translations/da.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Vedhæftning"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Billedtekst"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Filtype: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Filstørrelse: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Beskedgrænse nået"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Send"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Vedhæftning"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Fejl ved afsendelse af vedhæftning"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Kan ikke omkonvertere billede."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Kunne ikke behandle videofilen."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Kunne ikke analysere billedet."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Kunne ikke fjerne metadata fra billedet."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Kunne ikke ændre billedstørrelsen."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Vedhæftede fil er for stor."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Vedhæftning indeholder ugyldigt indhold."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Vedhæftning har et ugyldigt filformat."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Vedhæftning er tom."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Valg af dokument mislykkedes."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Opret venligst et komprimeret arkiv af denne fil eller mappe og prøv at sende den i stedet."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Filtypen er ikke understøttet"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Talebesked"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloker"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloker %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Fjern blokering af %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Fjern blokering"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ er blevet blokeret."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Bruger Blokeret"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Blokering af %@ er blevet fjernet."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blokerede brugere vil ikke kunne ringe eller sende beskeder til dig."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Færdig"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Vælg"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Ingen matches"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 match"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d ud af %d matches"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloker Denne Bruger"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Ignorer"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Søg I Beskeder"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Flyt og Skalere"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Dette kan tage nogle minutter."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimerer Database"; -/* The present; the current time. */ -"DATE_NOW" = "Nu"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Forsvindende Beskeder"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Rediger Gruppe"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Du har ingen medier i denne samtale."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Indlæser Nyere Medier…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Indlæser Ældre Medier…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Kunne ikke hente den ønskede GIF. Kontroller venligst at du er online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Der opstod en ukendt fejl."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Kunne Ikke Vælge GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Indtast venligst din søgning."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Fejl. Tryk for at prøve igen."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Ingen Resultater."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Gruppe oprettet"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Titlen er nu '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Gruppe opdateret."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Du har forladt gruppen."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Du blev fjernet fra gruppen. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Du kan ikke dele mere end %@ emner."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Den vedhæftede fil kunne ikke indlæses."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ugyldig lydfil."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Forlad"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Forlad Gruppe"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Alle medier"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Slet %d Beskeder"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Slet Besked"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ på %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Dig"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Denne Måned"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Afsendelse mislykkedes."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Læst"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sender…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sendt"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploader…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ til %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Egen Note"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Du har kan modtaget beskeder, mens din %@ genstartede."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ok"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ deaktiverede forsvindende beskeder."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ indstillede udløbstid for forsvindende beskeder til %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Kunne ikke tage billede."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Kunne ikke tage billede."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Konfigurering af kamera mislykkedes."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unavngivet Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marker som læst"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Svar"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Godkend for at åbne session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Godkendelse mislykkedes"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Kassér Medie?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Kassér Medie"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (standard)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Besked Lyd"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Ingen"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dage"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ timer"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@t"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutter"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekunder"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dag"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ time"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minut"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ uge"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ uger"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Afbryd"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Slet"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Talebesked"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tryk og hold for at optage en talebesked."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Talebesked"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du deaktiverede forsvindende beskeder."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du indstillede udløbstid for forsvindende beskeder til %@"; -// MARK: - Session -"continue_2" = "Fortsæt"; -"copy" = "Kopier"; -"invalid_url" = "Ugyldig URL"; -"next" = "Næste"; -"share" = "Del"; -"invalid_session_id" = "Ugyldigt Session ID"; -"cancel" = "Afbryd"; -"your_session_id" = "Dit Session ID"; -"vc_landing_title_2" = "Din Session begynder her..."; -"vc_landing_register_button_title" = "Opret Session ID"; -"vc_landing_restore_button_title" = "Gendan Session ID"; -"vc_landing_link_button_title" = "Forbind en enhed"; -"view_fake_chat_bubble_1" = "Hvad er Session?"; -"view_fake_chat_bubble_2" = "Det er en decentraliseret, krypteret beskedtjeneste"; -"view_fake_chat_bubble_3" = "Så den indsamler ikke min personlige information eller mine samtalers metadata? Hvordan virker den?"; -"view_fake_chat_bubble_4" = "Den bruger en kombination af avanceret anonym routing og end-to-end krypteringsteknologier."; -"view_fake_chat_bubble_5" = "Venner lader ikke venner bruge kompromitterede beskedtjenester."; -"vc_register_title" = "Sig hej til dit Session ID"; -"vc_register_explanation" = "Dit Session ID er den unikke adresse, andre kan bruge til at kontakte dig på Session. Uden tilknytning til din virkelige identitet, er dit Session ID fuldstændig anonymt og privat."; -"vc_restore_title" = "Gendan Session ID"; -"vc_restore_explanation" = "Indtast den gendannelsessætning der blev vist, da du oprettede dit Session ID for at gendanne din konto."; -"vc_restore_seed_text_field_hint" = "Indtast din gendannelsessætning"; -"vc_link_device_title" = "Forbind en enhed"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Kode"; -"vc_display_name_title_2" = "Vælg dit Brugernavn"; -"vc_display_name_explanation" = "Dette vil være dit navn når du bruger Session. Det kan være dit rigtige navn, et alias, eller alt mulig andet du syntes."; -"vc_display_name_text_field_hint" = "Indtast et brugernavn"; -"vc_display_name_display_name_missing_error" = "Vælg venligst et brugernavn"; -"vc_display_name_display_name_too_long_error" = "Vælg venligst et kortere brugernavn"; -"vc_pn_mode_recommended_option_tag" = "Anbefalet"; -"vc_pn_mode_no_option_picked_modal_title" = "Vælg Venligst en Mulighed"; -"vc_home_empty_state_message" = "Du har endnu ingen kontakter"; -"vc_home_empty_state_button_title" = "Start en Session"; -"vc_seed_title" = "Din Gendannelsessætning"; -"vc_seed_title_2" = "Dette er din gendannelsessætning"; -"vc_seed_explanation" = "Din gendannelsessætning er hovednøglen til dit Session ID - du kan bruge den til at gendanne dit Session ID hvis du mister adgang til din enhed. Opbevar din gendannelsessætning et sikkert sted, og giv den ikke til nogen."; -"vc_seed_reveal_button_title" = "Hold nede for at få vist"; -"view_seed_reminder_subtitle_1" = "Sikre din konto ved at gemme din gendannelsessætning"; -"view_seed_reminder_subtitle_2" = "Tryk og hold på de skjulte ord for at få vist din gendannelsessætning, opbevare dem derefter sikkert for at kunne gendanne dit Session ID."; -"view_seed_reminder_subtitle_3" = "Sørg for at opbevare din gendannelsessætning et sikkert sted"; -"vc_path_title" = "Rute"; -"vc_path_explanation" = "Session skjuler din IP adresse ved at sende dine beskeder igennem adskillige Service Noder i Session's decentraliserede netværk. Dette er de lande din forbindelse for nuværende bliver sendt igennem:"; -"vc_path_device_row_title" = "Dig"; -"vc_path_guard_node_row_title" = "Indgangs Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Lær mere"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Indtast Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Kode"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session behøver kameraadgang for at scanne QR Koder"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Indtast et gruppenavn"; -"vc_create_closed_group_empty_state_message" = "Du har endnu ingen kontakter"; -"vc_create_closed_group_group_name_missing_error" = "Indtast venligst et gruppenavn"; -"vc_create_closed_group_group_name_too_long_error" = "Indtast venligst et kortere gruppenavn"; -"vc_create_closed_group_too_many_group_members_error" = "En lukket gruppe kan ikke have over 100 medlemmer"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Kode"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Indstillinger"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Vælg venligst et brugernavn"; -"vc_settings_display_name_too_long_error" = "Vælg venligst et kortere brugernavn"; -"vc_settings_privacy_button_title" = "Privatliv"; -"vc_settings_notifications_button_title" = "Notifikationer"; -"vc_settings_recovery_phrase_button_title" = "Gendannelsessætning"; -"vc_settings_clear_all_data_button_title" = "Ryd data"; -"vc_qr_code_title" = "QR kode"; -"vc_qr_code_view_my_qr_code_tab_title" = "Vis Min QR Kode"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Kode"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan en anden brugers QR kode for at starte en samtale med dem"; -"vc_view_my_qr_code_explanation" = "Dette er din QR kode. Andre brugere kan scanne den for at starte en session med dig."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Du vil få notifikationer om nye beskeder øjeblikkeligt ved hjælp af Apple’s notifikations servere."; -"fast_mode" = "Hurtig Tilstand"; -"slow_mode_explanation" = "Session vil indimellem kontrollere for for nye beskeder i baggrunden."; -"slow_mode" = "Langsom Tilstand"; -"vc_pn_mode_title" = "Besked Notifikationer"; -"vc_link_device_recovery_phrase_tab_title" = "Gendannelsessætning"; -"vc_link_device_scan_qr_code_explanation" = "Gå til indstillinger → Gendannelsessætning på din anden enhed for at få vist din QR kode."; -"vc_enter_recovery_phrase_title" = "Gendannelsessætning"; -"vc_enter_recovery_phrase_explanation" = "For at forbinde din enhed, Indtast den gendannelsessætning der blev vist, da du oprettede dit Session ID."; -"vc_enter_public_key_text_field_hint" = "Indtast Session ID eller ONS navn"; -"admin_group_leave_warning" = "Fordi det er dig, der har oprettet denne gruppe, vil den blive slettet for alle. Dette kan ikke fortrydes."; -"vc_join_open_group_suggestions_title" = "Eller tilmeld dig en af disse..."; -"vc_settings_invite_a_friend_button_title" = "Inviter en Ven"; -"copied" = "Kopieret"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopier Session ID"; -"vc_conversation_input_prompt" = "Besked"; -"vc_conversation_voice_message_cancel_message" = "Swipe for at afbryde"; -"modal_download_attachment_title" = "Hav tillid til %@?"; -"modal_download_attachment_explanation" = "Er du sikker på du vil downloade medie sendt af %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Åben URL?"; -"modal_open_url_explanation" = "Er du sikker på, at du ønsker at åbne %@?"; -"modal_open_url_button_title" = "Åben"; -"modal_copy_url_button_title" = "Kopier link"; -"modal_blocked_title" = "Fjern blokering af %@?"; -"modal_blocked_explanation" = "Er du sikker på du vil fjerne blokeringen af %@?"; -"modal_blocked_button_title" = "Fjern Blokering"; -"modal_link_previews_title" = "Aktiver Forhåndsvisning af Links?"; -"modal_link_previews_explanation" = "Aktivering af link forhåndsvisning vil forhåndsvise URLs du sender og modtager. Dette kan være brugbart, men Session vil være nødt til at kontakte tilsluttede websider for at generere forhåndsvisninger. Du kan altid deaktivere link forhåndsvisning i Session's indstillinger."; -"modal_link_previews_button_title" = "Aktiver"; -"vc_share_title" = "Del med Session"; -"vc_share_loading_message" = "Forbereder vedhæftninger..."; -"vc_share_sending_message" = "Sender..."; -"vc_share_link_previews_unsecure" = "Forhåndsvisning ikke indlæst for usikkert link"; -"vc_share_link_previews_error" = "Kunne ikke indlæse forhåndsvisning"; -"vc_share_link_previews_disabled_title" = "Link Forhåndsvisninger Deaktiveret"; -"vc_share_link_previews_disabled_explanation" = "Aktivering af link forhåndsvisning vil vise forhåndsvisninger for URLs du deler. Dette kan være brugbart, men Session bliver nødt til at kontakte linkede websider for at generere forhåndsvisninger.\n\nDu kan aktivere link forhåndsvisning i Session's indstillinger."; -"view_open_group_invitation_description" = "Åben gruppeinvitation"; -"vc_conversation_settings_invite_button_title" = "Tilføj medlemmer"; -"modal_send_seed_title" = "Advarsel"; -"modal_send_seed_explanation" = "Det her er din gendannelsessætning. Hvis du sender den til nogen vil de have fuld adgang til din konto."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Underret kun når jeg bliver omtalt"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Når aktiveret, vil du kun blive underrettet når du bliver omtalt i en besked."; -"view_conversation_title_notify_for_mentions_only" = "Underret kun når jeg bliver omtalt"; -"message_deleted" = "Denne besked er blevet slettet"; -"delete_message_for_me" = "Slet kun for mig"; -"delete_message_for_everyone" = "Slet for alle"; -"delete_message_for_me_and_recipient" = "Slet for mig og %@"; -"context_menu_reply" = "Svar"; -"context_menu_save" = "Gem"; -"context_menu_ban_user" = "Bloker bruger"; -"context_menu_ban_and_delete_all" = "Bloker og Slet Alle"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Tilføj vedhæftninger"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Foto bibliotek"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Skjul vedhæftnings muligheder"; -"invalid_recovery_phrase" = "Ugyldig Gendannelsessætning"; -"DISMISS_BUTTON_TEXT" = "Afvis"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Indstillinger"; -"call_outgoing" = "Du ringede til %@"; -"call_incoming" = "%@ ringede til dig"; -"call_missed" = "Ubesvaret opkald fra %@"; -"APN_Message" = "Du har en ny besked."; -"APN_Collapsed_Messages" = "Du har %@ nye beskeder."; -"PIN_BUTTON_TEXT" = "Fastgør"; -"UNPIN_BUTTON_TEXT" = "Frigør"; -"modal_call_missed_tips_title" = "Mistet opkald"; -"modal_call_missed_tips_explanation" = "Mistet opkald fra '%@' fordi du ikke har aktiveret ‘Lyd- og videoopkald’ i Privatlivsindstillinger."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ tog et screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Beskeder"; -"MESSAGE_REQUESTS_TITLE" = "Beskedanmodninger"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Ingen afventende beskedanmodninger"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Ryd Alle"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Ryd"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Er du sikker på du vil slette denne beskedanmodning?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Din beskedanmodning er blevet accepteret."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Du har en ny beskedanmodning"; -"TXT_HIDE_TITLE" = "Skjul"; -"TXT_DELETE_ACCEPT" = "Accepter"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Opkalds Tilladelse Krævet"; -"modal_call_permission_request_explanation" = "Du kan aktivere ’Lyd- og videoopkald’ I Privatlivsindstillinger."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Der opstod en fejl"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Prøv venligst igen senere"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Ryd Alle Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data ikke slettet af 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data ikke slettet af %@ Service Noder. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Din Gendannelsessætning"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/de.lproj/Localizable.strings b/Session/Meta/Translations/de.lproj/Localizable.strings deleted file mode 100644 index 4458245efc..0000000000 --- a/Session/Meta/Translations/de.lproj/Localizable.strings +++ /dev/null @@ -1,1133 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Anhang"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Beschriftung"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Dateityp: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Größe: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Nachrichtenlimit erreicht"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Senden"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Anhang"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Fehler beim Senden des Anhangs"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Das Bild konnte nicht konvertiert werden."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Das Video konnte nicht verarbeitet werden."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Das Bild kann nicht analysiert werden."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Metadaten können nicht aus dem Bild entfernt werden."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Die Größe des Bildes kann nicht geändert werden."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Anhang ist zu groß."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Der Anhang enthält ungültige Inhalte."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Anlagenfehlermeldung für Anlagen mit einem ungültigen Dateiformat."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Anlagenfehlermeldung für Anhänge ohne Daten."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Dokument konnte nicht ausgewählt werden."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Bitte erstelle ein komprimiertes Archiv dieser Datei oder dieses Verzeichnisses und versuche es erneut zu versenden."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Dateiformat nicht unterstützt"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Sprachnachricht"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blockieren"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ blockieren?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Blockierung von %@ aufheben?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Blockieren aufheben"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ wurde blockiert."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Benutzer blockiert"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ wurde freigegeben."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blockierte Nutzer können Dich nicht anrufen oder Dir Nachrichten senden."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Fertig"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Auswählen"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Ok..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Keine Treffer"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 Treffer"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d von %d Treffern"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Diesen Benutzer blockieren"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Stummschalten"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Unterhaltung durchsuchen"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Verschieben und Skalieren"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Dies kann einige Minuten dauern."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimiere Datenbank"; -/* The present; the current time. */ -"DATE_NOW" = "Jetzt"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Verschwindende Nachrichten"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Gruppe bearbeiten"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Diese Unterhaltung enthält keine Medieninhalte."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Neuere Medieninhalte werden geladen …"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Ältere Medieninhalte werden geladen …"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Abruf des angeforderten GIF gescheitert. Bitte überprüfe, ob du online bist."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ein unbekannter Fehler ist aufgetreten."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF kann nicht abgerufen werden"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Bitte gib deine Suche ein."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Fehler. Für erneuten Versuch tippen."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Keine Ergebnisse."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Gruppe erstellt"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ ist der Gruppe beigetreten. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ hat die Gruppe verlassen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ wurde aus der Gruppe entfernt. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ wurden aus der Gruppe entfernt. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Gruppenname lautet jetzt »%@«. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Gruppe aktualisiert."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Du hast die Gruppe verlassen."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Du wurdest aus der Gruppe entfernt. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Du kannst nicht mehr als %@ Elemente teilen."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Anhangsauswahl gescheitert."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ungültige Audiodatei."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Verlassen"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Gruppe verlassen"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Alle Medieninhalte"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "%d Nachrichten löschen"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Nachricht löschen"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ am %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Du"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Diesen Monat"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Versand gescheitert."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Gelesen"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Wird gesendet …"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Gesendet"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Wird hochgeladen …"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ an %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Notiz an mich"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Du hast eventuell Nachrichten erhalten, während dein %@ neu gestartet wurde."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ hat verschwindende Nachrichten deaktiviert."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ hat die Zeit für verschwindende Nachrichten auf %@ festgelegt."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Bild kann nicht aufgenommen werden."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Bild kann nicht aufgenommen werden."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Konfigurieren der Kamera gescheitert."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unbenanntes Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Markieren als gelesen"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Antwort"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authentifizieren, um Session zu öffnen."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentifizierung gescheitert"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Medieninhalte verwerfen?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Medieninhalte verwerfen"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (Standard)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Nachrichtenton"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Stumm"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ Tage"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ Stunden"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ Minuten"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@min"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ Sekunden"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ Tag"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ Stunde"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ Minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ Woche"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ Wochen"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Abbrechen"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Löschen"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Sprachnachricht"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Antippen und Halten zum Aufnehmen einer Sprachnachricht."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Sprachnachricht"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du hast verschwindende Nachrichten deaktiviert."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du hast die Zeit für verschwindende Nachrichten auf %@ festgelegt"; -// MARK: - Session -"continue_2" = "Fortsetzen"; -"copy" = "Kopieren"; -"invalid_url" = "Ungültige URL"; -"next" = "Weiter"; -"share" = "Teilen"; -"invalid_session_id" = "Ungültige Session ID"; -"cancel" = "Abbrechen"; -"your_session_id" = "Deine Session ID"; -"vc_landing_title_2" = "Deine Session beginnt hier..."; -"vc_landing_register_button_title" = "Session ID erstellen"; -"vc_landing_restore_button_title" = "Deine Session fortsetzen"; -"vc_landing_link_button_title" = "Mit einem bestehenden Konto verlinken"; -"view_fake_chat_bubble_1" = "Was ist Session?"; -"view_fake_chat_bubble_2" = "Es ist eine dezentrale, verschlüsselte Messaging-App"; -"view_fake_chat_bubble_3" = "Es werden also weder meine persönlichen Daten noch die Metadaten meiner Konversationen erfasst? Wie funktioniert das?"; -"view_fake_chat_bubble_4" = "Mit einer Kombination aus fortschrittlicher anonymer Routing- und Ende-zu-Ende-Verschlüsselungstechnologie."; -"view_fake_chat_bubble_5" = "Freunde lassen Freunde keine kompromittierten Messenger verwenden. Gern geschehen."; -"vc_register_title" = "Sag Hallo zu deiner Session ID"; -"vc_register_explanation" = "Ihre Session ID ist die eindeutige Adresse, unter der Personen Sie über Session kontaktieren können. Ihre Session ID ist nicht mit Ihrer realen Identität verbunden, völlig anonym und von Natur aus privat."; -"vc_restore_title" = "Ihr Konto wiederherstellen"; -"vc_restore_explanation" = "Gib die Wiederherstellungsphrase ein, die Du bei der Anmeldung zur Wiederherstellung Deines Kontos erhalten hast."; -"vc_restore_seed_text_field_hint" = "Gib Deine Wiederherstellungsphrase ein"; -"vc_link_device_title" = "Gerät verbinden"; -"vc_link_device_scan_qr_code_tab_title" = "QR-Code scannen"; -"vc_display_name_title_2" = "Wählen Sie Ihren Anzeigenamen"; -"vc_display_name_explanation" = "Dies wird dein Name sein, wenn du Session verwendest. Es kann dein richtiger Name, ein Alias oder alles andere sein, was dir gefällt."; -"vc_display_name_text_field_hint" = "Gib einen Anzeigenamen ein"; -"vc_display_name_display_name_missing_error" = "Bitte wähle einen Anzeigenamen"; -"vc_display_name_display_name_too_long_error" = "Bitte wähle einen kürzeren Anzeigenamen"; -"vc_pn_mode_recommended_option_tag" = "Empfohlen"; -"vc_pn_mode_no_option_picked_modal_title" = "Bitte wähle eine Option"; -"vc_home_empty_state_message" = "Du hast noch keine Kontakte"; -"vc_home_empty_state_button_title" = "Session starten"; -"vc_seed_title" = "Ihre Wiederherstellungsphrase"; -"vc_seed_title_2" = "Deine Wiederherstellungsphrase"; -"vc_seed_explanation" = "Deine Wiederherstellungsphrase ist der Hauptschlüssel für Deine Session ID. Mit diesem Satz kannst Du Deine Session ID wiederherstellen, wenn Du den Zugriff auf Dein Gerät verlierst. Bewahre Deine Wiederherstellungsphrase an einem sicheren Ort auf und gib sie an niemandem weiter."; -"vc_seed_reveal_button_title" = "Zur Anzeige gedrückt halten"; -"view_seed_reminder_subtitle_1" = "Sichere Dein Konto, indem Du Deine Wiederherstellungsphrase speicherst"; -"view_seed_reminder_subtitle_2" = "Tippe und halte die verborgenen Wörter, um Deine Wiederherstellungsphrase anzuzeigen, und speichere sie dann, um Deine Session ID zu sichern."; -"view_seed_reminder_subtitle_3" = "Stelle sicher, Deine Wiederherstellungsphrase an einem sicheren Ort aufzubewahren"; -"vc_path_title" = "Pfad"; -"vc_path_explanation" = "Session verbirgt Ihre IP-Adresse, indem Ihre Nachrichten über mehrere Dienstknoten im dezentralen Session-Netzwerk weitergeleitet werden. Dies sind die Länder, durch die Ihre Verbindung derzeit weitergeleitet wird:"; -"vc_path_device_row_title" = "Du"; -"vc_path_guard_node_row_title" = "Eingangsknoten"; -"vc_path_service_node_row_title" = "Dienstknoten"; -"vc_path_destination_row_title" = "Ziel"; -"vc_path_learn_more_button_title" = "Mehr erfahren"; -"vc_create_private_chat_title" = "Neue Nachricht"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session ID eingeben"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR-Code scannen"; -"vc_enter_public_key_explanation" = "Beginne eine neue Unterhaltung, indem du die Session-ID von jemandem eingibst oder deine Session-ID mit ihm teilt."; -"vc_scan_qr_code_camera_access_explanation" = "Session benötigt Kamerazugriff, um die QR-Codes scannen zu können."; -"vc_create_closed_group_title" = "Gruppe erstellen"; -"vc_create_closed_group_text_field_hint" = "Gib einen Gruppennamen ein"; -"vc_create_closed_group_empty_state_message" = "Du hast noch keine Kontakte"; -"vc_create_closed_group_group_name_missing_error" = "Bitte gib einen Gruppennamen ein"; -"vc_create_closed_group_group_name_too_long_error" = "Bitte gib einen kürzeren Gruppennamen ein"; -"vc_create_closed_group_too_many_group_members_error" = "Eine geschlossene Gruppe kann maximal 100 Mitglieder haben."; -"vc_join_public_chat_title" = "Community beitreten"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community-URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR-Code scannen"; -"vc_enter_chat_url_text_field_hint" = "Community-URL eingeben"; -"vc_settings_title" = "Einstellungen"; -"vc_group_settings_title" = "Gruppen-Einstellungen"; -"vc_settings_display_name_missing_error" = "Bitte wähle einen Anzeigenamen"; -"vc_settings_display_name_too_long_error" = "Bitte wähle einen kürzeren Anzeigenamen"; -"vc_settings_privacy_button_title" = "Datenschutz"; -"vc_settings_notifications_button_title" = "Benachrichtigungen"; -"vc_settings_recovery_phrase_button_title" = "Wiederherstellungsphrase"; -"vc_settings_clear_all_data_button_title" = "Daten löschen"; -"vc_qr_code_title" = "QR-Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "Meinen QR-Code anzeigen"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR-Code scannen"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scanne den QR-Code von jemandem, um eine Unterhaltung mit ihm zu beginnen"; -"vc_view_my_qr_code_explanation" = "Das ist Ihr QR-Code. Andere Benutzer können ihn scannen, um eine Session mit Ihnen zu starten."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Du wirst über neue Nachrichten zuverlässig und unmittelbar durch Apples Push-Mitteilungsdienst informiert."; -"fast_mode" = "Schneller Modus"; -"slow_mode_explanation" = "Session sucht gelegentlich im Hintergrund nach neuen Nachrichten."; -"slow_mode" = "Langsam Modus"; -"vc_pn_mode_title" = "Nachrichtenmitteilungen"; -"vc_link_device_recovery_phrase_tab_title" = "Wiederherstellungsphrase"; -"vc_link_device_scan_qr_code_explanation" = "Gehe zu Einstellungen → Wiederherstellungsphrase auf deinem anderen Gerät um deinen QR-Code anzeigen zu lassen."; -"vc_enter_recovery_phrase_title" = "Wiederherstellungsphrase"; -"vc_enter_recovery_phrase_explanation" = "Gib zum Verknüpfen deines Geräts die Wiederherstellungsphrase ein, die du bei der Anmeldung erhalten hast."; -"vc_enter_public_key_text_field_hint" = "Session-ID oder ONS-Name eingeben"; -"admin_group_leave_warning" = "Da du der Ersteller dieser Gruppe bist, wird sie für alle gelöscht. Dies kann nicht rückgängig gemacht werden."; -"vc_join_open_group_suggestions_title" = "Oder tritt einer von diesen bei..."; -"vc_settings_invite_a_friend_button_title" = "Freund einladen"; -"copied" = "Kopiert"; -"vc_conversation_settings_copy_session_id_button_title" = "Session-ID kopieren"; -"vc_conversation_input_prompt" = "Nachricht"; -"vc_conversation_voice_message_cancel_message" = "Wischen um abzubrechen"; -"modal_download_attachment_title" = "%@ vertrauen?"; -"modal_download_attachment_explanation" = "Bist du sicher, dass du die von %@ gesendeten Medien herunterladen möchtest?"; -"modal_download_button_title" = "Herunterladen"; -"modal_open_url_title" = "URL öffnen?"; -"modal_open_url_explanation" = "Bist du sicher, dass du %@ öffnen möchtest?"; -"modal_open_url_button_title" = "Öffnen"; -"modal_copy_url_button_title" = "Link kopieren"; -"modal_blocked_title" = "%@ entsperren?"; -"modal_blocked_explanation" = "Bist du sicher, dass du %@ entblocken möchtest?"; -"modal_blocked_button_title" = "Entsperren"; -"modal_link_previews_title" = "Link-Vorschau aktivieren?"; -"modal_link_previews_explanation" = "Das Aktivieren von Link-Vorschauen zeigt Vorschaubilder für URLs, die du sendest und empfängst. Dies kann nützlich sein, aber Session muss verlinkte Webseiten kontaktieren, um Vorschaubilder zu generieren. Du kannst die Link-Vorschau in den Session-Einstellungen immer deaktivieren."; -"modal_link_previews_button_title" = "Aktivieren"; -"vc_share_title" = "Mit Session teilen"; -"vc_share_loading_message" = "Anlagen werden vorbereitet..."; -"vc_share_sending_message" = "Wird gesendet ..."; -"vc_share_link_previews_unsecure" = "Vorschau nicht für unsicheren Link geladen"; -"vc_share_link_previews_error" = "Ansicht konnte nicht geladen werden"; -"vc_share_link_previews_disabled_title" = "Linkvorschau deaktiviert"; -"vc_share_link_previews_disabled_explanation" = "Wenn du die Linkvorschau aktivierst, werden Vorschauen für URLs angezeigt, die du teilst. Dies kann nützlich sein, aber Session muss die verlinkten Webseiten kontaktieren, um Vorschauen zu erstellen. \n\nDu kannst die Linkvorschau in den Einstellungen von Session aktivieren."; -"view_open_group_invitation_description" = "Gruppeneinladung öffnen"; -"vc_conversation_settings_invite_button_title" = "Mitglieder hinzufügen"; -"modal_send_seed_title" = "Warnung"; -"modal_send_seed_explanation" = "Dies ist Deine Wiederherstellungsphrase. Wenn Du diese jemandem schickst, hat er oder sie vollen Zugriff auf Dein Konto."; -"modal_send_seed_send_button_title" = "Senden"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Nur für Erwähnungen benachrichtigen"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Wenn aktiviert, wirst du nur für Nachrichten benachrichtigt, die dich erwähnen."; -"view_conversation_title_notify_for_mentions_only" = "Nur für Erwähnungen benachrichtigen"; -"message_deleted" = "Die Nachricht wurde gelöscht"; -"delete_message_for_me" = "Nur für mich löschen"; -"delete_message_for_everyone" = "Für jeden löschen"; -"delete_message_for_me_and_recipient" = "Für mich und %@ löschen"; -"context_menu_reply" = "Antworten"; -"context_menu_save" = "Speichern"; -"context_menu_ban_user" = "Nutzer sperren"; -"context_menu_ban_and_delete_all" = "Sperren und alles löschen"; -"context_menu_ban_user_error_alert_message" = "Benutzer konnte nicht gesperrt werden"; -"accessibility_expanding_attachments_button" = "Anhänge hinzufügen"; -"accessibility_gif_button" = "GIF"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Fotobibliothek"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Optionen für Anhänge einklappen"; -"invalid_recovery_phrase" = "Ungültige Wiederherstellungsphrase"; -"DISMISS_BUTTON_TEXT" = "Verwerfen"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Einstellungen"; -"call_outgoing" = "Du hast %@ angerufen"; -"call_incoming" = "%@ hat angerufen"; -"call_missed" = "Verpasster Anruf von %@"; -"APN_Message" = "Du hast eine neue Nachricht"; -"APN_Collapsed_Messages" = "Du hast %@ neue Nachrichten."; -"PIN_BUTTON_TEXT" = "Anheften"; -"UNPIN_BUTTON_TEXT" = "Loslösen"; -"modal_call_missed_tips_title" = "Verpasster Anruf"; -"modal_call_missed_tips_explanation" = "Verpasster Anruf von '%@', da du die Berechtigung 'Anrufe und Videoanrufe' in den Datenschutzeinstellungen aktivieren musst."; -"media_saved" = "Medien gespeichert von %@."; -"screenshot_taken" = "%@ hat ein Screenshot gemacht."; -"SEARCH_SECTION_CONTACTS" = "Kontakte & Gruppen"; -"SEARCH_SECTION_MESSAGES" = "Nachrichten"; -"MESSAGE_REQUESTS_TITLE" = "Nachrichtenanfragen"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Keine ausstehenden Nachrichtenanfragen"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Alles löschen"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Sind Sie sich sicher, dass Sie alle Nachrichten und Gruppenanfragen löschen möchten?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Löschen"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Bist du sicher, dass du diese Nachrichtenanfrage löschen willst?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Möchtest du den Kontakt wirklich blockieren?"; -"MESSAGE_REQUESTS_INFO" = "Wenn du diesem Nutzer eine Nachricht sendest, wird die Nachrichtenanfrage akzeptiert und deine Session-ID übertragen."; -"MESSAGE_REQUESTS_ACCEPTED" = "Ihre Nachrichtenanfrage wurde angenommen."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Du hast eine neue Nachrichtenanfrage"; -"TXT_HIDE_TITLE" = "Ausblenden"; -"TXT_DELETE_ACCEPT" = "Zustimmen"; -"TXT_BLOCK_USER_TITLE" = "Benutzer blockieren"; -"ALERT_ERROR_TITLE" = "Fehler"; -"modal_call_permission_request_title" = "Anrufberechtigung erforderlich"; -"modal_call_permission_request_explanation" = "Du kannst die Berechtigung für \"Sprach- und Videoanrufe\" in den Datenschutzeinstellungen aktivieren."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Hoppla, ein Fehler ist aufgetreten"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Bitte versuche es später erneut"; -"LOADING_CONVERSATIONS" = "Chats werden geladen..."; -"DATABASE_MIGRATION_FAILED" = "Bei der Optimierung der Datenbank ist ein Fehler aufgetreten\n\nSie können Ihre Anwendungsprotokolle exportieren, um sie zur Fehlerbehebung mit uns zu teilen oder Sie können Ihr Gerät wiederherstellen\n\nWarnung: Die Wiederherstellung Ihres Geräts führt zum Verlust von sämtlichen Daten, die älter als zwei Wochen sind"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Etwas ist schiefgelaufen. Bitte überprüfe deine Wiederherstellungsphrase und versuche es erneut."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Es sieht so aus, als ob du nicht genügend Wörter eingegeben hast. Bitte überprüfe deine Wiederherstellungsphrase und versuche es erneut."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Du scheinst das letzte Wort Deiner Wiederherstellungsphrase auszulassen. Bitte prüfe Deine Eingabe und versuche es erneut."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Es scheint ein ungültiges Wort in Deiner Wiederherstellungsphrase zu geben. Bitte überprüfe Deine Eingabe und versuche es erneut."; -"RECOVERY_PHASE_ERROR_FAILED" = "Deine Wiederherstellungsphrase konnte nicht verifiziert werden. Bitte überprüfe, was Du eingegeben hast, und versuche es erneut."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentifizierung konnte nicht abgerufen werden."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentifizierung fehlgeschlagen."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Zu viele fehlgeschlagene Authentifizierungen. Bitte versuche es später erneut."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Um die Bildschirmsperre zu verwenden, musst du einen Code in den iOS-Einstellungen festlegen."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Um die Bildschirmsperre zu verwenden, musst du einen Code in den iOS-Einstellungen festlegen."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Du musst in den iOS-Einstellungen einen Code festlegen, um die Bildschirmsperre zu verwenden."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Senden"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Wiederholen"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Chat anzeigen"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Nachricht konnte nicht gesendet werden."; -"INVALID_SESSION_ID_MESSAGE" = "Bitte prüfe die Session-ID und versuche es erneut."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Bitte überprüfe die Wiederherstellungsphrase und versuche es erneut."; -"MEDIA_TAB_TITLE" = "Medien"; -"DOCUMENT_TAB_TITLE" = "Dokumente"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Diese Unterhaltung enthält keine Dokumente."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Lade neueres Dokument…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Älteres Dokument wird geladen…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktivitäten"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Tiere & Natur"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flaggen"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Essen & Trinken"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objekte"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Zuletzt verwendet"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & Personen"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbole"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Reisen & Orte"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reagiert auf eine Nachricht mit %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Und 1 weiterer hat mit %@ auf diese Nachricht reagiert."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Und %@ andere haben %@ auf diese Nachricht reagiert."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Langsam! Du hast zu viele Emoji-Reaktionen versendet. Versuche es später erneut."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Neue Unterhaltung"; -"CREATE_GROUP_BUTTON_TITLE" = "Erstellen"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Beitreten"; -"PRIVACY_TITLE" = "Datenschutz"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "App-Sperre"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Sitzung sperren"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Zum Entsperren der Sitzung benötigst Du Touch ID, Face ID oder Dein Passwort."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Lesebestätigungen"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Lesebestätigungen"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Sende Lesebestätigungen in Einzelchats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Tipp-Indikatoren"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Tipp-Indikatoren"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Zeige und teile Eingabeindikatoren in Einzelchats."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link-Vorschauen"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Sende Link-Vorschauen"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generiere Link-Vorschauen für unterstützte URLs."; -"PRIVACY_SECTION_CALLS" = "Anrufe (Beta)"; -"PRIVACY_CALLS_TITLE" = "Sprach- und Videoanrufe"; -"PRIVACY_CALLS_DESCRIPTION" = "Aktiviert Sprach- und Videoanrufe an und von anderen Benutzern."; -"PRIVACY_CALLS_WARNING_TITLE" = "Sprach- und Videoanrufe (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Deine IP-Adresse ist bei Beta-Anrufen für Deinen Gesprächspartner und einen Oxen Foundation Server sichtbar. Bist Du sicher, dass Du Sprach- und Videoanrufe aktivieren möchtest?"; -"NOTIFICATIONS_TITLE" = "Benachrichtigungen"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Benachrichtigungsstrategie"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Schnellen Modus verwenden"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Du wirst über neue Nachrichten zuverlässig und unmittelbar durch Apples Push-Mitteilungsdienst informiert."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Gehe zu den Benachrichtigungseinstellungen"; -"NOTIFICATIONS_SECTION_STYLE" = "Benachrichtigungsstil"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Ton"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Ton, wenn die App geöffnet ist"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Inhalt der Benachrichtigungen"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Die Informationen, die in den Benachrichtigungen angezeigt werden."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name und Inhalt"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Nur Kontaktname"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Weder Name noch Nachricht"; -"CONVERSATION_SETTINGS_TITLE" = "Chats"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Nachricht kürzen"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Communities kürzen"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Lösche Nachrichten, die älter als 6 Monate sind, aus Communities mit über 2.000 Nachrichten."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio-Nachrichten"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Audio-Nachrichten automatisch abspielen"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Automatisches Abspielen aufeinanderfolgender Audio-Nachrichten."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blockierte Kontakte"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Du hast keine blockierten Kontakte."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Entblocken"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Bist Du sicher, dass Du den Benutzer {name} entblocken möchtest?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "Dieser Kontakt"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Bist Du sicher, dass Du den Benutzer {name} entblocken möchtest"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "und %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "und %d andere?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Entblocken"; -"APPEARANCE_TITLE" = "Darstellung"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Grundfarbe"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Wie geht es Dir?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Mir geht es gut, danke, und Dir?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Mir geht es prima, danke."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto-Nachtmodus"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "An Systemeinstellungen anpassen"; -"HELP_TITLE" = "Hilfe"; -"HELP_REPORT_BUG_TITLE" = "Melde einen Fehler"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exportiere Deine Fehlerprotokolle und lade die Datei über Sessions Service-Center hoch."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Protokolle exportieren"; -"HELP_TRANSLATE_TITLE" = "Session übersetzen"; -"HELP_FEEDBACK_TITLE" = "Wir würden uns über Dein Feedback freuen"; -"HELP_FAQ_TITLE" = "Häufig gestellte Fragen (FAQ)"; -"HELP_SUPPORT_TITLE" = "Unterstützung"; -"modal_clear_all_data_title" = "Alle Daten löschen"; -"modal_clear_all_data_explanation" = "Dies wird Deine Nachrichten und Kontakte dauerhaft löschen. Möchtest Du nur dieses Gerät löschen oder Deine Daten aus dem Netzwerk löschen?"; -"modal_clear_all_data_explanation_2" = "Bist Du sicher, dass Du Deine Daten aus dem Netzwerk löschen möchtest? Wenn Du fortfährst, kannst Du Deine Nachrichten oder Kontakte nicht wiederherstellen."; -"modal_clear_all_data_device_only_button_title" = "Nur Gerät löschen"; -"modal_clear_all_data_entire_account_button_title" = "Geräte- und Netzwerkdaten löschen"; -"dialog_clear_all_data_deletion_failed_1" = "Daten nicht gelöscht von Service Node 1. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Daten nicht gelöscht von %@ Service Noten. Service Noten IDs: %@."; -"modal_clear_all_data_confirm" = "Löschen"; -"modal_seed_title" = "Deine Wiederherstellungsphrase"; -"modal_seed_explanation" = "Du kannst Deine Wiederherstellungsphrase verwenden, um Dein Konto wiederherzustellen oder ein Gerät zu verknüpfen."; -"modal_permission_explanation" = "Session benötigt %@ Zugriff, um fortzufahren. Du kannst den Zugriff in den iOS-Einstellungen aktivieren."; -"modal_permission_settings_title" = "Einstellungen"; -"modal_permission_camera" = "Kamera"; -"modal_permission_microphone" = "Mikrofon"; -"modal_permission_library" = "Bibliothek"; -"DISAPPEARING_MESSAGES_OFF" = "Aus"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Aus"; -"COPY_GROUP_URL" = "Gruppen-URL kopieren"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontakte"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Bitte wähle mindestens ein Gruppenmitglied aus"; -"GROUP_CREATION_PLEASE_WAIT" = "Bitte warten, während die Gruppe erstellt wird..."; -"GROUP_CREATION_ERROR_TITLE" = "Gruppe konnte nicht erstellt werden"; -"GROUP_CREATION_ERROR_MESSAGE" = "Bitte überprüfe Deine Internetverbindung und versuche es erneut."; -"GROUP_UPDATE_ERROR_TITLE" = "Gruppe konnte nicht aktualisiert werden"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Du kannst die Gruppe nicht verlassen, während andere Mitglieder hinzugefügt oder entfernt werden."; -"GROUP_ACTION_REMOVE" = "Entfernen"; -"GROUP_TITLE_MEMBERS" = "Mitglieder"; -"GROUP_TITLE_FALLBACK" = "Gruppe"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Du kannst nur Nachrichten an Blinded IDs innerhalb einer Community senden"; -"DM_ERROR_INVALID" = "Bitte überprüfe die Session-ID oder den ONS-Namen und versuche es erneut"; -"COMMUNITY_ERROR_INVALID_URL" = "Bitte überprüfe die von Dir eingegebene URL und versuche es erneut."; -"COMMUNITY_ERROR_GENERIC" = "Beitritt fehlgeschlagen"; -"DISAPPERING_MESSAGES_TITLE" = "Verschwindende Nachrichten"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Löschart"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Nach dem Lesen verschwinden"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Nachrichten löschen, nachdem sie gelesen wurden."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Nach dem Senden verschwinden"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Nachrichten löschen, nachdem sie gesendet worden sind."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Speichern"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Diese Einstellung gilt für alle in dieser Unterhaltung."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Diese Einstellung gilt für alle in dieser Unterhaltung. Nur Gruppenadministratoren können diese Einstellung ändern."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ hat eingestellt, dass die Nachrichten %@ verschwinden, nachdem sie %@ sind"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ hat eingestellt, dass die Nachrichten %@ verschwinden, nachdem sie %@ sind"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ hat verschwindende Nachrichten ausgeschaltet"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Verlassen"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Weniger anzeigen"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Nachrichtenanfragen"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Du kannst Sprachnachrichten und -Anhänge senden, sobald der Empfänger diese Nachrichtenanfrage angenommen hat"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Wird gesendet"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Gesendet"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Gelesen"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Senden fehlgeschlagen"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "Datei ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Dateityp"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Dateigröße"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Auflösung"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Dauer"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Synchronisation fehlgeschlagen"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Wird synchronisiert"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Senden der Nachricht fehlgeschlagen"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Synchronisieren der Nachricht mit anderen Geräten fehlgeschlagen"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Von allen meinen Geräten löschen"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Erneut senden"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Erneut synchronisieren"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "GIFs durchsuchen?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session wird sich mit Giphy verbinden, um Suchergebnisse zu liefern. Die Metadaten werden beim Senden von GIFs nicht vollständig geschützt."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Nachrichteninfo"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Stummschalten"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Stummschaltung aufheben"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Als gelesen markieren"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Als ungelesen markieren"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Gruppe verlassen"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Sind Sie sicher, dass Sie %@ verlassen möchten?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Verlassen..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Verlassen der Gruppe fehlgeschlagen!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Die Gruppe kann nicht verlassen werden, bitte versuche es erneut"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Gruppe löschen"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Wollen Sie %@ wirklich löschen?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Unterhaltung löschen"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Möchten Sie die Unterhaltung mit %@ wirklich löschen?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Notiz an mich ausblenden"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Bist du sicher, dass du %@ ausblenden möchtest?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Speichern"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Entfernen"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Avatar Bild konnte nicht entfernt werden"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Spitznamen eingeben"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Ungelesene Nachrichten"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Sie haben keine Nachrichten von %@. Senden Sie eine Nachricht, um das Gespräch zu beginnen!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "Sie haben keine Nachrichten in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/el.lproj/Localizable.strings b/Session/Meta/Translations/el.lproj/Localizable.strings deleted file mode 100644 index f93323d14c..0000000000 --- a/Session/Meta/Translations/el.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Συνημμένο"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Λεζάντα"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Τύπος αρχείου: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Μέγεθος: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Συμπληρώθηκε το όριο μηνυμάτων"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Αποστολή"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Συνημμένο"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Σφάλμα Αποστολής Συνημμένου"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Αδυναμία μετατροπής της εικόνας."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Αδυναμία επεξεργασίας του βίντεο."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Αδυναμία ανάλυσης της εικόνας."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Αδυναμία αφαίρεσης των μεταδεδομένων από την εικόνα."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Αδυναμία αλλαγής μεγέθους της εικόνας."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Το συνημμένο είναι πολύ μεγάλο."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Το συνημμένο περιλαμβάνει μη έγκυρο περιεχόμενο."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Το συνημμένο έχει μη έγκυρη μορφή αρχείου."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Το συνημμένο είναι κενό."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Αποτυχία επιλογής εγγράφου."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Παρακαλώ δημιουργήστε ένα συμπιεσμένο αρχείο αυτού του αρχείου ή καταλόγου και προσπαθήστε να στείλετε αυτό."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Μη υποστηριζόμενο Αρχείο"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Ηχητικό μήνυμα"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Φραγή"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Φραγή %@;"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Αναίρεση φραγής %@;"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Αναίρεση φραγής"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ έχει φραγεί."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Ο Χρήστης έχει Φραγεί"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Έγινε κατάργηση φραγής σε %@."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Οι φραγμένοι χρήστες δεν θα είναι σε θέση να σας καλούν ή να σας στέλνουν μηνύματα."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Ολοκληρώθηκε"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Επιλογή"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Αναζήτηση..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Χωρίς αποτελέσματα"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 αντιστοιχία"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d από %d αντιστοιχίσεις"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Φραγή Αυτού του Χρήστη"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Σίγαση"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Αναζήτηση στη Συνομιλία"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Μετακίνηση και Κλιμάκωση"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Αυτό μπορεί να διαρκέσει μερικά λεπτά."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Βελτιστοποίηση Βάσης Δεδομένων"; -/* The present; the current time. */ -"DATE_NOW" = "Τώρα"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Εξαφανιζόμενα Μηνύματα"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Επεξεργασία Ομάδας"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Δεν έχετε κανένα πολυμέσο σε αυτή τη συνομιλία."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Φόρτωση Νεότερων Πολυμέσων..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Φόρτωση Παλαιότερων Πολυμέσων..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Αποτυχία ανάκτησης του GIF. Παρακαλώ επιβεβαιώστε ότι είστε συνδεδεμένοι."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Παρουσιάστηκε άγνωστο σφάλμα."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Αδυναμία επιλογής GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Παρακαλώ εισάγετε την αναζήτηση."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Σφάλμα. Πατήστε για επανάληψη."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Κανένα Αποτέλεσμα."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Η ομάδα δημιουργήθηκε"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ έγινε μέλος στην ομάδα. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ αποχώρησε από την ομάδα. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ αφαιρέθηκε από την ομάδα. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ αφαιρέθηκαν από την ομάδα. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Ο τίτλος είναι τώρα '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Η ομάδα ενημερώθηκε."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Αποχωρήσατε από την ομάδα."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Έχετε διαγραφεί από την ομάδα. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Δεν μπορείτε να μοιραστείτε πάνω από %@ αντικείμενα."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Αποτυχία επιλογής συνημμένου."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Μη έγκυρο αρχείο ήχου."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Αποχώρηση"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Αποχώρηση από την ομάδα"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Όλα τα πολυμέσα"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Διαγραφή %d μηνυμάτων"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Διαγραφή Μηνύματος"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ στις %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Εσείς"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Αυτό το μήνα"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Η αποστολή απέτυχε."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Διαβάστηκε"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Γίνεται Αποστολή…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Στάλθηκε"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Μεταφόρτωση…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ σε %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Σημείωση προς εμένα"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Μπορεί να έχετε λάβει μηνύματα κατά την επανεκκίνηση του %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "ΟΚ"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ απενεργοποίησε τα εξαφανιζόμενα μηνύματα."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ όρισε το χρόνο εξαφάνισης μηνύματος σε %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Αδυναμία λήψης εικόνας."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Αδυναμία λήψης εικόνας."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Αποτυχία ρύθμισης της κάμερας."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Άλμπουμ Χωρίς Όνομα"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Σήμανση ως Αναγνωσμένο"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Απάντηση"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Πραγματοποιήστε έλεγχο ταυτότητας για να ανοίξετε το Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Ο Έλεγχος Ταυτότητας Απέτυχε"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Απόρριψη Πολυμέσων;"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Απόρριψη Πολυμέσων"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (προεπιλογή)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Ήχος Μηνύματος"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Κανένας"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ ημέρες"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@ημ"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ ώρες"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ώρ"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ λεπτά"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@λ"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ δευτερόλεπτα"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@δ"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ ημέρα"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ ώρα"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ λεπτό"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ εβδομάδα"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ εβδομάδες"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@εβδ"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Ακύρωση"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Διαγραφή"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Ηχητικό Μήνυμα"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Πατήστε παρατεταμένα για να ηχογραφήσετε ένα φωνητικό μήνυμα."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Ηχητικό Μήνυμα"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Απενεργοποιήσατε τα εξαφανιζόμενα μηνύματα."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ορίσατε τον χρόνο του εξαφανιζόμενου μηνύματος σε %@"; -// MARK: - Session -"continue_2" = "Συνέχεια"; -"copy" = "Αντιγραφή"; -"invalid_url" = "Μη έγκυρο URL"; -"next" = "Επόμενο"; -"share" = "Κοινοποίηση"; -"invalid_session_id" = "Μη έγκυρο Session ID"; -"cancel" = "Ακύρωση"; -"your_session_id" = "Το Session ID σας"; -"vc_landing_title_2" = "Το Session σας ξεκινά εδώ..."; -"vc_landing_register_button_title" = "Δημιουργία Session ID"; -"vc_landing_restore_button_title" = "Συνεχίστε το Session σας"; -"vc_landing_link_button_title" = "Συνδέστε μια Συσκευή"; -"view_fake_chat_bubble_1" = "Τι είναι το Session;"; -"view_fake_chat_bubble_2" = "Είναι μια αποκεντρωμένη, κρυπτογραφημένη εφαρμογή ανταλλαγής μηνυμάτων"; -"view_fake_chat_bubble_3" = "Άρα δε συλλέγει τα προσωπικά μου στοιχεία ή τα μεταδεδομένα της συνομιλίας μου; Πώς λειτουργεί;"; -"view_fake_chat_bubble_4" = "Χρησιμοποιώντας έναν συνδυασμό προηγμένων τεχνολογιών ανώνυμης δρομολόγησης και κρυπτογράφησης από άκρο σε άκρο."; -"view_fake_chat_bubble_5" = "Οι φίλοι δεν αφήνουν τους φίλους να χρησιμοποιούν ευάλωτες εφαρμογές ανταλλαγής μηνυμάτων. Παρακαλώ."; -"vc_register_title" = "Πείτε γεια στο Session ID σας"; -"vc_register_explanation" = "Το Session ID σας είναι η μοναδική διεύθυνση που μπορούν να χρησιμοποιήσουν κάποιοι για να επικοινωνήσουν μαζί σας στο Session. Χωρίς σύνδεση με την πραγματική σας ταυτότητα, το Session ID σας είναι σχεδιασμένο να είναι εντελώς ανώνυμο και ιδιωτικό."; -"vc_restore_title" = "Επαναφορά του λογαριασμού σας"; -"vc_restore_explanation" = "Εισαγάγετε τη φράση ανάκτησης που σας δόθηκε κατά την εγγραφή σας για να επαναφέρετε τον λογαριασμό σας."; -"vc_restore_seed_text_field_hint" = "Εισαγάγετε τη φράση σας ανάκτησης"; -"vc_link_device_title" = "Συνδέστε μια Συσκευή"; -"vc_link_device_scan_qr_code_tab_title" = "Σάρωση Κωδικού QR"; -"vc_display_name_title_2" = "Επιλέξτε το όνομα εμφάνισής σας"; -"vc_display_name_explanation" = "Αυτό θα είναι το όνομά σας όταν χρησιμοποιείτε το Session. Μπορεί να είναι το πραγματικό σας όνομα, ένα ψευδώνυμο ή οτιδήποτε άλλο θέλετε."; -"vc_display_name_text_field_hint" = "Εισαγάγετε ένα όνομα εμφάνισης"; -"vc_display_name_display_name_missing_error" = "Παρακαλώ επιλέξτε ένα όνομα εμφάνισης"; -"vc_display_name_display_name_too_long_error" = "Παρακαλώ επιλέξτε ένα μικρότερο όνομα εμφάνισης"; -"vc_pn_mode_recommended_option_tag" = "Προτείνεται"; -"vc_pn_mode_no_option_picked_modal_title" = "Παρακαλώ Διαλέξτε μία από τις Επιλογές"; -"vc_home_empty_state_message" = "Δεν έχετε επαφές ακόμα"; -"vc_home_empty_state_button_title" = "Ξεκινήστε ένα Session"; -"vc_seed_title" = "Η Φράση σας Ανάκτησης"; -"vc_seed_title_2" = "Γνωρίστε τη φράση σας ανάκτησης"; -"vc_seed_explanation" = "Η φράση σας ανάκτησης είναι το κύριο κλειδί στο Session ID σας - μπορείτε να τη χρησιμοποιήσετε για να επαναφέρετε το Session ID σας εάν χάσετε την πρόσβαση στη συσκευή σας. Αποθηκεύστε τη φράση ανάκτησης σε ένα ασφαλές μέρος, και μην τη δώσετε σε κανέναν."; -"vc_seed_reveal_button_title" = "Πατήστε για αποκάλυψη"; -"view_seed_reminder_subtitle_1" = "Ασφαλίστε τον λογαριασμό σας αποθηκεύοντας τη φράση σας ανάκτησης"; -"view_seed_reminder_subtitle_2" = "Πατήστε παρατεταμένα τις λέξεις που τροποποιήθηκαν για να αποκαλύψετε τη φράση ανάκτησης και μετά αποθηκεύστε την με ασφάλεια για να εξασφαλίσετε το αναγνωριστικό σας."; -"view_seed_reminder_subtitle_3" = "Φροντίστε να αποθηκεύσετε τη φράση ανάκτησής σας σε ασφαλές μέρος"; -"vc_path_title" = "Διαδρομή"; -"vc_path_explanation" = "Το Session αποκρύπτει την IP σας, δρομολογώντας τα μηνύματά σας μέσω αρκετών Κόμβων υπηρεσιών στο αποκεντρωμένο Session δίκτυο. Αυτές είναι οι χώρες που δρομολογείται η σύνδεσή σας αυτή τη στιγμή:"; -"vc_path_device_row_title" = "Εσείς"; -"vc_path_guard_node_row_title" = "Κόμβος Εισόδου"; -"vc_path_service_node_row_title" = "Κόμβος Εξυπηρέτησης"; -"vc_path_destination_row_title" = "Προορισμός"; -"vc_path_learn_more_button_title" = "Μάθετε Περισσότερα"; -"vc_create_private_chat_title" = "Νέο Μήνυμα"; -"vc_create_private_chat_enter_session_id_tab_title" = "Εισαγάγετε το Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Σάρωση Κωδικού QR"; -"vc_enter_public_key_explanation" = "Ξεκινήστε μια νέα συνομιλία εισάγοντας το Session ID κάποιου ή μοιραστείτε το δικό σας Session ID μαζί τους."; -"vc_scan_qr_code_camera_access_explanation" = "Το Session χρειάζεται πρόσβαση στην κάμερα για σάρωση κωδικών QR"; -"vc_create_closed_group_title" = "Δημιουργία Ομάδας"; -"vc_create_closed_group_text_field_hint" = "Εισαγάγετε ένα όνομα ομάδας"; -"vc_create_closed_group_empty_state_message" = "Δεν έχετε επαφές ακόμη"; -"vc_create_closed_group_group_name_missing_error" = "Παρακαλώ εισαγάγετε ένα όνομα ομάδας"; -"vc_create_closed_group_group_name_too_long_error" = "Παρακαλώ εισαγάγετε ένα μικρότερο όνομα ομάδας"; -"vc_create_closed_group_too_many_group_members_error" = "Μια κλειστή ομάδα δεν μπορεί να έχει περισσότερα από 100 μέλη"; -"vc_join_public_chat_title" = "Γίνετε μέλος της Κοινότητας"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL Κοινότητας"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Σάρωση Κωδικού QR"; -"vc_enter_chat_url_text_field_hint" = "Εισαγάγετε URL Κοινότητας"; -"vc_settings_title" = "Ρυθμίσεις"; -"vc_group_settings_title" = "Ρυθμίσεις Ομάδας"; -"vc_settings_display_name_missing_error" = "Παρακαλώ επιλέξτε ένα όνομα εμφάνισης"; -"vc_settings_display_name_too_long_error" = "Παρακαλώ επιλέξτε ένα μικρότερο όνομα εμφάνισης"; -"vc_settings_privacy_button_title" = "Απόρρητο"; -"vc_settings_notifications_button_title" = "Ειδοποιήσεις"; -"vc_settings_recovery_phrase_button_title" = "Φράση Ανάκτησης"; -"vc_settings_clear_all_data_button_title" = "Διαγραφή Δεδομένων"; -"vc_qr_code_title" = "Κωδικός QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Προβολή του Κωδικού QR Μου"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Σάρωση Κωδικού QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Σαρώστε τον κωδικό QR κάποιου για να ξεκινήσετε μια συνομιλία μαζί του"; -"vc_view_my_qr_code_explanation" = "Αυτός είναι ο δικός σας κωδικός QR. Άλλοι χρήστες μπορούν να τον σαρώσουν για να ξεκινήσουν μια συνομιλία μαζί σας."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Θα ειδοποιηθείτε για νέα μηνύματα αξιόπιστα και άμεσα χρησιμοποιώντας τους διακομιστές ειδοποιήσεων της Apple."; -"fast_mode" = "Γρήγορη Λειτουργία"; -"slow_mode_explanation" = "Το Session θα ελέγχει περιστασιακά για νέα μηνύματα στο παρασκήνιο."; -"slow_mode" = "Αργή Λειτουργία"; -"vc_pn_mode_title" = "Ειδοποιήσεις Μηνυμάτων"; -"vc_link_device_recovery_phrase_tab_title" = "Φράση Ανάκτησης"; -"vc_link_device_scan_qr_code_explanation" = "Μεταβείτε στις Ρυθμίσεις → Φράση Ανάκτησης στην άλλη σας συσκευή για να εμφανίσετε τον κωδικό QR σας."; -"vc_enter_recovery_phrase_title" = "Φράση Ανάκτησης"; -"vc_enter_recovery_phrase_explanation" = "Για να συνδέσετε τη συσκευή σας, εισάγετε τη φράση ανάκτησης που σας δόθηκε κατά την εγγραφή σας."; -"vc_enter_public_key_text_field_hint" = "Εισαγάγετε Session ID ή όνομα ONS"; -"admin_group_leave_warning" = "Επειδή είστε ο δημιουργός αυτής της ομάδας θα διαγραφεί για όλους. Αυτό δεν μπορεί να αναιρεθεί."; -"vc_join_open_group_suggestions_title" = "Ή γίνετε μέλος σε ένα από αυτά..."; -"vc_settings_invite_a_friend_button_title" = "Προσκαλέστε ένα Φίλο"; -"copied" = "Αντιγράφηκε"; -"vc_conversation_settings_copy_session_id_button_title" = "Αντιγραφή Session ID"; -"vc_conversation_input_prompt" = "Μήνυμα"; -"vc_conversation_voice_message_cancel_message" = "Σύρετε για Ακύρωση"; -"modal_download_attachment_title" = "Εμπιστεύεστε την επαφή %@;"; -"modal_download_attachment_explanation" = "Σίγουρα θέλετε να κάνετε λήψη των πολυμέσων που έχουν σταλεί από %@;"; -"modal_download_button_title" = "Λήψη"; -"modal_open_url_title" = "Άνοιγμα URL;"; -"modal_open_url_explanation" = "Σίγουρα θέλετε να ανοίξετε το %@;"; -"modal_open_url_button_title" = "Άνοιγμα"; -"modal_copy_url_button_title" = "Αντιγραφή Συνδέσμου"; -"modal_blocked_title" = "Κατάργηση φραγής %@;"; -"modal_blocked_explanation" = "Σίγουρα θέλετε να καταργήσετε τη φραγή από %@;"; -"modal_blocked_button_title" = "Κατάργηση φραγής"; -"modal_link_previews_title" = "Ενεργοποίηση Προεπισκοπήσεων Συνδέσμου;"; -"modal_link_previews_explanation" = "Η ενεργοποίηση προεπισκοπήσεων συνδέσμων θα εμφανίζει προεπισκοπήσεις για τα URL που στέλνετε και λαμβάνετε. Αυτό μπορεί να είναι χρήσιμο, αλλά το Session θα πρέπει να επικοινωνήσει με τους αντίστοιχους ιστότοπους για να δημιουργήσει προεπισκοπήσεις. Μπορείτε ανά πάσα στιγμή να απενεργοποιήσετε τις προεπισκοπήσεις συνδέσμων στις ρυθμίσεις του Session."; -"modal_link_previews_button_title" = "Ενεργοποίηση"; -"vc_share_title" = "Κοινοποίηση στο Session"; -"vc_share_loading_message" = "Προετοιμασία συνημμένων..."; -"vc_share_sending_message" = "Αποστολή..."; -"vc_share_link_previews_unsecure" = "Η προεπισκόπηση δε φορτώθηκε για μη ασφαλή σύνδεσμο"; -"vc_share_link_previews_error" = "Αδυναμία φόρτωσης προεπισκόπησης"; -"vc_share_link_previews_disabled_title" = "Προεπισκοπήσεις Συνδέσμου Απενεργοποιημένες"; -"vc_share_link_previews_disabled_explanation" = "Η ενεργοποίηση προεπισκοπήσεων συνδέσμου θα εμφανίζει προεπισκοπήσεις για τα URL που κοινοποιείτε. Αυτό μπορεί να είναι χρήσιμο, αλλά το Session θα πρέπει να επικοινωνήσει με τους αντίστοιχους ιστότοπους για να δημιουργήσει προεπισκοπήσεις.\n\nΜπορείτε να ενεργοποιήσετε τις προεπισκοπήσεις συνδέσμου στις ρυθμίσεις του Session."; -"view_open_group_invitation_description" = "Πρόσκληση ανοιχτής ομάδας"; -"vc_conversation_settings_invite_button_title" = "Προσθήκη Μελών"; -"modal_send_seed_title" = "Προειδοποίηση"; -"modal_send_seed_explanation" = "Αυτή είναι η φράση σας ανάκτησης. Αν τη στείλετε σε κάποιον θα έχει πλήρη πρόσβαση στον λογαριασμό σας."; -"modal_send_seed_send_button_title" = "Αποστολή"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Ειδοποίηση Μόνο για Αναφορές"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Όταν είναι ενεργοποιημένο, θα ειδοποιηθείτε μόνο για μηνύματα που σας αναφέρουν."; -"view_conversation_title_notify_for_mentions_only" = "Ειδοποιεί Μόνο για Αναφορές"; -"message_deleted" = "Αυτό το μήνυμα έχει διαγραφεί"; -"delete_message_for_me" = "Διαγραφή μόνο για εμένα"; -"delete_message_for_everyone" = "Διαγραφή για όλους"; -"delete_message_for_me_and_recipient" = "Διαγραφή για εμένα και %@"; -"context_menu_reply" = "Απάντηση"; -"context_menu_save" = "Αποθήκευση"; -"context_menu_ban_user" = "Αποκλεισμός Χρήστη"; -"context_menu_ban_and_delete_all" = "Αποκλεισμός και Διαγραφή Όλων"; -"context_menu_ban_user_error_alert_message" = "Αδυναμία αποκλεισμού χρήστη"; -"accessibility_expanding_attachments_button" = "Προσθήκη συνημμένων"; -"accessibility_gif_button" = "GIF"; -"accessibility_document_button" = "Έγγραφο"; -"accessibility_library_button" = "Βιβλιοθήκη φωτογραφιών"; -"accessibility_camera_button" = "Κάμερα"; -"accessibility_main_button_collapse" = "Σύμπτυξη επιλογών συνημμένου"; -"invalid_recovery_phrase" = "Μη έγκυρη Φράση Ανάκτησης"; -"DISMISS_BUTTON_TEXT" = "Παράλειψη"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Ρυθμίσεις"; -"call_outgoing" = "Καλέσατε %@"; -"call_incoming" = "Είχατε κλήση από %@"; -"call_missed" = "Αναπάντητη Κλήση από %@"; -"APN_Message" = "Έχετε ένα νέο μήνυμα"; -"APN_Collapsed_Messages" = "Έχετε %@ νέα μηνύματα."; -"PIN_BUTTON_TEXT" = "Καρφίτσωμα"; -"UNPIN_BUTTON_TEXT" = "Ξεκαρφίτσωμα"; -"modal_call_missed_tips_title" = "Αναπάντητη κλήση"; -"modal_call_missed_tips_explanation" = "Η κλήση από «%@» χάθηκε επειδή πρέπει να ενεργοποιήσετε την άδεια «Κλήσεις Φωνής και Βίντεο» στις Ρυθμίσεις Απορρήτου."; -"media_saved" = "Αποθηκεύτηκαν πολυμέσα από %@."; -"screenshot_taken" = "Λήφθηκε στιγμιότυπο οθόνης από %@."; -"SEARCH_SECTION_CONTACTS" = "Επαφές & Ομάδες"; -"SEARCH_SECTION_MESSAGES" = "Μηνύματα"; -"MESSAGE_REQUESTS_TITLE" = "Αιτήματα Μηνύματος"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Δεν υπάρχουν αιτήματα μηνυμάτων σε εκκρεμότητα"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Διαγραφή Όλων"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Διαγραφή"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Σίγουρα θέλετε να διαγράψετε αυτό το αίτημα μηνύματος;"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Σίγουρα θέλετε να θέσετε σε φραγή αυτή την επαφή;"; -"MESSAGE_REQUESTS_INFO" = "Η αποστολή μηνύματος σε αυτόν τον χρήστη θα αποδεχτεί αυτόματα το αίτημα μηνύματός του και θα αποκαλύψει το Session ID σας."; -"MESSAGE_REQUESTS_ACCEPTED" = "Το αίτημα μηνύματός σας έγινε δεκτό."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Έχετε ένα νέο αίτημα μηνύματος"; -"TXT_HIDE_TITLE" = "Απόκρυψη"; -"TXT_DELETE_ACCEPT" = "Αποδοχή"; -"TXT_BLOCK_USER_TITLE" = "Φραγή Χρήστη"; -"ALERT_ERROR_TITLE" = "Σφάλμα"; -"modal_call_permission_request_title" = "Απαιτείται Άδεια Κλήσης"; -"modal_call_permission_request_explanation" = "Μπορείτε να ενεργοποιήσετε την άδεια «Κλήσεις Φωνής και Βίντεο» στις Ρυθμίσεις Απορρήτου."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ωχ, προέκυψε σφάλμα"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Παρακαλώ δοκιμάστε ξανά αργότερα"; -"LOADING_CONVERSATIONS" = "Φόρτωση Συνομιλιών..."; -"DATABASE_MIGRATION_FAILED" = "Παρουσιάστηκε σφάλμα κατά τη βελτιστοποίηση της βάσης δεδομένων\n\nΜπορείτε να εξάγετε τα αρχεία καταγραφής της εφαρμογής σας για να μπορείτε να τα μοιραστείτε για την αντιμετώπιση προβλημάτων ή μπορείτε να επαναφέρετε τη συσκευή σας\n\nΠροειδοποίηση: Η επαναφορά της συσκευής σας θα οδηγήσει σε απώλεια δεδομένων παλαιότερων από δύο εβδομάδες"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Κάτι πήγε στραβά. Παρακαλώ ελέγξτε τη φράση ανάκτησης και προσπαθήστε ξανά."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Φαίνεται ότι δεν εισαγάγατε αρκετές λέξεις. Παρακαλώ ελέγξτε τη φράση σας ανάκτησης και προσπαθήστε ξανά."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Φαίνεται πως λείπει η τελευταία λέξη από τη φράση σας ανάκτησης. Παρακαλώ ελέγξτε τι εισαγάγατε και προσπαθήστε ξανά."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Φαίνεται να υπάρχει μια μη έγκυρη λέξη στη φράση σας ανάκτησης. Παρακαλώ ελέγξτε τι εισαγάγατε και προσπαθήστε ξανά."; -"RECOVERY_PHASE_ERROR_FAILED" = "Η φράση ανάκτησης δεν μπόρεσε να επαληθευτεί. Παρακαλώ ελέγξτε τι εισαγάγατε και προσπαθήστε ξανά."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Δεν ήταν δυνατή η πρόσβαση στον έλεγχο ταυτότητας."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Ο έλεγχος ταυτότητας απέτυχε."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Πάρα πολλές αποτυχημένες προσπάθειες ταυτοποίησης. Παρακαλώ προσπαθήστε ξανά αργότερα."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Απαιτείται να ορίσετε έναν κωδικό πρόσβασης στις Ρυθμίσεις του iOS σας για να χρησιμοποιήσετε το Κλείδωμα Οθόνης."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Πρέπει να ορίσετε έναν κωδικό πρόσβασης στις Ρυθμίσεις του iOS σας για να χρησιμοποιήσετε το Κλείδωμα Οθόνης."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Πρέπει να ενεργοποιήσετε έναν κωδικό πρόσβασης στις Ρυθμίσεις του iOS σας για να χρησιμοποιήσετε το Κλείδωμα Οθόνης."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Αποστολή"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Επανάληψη"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Εμφάνιση Συνομιλίας"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Η αποστολή του μηνύματός σας απέτυχε."; -"INVALID_SESSION_ID_MESSAGE" = "Παρακαλώ ελέγξτε το Session ID και προσπαθήστε ξανά."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Παρακαλώ ελέγξτε τη Φράση Ανάκτησης και προσπαθήστε ξανά."; -"MEDIA_TAB_TITLE" = "Πολυμέσα"; -"DOCUMENT_TAB_TITLE" = "Έγγραφα"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Δεν έχετε κανένα έγγραφο σε αυτή τη συνομιλία."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Φόρτωση Νεότερου Εγγράφου..."; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Φόρτωση Παλαιότερου Εγγράφου..."; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Δραστηριότητες"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Ζώα & Φύση"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Σημαίες"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Φαγητό & Ποτό"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Αντικείμενα"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Πρόσφατα"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Χαμόγελα & Άνθρωποι"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Σύμβολα"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Ταξίδια & Τοποθεσίες"; -"EMOJI_REACTS_NOTIFICATION" = "%@ αντέδρασε σε ένα μήνυμα με %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Και άλλος 1 αντέδρασε με %@ σε αυτό το μήνυμα."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Και %@ άλλοι αντέδρασαν με %@ σε αυτό το μήνυμα."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Ηρεμήστε! Έχετε στείλει πάρα πολλές αντιδράσεις emoji. Δοκιμάστε ξανά σύντομα."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Νέα Συνομιλία"; -"CREATE_GROUP_BUTTON_TITLE" = "Δημιουργία"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Γίνετε μέλος"; -"PRIVACY_TITLE" = "Απόρρητο"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Ασφάλεια Οθόνης"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Κλείδωμα του Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Απαιτείται Touch ID, Face ID ή ο κωδικός πρόσβασης για να ξεκλειδώσετε το Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Αναφορές Ανάγνωσης"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Αναφορές Ανάγνωσης"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Αποστολή αναφορών ανάγνωσης σε ένας προς έναν συνομιλίες."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Δείκτες Πληκτρολόγησης"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Δείκτες Πληκτρολόγησης"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Δείτε και κοινοποιήστε δείκτες πληκτρολόγησης σε ένας προς έναν συνομιλίες."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Προεπισκοπήσεις Συνδέσμου"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Αποστολή Προεπισκοπήσεων Συνδέσμου"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Δημιουργία προεπισκοπήσεων συνδέσμου για υποστηριζόμενα URL."; -"PRIVACY_SECTION_CALLS" = "Κλήσεις (Beta)"; -"PRIVACY_CALLS_TITLE" = "Κλήσεις Φωνής και Βίντεο"; -"PRIVACY_CALLS_DESCRIPTION" = "Επιτρέπει κλήσεις φωνής και βίντεο από και προς άλλους χρήστες."; -"PRIVACY_CALLS_WARNING_TITLE" = "Κλήσεις Φωνής και Βίντεο (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Η IP διεύθυνσή σας είναι ορατή στον συνομιλητή σας και σε έναν Oxen Foundation server κατά τη χρήση κλήσεων beta. Σίγουρα θέλετε να ενεργοποιήσετε τις Κλήσεις Φωνής και Βίντεο;"; -"NOTIFICATIONS_TITLE" = "Ειδοποιήσεις"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Στρατηγική Ειδοποιήσεων"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Χρήση Γρήγορης Λειτουργίας"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Θα ειδοποιηθείτε για νέα μηνύματα αξιόπιστα και άμεσα χρησιμοποιώντας τους διακομιστές ειδοποιήσεων της Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Μεταβείτε στις ρυθμίσεις ειδοποιήσεων της συσκευής"; -"NOTIFICATIONS_SECTION_STYLE" = "Στυλ Ειδοποιήσεων"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Ήχος"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Ήχος όταν η Εφαρμογή είναι Ανοιχτή"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Περιεχόμενο Ειδοποίησης"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Οι πληροφορίες που εμφανίζονται στις ειδοποιήσεις."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Όνομα & Περιεχόμενο"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Όνομα Μόνο"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Χωρίς Όνομα ή Περιεχόμενο"; -"CONVERSATION_SETTINGS_TITLE" = "Συνομιλίες"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Περικοπή Μηνυμάτων"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Περικοπή Κοινοτήτων"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Διαγραφή μηνυμάτων παλαιότερων από 6 μήνες από Κοινότητες που έχουν πάνω από 2.000 μηνύματα."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Ηχητικά Μηνύματα"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Αυτόματη Αναπαραγωγή Ηχητικών Μηνυμάτων"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Αυτόματη αναπαραγωγή διαδοχικών ηχητικών μηνυμάτων."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Επαφές σε Φραγή"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Δεν έχετε επαφές σε φραγή."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Κατάργηση φραγής"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Σίγουρα θέλετε να καταργήσετε τη φραγή από %@;"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "αυτή την επαφή"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Σίγουρα θέλετε να καταργήσετε τη φραγή από %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "και %@;"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "και %d άλλους;"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Κατάργηση φραγής"; -"APPEARANCE_TITLE" = "Εμφάνιση"; -"APPEARANCE_THEMES_TITLE" = "Θέματα"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Κύριο χρώμα"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Πώς είσαι;"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Είμαι καλά ευχαριστώ, εσύ;"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Τα πάω τέλεια, ευχαριστώ."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Αυτόματη νυχτερινή λειτουργία"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Αντιστοίχιση ρυθμίσεων συστήματος"; -"HELP_TITLE" = "Βοήθεια"; -"HELP_REPORT_BUG_TITLE" = "Αναφορά Σφάλματος"; -"HELP_REPORT_BUG_DESCRIPTION" = "Εξαγάγετε τα αρχεία καταγραφής σας και στη συνέχεια μεταφορτώστε το αρχείο μέσω του Help Desk του Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Εξαγωγή Αρχείων Καταγραφής"; -"HELP_TRANSLATE_TITLE" = "Μετάφραση του Session"; -"HELP_FEEDBACK_TITLE" = "Θα θέλαμε πολύ τα Σχόλιά σας"; -"HELP_FAQ_TITLE" = "Συχνές Ερωτήσεις"; -"HELP_SUPPORT_TITLE" = "Υποστήριξη"; -"modal_clear_all_data_title" = "Διαγραφή Όλων των Δεδομένων"; -"modal_clear_all_data_explanation" = "Αυτό θα διαγράψει μόνιμα τα μηνύματα και τις επαφές σας. Θα θέλατε να καθαρίσετε αυτή τη συσκευή μόνο ή να διαγράψετε και τα δεδομένα σας από το δίκτυο;"; -"modal_clear_all_data_explanation_2" = "Σίγουρα θέλετε να διαγράψετε τα δεδομένα σας από το δίκτυο; Εάν συνεχίσετε, δε θα μπορείτε να επαναφέρετε τα μηνύματα ή τις επαφές σας."; -"modal_clear_all_data_device_only_button_title" = "Διαγραφή Μόνο Συσκευής"; -"modal_clear_all_data_entire_account_button_title" = "Διαγραφή Συσκευής Και Δικτύου"; -"dialog_clear_all_data_deletion_failed_1" = "Τα δεδομένα δε διαγράφηκαν από 1 Κόμβο Εξυπηρέτησης. ID Κόμβου Εξυπηρέτησης: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Τα δεδομένα δε διαγράφηκαν από %@ Κόμβους Εξυπηρέτησης. ID Κόμβων Εξυπηρέτησης: %@."; -"modal_clear_all_data_confirm" = "Διαγραφή"; -"modal_seed_title" = "Η Φράση σας Ανάκτησης"; -"modal_seed_explanation" = "Μπορείτε να χρησιμοποιήσετε τη φράση σας ανάκτησης για να επαναφέρετε τον λογαριασμό σας ή να συνδέσετε μια συσκευή."; -"modal_permission_explanation" = "Το Session χρειάζεται πρόσβαση σε %@ για να συνεχίσει. Μπορείτε να ενεργοποιήσετε την πρόσβαση στις ρυθμίσεις του iOS σας."; -"modal_permission_settings_title" = "Ρυθμίσεις"; -"modal_permission_camera" = "κάμερα"; -"modal_permission_microphone" = "μικρόφωνο"; -"modal_permission_library" = "βιβλιοθήκη"; -"DISAPPEARING_MESSAGES_OFF" = "Απενεργοποιημένο"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Απενεργοποιημένη"; -"COPY_GROUP_URL" = "Αντιγραφή URL Ομάδας"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Επαφές"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Παρακαλώ επιλέξτε τουλάχιστον 1 μέλος από την ομάδα"; -"GROUP_CREATION_PLEASE_WAIT" = "Παρακαλώ περιμένετε όσο δημιουργείται η ομάδα..."; -"GROUP_CREATION_ERROR_TITLE" = "Αδυναμία Δημιουργίας Ομάδας"; -"GROUP_CREATION_ERROR_MESSAGE" = "Παρακαλώ ελέγξτε τη σύνδεση σας στο διαδίκτυο και προσπαθήστε ξανά."; -"GROUP_UPDATE_ERROR_TITLE" = "Αδυναμία Ενημέρωσης Ομάδας"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Δεν είναι δυνατή η αποχώρηση από την ομάδα κατά την προσθήκη ή αφαίρεση άλλων μελών."; -"GROUP_ACTION_REMOVE" = "Αφαίρεση"; -"GROUP_TITLE_MEMBERS" = "Μέλη"; -"GROUP_TITLE_FALLBACK" = "Ομάδα"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Μπορείτε να στείλετε μόνο μηνύματα σε Blinded IDs από μέσα από μια Κοινότητα"; -"DM_ERROR_INVALID" = "Παρακαλώ ελέγξτε το Session ID ή το όνομα ONS και δοκιμάστε ξανά"; -"COMMUNITY_ERROR_INVALID_URL" = "Παρακαλώ ελέγξτε το URL που εισαγάγατε και προσπαθήστε ξανά."; -"COMMUNITY_ERROR_GENERIC" = "Αδυναμία Συμμετοχής"; -"DISAPPERING_MESSAGES_TITLE" = "Εξαφανιζόμενα Μηνύματα"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Τύπος Διαγραφής"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Εξαφάνιση Μετά από Ανάγνωση"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Τα μηνύματα διαγράφονται αφού έχουν αναγνωσθεί."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Εξαφάνιση Μετά από Αποστολή"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Τα μηνύματα διαγράφονται αφού έχουν αποσταλεί."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Χρονόμετρο"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Ορισμός"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Αυτή η ρύθμιση ισχύει για όλους σε αυτή τη συνομιλία."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Αυτή η ρύθμιση ισχύει για όλους σε αυτή τη συνομιλία. Μόνο οι διαχειριστές της ομάδας μπορούν να αλλάξουν αυτή τη ρύθμιση."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ όρισε τα μηνύματα να εξαφανίζονται %@ αφότου έχουν %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ άλλαξε τα μηνύματα να εξαφανίζονται %@ αφότου έχουν %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ απενεργοποίησε τα εξαφανιζόμενα μηνύματα"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/en.lproj/Localizable.strings b/Session/Meta/Translations/en.lproj/Localizable.strings deleted file mode 100644 index 111e28d92d..0000000000 --- a/Session/Meta/Translations/en.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Attachment"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Caption"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "File type: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Size: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Message limit reached"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Send"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Attachment"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Error Sending Attachment"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Failed to choose document."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Please create a compressed archive of this file or directory and try sending that instead."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Unsupported File"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Voice Message"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Block"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Block %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Unblock"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ has been blocked."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "User Blocked"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blocked users will not be able to call you or send you messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Done"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Select"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "No matches"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 match"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d of %d matches"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Block This User"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Mute"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Search Conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "This can take a few minutes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizing Database"; -/* The present; the current time. */ -"DATE_NOW" = "Now"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Disappearing Messages"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Edit Group"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Group created"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "You have left the group."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " You were removed from the group. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Leave"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Leave Group"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "All Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Delete Message"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "You"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "This Month"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sending failed."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Read"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sending…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sent"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploading…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note to Self"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "You"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/eo.lproj/Localizable.strings b/Session/Meta/Translations/eo.lproj/Localizable.strings deleted file mode 100644 index 1cd52417be..0000000000 --- a/Session/Meta/Translations/eo.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Kunsendaĵo"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Apudskribo"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "File type: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Size: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Mesaĝa limito atingite"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Sendi"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Kunsendaĵo"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Error Sending Attachment"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Failed to choose document."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Please create a compressed archive of this file or directory and try sending that instead."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Unsupported File"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Voĉmesaĝo"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloki"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Ĉu bloki %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Malbloki"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ has been blocked."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "User Blocked"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blocked users will not be able to call you or send you messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Done"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Elekti"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Neniuj informpetitoj"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 informpetito"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d de %d informpetitoj"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Block This User"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Silentigi"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Search Conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "This can take a few minutes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizing Database"; -/* The present; the current time. */ -"DATE_NOW" = "Nun"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Memviŝontaj Mesaĝoj"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Redakti Grupon"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupo kreitite"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Vi forlasis la grupon."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Vi estas forigita el la grupo. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Forlasi"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Forlasi Grupon"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "All Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Forviĝi %d Mesaĝojn"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Forviŝi Mesaĝon"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Vi"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ĉi Tiu Monato"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sendante malsukcesis."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Legita"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sendante…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sendita"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Alŝutante…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ al %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Noto al Mi mem"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Respondi"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ tagoj"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@t"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ horoj"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutoj"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekundoj"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ tago"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ horo"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuto"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Forviŝi"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voĉmesaĝo"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voĉmesaĝo"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Kopii"; -"invalid_url" = "Malvalida URL"; -"next" = "Sekva"; -"share" = "Kunhavigi"; -"invalid_session_id" = "Malvalida Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Via Session ID"; -"vc_landing_title_2" = "Via Sesio komenci ĉi tie..."; -"vc_landing_register_button_title" = "Krei Session ID-on"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Ligi Aparaton"; -"view_fake_chat_bubble_1" = "Kio estas Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Diru saluton al via Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restaŭri vian konton"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Ligi Aparaton"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Entajpu vidigan nomon"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Komenci Sesion"; -"vc_seed_title" = "Via Ripara Frazo"; -"vc_seed_title_2" = "Ekkonu vian riparan frazon"; -"vc_seed_explanation" = "Via ripara frazo estas la ĉefŝlosilo de via Session ID — vi povas uzi ĝin por restaŭri vian Session ID-on se vi malgajros aliron al via aparato. Konservu vian riparan frazon en sekura loko, kaj donu ĝin al neniu."; -"vc_seed_reveal_button_title" = "Tuŝadu por malkaŝi"; -"view_seed_reminder_subtitle_1" = "Sekurigi vian konton per konservi vian riparan frazon"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Vojo"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "Vi"; -"vc_path_guard_node_row_title" = "Enira Nodo"; -"vc_path_service_node_row_title" = "Serva Nodo"; -"vc_path_destination_row_title" = "Celo"; -"vc_path_learn_more_button_title" = "Lerni pli"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Entajpi Session ID-on"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skani QR-Kodon"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session bezonas fotilan aliron por skani QR-kodojn"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Entajpu grupnomon"; -"vc_create_closed_group_empty_state_message" = "Vi ankoraŭ ne havas kontaktojn"; -"vc_create_closed_group_group_name_missing_error" = "Bonvolu entajpi grupnomon"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skani QR-Kodon"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Agordo"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privateco"; -"vc_settings_notifications_button_title" = "Sciigoj"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR-Kodo"; -"vc_qr_code_view_my_qr_code_tab_title" = "Vidi Mian QR-Kodon"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skanu QR Kodon"; -"vc_qr_code_view_scan_qr_code_explanation" = "Skani ies QR-kodon por komenci konversacion kun si"; -"vc_view_my_qr_code_explanation" = "Ĉi tio estas via QR-kodo. Aliaj uzantoj povas skani ĝin por komenci sesion kun vi."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Rapida Maniero"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Malrapida Reĝimo"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Ripara Frazo"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Ripara Frazo"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Inviti Amikon"; -"copied" = "Kopiite"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopii Session ID-on"; -"vc_conversation_input_prompt" = "Mesaĝi"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Malfermi"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Ĉu Malbloki %@?"; -"modal_blocked_explanation" = "Ĉu vi certas, ke vi volas malbloki %@?"; -"modal_blocked_button_title" = "Malbloki"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Kunhavigi al Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sendante..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Aldoni Anojn"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Via Ripara Frazo"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/es-ES.lproj/Localizable.strings b/Session/Meta/Translations/es-ES.lproj/Localizable.strings deleted file mode 100644 index 91830f06df..0000000000 --- a/Session/Meta/Translations/es-ES.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Adjunto"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Descripción"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipo de archivo: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Tamaño: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Límite de texto."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Enviar"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Adjunto"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Fallo al enviar archivo adjunto"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Fallo al convertir imagen."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Fallo al procesar el vídeo."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Fallo al leer imagen."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Fallo al eliminar los metadatos de la imagen."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Fallo al redimensionar la imagen."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "El archivo adjunto es demasiado grande."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "El archivo adjunto incluye contenido inválido."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "El archivo adjunto tiene un formato de archivo inválido."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "El archivo adjunto está vacío."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Fallo al seleccionar el documento."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Por favor, crea un archivo comprimido de este fichero o carpeta y prueba a enviar la versión comprimida."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Archivo no admitido"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Mensaje de Voz"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloquear"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "¿Bloquear a %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "¿Desbloquear a %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Desbloquear"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ ha sido bloqueado."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Usuario Bloqueado"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ ha sido desbloqueado."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Los contactos bloqueados no podrán llamarte ni enviarte mensajes."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Hecho"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Seleccionar"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Buscando..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Sin resultados"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 resultado"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d de %d resultados"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloquear contacto"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Silenciar"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Buscar en el chat"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Editar foto"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Esto puede tomar unos minutos."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizando base de datos"; -/* The present; the current time. */ -"DATE_NOW" = "Ahora"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Desaparición de mensajes"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Editar grupo"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "No hay ningún adjunto en este chat."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Cargando adjuntos recientes…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Cargando adjuntos anteriores…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Error al descargar el GIF seleccionado. Por favor, verifique que tiene conexión a internet."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ocurrió un fallo desconocido."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Fallo al seleccionar GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Por favor, introduce el término de búsqueda."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Toque para volver a intentarlo."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Sin resultados."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupo creado"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ se ha unido al grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ ha abandonado el grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ ha sido expulsado del grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ han sido expulsados del grupo. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "El grupo ahora se llama '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupo actualizado."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Has abandonado el grupo."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Has sido eliminado del grupo. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "No se pueden compartir más de %@ imágenes."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Fallo al seleccionar el adjunto."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Archivo de audio inválido."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Abandonar"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Abandonar grupo"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Adjuntos"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Eliminar %d mensajes"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Eliminar mensaje"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ el %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+ %@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Tú"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Este mes"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Fallo al enviar."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Leído"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Enviando…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Enviado"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Subiendo…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ en %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Notas personales"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Puede que hayas recibido mensajes mientras se reiniciaba tu %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ha desactivado la desaparición de mensajes."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ha establecido la desaparición de mensajes en %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Fallo al capturar la imagen."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Fallo al capturar la imagen."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Fallo al activar la cámara."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Álbum sin nombre"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marcar como leído"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Responder"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Identifícate para acceder a Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Fallo al identificarse"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "¿Descartar cambios?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Descartar"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (por defecto)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Mensaje con sonido"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Ninguno"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ días"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ horas"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutos"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ segundos"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ día"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hora"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuto"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ semana"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ semanas"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@ sem"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancelar"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Eliminar"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Mensaje de voz"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Toca y mantén presionado para enviar un mensaje de voz."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Nota de voz"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Has desactivado la desaparición de mensajes."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Has fijado la desaparición de mensajes en %@."; -// MARK: - Session -"continue_2" = "Continuar"; -"copy" = "Copiar"; -"invalid_url" = "URL no válida"; -"next" = "Siguiente"; -"share" = "Compartir"; -"invalid_session_id" = "ID de Session no válida"; -"cancel" = "Cancelar"; -"your_session_id" = "Tu ID de Session"; -"vc_landing_title_2" = "Tu Session comienza aquí..."; -"vc_landing_register_button_title" = "Crear ID de Session"; -"vc_landing_restore_button_title" = "Continúa tu Session"; -"vc_landing_link_button_title" = "Vincular a una cuenta existente"; -"view_fake_chat_bubble_1" = "¿Qué es Session?"; -"view_fake_chat_bubble_2" = "Es una aplicación de mensajería descentralizada y cifrada"; -"view_fake_chat_bubble_3" = "¿Entonces no recopila mi información personal ni los metadatos de mi conversación? ¿Cómo funciona?"; -"view_fake_chat_bubble_4" = "Utiliza una combinación de enrutamiento anónimo avanzado y tecnologías de cifrado de extremo a extremo."; -"view_fake_chat_bubble_5" = "Los amigos no dejan que sus amigos usen messengers riesgosos. De nada."; -"vc_register_title" = "Saluda a tu ID de Session"; -"vc_register_explanation" = "Tu ID de Session es la dirección única que las personas pueden usar para contactarte en Session. Por diseño, tu ID de Session es totalmente anónima y privada, sin vínculo con tu identidad real."; -"vc_restore_title" = "Restaura tu cuenta"; -"vc_restore_explanation" = "Ingresa la frase de recuperación que se te dio cuando te registraste para restaurar tu cuenta."; -"vc_restore_seed_text_field_hint" = "Ingresa tu frase de recuperación"; -"vc_link_device_title" = "Vincular dispositivo"; -"vc_link_device_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_display_name_title_2" = "Elige tu nombre"; -"vc_display_name_explanation" = "Este será tu nombre al usar Session. Puede ser tu nombre real, un alias, o lo que prefieras."; -"vc_display_name_text_field_hint" = "Ingresa un nombre para mostrar"; -"vc_display_name_display_name_missing_error" = "Por favor, elige un nombre para mostrar"; -"vc_display_name_display_name_too_long_error" = "Por favor, elige un nombre para mostrar más corto"; -"vc_pn_mode_recommended_option_tag" = "Recomendado"; -"vc_pn_mode_no_option_picked_modal_title" = "Por favor, elige una opción"; -"vc_home_empty_state_message" = "Aún no tienes contactos"; -"vc_home_empty_state_button_title" = "Empieza una Session"; -"vc_seed_title" = "Tu frase de recuperación"; -"vc_seed_title_2" = "Guarda tu frase de recuperación"; -"vc_seed_explanation" = "Tu frase de recuperación es la llave maestra de tu ID de Session, puedes usarla para recuperar tu ID de Session en caso de pérdida de acceso a tu dispositivo. Guarda tu frase de recuperación en un lugar seguro y no se la digas a nadie."; -"vc_seed_reveal_button_title" = "Mantén pulsado para revelar"; -"view_seed_reminder_subtitle_1" = "Protege tu cuenta guardando tu frase de recuperación"; -"view_seed_reminder_subtitle_2" = "Toca y mantén presionadas las palabras redactadas para revelar tu frase de recuperación, después guárdala de manera segura para proteger tu ID de Session."; -"view_seed_reminder_subtitle_3" = "Asegúrate de guardar tu frase de recuperación en un lugar seguro"; -"vc_path_title" = "Ruta"; -"vc_path_explanation" = "Session oculta tu dirección IP haciendo rebotar tus mensajes a través de los Nodos de servicio de la red descentralizada de Session. Estos son los países por los que tu conexión está siendo rebotada actualmente."; -"vc_path_device_row_title" = "Tú"; -"vc_path_guard_node_row_title" = "Nodo de entrada"; -"vc_path_service_node_row_title" = "Nodo de Servicio"; -"vc_path_destination_row_title" = "Destino"; -"vc_path_learn_more_button_title" = "Saber Más"; -"vc_create_private_chat_title" = "Nuevo mensaje"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_enter_public_key_explanation" = "Empieza una nueva conversa poniendo el ID de sesión de alguien o comparte tu ID de sesión con ellos."; -"vc_scan_qr_code_camera_access_explanation" = "Session necesita acceso a la cámara para escanear códigos QR"; -"vc_create_closed_group_title" = "Crear un grupo"; -"vc_create_closed_group_text_field_hint" = "Ingresa un nombre de grupo"; -"vc_create_closed_group_empty_state_message" = "Aún no tienes contactos"; -"vc_create_closed_group_group_name_missing_error" = "Por favor, ingresa un nombre de grupo"; -"vc_create_closed_group_group_name_too_long_error" = "Por favor, ingresa un nombre de grupo más corto"; -"vc_create_closed_group_too_many_group_members_error" = "Un grupo cerrado no puede tener más de 100 miembros"; -"vc_join_public_chat_title" = "Unirse a la comunidad"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL de la comunidad"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_enter_chat_url_text_field_hint" = "Introduzca el URL de la comunidad"; -"vc_settings_title" = "Ajustes"; -"vc_group_settings_title" = "Configuración del grupo"; -"vc_settings_display_name_missing_error" = "Por favor, elige un nombre para mostrar"; -"vc_settings_display_name_too_long_error" = "Por favor, elige un nombre para mostrar más corto"; -"vc_settings_privacy_button_title" = "Privacidad"; -"vc_settings_notifications_button_title" = "Notificaciones"; -"vc_settings_recovery_phrase_button_title" = "Frase de recuperación"; -"vc_settings_clear_all_data_button_title" = "Borrar datos"; -"vc_qr_code_title" = "Código QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Ver mi código QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Escanea el código QR de una persona para comenzar una conversación con ella"; -"vc_view_my_qr_code_explanation" = "Este es tu código QR. Otros usuarios pueden escanearlo para empezar una Session contigo."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Se le notificará de los nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Apple."; -"fast_mode" = "Modo Rápido"; -"slow_mode_explanation" = "Session comprobará ocasionalmente si hay nuevos mensajes en segundo plano."; -"slow_mode" = "Modo lento"; -"vc_pn_mode_title" = "Notificaciones de mensaje"; -"vc_link_device_recovery_phrase_tab_title" = "Frase de recuperación"; -"vc_link_device_scan_qr_code_explanation" = "Navega a Ajustes → Frase de recuperación en tu otro dispositivo para mostrar tu código QR."; -"vc_enter_recovery_phrase_title" = "Frase de recuperación"; -"vc_enter_recovery_phrase_explanation" = "Para vincular tú dispositivo, introduce la frase de recuperación que se le dio cuando se registró."; -"vc_enter_public_key_text_field_hint" = "Introduzca el ID de Session o el nombre ONS"; -"admin_group_leave_warning" = "Debido a que eres el creador de este grupo, se eliminará para todos. Esto no se puede deshacer."; -"vc_join_open_group_suggestions_title" = "O únase a uno de estos..."; -"vc_settings_invite_a_friend_button_title" = "Invita a un amigo"; -"copied" = "Copiado"; -"vc_conversation_settings_copy_session_id_button_title" = "Copiar ID de Session"; -"vc_conversation_input_prompt" = "Mensaje"; -"vc_conversation_voice_message_cancel_message" = "Desliza para cancelar"; -"modal_download_attachment_title" = "¿Confiar en %@?"; -"modal_download_attachment_explanation" = "¿Estás seguro de que quieres descargar este archivo?"; -"modal_download_button_title" = "Descargar"; -"modal_open_url_title" = "¿Abrir URL?"; -"modal_open_url_explanation" = "¿Estás seguro de que quieres abrir %@?"; -"modal_open_url_button_title" = "Abrir"; -"modal_copy_url_button_title" = "Copiar Enlace"; -"modal_blocked_title" = "¿Desbloquear a %@?"; -"modal_blocked_explanation" = "¿Estás seguro de que quieres desbloquear a %@?"; -"modal_blocked_button_title" = "Desbloquear"; -"modal_link_previews_title" = "¿Habilitar Previsualizaciones de Enlace?"; -"modal_link_previews_explanation" = "Activar vista previa de enlaces mostrará las vistas previas para las URL que envíe y reciba. Esto puede ser útil, pero Session tendrá que ponerse en contacto con los sitios web enlazados para generar vistas previas. Siempre puedes desactivar las vistas previas de enlaces en la configuración de Session."; -"modal_link_previews_button_title" = "Activar"; -"vc_share_title" = "Compartir en Session"; -"vc_share_loading_message" = "Preparando archivos adjuntos..."; -"vc_share_sending_message" = "Enviando..."; -"vc_share_link_previews_unsecure" = "Vista previa no cargada por un enlace inseguro"; -"vc_share_link_previews_error" = "No se puede cargar la previsualización"; -"vc_share_link_previews_disabled_title" = "Previsualización de enlaces desactivada"; -"vc_share_link_previews_disabled_explanation" = "Habilitar la previsualización de enlaces permitirá previsualizar URLs que compartas. Esto puede ser útil pero Session necesitará contactar sitios web vinculados para generar la previsualización.\n\nPuedes habilitar la previsualización de enlaces desde la sección de ajustes en Session."; -"view_open_group_invitation_description" = "Abrir invitación de grupo"; -"vc_conversation_settings_invite_button_title" = "Añadir Miembros"; -"modal_send_seed_title" = "Aviso"; -"modal_send_seed_explanation" = "Esta es tu frase de recuperación. Si se la envias a alguien, tendrá acceso completo a tu cuenta."; -"modal_send_seed_send_button_title" = "Enviar"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notificar Solo Menciones"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Cuando está activado, sólo se te notificará de mensajes que te mencionen."; -"view_conversation_title_notify_for_mentions_only" = "Notificando Solo Menciones"; -"message_deleted" = "El mensaje se ha eliminado"; -"delete_message_for_me" = "Eliminar solo para mí"; -"delete_message_for_everyone" = "Eliminar para todos"; -"delete_message_for_me_and_recipient" = "Eliminar para mí y para %@"; -"context_menu_reply" = "Responder"; -"context_menu_save" = "Guardar"; -"context_menu_ban_user" = "Banear Usuario"; -"context_menu_ban_and_delete_all" = "Banear y Eliminar Todo"; -"context_menu_ban_user_error_alert_message" = "No es posible reportar al usuario"; -"accessibility_expanding_attachments_button" = "Añadir adjuntos Añadir archivo adjunto"; -"accessibility_gif_button" = "GIF"; -"accessibility_document_button" = "Documento"; -"accessibility_library_button" = "Fototeca"; -"accessibility_camera_button" = "Cámara"; -"accessibility_main_button_collapse" = "Colapsar opciones de adjuntar"; -"invalid_recovery_phrase" = "Frase de Recuperación Incorrecta"; -"DISMISS_BUTTON_TEXT" = "Descartar"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Ajustes"; -"call_outgoing" = "Has llamado a %@"; -"call_incoming" = "%@ te ha llamado"; -"call_missed" = "Llamada Perdida de %@"; -"APN_Message" = "Tienes un mensaje nuevo"; -"APN_Collapsed_Messages" = "Tienes un mensaje nuevo."; -"PIN_BUTTON_TEXT" = "Fijar"; -"UNPIN_BUTTON_TEXT" = "Dejar de fijar"; -"modal_call_missed_tips_title" = "Llamada perdida"; -"modal_call_missed_tips_explanation" = "Llamada perdida de '%@' porque necesitas habilitar el permiso de 'Llamadas de voz y video' en la configuración de privacidad."; -"media_saved" = "Archivo guardado mediante %@."; -"screenshot_taken" = "%@ tomó una captura de pantalla."; -"SEARCH_SECTION_CONTACTS" = "Contactos & Grupos"; -"SEARCH_SECTION_MESSAGES" = "Mensajes"; -"MESSAGE_REQUESTS_TITLE" = "Peticiones de mensajes"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No hay solicitudes de mensajes pendientes"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Borrar todo"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Borrar"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "¿Estás seguro de que quieres eliminar esta solicitud de mensaje?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "¿Estás seguro de que quieres bloquear este contacto?"; -"MESSAGE_REQUESTS_INFO" = "Al enviar un mensaje a este usuario, automáticamente se aceptará su solicitud de mensaje y revelarás tu ID de Session."; -"MESSAGE_REQUESTS_ACCEPTED" = "Tu solicitud de mensaje ha sido aceptada."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Tienes una solicitud de mensaje nueva"; -"TXT_HIDE_TITLE" = "Esconder"; -"TXT_DELETE_ACCEPT" = "Aceptar"; -"TXT_BLOCK_USER_TITLE" = "Bloquear Usuario"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Se requieren permisos de llamada"; -"modal_call_permission_request_explanation" = "Puedes habilitar los permisos de \"llamada de voz y video\" en las Configuraciones de Privacidad."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ups, se ha producido un error"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Inténtelo de nuevo más tarde"; -"LOADING_CONVERSATIONS" = "Cargando Conversaciones..."; -"DATABASE_MIGRATION_FAILED" = "Se ha producido un error al optimizar la base de datos\n\nPuedes exportar tus registros de aplicación para poder compartirlos para solucionar los problemas, o restaurar el dispositivo\n\nAdvertencia: Restaurar su dispositivo causará una pérdida de todos los datos que sean más antiguos a dos semanas"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Algo salió mal. Por favor revisa tu frase de recuperación y vuelve a intentarlo."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Parece que no has introducido suficientes palabras. Por favor comprueba tu frase de recuperación y vuelve a intentarlo."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Parece que falta la última palabra de tu frase de recuperación. Por favor compruébala e inténtalo de nuevo."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Parece que hay una palabra inválida en tu frase de recuperación. Por favor compruébala y vuelve a intentarlo."; -"RECOVERY_PHASE_ERROR_FAILED" = "Tu frase de recuperación no pudo ser verificada. Por favor compruébala y vuelve a intentarlo."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "No se ha podido acceder a la autenticación."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Fallo al autenticarse."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Hubo demasiados intentos fallidos de autenticación. Por favor vuelve a intentarlo más tarde."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Tienes que habilitar un PIN en las configuraciones de tu iOS para poder usar el bloqueo de pantalla."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Debes habilitar un PIN en tus configuraciones de iOS para poder usar el bloqueo de pantalla."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Debes habilitar un PIN en tus configuraciones de iOS para poder usar el bloqueo de pantalla."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Enviar"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Reintentar"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Mostrar Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Hubo un error al enviar tu mensaje."; -"INVALID_SESSION_ID_MESSAGE" = "Por favor, comprueba el ID de Session y vuelve a intentarlo."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Por favor, comprueba la frase de recuperación y vuelve a intentarlo."; -"MEDIA_TAB_TITLE" = "Multimedia"; -"DOCUMENT_TAB_TITLE" = "Documentos"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "No tienes ningún documento en esta conversación."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Cargando el documento más nuevo…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Cargando documento antiguo…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Actividades"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animales y Naturaleza"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Banderas"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Comida y Bebida"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objetos"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recientes"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Caras y personas"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Símbolos"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Viajes y Lugares"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacciona a un mensaje con %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Y otro ha reaccionado %@ a este mensaje."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Y %@ otros han reaccionado %@ a este mensaje."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "¡Relájate! Has enviado demasiadas reacciones. Inténtalo de nuevo más tarde."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nueva conversación"; -"CREATE_GROUP_BUTTON_TITLE" = "Crear"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Unirse"; -"PRIVACY_TITLE" = "Privacidad"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Seguridad de pantalla"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Bloquear Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Exigir Touch ID, Face ID o tu clave para desbloquear Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Confirmaciones de lectura"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Confirmaciones de lectura"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Enviar confirmaciones de lectura en chats individuales."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicadores de escribiendo"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicadores de escribiendo"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Ver y compartir el indicador de escritura en chats privados."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Previsualizar enlace"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Enviar vista previa de los enlaces"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Mostrar previsualización de enlaces para las URLs soportadas."; -"PRIVACY_SECTION_CALLS" = "Llamadas (beta)"; -"PRIVACY_CALLS_TITLE" = "Llamadas de voz y video"; -"PRIVACY_CALLS_DESCRIPTION" = "Habilita llamadas de voz y video hacia y desde otros usuarios."; -"PRIVACY_CALLS_WARNING_TITLE" = "Llamadas de Voz y Video (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Su dirección IP es visible para su socio de llamadas y un servidor de Oxen Fundación mientras usas llamadas beta. ¿Está seguro de que desea habilitar las llamadas de voz y videollamadas?"; -"NOTIFICATIONS_TITLE" = "Notificaciones"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Estrategia de notificación"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Usar Modo Rápido"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Se le notificará de los nuevos mensajes de forma fiable e inmediata usando los servidores de notificaciones de Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Ir a la configuración de notificaciones del dispositivo"; -"NOTIFICATIONS_SECTION_STYLE" = "Estilo de notificación"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Audio"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sonido al abrir la aplicación"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Contenido de las notificaciones"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Información mostrada en las notificaciones."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nombre y contenido"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Sólo nombre"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Sin nombre ni contenido"; -"CONVERSATION_SETTINGS_TITLE" = "Conversaciones"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Acortado del mensaje"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Acortar comunidades"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Eliminar mensajes de hace más de 6 meses en comunidades con más de 2.000 mensajes."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Mensajes de audio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Reproducir automáticamente los mensajes de audio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Reproducir automáticamente mensajes de audio consecutivos."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Contactos bloqueados"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "No hay contactos bloqueados."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Desbloquear"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "¿Seguro que quieres desbloquear a %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "este contacto"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "¿Seguro que quieres desbloquear a %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "y %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "y a %d más?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Desbloquear"; -"APPEARANCE_TITLE" = "Apariencia"; -"APPEARANCE_THEMES_TITLE" = "Temas"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Color primario"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "¿Cómo estás?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Estoy bien, ¿y tú?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Estoy bien, gracias."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Modo nocturno automático"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Coincidir ajustes del sistema"; -"HELP_TITLE" = "Ayuda"; -"HELP_REPORT_BUG_TITLE" = "Reportar un problema"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exporta tus registros, luego sube el archivo a través del Help Desk de Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportar logs"; -"HELP_TRANSLATE_TITLE" = "Traducir Session"; -"HELP_FEEDBACK_TITLE" = "Nos encantaría conocer tu opinión"; -"HELP_FAQ_TITLE" = "Preguntas Frecuentes"; -"HELP_SUPPORT_TITLE" = "Soporte"; -"modal_clear_all_data_title" = "Borrar todos los datos"; -"modal_clear_all_data_explanation" = "Esto eliminará permanentemente tus mensajes y contactos. ¿Quieres borrar solo este dispositivo o borrar también tus datos de la red?"; -"modal_clear_all_data_explanation_2" = "¿Está seguro que desea eliminar sus datos de la red? Si continúa, no podrá restaurar sus mensajes o contactos."; -"modal_clear_all_data_device_only_button_title" = "Borrar solo dispositivo"; -"modal_clear_all_data_entire_account_button_title" = "Borrar dispositivo y red"; -"dialog_clear_all_data_deletion_failed_1" = "Datos no borrados por 1 nodo de servicio. ID del nodo de servicio: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Datos no borrados por %@ nodos de servicio. ID del nodo de servicio: %@."; -"modal_clear_all_data_confirm" = "Borrar"; -"modal_seed_title" = "Tu frase de recuperación"; -"modal_seed_explanation" = "Puede utilizar su frase de recuperación para restaurar su cuenta o vincular un dispositivo."; -"modal_permission_explanation" = "Session necesita acceso %@ para continuar. Puedes habilitar el acceso en los ajustes de iOS."; -"modal_permission_settings_title" = "Ajustes"; -"modal_permission_camera" = "cámara"; -"modal_permission_microphone" = "micrófono"; -"modal_permission_library" = "fototeca"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copiar URL del grupo"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contactos"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Elige al menos 1 miembro del grupo"; -"GROUP_CREATION_PLEASE_WAIT" = "El grupo se está creando..."; -"GROUP_CREATION_ERROR_TITLE" = "No se pudo crear el grupo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Por favor, compruebe su conexión a internet e inténtelo de nuevo."; -"GROUP_UPDATE_ERROR_TITLE" = "No se pudo actualizar el grupo"; -"GROUP_UPDATE_ERROR_MESSAGE" = "No se puede salir mientras se agregan o eliminan miembros."; -"GROUP_ACTION_REMOVE" = "Eliminar"; -"GROUP_TITLE_MEMBERS" = "Miembros"; -"GROUP_TITLE_FALLBACK" = "Grupo"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Solo puede enviar mensajes a ID encubiertos desde dentro de una comunidad"; -"DM_ERROR_INVALID" = "Por favor, compruebe el ID de Session o el nombre ONS e inténtelo de nuevo"; -"COMMUNITY_ERROR_INVALID_URL" = "Por favor, compruebe el URL que ha introducido y vuelve a intentarlo."; -"COMMUNITY_ERROR_GENERIC" = "Error al unirse"; -"DISAPPERING_MESSAGES_TITLE" = "Desaparición de mensajes"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Tipo de borrado"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Desaparece tras leerlo"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Los mensajes se borran después de haber sido leídos."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Desaparece tras enviarlo"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Los mensajes se borran después de haber sido enviados."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Cronómetro"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Definir"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Esta opción se aplica a todos los usuarios en esta conversación."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Esta opción se aplica a todos los usuarios en esta conversación.\nSolo los administradores del grupo la pueden cambiar."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ ha establecido que los mensajes desaparezcan %@ tras haber sido %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ ha cambiado que los mensajes desaparezcan %@ tras haber sido %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ ha desactivado la desaparición de mensajes"; - -/* context_menu_info */ -"context_menu_info" = "Información"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Se ha producido un error al abrir la base de datos\n\nPuedes exportar tus registros de aplicación para compartirlos y solucionar los problemas, o restaurar el dispositivo\n\nAdvertencia: Restaurar su dispositivo causará una pérdida de todos los datos que sean más antiguos a dos semanas"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "La aplicación está tardando mucho tiempo para iniciar\n\nPuedes continuar esperando a que la aplicación se inicie, exportar los registros de tu aplicación y compartirlos para solucionar los problemas o puedes intentar volver a abrir la aplicación"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Salir"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Se ha producido un error al abrir la base de datos restaurada\n\nPuede exportar los registros de su aplicación para compartir y solucionar problemas, pero para continuar usando Session puede que necesite reinstalarlo"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "No se encontró el mensaje original."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Ver menos"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Solicitudes de mensajes"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Solicitudes de mensaje de la comunidad"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Permitir peticiones de mensajes de conversaciones comunitarias."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Podrás enviar mensajes de voz y archivos adjuntos cuando el destinatario haya aprobado esta solicitud de mensaje"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Enviando"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Enviado"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Leído"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Fallo al enviar"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Enviado"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Recibido"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "De"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID de archivo"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Tipo de archivo"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Tamaño del archivo"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolución"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duración"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Versión original de los mensajes desaparecidos."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ está usando un cliente desactualizado. Los mensajes que desaparecen pueden no funcionar correctamente."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Estás intentando actualizar desde una versión que ya no soporta actualizar\n\nPara continuar usando Session, necesitas restaurar tu dispositivo\n\nAdvertencia: Restaurar tu dispositivo causará la pérdida de cualquier información anterior a dos semanas"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "leído"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "enviado"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/fa.lproj/Localizable.strings b/Session/Meta/Translations/fa.lproj/Localizable.strings deleted file mode 100644 index 621343f1a0..0000000000 --- a/Session/Meta/Translations/fa.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "ضمیمه"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "عنوان"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "نوع فايل: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "اندازه: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "به محدودیت پیام رسیدید."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "ارسال"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "ضميمه"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "خطا در ارسال فایل ضمیمه"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "امکان تبدیل تصویر وجود ندارد."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "پردازش ویدئو امکان‌پذیر نیست."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "قادر به تجزیه تصویر نیست."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "امکان حذف فرادیتا از عکس وجود ندارد."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "امکان تغییر اندازه تصویر وجود ندارد."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "حجم فایل پیوستی خیلی بزرگ می‌باشد."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "فایل پیوستی دارای محتوی غیرمعتبر می‌باشد."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "فایل پیوستی، فرمت نامعتبر دارد."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "فایل پیوست شده خالی است."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "خطا در انتخاب سند."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "لطفا یک آرشیو فشرده از این فایل یا دایرکتوری را ساخته و ارسال آن را امتحان کنید."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "این نوع فایل پشتیبانی نمی‌شود."; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "پیام صوتی"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "مسدود کردن"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ مسدود شود؟"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "%@از حالت مسدود خارج شود؟"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "آزادسازی کاربر"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ مسدود شد."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "کاربر مسدود شد"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ از حالت مسدودی خارج شد."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "کاربری که مسدود شده است، امکان تماس یا ارسال پیام به شما را ندارد."; -/* Label for generic done button. */ -"BUTTON_DONE" = "انجام شد"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "انتخاب"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "درحال جستجو..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "مورد مشابهی یافت نشد"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "۱ مورد"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d مورد مشابه با %d یافت شد"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "مسدود کردن کاربر"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "حالت سکوت"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "جستجو در مکالمه"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "حرکت و تغییر سایز"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "ممکن است چند دقیقه زمان ببرد."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "بهینه‌سازی پایگاه‌داده ها"; -/* The present; the current time. */ -"DATE_NOW" = "هم اکنون"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "ناپدید کردن پیام ها"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "ویرایش گروه"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "شما در این مکالمه هیچ محتوای تصویری ندارید."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "در حال بارگذاری محتوای تصویری جدیدتر..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "بارگذاری مدیا قدیمی تر..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "خطا در دریافت گیف. لطفا اتصال به اینترنت را بررسی کنید."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "یک خطای ناشناخته رخ داد."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "خطا در انتخاب فایل تصویری متحرک"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "عبارت مورد نظر خود را وارد کنید."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "خطا. برای تلاش دوباره لمس کنید."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "نتیجه‌ای یافت نشد."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "گروه ساخته شد."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ به گروه اضافه شد."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ از گروه خارج شد. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ از گروه حذف شد. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ از گروه حذف شدند. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "عنوان ، هم‌اکنون '%@' است."; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "گروه ، به روز رسانی شده است."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "شما از این گروه خارج شده‌اید."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " شما از گروه حذف شدید. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "شما نمی توانید بیش از %@ آیتم را به اشتراک بگذارید."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "انتخاب پیوست ناموفق بود."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "فایل صوتی نامعتبر."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "خروج از گروه"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "ترک کردن گروه"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "تمام مدیا"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "حذف %d پیام"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "حذف پیام"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ در %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "شما"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "این ماه"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "ارسال ناموفق بود."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "خوانده‌شده"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "در حال ارسال..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "ارسال شد"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "در حال آپلود…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ در %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "یادداشت به خود"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "ممکن است شما زمانی که %@ در حال ری استارت بود پیام هایی دریافت کرده باشید."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "باشه"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ پیام‌های محوشونده را غیرفعال کرده است."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ زمان محوشدن پیام را روی %@ تنظیم کرده."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "مشکل در گرفتن تصویر."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "مشکل در گرفتن تصویر."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "مشکل در نتظیمات دوربین."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "آلبوم بی نام"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "علامت‌گذاری به عنوان خوانده‌شده"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "پاسخ"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "برای باز کردن Session هویت خود را احراز کنید."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "احراز هویت ناموفق بود"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "رسانه ها کنار گذاشته شوند؟"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "رسانه ها کنار گذاشته شوند"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (پیشفرض)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "صدای پیام"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "هیچکدام"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ روز"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@ر"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ ساعت"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@س"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ دقیقه"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@دق"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ ثانیه"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@ث"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ روز"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ ساعت"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ دقیقه"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ هفته"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ هفته"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@ه"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "لغو"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "حذف"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "پیام صوتی"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "برای ضبط و ارسال پیام صوتی اینجا را لمس کرده و نگه دارید"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "پیام صوتی"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "شما پیام‌های محوشونده را غیرفعال کردید."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "شما زمان محوشدن پیام‌ها را به %@ تنظیم کردید."; -// MARK: - Session -"continue_2" = "ادامه "; -"copy" = "کپی"; -"invalid_url" = "URL غیرمعتبر"; -"next" = "بعد"; -"share" = "به‌اشتراک‌گذاری"; -"invalid_session_id" = "شناسه‌ی Session نامعتبر است."; -"cancel" = "لغو"; -"your_session_id" = "شناسه Session شما"; -"vc_landing_title_2" = "Session شما از اینجا شروع می‌شود..."; -"vc_landing_register_button_title" = "شناسه‌ی Session را ایجاد کنید"; -"vc_landing_restore_button_title" = "Session خود را ادامه دهید"; -"vc_landing_link_button_title" = "پیوند به یک حساب کاربری موجود"; -"view_fake_chat_bubble_1" = "Session چیست؟"; -"view_fake_chat_bubble_2" = "Session یک برنامه پیام‌رسان غیرمتمرکز و رمزگذاری شده است."; -"view_fake_chat_bubble_3" = "پس اطلاعات شخصی من یا داده‌های گفت‌وگو‌هایم جمع‌آوری نمی‌شود؟ چگونه کار می‌کند؟"; -"view_fake_chat_bubble_4" = "Session با استفاده از ترکیبی از فناوری‌های پیشرفته مسیریابی ناشناس و رمزگذاری سرتاسری این کار را انجام می‌دهد."; -"view_fake_chat_bubble_5" = "یک دوست هیچ‌وقت به دوستان خود اجازه استفاده از پیام‌رسان‌های در معرض خطر را نمی‌دهد."; -"vc_register_title" = "به شناسه‌ی Session خود سلام کنید"; -"vc_register_explanation" = "شناسه‌ی Session شما آدرس منحصر به فردی است که افراد می‌توانند از طریق آن با شما در Session تماس بگیرند. شناسه‌ی Session شما، بدون اتصال با هویت واقعی شما، کاملاً ناشناس و خصوصی است."; -"vc_restore_title" = "حساب کاربری خود را بازیابی کنید"; -"vc_restore_explanation" = "عبارت بازیابی را که هنگام نام‌نویسی برای بازیابی حساب به شما داده شده، وارد کنید."; -"vc_restore_seed_text_field_hint" = "عبارت بازیابی خود را وارد کنید"; -"vc_link_device_title" = "اتصال دستگاه"; -"vc_link_device_scan_qr_code_tab_title" = "کد QR را اسکن کنید"; -"vc_display_name_title_2" = "نام خود را برای نمایش انتخاب کنید"; -"vc_display_name_explanation" = "این نام شما هنگام استفاده از Session خواهد بود. این نام می‌تواند نام واقعی شما، نام مستعار یا هر چیز دیگری که دوست دارید، باشد."; -"vc_display_name_text_field_hint" = "نام نمایشی را وارد کنید"; -"vc_display_name_display_name_missing_error" = "لطفا نام نمایشی را انتخاب کنید"; -"vc_display_name_display_name_too_long_error" = "لطفا نام نمایشی کوتاه‌تری انتخاب کنید"; -"vc_pn_mode_recommended_option_tag" = "گزینه پیشنهادی"; -"vc_pn_mode_no_option_picked_modal_title" = "لطفا یک گزینه را انتخاب کنید"; -"vc_home_empty_state_message" = "فهرست مخاطبان شما خالی است."; -"vc_home_empty_state_button_title" = "شروع Session"; -"vc_seed_title" = "عبارت بازیابی شما"; -"vc_seed_title_2" = "این عبارت بازیابی شماست"; -"vc_seed_explanation" = "عبارت بازیابی شما کلید اصلی شناسه‌ی Session شما است - در صورت عدم دسترسی به دستگاه خود می توانید از آن برای بازگرداندن شناسه‌ی Session خود استفاده کنید. عبارت بازیابی خود را در مکانی امن ذخیره کنید و آن را به کسی ندهید."; -"vc_seed_reveal_button_title" = "نگه دارید تا نشان داده شود"; -"view_seed_reminder_subtitle_1" = "با ذخیره کردن عبارت بازیابی، از حساب خود را محافظت کنید"; -"view_seed_reminder_subtitle_2" = "برای فاش کردن عبارت بازیابی، بر روی کلمات redacted ضربه زده و نگه دارید، سپس با خیال راحت آن را ذخیره کنید تا از شناسه‌ی Session خود محافظت نمایید."; -"view_seed_reminder_subtitle_3" = "حتماً عبارت بازیابی خود را در مکانی امن ذخیره کنید"; -"vc_path_title" = "مسیر"; -"vc_path_explanation" = "اپ Session، ‌آی‌پی شما را با استفاده از فرستادن پیام‌های‌تان از طریق چندین سرویسِ گره در شبکه غیرمتمرکز Session مخفی می‌کند. اینها کشورهایی هستند که اتصال شما در حال حاضر از طریق آن فراخوانی می‌شوند:"; -"vc_path_device_row_title" = "شما"; -"vc_path_guard_node_row_title" = "گره ورودی"; -"vc_path_service_node_row_title" = "گره سرویس"; -"vc_path_destination_row_title" = "مقصد"; -"vc_path_learn_more_button_title" = "بیشتر بدانید"; -"vc_create_private_chat_title" = "پیام جدید"; -"vc_create_private_chat_enter_session_id_tab_title" = "شناسه Session را وارید کنید"; -"vc_create_private_chat_scan_qr_code_tab_title" = "اسکن کد QR"; -"vc_enter_public_key_explanation" = "یک مکالمه جدید را با وارد کردن شناسه Session شخصی شروع کنید یا شناسه جلسه خود را با آنها به اشتراک بگذارید."; -"vc_scan_qr_code_camera_access_explanation" = "برای اسکن کدهای Session ،QR نیاز به دسترسی به دوربین دارد"; -"vc_create_closed_group_title" = "ایجاد گروه"; -"vc_create_closed_group_text_field_hint" = "وارد کردن یک نام گروه"; -"vc_create_closed_group_empty_state_message" = "هنوز هیچ مخاطبی ندارید"; -"vc_create_closed_group_group_name_missing_error" = "لطفاً یک نام گروه را وارد کنید"; -"vc_create_closed_group_group_name_too_long_error" = "لطفاً یک نام گروه کوتاه‌تر را وارد کنید"; -"vc_create_closed_group_too_many_group_members_error" = "یک گروه نمی‌تواند بیش از ۱۰۰ عضو داشته باشد."; -"vc_join_public_chat_title" = "پیوستن به انجمن"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL انجمن"; -"vc_join_public_chat_scan_qr_code_tab_title" = "اسکن کد QR"; -"vc_enter_chat_url_text_field_hint" = "URL انجمن را وارد کنید"; -"vc_settings_title" = "تنظیمات"; -"vc_group_settings_title" = "تنظیمات گروه"; -"vc_settings_display_name_missing_error" = "لطفا یک نام نمایشی را انتخاب کنید"; -"vc_settings_display_name_too_long_error" = "لطفا یک نام نمایشی کوتاه‌تر انتخاب کنید"; -"vc_settings_privacy_button_title" = "حریم خصوصی"; -"vc_settings_notifications_button_title" = "اعلان‌ها"; -"vc_settings_recovery_phrase_button_title" = "عبارت بازیابی"; -"vc_settings_clear_all_data_button_title" = "پاک کردن اطلاعات"; -"vc_qr_code_title" = "کد QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "مشاهده کد QR من"; -"vc_qr_code_view_scan_qr_code_tab_title" = "اسکن کد QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "برای شروع مکالمه با دیگران، کد QR شخصی را اسکن کنید"; -"vc_view_my_qr_code_explanation" = "این کد QR شماست. سایر کاربران می‌توانند برای شروع Session با شما آن را اسکن کنند."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "با استفاده از سرورهای اطلاع رسانی اپل، شما به صورت سریع و مطمئن از پیام‌های جدید مطلع می‌شوید."; -"fast_mode" = "حالت سریع"; -"slow_mode_explanation" = "Session هرازگاهی در پس زمینه وجود پیام‌های جدید را بررسی می‌کند."; -"slow_mode" = "حالت آهسته"; -"vc_pn_mode_title" = "اعلان‌های پیام"; -"vc_link_device_recovery_phrase_tab_title" = "عبارت بازیابی"; -"vc_link_device_scan_qr_code_explanation" = "برای دیدن کد QR خود، در دستگاه دیگرتان به «تنظیمات ← عبارت بازیابی» مراجعه کنید."; -"vc_enter_recovery_phrase_title" = "عبارت بازیابی"; -"vc_enter_recovery_phrase_explanation" = "برای وصل کردن دستگاهتان، عبارت بازیابی که در زمان ثبت نام به شما داده شده بود را وارد کنید."; -"vc_enter_public_key_text_field_hint" = "شناسه Session یا نام ONS را وارید کنید"; -"admin_group_leave_warning" = "به دلیل اینکه شما مدیر گروه هستید، این گروه برای همه اعضا ی گروه پاک میشود. این قابل بازگشت نیست."; -"vc_join_open_group_suggestions_title" = "یا به یکی از این محلق شوید ..."; -"vc_settings_invite_a_friend_button_title" = "دعوت از یک دوست"; -"copied" = "کپی‌شده"; -"vc_conversation_settings_copy_session_id_button_title" = "کپی کردن شناسه‌ی Session شما"; -"vc_conversation_input_prompt" = "پیام"; -"vc_conversation_voice_message_cancel_message" = "برای کنسل کردن به کناره بکشید"; -"modal_download_attachment_title" = "آیا به %@ اعتماد میکنید؟"; -"modal_download_attachment_explanation" = "آیا مطمئن هستید که می‌خواهید رسانه ارسال شده توسط %@ را دانلود کنید؟"; -"modal_download_button_title" = "دریافت"; -"modal_open_url_title" = "URL باز شود؟"; -"modal_open_url_explanation" = "آیا مطمئن هستید که میخواهید %@ را باز کنید؟"; -"modal_open_url_button_title" = "باز کن"; -"modal_copy_url_button_title" = "کپی کردن لینک"; -"modal_blocked_title" = "%@ از حالت مسدود خارج شود؟"; -"modal_blocked_explanation" = "آیا مطمئن هستید که میخواهید %@ را از حالت مسدود خارج کنید؟"; -"modal_blocked_button_title" = "رفع مسدودی"; -"modal_link_previews_title" = "فعال‌سازی پیش‌نمایش لینک؟"; -"modal_link_previews_explanation" = "با فعال کردن این گزینه، پیش‌نمایش لینک‌ها در پیام‌های ارسالی و دریافتی دیده می‌شود. این گزینه می‌تواند مفید باشد اما Session باید با سایت ارتباط برقرار کند تا پیش‌نمایش را نشان دهد. شما می‌توانید همیشه در تنظیمات این پیش‌نمایش را غیرفعال کنید."; -"modal_link_previews_button_title" = "فعال سازی"; -"vc_share_title" = "اشتراک گذاری با Session"; -"vc_share_loading_message" = "آماده سازی پیوست‌ها..."; -"vc_share_sending_message" = "در حال ارسال..."; -"vc_share_link_previews_unsecure" = "پیش نمایش برای لینک ناامن کامل نشد"; -"vc_share_link_previews_error" = "ناتوان برای بارگذاری پیش نمایش"; -"vc_share_link_previews_disabled_title" = "پیش نمایش های لینک غیرفعال شد"; -"vc_share_link_previews_disabled_explanation" = "با فعال کردن این گزینه، پیش‌نمایش لینک‌ها در پیام‌های ارسالی و دریافتی دیده می‌شود. این گزینه می‌تواند مفید باشد اما Session باید با سایت ها ارتباط برقرار کند تا پیش‌نمایش را نشان دهد. n\\شما می‌توانید در تنظیمات این پیش‌نمایش را غیرفعال کنید."; -"view_open_group_invitation_description" = "باز کردن دعوت به گروه"; -"vc_conversation_settings_invite_button_title" = "افزودن اعضا"; -"modal_send_seed_title" = "هشدار"; -"modal_send_seed_explanation" = "این عبارت بازیابی شماست. اگر آن را برای شخصی ارسال کنید ، دسترسی کامل به حساب شما خواهد داشت."; -"modal_send_seed_send_button_title" = "ارسال"; -"vc_conversation_settings_notify_for_mentions_only_title" = "فقط برای ذکر شده ها اطلاع دهید"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "وقتی فعال باشد، فقط برای پیام هایی که از شما نام می برند مطلع می شوید."; -"view_conversation_title_notify_for_mentions_only" = "فقط برای ذکر شده ها اطلاع داده شود"; -"message_deleted" = "این پیام حذف شده است"; -"delete_message_for_me" = "حذف برای من"; -"delete_message_for_everyone" = "حذف برای همه"; -"delete_message_for_me_and_recipient" = "حذف برای من و %@"; -"context_menu_reply" = "پاسخ"; -"context_menu_save" = "ذخیره"; -"context_menu_ban_user" = "مسدود کردن کاربر"; -"context_menu_ban_and_delete_all" = "مسدود و پاک کردن همه"; -"context_menu_ban_user_error_alert_message" = "امکان ممنوع کردن کاربر مسدود شود"; -"accessibility_expanding_attachments_button" = "افزودن پیوست ها"; -"accessibility_gif_button" = "گیف"; -"accessibility_document_button" = "مدرک"; -"accessibility_library_button" = "گالری عکس"; -"accessibility_camera_button" = "دوربین"; -"accessibility_main_button_collapse" = "کوچک کردن گزینه‌های پیوست"; -"invalid_recovery_phrase" = "جمله ی بازیابی نامعتبر است"; -"DISMISS_BUTTON_TEXT" = "رد کردن"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "تنظیمات"; -"call_outgoing" = "شما با%@ تماس گرفتید"; -"call_incoming" = "%@ با شما تماس گرفت"; -"call_missed" = "شما تماس از دست رفته از طرف %@ دارید"; -"APN_Message" = "شما یک پیام جدید دریافت کردید."; -"APN_Collapsed_Messages" = "شما از طرف %@ پیام جدید دارید."; -"PIN_BUTTON_TEXT" = "سنجاق کردن"; -"UNPIN_BUTTON_TEXT" = "برداشتن سنجاق"; -"modal_call_missed_tips_title" = "تماس از دست رفت"; -"modal_call_missed_tips_explanation" = "تماس از '%@' از دست رفت زیرا باید مجوز «تماس‌های صوتی و تصویری» را در تنظیمات حریم خصوصی فعال کنید."; -"media_saved" = "تصویر/ ویدیو توسط %@ ذخیره شد."; -"screenshot_taken" = "%@ از صفحه یک عکس گرفته است."; -"SEARCH_SECTION_CONTACTS" = "گروه‌ها و مخاطبین"; -"SEARCH_SECTION_MESSAGES" = "پیام ها"; -"MESSAGE_REQUESTS_TITLE" = "درخواست های پیام"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "هیچ درخواست پیامی وجود ندارد"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "حذف همه"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "پاک کردن"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "آیا مطمئن هستید که می خواهید این درخواست پیام را رد کنید؟"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "آیا مطمئن هستید که می‌خواهید این مخاطب را مسدود کنید؟"; -"MESSAGE_REQUESTS_INFO" = "ارسال پیام به این کاربر درخواست پیام او را به صورت خودکار قبول می‌کند و باعث آشکار شدن کد شناسایی Session شما میشود."; -"MESSAGE_REQUESTS_ACCEPTED" = "درخواست پیام شما قبول شد."; -"MESSAGE_REQUESTS_NOTIFICATION" = "شما درخواست پیام جدیدی دارید"; -"TXT_HIDE_TITLE" = "پنهان کردن"; -"TXT_DELETE_ACCEPT" = "پذیرفتن"; -"TXT_BLOCK_USER_TITLE" = "مسدود کردن کاربر"; -"ALERT_ERROR_TITLE" = "خطا"; -"modal_call_permission_request_title" = "دسترسی تلفن مورد نیاز است"; -"modal_call_permission_request_explanation" = "شما می‌توانید مجوز «تماس صوتی و تصویری» را در تنظیمات حریم خصوصی فعال کنید."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "اوخ، یک خطا اتفاق افتاد"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "لطفاً مجدداً تلاش نمایید"; -"LOADING_CONVERSATIONS" = "درحال بارگزاری پیام ها..."; -"DATABASE_MIGRATION_FAILED" = "هنگام بهینه‌سازی پایگاه داده خطایی روی داد\n\nشما می‌توانید گزارش‌های برنامه خود را صادر کنید تا بتوانید برای عیب‌یابی به اشتراک بگذارید یا می‌توانید دستگاه خود را بازیابی کنید\n\nهشدار: بازیابی دستگاه شما منجر به از دست رفتن داده‌های قدیمی‌تر از دو هفته می‌شود."; -"RECOVERY_PHASE_ERROR_GENERIC" = "مشکلی پیش آمد. لطفاً عبارت بازیابی خود را بررسی کنید و دوباره امتحان کنید."; -"RECOVERY_PHASE_ERROR_LENGTH" = "به نظر می رسد کلمات کافی وارد نکرده اید. لطفاً عبارت بازیابی خود را بررسی کنید و دوباره امتحان کنید."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "به نظر می رسد که شما آخرین کلمه بازیابی حساب خود را وارد نکرده اید. لطفاً آنچه را وارد کرده‌اید بررسی کنید و دوباره امتحان کنید."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "به نظر می رسد که شما کلمات بازیابی حساب خود را اشتباه وارد کرده اید. لطفاً آنچه را وارد کرده‌اید بررسی کنید و دوباره امتحان کنید."; -"RECOVERY_PHASE_ERROR_FAILED" = "کلمات بازیابی وارد شده قابل تائید نمی‌باشد. لطفا آنچه را که وارد کردید را مجددا بررسی نمائید."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "اعتبارسنجی ناموفق بود."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "احراز هویت ناموفق بود."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "چندین احراز هویت ناموفق رخ داد. لطفا بعدا تلاش کنید."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "برای استفاده از قفل صفحه نمایش می بایستی یک رمزعبور از تنظیمات iOS خود فعال کنید."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "شما برای استفاده از قفل صفحه نمایس می بایستی یک رمزعبور از تنظیمات iOS خود فعال کنید."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "برای استفاده از قفل صفحه نمایش می بایستی یک رمزعبور از تنظیمات iOS فعال کنید."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "ارسال"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "تلاش مجدد"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "نمایش گفتگو"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "پیام شما ارسال نشد."; -"INVALID_SESSION_ID_MESSAGE" = "لطفاً شناسه Session را مجدد بررسی کنید."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "لطفاً شناسه بازیابی را مجدد بررسی کنید."; -"MEDIA_TAB_TITLE" = "مدیا"; -"DOCUMENT_TAB_TITLE" = "مدارک"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "شما در این مکالمه هیچ مدرکی ندارید."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "در حال بار گذاری مدارک جدید…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "در حال بارگذاری مدارک قدیمی تر…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "فعالیت‌ها"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "حیوانات و طبیعت"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "پرچم‌ها"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "غذا و نوشیدنی"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "اشیا"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "اخیراً استفاده شده"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "شکلک‌ها و مردم"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "نمادها"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "مسافرت و اماکن"; -"EMOJI_REACTS_NOTIFICATION" = "%@ به پیامی با %@ واکنش نشان می‌دهد. "; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "و ۱ نفر دیگر به این پیام واکنش %@ نشان داده است."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "و %@ نفر دیگر به این پیام واکنش %@ نشان داده‌اند."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "آهسته! شما بیش از اندازه ایموجی واکنش ارسال کرده اید. بزودی دوباره تلاش کنید."; -/* New conversation screen*/ -"vc_new_conversation_title" = "مکالمه جدید"; -"CREATE_GROUP_BUTTON_TITLE" = "ایجاد"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "محلق شدن"; -"PRIVACY_TITLE" = "حریم خصوصی"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "امنیت صفحه"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "قفل سیسشن"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = " برای باز کردن قفل Session به شناسه لمسی، شناسه صورت و یا رمز عبوری ضرورت است."; -"PRIVACY_SECTION_READ_RECEIPTS" = "رسیدهای خواندن"; -"PRIVACY_READ_RECEIPTS_TITLE" = "رسیدهای خواندن"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "رسیدهای خواندن در چت‌های یک به یک روان شود."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "نشانگر‌های در حال تایپ"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "نشانگر‌های در حال تایپ"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "مشاهده و به‌اشتراک‌گذاری نشانگر‌های در حال تایپ در مکالمات یک به یک."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "پیش‌نمایش‌های لینک"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "ارسال پیش‌نمایش‌های لینک"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "ایجاد پیش‌نمایش‌های لینک برای URLهای تحت پشتیبانی."; -"PRIVACY_SECTION_CALLS" = "تماس‌ها (بتا)"; -"PRIVACY_CALLS_TITLE" = "تماس‌های صوتی و تصویری"; -"PRIVACY_CALLS_DESCRIPTION" = "فعال‌سازی تماس‌های صوتی و تصویری به و از کاربران دیگر."; -"PRIVACY_CALLS_WARNING_TITLE" = "تماس‌های صوتی و تصویری (بتا)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "آدرس IP شما برای طرف تماس شما و سرور Oxen Foundation هنگام استفاده از تما‌س های بتا قابل مشاهده است. آیا مطمئن هستید که می‌خواهید تماس‌های صوتی و تصویری را فعال کنید؟"; -"NOTIFICATIONS_TITLE" = "اعلانات"; -"NOTIFICATIONS_SECTION_STRATEGY" = "استراتژی اعلان"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "استفاده از حالت سریع"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "با استفاده از سرورهای اعلان اپل (Apple)، از هر پیام جدید به طور قابل اعتماد و بلافاصله مطلع خواهید شد."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "رفتن به تنظیمات اعلان دستگاه"; -"NOTIFICATIONS_SECTION_STYLE" = "سبک اعلان"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "صدا"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "صدا وقتی برنامه باز است"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "محتوی اعلان"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "اطلاعات که در اعلانات نمایش میشود."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "نام و محتوا"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "فقط نام"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "عدم نمایش نام یا محتوا"; -"CONVERSATION_SETTINGS_TITLE" = "مکالمات"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "مرتب‌سازی پیام"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "مرتب‌سازی انجمن‌ها"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "پیام‌های قدیمی‌تر از ۶ ماه را از انجمن‌های دارای بیش از ۲۰۰۰ پیام، حذف کنید."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "پیام های صوتی"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "پخش خودکار پیام‌های صوتی"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "پخش خودکار پیام‌های صوتی پشت‌سرهم"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "مخاطبین مسدودشده"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "شما هیچ مخاطب مسدود‌شده‌ای ندارید."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "رفع مسدودیت"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "آیا مطمئن هستید که می‌خواهید مسدودیت %@ را رفع کنید؟ "; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "این مخاطب"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "آیا مطمئن هستید که می‌خواهید مسدودیت %@ را رفع کنید؟ "; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "و %@؟"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "و %@ مخاطب دیگر؟ "; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "رفع مسدودیت"; -"APPEARANCE_TITLE" = "ظاهر"; -"APPEARANCE_THEMES_TITLE" = "تم‌ها"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "رنگ اولیه"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "حالت چطور است؟"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "من خوبم، تو چی؟"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "من عالی‌ام، ممنون."; -"APPEARANCE_NIGHT_MODE_TITLE" = "حالت شب خودکار"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "مطابق‌سازی تنظیمات سیستم"; -"HELP_TITLE" = "کمک"; -"HELP_REPORT_BUG_TITLE" = "گزارش خرابی"; -"HELP_REPORT_BUG_DESCRIPTION" = "گزارش‌های خود را صادر کنید، سپس فایل را از طریق Session's Help Desk آپلود کنید."; -"HELP_REPORT_BUG_ACTION_TITLE" = "صدور گزارش‌ها"; -"HELP_TRANSLATE_TITLE" = "ترجمه Session"; -"HELP_FEEDBACK_TITLE" = "قدردان نظریات شما هستیم."; -"HELP_FAQ_TITLE" = "سؤالات متداول"; -"HELP_SUPPORT_TITLE" = "همایت"; -"modal_clear_all_data_title" = "پاک کردن همه داتا"; -"modal_clear_all_data_explanation" = "این کار پیام‌ها و مخاطبین شما را برای همیشه حذف می‌کند. آیا می‌خواهید فقط این دستگاه را پاک کنید یا داتا خود را از شبکه نیز حذف کنید؟"; -"modal_clear_all_data_explanation_2" = "آیا مطمئن هستید که می خواهید داتا های خود را از شبکه حذف کنید؟ اگر ادامه دهید، نمی‌توانید پیام‌ها یا مخاطبین خود را بازیابی کنید."; -"modal_clear_all_data_device_only_button_title" = "فقط پاک کردن دستگاه"; -"modal_clear_all_data_entire_account_button_title" = "پاک کردن دستگاه و شبکه"; -"dialog_clear_all_data_deletion_failed_1" = "داتا ها توسط ۱ گره سرویس حذف نشده است. شناسه گره سرویس: %@."; -"dialog_clear_all_data_deletion_failed_2" = "داتا ها توسط %@ گره سرویس حذف نشده است. شناسه‌های گره سرویس: %@."; -"modal_clear_all_data_confirm" = "پاک "; -"modal_seed_title" = "عبارت بازیابی شما"; -"modal_seed_explanation" = "می توانید از عبارت بازیابی یا برای بازیابی حساب خود و یا برای وصل با یک دستگاه استفاده کنید."; -"modal_permission_explanation" = "سیسشن برای ادامه دسترسی نیاز به ‌منظور %@ دارد. می توانید دسترسی را در تنظیمات iOS فعال سازید."; -"modal_permission_settings_title" = "تنظیمات"; -"modal_permission_camera" = "دوربین"; -"modal_permission_microphone" = "میکروفون"; -"modal_permission_library" = "کتابخانه"; -"DISAPPEARING_MESSAGES_OFF" = "خاموش"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "خاموش"; -"COPY_GROUP_URL" = "کپی کردن URL گروه"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "مخاطبین"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "لطفاً حداقل یک عضو گروه را انتخاب کنید"; -"GROUP_CREATION_PLEASE_WAIT" = "تا زمانی که گروه ایجاد شود، لطفاً صبر کنید..."; -"GROUP_CREATION_ERROR_TITLE" = "نمی‌توانید گروه ایجاد کنید"; -"GROUP_CREATION_ERROR_MESSAGE" = "لطفاً اتصال اینترنت خود را بررسی و مجدداً سعی کنید"; -"GROUP_UPDATE_ERROR_TITLE" = "نمی‌توانید گروه را آپدیت کنید"; -"GROUP_UPDATE_ERROR_MESSAGE" = "هنگام افزودن یا حذف سایر اعضا، نمی‌توانید گروه را ترک کنید"; -"GROUP_ACTION_REMOVE" = "حذف"; -"GROUP_TITLE_MEMBERS" = "اعضا"; -"GROUP_TITLE_FALLBACK" = "گروه"; -"DM_ERROR_DIRECT_BLINDED_ID" = "فقط از داخل یک انجمن می‌توانید به شناسه‌های نابینا پیام ارسال کنید"; -"DM_ERROR_INVALID" = "لطفاً شناسه Session یا نام ONS را بررسی کنید و دوباره امتحان کنید"; -"COMMUNITY_ERROR_INVALID_URL" = "لطفا لینک وارد شده را بررسی نموده و دوباره تلاش کنید."; -"COMMUNITY_ERROR_GENERIC" = "نمی‌توانید محلق شوید"; -"DISAPPERING_MESSAGES_TITLE" = "پیام‌ها ناپدید میشوند"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "حذف تایپ"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "ناپدید‌شدن پس از خواندن"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "حذف پیام‌ها بعد از خواندن شان"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "ناپدیدشدن پس از ارسال"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "حذف پیام‌ها بعد از ارسال شان"; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "تایمر"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "تنظیم"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "این تنظیمات بالای هر کسی در این مکالمه عملی می‌شود."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "این تنظیمات بالای هر کسی در این مکالمه عملی می‌شود. فقط ادمین‌های گروه می‌توانند این تنظیمات را تغییر دهند."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ تنظیم کرده تا پیام‌ها %@ پس از آنکه %@ شدند، ناپدید شوند."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ پیام‌ها را تغییر داده تا %@ پس از آنکه %@ شدند، ناپدید شوند."; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ ناپدید‌شدن پیام ها را خاموش کرده است"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/fi.lproj/Localizable.strings b/Session/Meta/Translations/fi.lproj/Localizable.strings deleted file mode 100644 index 803e7464b3..0000000000 --- a/Session/Meta/Translations/fi.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Liite"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Otsikko"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tiedostotyyppi: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Koko: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Viestin suurin sallittu pituus saavutettu"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Lähetä"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Liite"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Virhe liitteen lähettämisessä"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Kuvan muunto ei onnistu."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Videon käsittely ei onnistu."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Kuvan jäsennys ei onnistu."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Metadatan poistaminen kuvasta epäonnistui."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Kuvan koon muutos ei onnistu."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Liite on liian iso."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Liite sisältää virheellistä sisältöä."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Liitteellä on virheellinen tiedostotyyppi."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Liite on tyhjä."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Dokumentin valinta epäonnistui."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Ole hyvä ja luo tiivistetty arkisto tästä tiedostosta ja kokeile lähettämistä uudelleen."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Tiedostotyyppiä ei tueta"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Ääniviesti"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Estä"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Estetäänkö %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Poistetaanko käyttäjän %@ esto?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Poista esto"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ on estetty."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Käyttäjä estettiin"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Käyttäjän %@ esto poistettiin."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Estetyt käyttäjät eivät voi soittaa tai lähettää sinulle viestejä."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Valmis"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Valitse"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Etsitään..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Ei tuloksia"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 osuma"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d/%d osumasta"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Estä käyttäjä"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Hiljennä"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Etsi keskustelusta"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Siirrä ja Skaalaa"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Tämä saattaa viedä hetken."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimoidaan tietokanta"; -/* The present; the current time. */ -"DATE_NOW" = "Nyt"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Katoavat viestit"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Muokkaa Ryhmää"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Sinulla ei ole yhtään mediaa tässä keskustelussa."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Ladataan uudempaa mediaa…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Ladataan vanhempaa mediaa…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Pyydetyn GIF-animaation hakeminen epäonnistui. Ole hyvä ja varmista yhteytesi."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Tuntematon virhe ilmeni."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF-animaatiota ei pystytä valitsemaan"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Kirjoita hakutermi."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Virhe. Paina kokeillaksesi uudelleen."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Ei tuloksia."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Ryhmä on luotu"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ liittyi ryhmään. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ poistui ryhmästä. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ poistettiin ryhmästä. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ poistettiin ryhmästä. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Ryhmän kuvaus on nyt ”%@”. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Ryhmä päivitetty."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Sinä poistuit ryhmästä."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Sinut poistettiin ryhmästä. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Et voi jakaa enempää kuin %@ kohdetta."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Liitteen valinta epäonnistui."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Virheellinen äänitiedosto."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Poistu"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Poistu ryhmästä"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Kaikki media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Poista %d viestiä"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Poista viesti"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ ajankohtana %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Sinä"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Tässä kuussa"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Lähetys epäonnistui."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Luettu"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Lähetetään…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Lähetetty"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Ladataan…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ ryhmässä %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Viesti itselle"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Olet saattanut saada viesteja laitteesi %@ käynnistyessä uudelleen."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ poisti katoavat viestit käytöstä."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ asetti katoavien viestien ajaksi %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Kuvan ottaminen ei ole mahdollista."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Kuvan ottaminen ei ole mahdollista."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Kameran määritys epäonnistui."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Nimetön albumi"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Merkkaa luetuksi"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Vastaa"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Tunnistaudu avataksesi Sessionin."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Tunnistautuminen epäonnistui"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Hylkää media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Hylkää media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (oletus)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Viestien ilmoitusääni"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Ei ääntä"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ päivää"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@pv"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ tuntia"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minuuttia"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@min"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekuntia"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ päivä"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ tunti"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuutti"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ viikko"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ viikkoa"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@vk"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Peruuta"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Poista"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Ääniviesti"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Paina ja pidä painettuna äänittääksesi ääniviesti."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Ääniviesti"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Poistit katoavat viestit käytöstä."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Asetit katoavien viestin ajaksi %@"; -// MARK: - Session -"continue_2" = "Jatka"; -"copy" = "Kopioi"; -"invalid_url" = "Virheellinen URL-osoite"; -"next" = "Seuraava"; -"share" = "Jaa"; -"invalid_session_id" = "Virheellinen Session ID"; -"cancel" = "Peruuta"; -"your_session_id" = "Oma Session ID"; -"vc_landing_title_2" = "Sessionisi alkaa tästä..."; -"vc_landing_register_button_title" = "Luo Session ID"; -"vc_landing_restore_button_title" = "Jatka Sessionin käyttöä"; -"vc_landing_link_button_title" = "Liitä laite"; -"view_fake_chat_bubble_1" = "Mikä on Session?"; -"view_fake_chat_bubble_2" = "Se on hajautettu sekä salattu viestipalvelu"; -"view_fake_chat_bubble_3" = "Joten se ei kerää henkilökohtaisia tietojani tai keskustelujeni metadataa? Miten se sitten toimii?"; -"view_fake_chat_bubble_4" = "Yhdistämällä edistynyttä reititys- ja salausteknologiaa päästä päätyyn."; -"view_fake_chat_bubble_5" = "Kaverit eivät anna kavereiden käyttää vaarantuneita viestipalveluita. Oleppa hyvä."; -"vc_register_title" = "Tervehdi Session ID:täsi"; -"vc_register_explanation" = "Session ID on yksilöllinen osoite, jonka avulla muut voivat ottaa sinuun yhteyttä Sessionissa. Sillä ei ole yhteyttä todelliseen identiteettiisi ja se on suunniteltu täysin anonyymiksi ja yksityiseksi."; -"vc_restore_title" = "Palauta tilisi"; -"vc_restore_explanation" = "Palauta tilisi syöttämällä palautuslauseke, jonka sait rekisteröitymisen yhteydessä."; -"vc_restore_seed_text_field_hint" = "Syötä palautuslausekkeesi"; -"vc_link_device_title" = "Liitä laite"; -"vc_link_device_scan_qr_code_tab_title" = "Lue QR-koodi"; -"vc_display_name_title_2" = "Valitse näyttönimi"; -"vc_display_name_explanation" = "Tämä on nimesi, kun käytät Sessionia. Se voi olla oikea nimesi, kutsumanimi tai mitä tahansa muuta haluat."; -"vc_display_name_text_field_hint" = "Syötä näyttönimi"; -"vc_display_name_display_name_missing_error" = "Valitse näyttönimi"; -"vc_display_name_display_name_too_long_error" = "Valitse lyhyempi näyttönimi"; -"vc_pn_mode_recommended_option_tag" = "Suositeltu"; -"vc_pn_mode_no_option_picked_modal_title" = "Ole hyvä ja valitse vaihtoehto"; -"vc_home_empty_state_message" = "Sinulla ei ole yhteystietoja"; -"vc_home_empty_state_button_title" = "Aloita keskustelu"; -"vc_seed_title" = "Palautuslausekkeesi"; -"vc_seed_title_2" = "Tutustu palautuslausekkeeseesi"; -"vc_seed_explanation" = "Palautuslausekkeesi on Session ID -tunnuksesi pääavain, jonka avulla voit palauttaa ID:si, jos menetät pääsyn laitteeseesi. Säilytä palautuslausekkeesi turvallisesti, äläkä luovuta sitä muille."; -"vc_seed_reveal_button_title" = "Paljasta pitämällä pohjassa"; -"view_seed_reminder_subtitle_1" = "Suojaa tilisi tallentamalla palautuslausekkeesi"; -"view_seed_reminder_subtitle_2" = "Paljasta palautuslausekkeesi pitämällä piilotettuja sanoja painettuna ja tallenna se turvallisesti suojataksesi Session ID:si."; -"view_seed_reminder_subtitle_3" = "Varmista, että säilytät palautuslausekkeesi turvallisessa paikassa"; -"vc_path_title" = "Polku"; -"vc_path_explanation" = "Session piilottaa IP-osoitteesi ohjaamalla viestisi monen välittäjäreleen läpi Sessionin hajautetussa verkossa. Tässä ovat maat joiden kautta viestisi tällä hetkellä kulkevat:"; -"vc_path_device_row_title" = "Sinä"; -"vc_path_guard_node_row_title" = "Tulosolmu"; -"vc_path_service_node_row_title" = "Välittäjärele"; -"vc_path_destination_row_title" = "Määränpää"; -"vc_path_learn_more_button_title" = "Opi lisää"; -"vc_create_private_chat_title" = "Uusi viesti"; -"vc_create_private_chat_enter_session_id_tab_title" = "Syötä Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Lue QR-koodi"; -"vc_enter_public_key_explanation" = "Aloita uusi keskustelu syöttämällä käyttäjän Session ID tai jaa oma ID:si heille."; -"vc_scan_qr_code_camera_access_explanation" = "Session tarvitsee QR-koodien lukua varten kameran käyttöoikeuden"; -"vc_create_closed_group_title" = "Luo ryhmä"; -"vc_create_closed_group_text_field_hint" = "Anna ryhmälle nimi"; -"vc_create_closed_group_empty_state_message" = "Sinulla ei ole yhteystietoja"; -"vc_create_closed_group_group_name_missing_error" = "Syötä ryhmän nimi"; -"vc_create_closed_group_group_name_too_long_error" = "Anna ryhmälle lyhyempi nimi"; -"vc_create_closed_group_too_many_group_members_error" = "Suljetussa ryhmässä voi olla enintään 100 jäsentä"; -"vc_join_public_chat_title" = "Liity yhteisöön"; -"vc_join_public_chat_enter_group_url_tab_title" = "Yhteisön URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Lue QR-koodi"; -"vc_enter_chat_url_text_field_hint" = "Syötä yhteisön URL-osoite"; -"vc_settings_title" = "Asetukset"; -"vc_group_settings_title" = "Ryhmäasetukset"; -"vc_settings_display_name_missing_error" = "Valitse näyttönimi"; -"vc_settings_display_name_too_long_error" = "Valitse lyhyempi näyttönimi"; -"vc_settings_privacy_button_title" = "Yksityisyys"; -"vc_settings_notifications_button_title" = "Ilmoitukset"; -"vc_settings_recovery_phrase_button_title" = "Palautuslauseke"; -"vc_settings_clear_all_data_button_title" = "Tyhjennä tiedot"; -"vc_qr_code_title" = "QR-koodi"; -"vc_qr_code_view_my_qr_code_tab_title" = "Näytä oma QR-koodi"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Lue QR-koodi"; -"vc_qr_code_view_scan_qr_code_explanation" = "Aloita keskustelu jonkun kanssa lukemalla heidän QR-koodinsa"; -"vc_view_my_qr_code_explanation" = "Tämä on QR-koodisi. Muut käyttäjät voivat aloittaa keskustelun kanssasi lukemalla sen."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Sinulle ilmoitetaan uusista viesteistä luotettavasti ja viivyttelemättä Applen ilmoituspalvelua käyttäen."; -"fast_mode" = "Nopeasti"; -"slow_mode_explanation" = "Session tarkistaa taustalla ajoittain uudet viestit."; -"slow_mode" = "Hitaasti"; -"vc_pn_mode_title" = "Viesti-ilmoitukset"; -"vc_link_device_recovery_phrase_tab_title" = "Palautuslauseke"; -"vc_link_device_scan_qr_code_explanation" = "Avaa Asetukset → Palautuslauseke toisella laitteellasi nähdäksesi QR-koodisi."; -"vc_enter_recovery_phrase_title" = "Palautuslauseke"; -"vc_enter_recovery_phrase_explanation" = "Yhdistä laitteesi syöttämällä palautuslauseke, jonka sait rekisteröitymisen yhteydessä."; -"vc_enter_public_key_text_field_hint" = "Syötä Session ID tai ONS-nimi"; -"admin_group_leave_warning" = "Koska olet ryhmän luoja, poistetaan se kaikilta. Tämä ei ole peruttavissa."; -"vc_join_open_group_suggestions_title" = "Tai liity johonkin näistä..."; -"vc_settings_invite_a_friend_button_title" = "Kutsu ystäviä"; -"copied" = "Kopioitu"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopioi Session ID"; -"vc_conversation_input_prompt" = "Viesti"; -"vc_conversation_voice_message_cancel_message" = "Liu’uta peruuttaaksesi"; -"modal_download_attachment_title" = "Luotatko henkilöön %@?"; -"modal_download_attachment_explanation" = "Haluatko varmasti ladata käyttäjän %@ lähettämän median?"; -"modal_download_button_title" = "Lataa"; -"modal_open_url_title" = "Avataanko URL?"; -"modal_open_url_explanation" = "Haluatko varmasti avata osoitteen %@?"; -"modal_open_url_button_title" = "Avaa"; -"modal_copy_url_button_title" = "Kopioi linkki"; -"modal_blocked_title" = "Poistetaanko käyttäjän %@ esto?"; -"modal_blocked_explanation" = "Haluatko varmasti poistaa käyttäjän %@ eston?"; -"modal_blocked_button_title" = "Poista esto"; -"modal_link_previews_title" = "Otetaanko linkkien esikatselu käyttöön?"; -"modal_link_previews_explanation" = "Linkkien esikatselu näyttää esikatselun lähetetyistä ja vastaanotetuista URL-osoitteiden sisällöstä. Tämä voi olla hyödyllistä, mutta Sessionin on yhdistettävä linkkeihin esikatseluiden luontia varten. Voit aina poistaa toiminnon käytöstä Sessionin asetuksista."; -"modal_link_previews_button_title" = "Ota käyttöön"; -"vc_share_title" = "Jaa Sessioniin"; -"vc_share_loading_message" = "Valmistellaan liitteitä..."; -"vc_share_sending_message" = "Lähetetään..."; -"vc_share_link_previews_unsecure" = "Esikatselua ei ladattu suojaamattomalle linkille"; -"vc_share_link_previews_error" = "Esikatselua ei voida ladata"; -"vc_share_link_previews_disabled_title" = "Linkkien esikatselu on poistettu käytöstä"; -"vc_share_link_previews_disabled_explanation" = "Linkkien esikatselun käyttöönotto näyttää esikatselun jakamistasi URL-osoitteista. Tämä voi olla hyödyllistä, mutta esikatseluiden luontia varten Sessionin on yhdistettävä linkitettyihin sivustoihin.\n\nVoit ottaa linkkien esikatselun käyttöön Sessionin asetuksista."; -"view_open_group_invitation_description" = "Open Group -kutsu"; -"vc_conversation_settings_invite_button_title" = "Lisää jäseniä"; -"modal_send_seed_title" = "Varoitus"; -"modal_send_seed_explanation" = "Tämä on palautuslausekkeesi. Jos lähetät sen jollekulle, on heillä täysi pääsy tililesi."; -"modal_send_seed_send_button_title" = "Lähetä"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Huomioi vain mainitut"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Vain viestit joissa sinut mainitaan, huomioidaan."; -"view_conversation_title_notify_for_mentions_only" = "Vain huomioidut ilmoitukset"; -"message_deleted" = "Tämä viesti on poistettu"; -"delete_message_for_me" = "Poista vain minun nähtäväksi"; -"delete_message_for_everyone" = "Poista kaikkien näkyviltä"; -"delete_message_for_me_and_recipient" = "Poista minulta ja vastaanottajalta"; -"context_menu_reply" = "Vastaa"; -"context_menu_save" = "Tallenna"; -"context_menu_ban_user" = "Estä käyttäjä"; -"context_menu_ban_and_delete_all" = "Estä ja Poista kaikki"; -"context_menu_ban_user_error_alert_message" = "Käyttäjää ei voitu estää"; -"accessibility_expanding_attachments_button" = "Lisää liitteitä"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Asiakirja"; -"accessibility_library_button" = "Kuvakirjasto"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Tiivistä liiteasetukset"; -"invalid_recovery_phrase" = "Virheellinen palautuslauseke"; -"DISMISS_BUTTON_TEXT" = "Hylkää"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Asetukset"; -"call_outgoing" = "Soitit käyttäjälle %@"; -"call_incoming" = "%@ soitti sinulle"; -"call_missed" = "Vastaamaton puhelu käyttäjältä %@"; -"APN_Message" = "Sinulla on uusi viesti"; -"APN_Collapsed_Messages" = "Sinulla on %@ uutta viestiä."; -"PIN_BUTTON_TEXT" = "Kiinnitä"; -"UNPIN_BUTTON_TEXT" = "Irrota"; -"modal_call_missed_tips_title" = "Vastaamaton puhelu"; -"modal_call_missed_tips_explanation" = "Puhelu käyttäjältä '%@' jäi vastaamatta, koska puheluita varten yksityisyysasetuksista on myönnettävä 'Ääni- ja videopuhelut' -käyttöoikeus."; -"media_saved" = "%@ tallensi median."; -"screenshot_taken" = "%@ otti kuvankaappauksen."; -"SEARCH_SECTION_CONTACTS" = "Yhteystiedot ja ryhmät"; -"SEARCH_SECTION_MESSAGES" = "Viestit"; -"MESSAGE_REQUESTS_TITLE" = "Viestipyynnöt"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Ei odottavia viestipyyntöjä"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Tyhjennä kaikki"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Tyhjennä"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Haluatko varmasti poistaa viestipyynnön?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Haluatko varmasti estää tämän yhteystiedon?"; -"MESSAGE_REQUESTS_INFO" = "Viestin lähetys tälle käyttäjälle hyväksyy heidän viestipyyntönsä automaattisesti ja paljastaa Session ID:si."; -"MESSAGE_REQUESTS_ACCEPTED" = "Viestipyyntösi hyväksyttiin."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Sinulla on uusi viestipyyntö"; -"TXT_HIDE_TITLE" = "Piilota"; -"TXT_DELETE_ACCEPT" = "Hyväksy"; -"TXT_BLOCK_USER_TITLE" = "Estä käyttäjä"; -"ALERT_ERROR_TITLE" = "Virhe"; -"modal_call_permission_request_title" = "Puheluiden käyttöoikeus tarvitaan"; -"modal_call_permission_request_explanation" = "Voit aktivoida 'Ääni- ja videopuhelut' -käyttöoikeuden yksityisyysasetuksista."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Hups, tapahtui virhe"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Yritä myöhemmin uudelleen"; -"LOADING_CONVERSATIONS" = "Ladataan keskusteluita..."; -"DATABASE_MIGRATION_FAILED" = "Tietokannan optimoinnissa tapahtui virhe\n\nVoit viedä sovelluksen lokitiedot vianselvitystä varten tai voit palauttaa laitteen\n\nVaroitus: Laitteen palautuksen seurauksena kaikki kahta viikkoa vanhemmat tiedot menetetään."; -"RECOVERY_PHASE_ERROR_GENERIC" = "Jotain meni pieleen. Tarkista palautuslausekkeesi ja yritä uudelleen."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Näyttää siltä, ettet syöttänyt riittävästi sanoja. Tarkista syöttämäsi teksti ja yritä uudelleen."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Palautuslausekkeesi viimeinen sana näyttää puuttuvan. Tarkista syöttämäsi teksti ja yritä uudelleen."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Palautuslausekkeessasi näyttää olevan virheellinen sana. Tarkista syöttämäsi teksti ja yritä uudelleen."; -"RECOVERY_PHASE_ERROR_FAILED" = "Palautuslausekettasi ei voitu vahvistaa. Tarkista syöttämäsi teksti ja yritä uudelleen."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Todennustapaa ei tavoitettu."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Todennus epäonnistui."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Liian monta epäonnistunutta todennusyritystä. Yritä myöhemmin uudelleen."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Pääsykoodi on otettava iOS:n asetuksista käyttöön näytön lukituksen käyttämiseksi."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Pääsykoodi on otettava iOS:n asetuksista käyttöön näytön lukituksen käyttämiseksi."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Pääsykoodi on otettava iOS:n asetuksista käyttöön näytön lukituksen käyttämiseksi."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Lähetä"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Yritä uudelleen"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Näytä keskustelu"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Viestin lähetys epäonnistui"; -"INVALID_SESSION_ID_MESSAGE" = "Tarkista Session ID ja yritä uudelleen"; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Tarkista palautuslauseke ja yritä uudelleen"; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Dokumentit"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Sinulla ei ole dokumentteja tässä keskustelussa."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Ladataan uudempaa dokumenttia…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Ladataan vanhempaa dokumenttia…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktiviteetit"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Eläimet ja luonto"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Liput"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Ruoka ja juoma"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Esineet"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Viimeksi käytetyt"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Hymiöt ja ihmiset"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbolit"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Matkailu ja paikat"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reagoi viestiin: %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Ja 1 muu on reagoinut viestiin: %@."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Ja %@ muuta on reagoinut viestiin: %@."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Hidasta! Olet lähettänyt liian monta emojireaktiota. Yritä hetken kuluttua uudelleen."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Uusi keskustelu"; -"CREATE_GROUP_BUTTON_TITLE" = "Luo"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Liity"; -"PRIVACY_TITLE" = "Yksityisyys"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Näytön suojaus"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lukitse Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Vaadi Sessionin avaukseen Touch ID, Face ID tai salasana."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Lukukuittaukset"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Lukukuittaukset"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Lähetä lukukuittauksia kahdenkeskisissä keskusteluissa."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Kirjoitusindikaattorit"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Kirjoitusindikaattorit"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Näe ja jaa kirjoitusindikaattorit kahdenkeskisissä keskusteluissa."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Linkkien esikatselut"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Lähetä linkkien esikatselut"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Luo linkkien esikatselut tuetuille URL-osoitteille."; -"PRIVACY_SECTION_CALLS" = "Puhelut (beta)"; -"PRIVACY_CALLS_TITLE" = "Ääni- ja videopuhelut"; -"PRIVACY_CALLS_DESCRIPTION" = "Mahdollistaa ääni- ja videopuheluiden soiton ja vastaanoton."; -"PRIVACY_CALLS_WARNING_TITLE" = "Ääni- ja videopuhelut (beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "IP-osoitteesi paljastuu beta-puheluita käytettäessä puhelukumppanillesi ja Oxen Säätiön palvelimelle. Haluatko varmasti ottaa ääni- ja videopuhelut käyttöön?"; -"NOTIFICATIONS_TITLE" = "Ilmoitukset"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Ilmoituskäytäntö"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Käytä nopeaa tilaa"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Uusista viesteistä ilmoitetaan luotettavasti ja viiveettä Applen ilmoituspalvelinten avulla."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Järjestelmän ilmoitusasetukset"; -"NOTIFICATIONS_SECTION_STYLE" = "Ilmoitusten tyyli"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Ääni"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Ääni sovelluksen ollessa avoinna"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Ilmoituksen sisältö"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Ilmoituksissa näytettävät tiedot."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nimi ja sisältö"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Vain nimi"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Ei nimeä tai sisältöä"; -"CONVERSATION_SETTINGS_TITLE" = "Keskustelut"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Keskustelujen tiivistys"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Yhteisöjen tiivistys"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Poista yli 6 kuukauden ikäiset viestit yli 2000 viestin yhteisöistä."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Ääniviestit"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Toista ääniviestit automaattisesti"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Toista peräkkäiset ääniviestit automaattisesti."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Estetyt yhteystiedot"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Sinulla ei ole estettyjä yhteystietoja."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Poista esto"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Haluatko varmasti poistaa käyttäjän %@ eston?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "tämä yhteystieto"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Haluatko varmasti poistaa käyttäjän %@ eston"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "ja %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "ja %d muuta?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Poista esto"; -"APPEARANCE_TITLE" = "Ulkoasu"; -"APPEARANCE_THEMES_TITLE" = "Teemat"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Pääväri"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Mitä kuuluu?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Hyvää, kiitos. Mitäs sinne?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Erinomaista, kiitos."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Automaattinen yötila"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Seuraa järjestelmän asetusta"; -"HELP_TITLE" = "Tuki"; -"HELP_REPORT_BUG_TITLE" = "Ilmoita virheestä"; -"HELP_REPORT_BUG_DESCRIPTION" = "Vie lokitiedot ja lähetä tiedosto Sessionin tukipalvelusta."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Vie lokitiedot"; -"HELP_TRANSLATE_TITLE" = "Käännä Session"; -"HELP_FEEDBACK_TITLE" = "Haluaisimme kuulla mielipiteesi"; -"HELP_FAQ_TITLE" = "UKK"; -"HELP_SUPPORT_TITLE" = "Tue"; -"modal_clear_all_data_title" = "Tyhjennä kaikki tiedot"; -"modal_clear_all_data_explanation" = "Tämä poistaa viestisi ja yhteystietosi pysyvästi. Haluatko poistaa tietosi vain tältä laitteelta vai myös verkosta?"; -"modal_clear_all_data_explanation_2" = "Haluatko varmasti poistaa tietosi verkosta? Jos jatkat, et voi palauttaa viestejäsi etkä yhteystietojasi."; -"modal_clear_all_data_device_only_button_title" = "Tyhjennä vain laitteelta"; -"modal_clear_all_data_entire_account_button_title" = "Tyhjennä laitteelta ja verkosta"; -"dialog_clear_all_data_deletion_failed_1" = "Tietoja ei poistettu 1 palvelusolmusta. Solmun ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Tietoja ei poistettu %@ palvelusolmusta. Solmujen ID:t: %@."; -"modal_clear_all_data_confirm" = "Tyhjennä"; -"modal_seed_title" = "Palautuslausekkeesi"; -"modal_seed_explanation" = "Palautuslausekkeesi avulla voit palauttaa tilisi tai liittää laitteen."; -"modal_permission_explanation" = "Jatkaakseen Session tarvitsee \"%@\" -käyttöoikeuden. Voit myöntää sen iOS:n järjestelmäsetuksista."; -"modal_permission_settings_title" = "Asetukset"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofoni"; -"modal_permission_library" = "kirjasto"; -"DISAPPEARING_MESSAGES_OFF" = "Pois käytöstä"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Pois käytöstä"; -"COPY_GROUP_URL" = "Kopioi ryhmän URL-osoite"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Yhteystiedot"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Valitse ainakin 1 ryhmän jäsen"; -"GROUP_CREATION_PLEASE_WAIT" = "Odota kunnes ryhmä on luotu..."; -"GROUP_CREATION_ERROR_TITLE" = "Ryhmää ei voitu luoda"; -"GROUP_CREATION_ERROR_MESSAGE" = "Tarkista Internet-yhteytesi ja yritä uudelleen."; -"GROUP_UPDATE_ERROR_TITLE" = "Ryhmää ei voitu päivittää"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Ei voida poistua lisättäessä tai poistettaessa muita jäseniä."; -"GROUP_ACTION_REMOVE" = "Poista"; -"GROUP_TITLE_MEMBERS" = "Jäsenet"; -"GROUP_TITLE_FALLBACK" = "Ryhmä"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Voit lähettää viestejä vain sokaistuille ID:ille yhteisöstä"; -"DM_ERROR_INVALID" = "Tarkista Session ID tai ONS-nimi ja yritä uudelleen"; -"COMMUNITY_ERROR_INVALID_URL" = "Tarkista syöttämäsi URL-osoite ja yritä uudelleen."; -"COMMUNITY_ERROR_GENERIC" = "Ei voitu liittyä"; -"DISAPPERING_MESSAGES_TITLE" = "Katoavat viestit"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Poista tyyppi"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Katoa, kun luettu"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Viestit poistuvat, kun ne on luettu."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Katoa lähetyksen jälkeen"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Viestit poistuvat, kun ne on lähetetty."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Ajastin"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Aseta"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Tämä asetus koskee kaikkia tässä keskustelussa."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Tämä asetus koskee kaikkia tässä keskustelussa. Vain ryhmän ylläpitäjät voivat muuttaa asetusta."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ on asettanut viestit katoamaan %@, kun ne on %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ on vahtanut viestit katoamaan %@, kun ne on %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ poisti katoavat viestit käytöstä"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Jippikajee"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Jippikajee"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/fil.lproj/Localizable.strings b/Session/Meta/Translations/fil.lproj/Localizable.strings deleted file mode 100644 index a3cad3513d..0000000000 --- a/Session/Meta/Translations/fil.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Mga isinama"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Pamagat"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Uri ng talaksan: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Laki: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Inabot ang hangganan ng mensahe"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Ipadala"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Mga isinama"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "May pagkakamali sa pagpapadala ng mga isinama"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Masyadong malaki ang nakalakip na file."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Walang laman ang attachment."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "May kamalian sa pagpili ng dokumento."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Pakigawan ng pinaliit na archive ang talaksan o sanggunian at subukang ipadala muli."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Hindi suportadong Talaksan"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Boses na Mensahe"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "I-block"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Block %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "I-unblock"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ has been blocked."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "User Blocked"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blocked users will not be able to call you or send you messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Tapos na"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Piliin"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Walang katugma"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 katugma"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d sa %d na katugma"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Block This User"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "I-mute"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Search Conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Maaaring tatagal ito ng ilang mga minuto."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizing Database"; -/* The present; the current time. */ -"DATE_NOW" = "Ngayon"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Nawawalang mensahe"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Edit Group"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Group created"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Ikaw ay umalis sa grupo."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Ikaw ay inalis sa grupong ito. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Hindi maaring mag-share ng higit sa %@ items"; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Hindi wasto ang audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Umalis"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Umalis sa grupo"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Lahat ng media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Burahin ang %d mensahe "; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Burahin ang mensahe"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Ikaw"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ngayong buwan"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Hindi tumuloy ang pagpapadala."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Basahin"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Pinapadala…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Naipadala"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Nag-uupload…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Mga paalaala"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Hindi napangalanan ang Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Markahan bilang nabasa"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Sagutin"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Wala"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "You"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "Ipakita Ang aking QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "I-scan ang QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "I-share sa Session"; -"vc_share_loading_message" = "Inihahanda ang attachments..."; -"vc_share_sending_message" = "Ipinapadala..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Magdagdag ng Miyembro"; -"modal_send_seed_title" = "Babala"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Ipadala"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Sagutin"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Nakaligtaang tawag"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Mga mensahe"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/fr.lproj/Localizable.strings b/Session/Meta/Translations/fr.lproj/Localizable.strings deleted file mode 100644 index 7b768a4055..0000000000 --- a/Session/Meta/Translations/fr.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Fichier joint"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Légende"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Type de fichier : %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Taille : %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "La taille maximale de message est atteinte"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Envoyer"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Fichier joint"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Erreur d’envoi du fichier joint"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Impossible de convertir l'image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Impossible de convertir la vidéo."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Impossible d'importer l'image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Impossible de supprimer les métadonnées de l'image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Impossible de redimensionner l’image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "La pièce jointe est trop lourde."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "La pièce jointe contient du contenu non valide."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Le format de la pièce jointe est invalide."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "La pièce jointe est vide."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Échec de sélection du document."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Veuillez créer une archive compressée de ce fichier ou de ce répertoire et ensuite essayez d'envoyer cette archive."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Fichier non pris en charge"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Message vocal"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloquer"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloquer %@ ?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Débloquer %@ ?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Débloquer"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ a été bloqué."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Utilisateur Bloqué"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ a été débloqué."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Les utilisateurs bloqués ne pourront ni vous appeler ni vous envoyer des messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Terminé"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Sélectionner"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Recherche..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Aucune correspondance"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 correspondance"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d sur %d correspondances"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloquer cet utilisateur"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Sourdine"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Chercher dans la conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Déplacer et mettre à l’échelle"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Cela peut prendre quelques minutes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimisation de la base de données"; -/* The present; the current time. */ -"DATE_NOW" = "À l’instant"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Messages éphémères"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Réglage du groupe"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Vous n’avez aucun média dans cette conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Chargement des médias plus récents…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Chargement des médias plus anciens…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Échec de récupération du GIF demandé. Veuillez vérifier que vous êtes bien en ligne."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Une erreur inconnue est survenue."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Impossible de choisir le GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Veuillez saisir votre recherche."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Erreur. Touchez pour ressayer."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Il n’y a aucun résultat."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Le groupe a été créé."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ a rejoint le groupe. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ a quitté le groupe. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ a été retiré du groupe. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ ont été retirés du groupe. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Le titre est maintenant « %@ »."; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Le groupe a été mis à jour."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Vous avez quitté le groupe."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Vous avez été retiré du groupe. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Vous ne pouvez pas partager plus de %@ éléments."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Échec de sélection du fichier joint."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Le fichier audio est invalide"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Quitter"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Quitter le groupe "; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Tous les médias"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Supprimer %d messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Supprimer le message"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ le %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+ %@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Vous"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ce mois-ci"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Échec d’envoi."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Lu"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Envoi…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Envoyé"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Téléversement…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ à %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note à mon intention"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Vous avez peut-être reçu des messages alors que votre %@ redémarrait."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ a désactivé les messages éphémères."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ a défini l’expiration des messages éphémères à %@."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Impossible de capturer l’image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Impossible de capturer l’image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Échec de configuration de l’appareil photo"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Album sans nom"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marquer comme lu"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Répondre"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authentifiez-vous pour ouvrir Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Échec d’authentification"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Abandonner le média ?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Abandonner le média"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (par défaut)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Son de message"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Aucun"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ jours"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@ j"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ heures"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@ m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ secondes"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@ s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ jour"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ heure"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ semaine"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ semaines"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@ sem"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Annuler"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Supprimer"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Message vocal"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Touchez et maintenez pour enregistrer un message vocal"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Message vocal"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Vous avez désactivé les messages éphémères."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Vous avez défini l’expiration des messages éphémères à %@."; -// MARK: - Session -"continue_2" = "Continuer"; -"copy" = "Copier"; -"invalid_url" = "URL non valide"; -"next" = "Suivant"; -"share" = "Partager"; -"invalid_session_id" = "Session ID non valide"; -"cancel" = "Annuler"; -"your_session_id" = "Votre ID Session "; -"vc_landing_title_2" = "Votre Session débute ici..."; -"vc_landing_register_button_title" = "Créer un ID Session "; -"vc_landing_restore_button_title" = "Continuez votre Session"; -"vc_landing_link_button_title" = "Relier à un compte existant"; -"view_fake_chat_bubble_1" = "Qu'est-ce que Session ?"; -"view_fake_chat_bubble_2" = "C'est une application de messagerie décentralisée et cryptée"; -"view_fake_chat_bubble_3" = "Elle ne recueille donc pas mes informations personnelles ou mes métadonnées de conversations ? Comment ça marche ?"; -"view_fake_chat_bubble_4" = "En utilisant une combinaison de technologies avancées de routage anonyme et de chiffrement de bout en bout."; -"view_fake_chat_bubble_5" = "Les vrais amis ne laissent pas leurs amis utiliser des outils de messagerie compromis. De rien."; -"vc_register_title" = "Dites bonjour à votre ID Session "; -"vc_register_explanation" = "Votre ID Session est l'identifiant unique que les gens utilisent pour vous contacter dans Session. Sans lien avec votre identité réelle, votre Session ID est complètement anonyme et privé."; -"vc_restore_title" = "Restaurez votre compte"; -"vc_restore_explanation" = "Pour restaurer votre compte, veuillez entrer la phrase de récupération qui vous a été fournie lors de la création de votre compte."; -"vc_restore_seed_text_field_hint" = "Saisissez votre phrase de récupération"; -"vc_link_device_title" = "Relier un appareil"; -"vc_link_device_scan_qr_code_tab_title" = "Scanner un QR code "; -"vc_display_name_title_2" = "Choisissez votre nom d'utilisateur"; -"vc_display_name_explanation" = "Ce sera votre nom lorsque vous utiliserez Session. Il peut s'agir de votre vrai nom, d'un pseudo ou de ce que vous voulez."; -"vc_display_name_text_field_hint" = "Saisissez un nom d'utilisateur"; -"vc_display_name_display_name_missing_error" = "Veuillez choisir un nom d'utilisateur"; -"vc_display_name_display_name_too_long_error" = "Veuillez choisir un nom d'utilisateur plus court"; -"vc_pn_mode_recommended_option_tag" = "Recommandé"; -"vc_pn_mode_no_option_picked_modal_title" = "Veuillez choisir une option"; -"vc_home_empty_state_message" = "Vous n'avez pas encore de contacts"; -"vc_home_empty_state_button_title" = "Démarrez une Session"; -"vc_seed_title" = "Votre phrase de récupération"; -"vc_seed_title_2" = "Voici votre phrase de récupération"; -"vc_seed_explanation" = "Votre phrase de récupération est la clé principale de votre ID Session - vous pouvez l'utiliser pour restaurer votre ID Session si vous perdez l'accès à votre appareil. Conservez la dans un endroit sûr et ne la donnez à personne."; -"vc_seed_reveal_button_title" = "Appuyer pour révéler"; -"view_seed_reminder_subtitle_1" = "Sécurisez votre compte en sauvegardant votre phrase de récupération"; -"view_seed_reminder_subtitle_2" = "Appuyez et maintenez les mots masqués pour révéler votre phrase de récupération, puis stockez-la en toute sécurité pour sécuriser votre ID Session."; -"view_seed_reminder_subtitle_3" = "Assurez-vous de conserver votre phrase de récupération dans un endroit sûr"; -"vc_path_title" = "Chemin"; -"vc_path_explanation" = "Session occulte votre adresse IP en envoyant vos messages via plusieurs nœuds de service dans le réseau décentralisé de Session. Voici les pays par le biais desquels votre connexion est actuellement envoyée :"; -"vc_path_device_row_title" = "Vous"; -"vc_path_guard_node_row_title" = "Noeud d’entrée"; -"vc_path_service_node_row_title" = "Noeud de service"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "En savoir plus"; -"vc_create_private_chat_title" = "Nouveau message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Saisir un ID Session"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scanner un QR Code"; -"vc_enter_public_key_explanation" = "Commencez une nouvelle conversation en entrant l'ID Session de quelqu'un ou en lui partageant votre ID Session."; -"vc_scan_qr_code_camera_access_explanation" = "Session a besoin d'accéder à l'appareil photo pour scanner les QR codes"; -"vc_create_closed_group_title" = "Créer un groupe"; -"vc_create_closed_group_text_field_hint" = "Saisissez un nom de groupe"; -"vc_create_closed_group_empty_state_message" = "Vous n'avez pas encore de contacts"; -"vc_create_closed_group_group_name_missing_error" = "Veuillez saisir un nom de groupe"; -"vc_create_closed_group_group_name_too_long_error" = "Veuillez saisir un nom de groupe plus court"; -"vc_create_closed_group_too_many_group_members_error" = "Un groupe privé ne peut pas avoir plus de 100 membres"; -"vc_join_public_chat_title" = "Rejoindre la communauté"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL de la communauté"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scannez le QR code "; -"vc_enter_chat_url_text_field_hint" = "Entrez l'URL de la communauté"; -"vc_settings_title" = "Paramètres"; -"vc_group_settings_title" = "Paramètres de groupe"; -"vc_settings_display_name_missing_error" = "Veuillez choisir un nom d'utilisateur"; -"vc_settings_display_name_too_long_error" = "Veuillez choisir un nom d'utilisateur plus court"; -"vc_settings_privacy_button_title" = "Confidentialité"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Phrase de récupération"; -"vc_settings_clear_all_data_button_title" = "Effacer les données"; -"vc_qr_code_title" = "QR Code "; -"vc_qr_code_view_my_qr_code_tab_title" = "Afficher mon QR code "; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scanner le QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scannez le QR code d'un autre utilisateur pour démarrer une session"; -"vc_view_my_qr_code_explanation" = "Ceci est votre QR code. Les autres utilisateurs peuvent le scanner pour démarrer une conversation avec vous."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Vous serez notifiés de nouveaux messages de manière certaine et immédiate en utilisant les serveurs de notification d’Apple."; -"fast_mode" = "Mode rapide"; -"slow_mode_explanation" = "Session vérifiera occasionnellement la présence de nouveaux message en tâche de fond."; -"slow_mode" = "Mode lent"; -"vc_pn_mode_title" = "Notifications de message"; -"vc_link_device_recovery_phrase_tab_title" = "Phrase de récupération"; -"vc_link_device_scan_qr_code_explanation" = "Allez dans paramètre → Phrase de récupération sur votre autre appareil pour afficher votre QR Code."; -"vc_enter_recovery_phrase_title" = "Phrase de récupération"; -"vc_enter_recovery_phrase_explanation" = "Pour lier votre appareil, entrez la phrase de récupération qui vous a été donné lors de la création du compte."; -"vc_enter_public_key_text_field_hint" = "Entrez un ID Session ou un nom ONS"; -"admin_group_leave_warning" = "Puisque vous êtes le créateur de ce groupe, il sera supprimé pour tout le monde. Ceci ne peut pas être annulé."; -"vc_join_open_group_suggestions_title" = "Ou rejoignez un de ceux-ci..."; -"vc_settings_invite_a_friend_button_title" = "Inviter un ami"; -"copied" = "Copié"; -"vc_conversation_settings_copy_session_id_button_title" = "Copier l’ID Session"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Glisser pour annuler"; -"modal_download_attachment_title" = "Faire confiance à %@?"; -"modal_download_attachment_explanation" = "Êtes-vous sûr de vouloir télécharger la sélection de %@ ?"; -"modal_download_button_title" = "Télécharger"; -"modal_open_url_title" = "Ouvrir l'URL?"; -"modal_open_url_explanation" = "Êtes-vous sûr de vouloir ouvrir %@?"; -"modal_open_url_button_title" = "Ouvrir"; -"modal_copy_url_button_title" = "Copier le lien"; -"modal_blocked_title" = "Débloquer %@ ?"; -"modal_blocked_explanation" = "Confirmez-vous le déblocage de %@ ?"; -"modal_blocked_button_title" = "Débloquer"; -"modal_link_previews_title" = "Activer les aperçus de lien?"; -"modal_link_previews_explanation" = "L'activation des aperçus de lien affichera des aperçus pour les URL que vous envoyez et recevez. Cela peut être utile, mais Session devra contacter les sites Web liés pour générer des aperçus. Vous pouvez toujours désactiver les aperçus de lien dans les paramètres de Session."; -"modal_link_previews_button_title" = "Activer"; -"vc_share_title" = "Partager en Session"; -"vc_share_loading_message" = "Préparation des pièces jointes ..."; -"vc_share_sending_message" = "Envoi..."; -"vc_share_link_previews_unsecure" = "Aperçu non chargé pour les liens non sécurisés"; -"vc_share_link_previews_error" = "Impossible de charger l'aperçu"; -"vc_share_link_previews_disabled_title" = "Aperçu des Liens Désactivé"; -"vc_share_link_previews_disabled_explanation" = "L'activation des aperçus de lien affichera des aperçus pour les URL que vous partagez. Cela peut être utile, mais Session devra contacter les sites Web liés pour générer des aperçus.\n\nVous pouvez toujours activer les aperçus de lien dans les paramètres de Session."; -"view_open_group_invitation_description" = "Invitation à un groupe ouvert"; -"vc_conversation_settings_invite_button_title" = "Ajouter des membres"; -"modal_send_seed_title" = "Attention"; -"modal_send_seed_explanation" = "Voici votre phrase de récupération. Si vous l'envoyez à quelqu'un, cette personne aura un accès complet à votre compte."; -"modal_send_seed_send_button_title" = "Envoyer"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Activer les notifications que sur mention"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Quand activer, vous recevrez les notifications d’uniquement les messages vous notifiant."; -"view_conversation_title_notify_for_mentions_only" = "Me notifier que si je suis mentionné(e)"; -"message_deleted" = "Ce message a été supprimé"; -"delete_message_for_me" = "Supprimer pour moi uniquement"; -"delete_message_for_everyone" = "Supprimer pour tout le monde"; -"delete_message_for_me_and_recipient" = "Supprimer pour moi et %@"; -"context_menu_reply" = "Répondre"; -"context_menu_save" = "Enregistrer"; -"context_menu_ban_user" = "Bannir l'utilisateur"; -"context_menu_ban_and_delete_all" = "Bannir et supprimer tout"; -"context_menu_ban_user_error_alert_message" = "Impossible de bannir l'utilisateur"; -"accessibility_expanding_attachments_button" = "Ajouter une pièce jointe"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Bibliothèque photos"; -"accessibility_camera_button" = "Caméra"; -"accessibility_main_button_collapse" = "Réduire les options de pièces jointes"; -"invalid_recovery_phrase" = "Phrase de récupération incorrecte"; -"DISMISS_BUTTON_TEXT" = "Fermer"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Paramètres"; -"call_outgoing" = "Vous avez appelé %@"; -"call_incoming" = "%@ vous a appelé"; -"call_missed" = "Appel manqué de %@"; -"APN_Message" = "Vous avez un nouveau message."; -"APN_Collapsed_Messages" = "Vous avez %@ nouveaux messages."; -"PIN_BUTTON_TEXT" = "Épingler"; -"UNPIN_BUTTON_TEXT" = "Désépingler"; -"modal_call_missed_tips_title" = "Appel manqué"; -"modal_call_missed_tips_explanation" = "Appel manqué de '%@' car vous devez activer la permission 'Appels vocaux et vidéo' dans les paramètres de confidentialité."; -"media_saved" = "Média enregistré par %@."; -"screenshot_taken" = "%@ a pris une capture d'écran."; -"SEARCH_SECTION_CONTACTS" = "Contacts et Groupes"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Demandes de message"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Aucune demande de message en attente"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Effacer tous"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Effacer"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Êtes-vous sûr de vouloir supprimer cette demande de message ?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Êtes-vous sûr de vouloir bloquer ce contact ?"; -"MESSAGE_REQUESTS_INFO" = "Envoyer un message à cet utilisateur acceptera automatiquement sa demande de message et révélera votre ID de session."; -"MESSAGE_REQUESTS_ACCEPTED" = "Votre demande de message a été réceptionnée."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Vous avez une nouvelle demande de message"; -"TXT_HIDE_TITLE" = "Masquer"; -"TXT_DELETE_ACCEPT" = "Accepter"; -"TXT_BLOCK_USER_TITLE" = "Bloquer l'utilisateur"; -"ALERT_ERROR_TITLE" = "Erreur"; -"modal_call_permission_request_title" = "Autorisations d'appel requises"; -"modal_call_permission_request_explanation" = "Vous pouvez activer la permission \"Appels vocaux et vidéo\" dans les paramètres de confidentialité."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Une erreur s'est produite !"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Veuillez réessayer plus tard"; -"LOADING_CONVERSATIONS" = "Chargement des conversations..."; -"DATABASE_MIGRATION_FAILED" = "Une erreur s'est produite lors de l'optimisation de la base de données\n\nVous pouvez exporter vos journaux d'application pour être en mesure de partager pour dépannage ou vous pouvez restaurer votre appareil\n\nAttention : la restauration de votre appareil entraînera la perte de toutes les données de plus de deux semaines"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Quelque chose s'est mal passé. Veuillez vérifier votre phrase de récupération et réessayer."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Il semble que vous n'ayez pas saisi suffisamment de mots. Veuillez vérifier votre phrase de récupération et réessayer."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Le dernier mot de votre phrase de récupération semble manquant. Veuillez vérifier ce que vous avez entré et réessayer."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Il semble y avoir un mot invalide dans votre phrase de récupération. Veuillez vérifier ce que vous avez entré et réessayez."; -"RECOVERY_PHASE_ERROR_FAILED" = "Votre phrase de récupération n'a pas pu être vérifiée. Veuillez vérifier ce que vous avez saisi et réessayer."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Impossible d’accéder à l’authentification."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Échec d’authentification."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Trop d’échecs de tentatives d’authentification. Veuillez ressayer ultérieurement."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Vous devez activer un code dans vos réglages iOS pour utiliser le verrouillage de l’écran."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Vous devez activer un code dans vos réglages iOS pour utiliser le verrouillage de l’écran."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Vous devez activer un code dans vos réglages iOS pour utiliser le verrouillage de l’écran."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Envoyer"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Réessayer"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Afficher le chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "L’envoi de votre message a échoué."; -"INVALID_SESSION_ID_MESSAGE" = "Veuillez vérifier le Session ID et réessayer."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Veuillez vérifier la phrase de récupération et réessayer."; -"MEDIA_TAB_TITLE" = "Médias"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Vous n'avez aucun document dans cette conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Chargement du document plus récent…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Chargement du document plus ancien…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activités"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animaux & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Drapeaux"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Nourriture & Boissons"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objets"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Fréquemment Utilisés"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Émoticônes & Personnes"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symboles"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Voyages & Lieux"; -"EMOJI_REACTS_NOTIFICATION" = "%@ réagit à un message avec %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Et 1 autre a réagi %@ à ce message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Et %@ autres ont réagi %@ à ce message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Ralentissez ! Vous avez envoyé trop d'émoticônes. Réessayez bientôt."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nouvelle conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Créer"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Rejoindre"; -"PRIVACY_TITLE" = "Confidentialité"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Sécurité d'écran"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Verrouiller Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Exiger Touch ID, Face ID ou votre code d'accès pour déverrouiller Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Accusés de lecture"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Accusés de lecture"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Envoyer des accusés de lecture dans les conversations individuelles."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicateurs de saisie"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicateurs de saisie"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Voir et envoyer les indicateurs de saisie dans les conversations un à un."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Aperçus de liens"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Envoyer les aperçus des liens"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Générer des aperçus de liens pour les URL supportées."; -"PRIVACY_SECTION_CALLS" = "Appels (Beta)"; -"PRIVACY_CALLS_TITLE" = "Appels vocaux et vidéos"; -"PRIVACY_CALLS_DESCRIPTION" = "Active les appels vocaux et vidéo vers et depuis d'autres utilisateurs."; -"PRIVACY_CALLS_WARNING_TITLE" = "Appels vocaux et vidéo (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Votre adresse IP est visible par votre interlocuteur et un serveur d'Oxen Foundation lorsque que vous utilisez les appels beta. Voulez-vous vraiment activer les appels vocaux et vidéo ?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Stratégie de notification"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Utiliser le Mode Rapide"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Vous serez averti de nouveaux messages de manière fiable et immédiate en utilisant les serveurs de notification d'Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Accédez aux paramètres de notifications de l'appareil"; -"NOTIFICATIONS_SECTION_STYLE" = "Style de notification"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Son"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Son à l'ouverture de l'application"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Contenu de la notification"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informations affichées dans les notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nom & Contenu"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Nom uniquement"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Effacer toutes les données"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Les données n’ont pas été supprimées sur un nœud de service. ID du nœud de service : %@."; -"dialog_clear_all_data_deletion_failed_2" = "Les données n’ont pas été supprimées sur %@ nœuds de service. ID des nœuds de service : %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Votre phrase de récupération"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Veuillez patienter pendant la création du groupe..."; -"GROUP_CREATION_ERROR_TITLE" = "Impossible de créer le groupe"; -"GROUP_CREATION_ERROR_MESSAGE" = "Veuillez vérifier votre connexion internet et réessayer."; -"GROUP_UPDATE_ERROR_TITLE" = "Impossible de mettre à jour le groupe"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Impossible de quitter lors de l'ajout ou la suppression d'autres membres."; -"GROUP_ACTION_REMOVE" = "Supprimer"; -"GROUP_TITLE_MEMBERS" = "Membres"; -"GROUP_TITLE_FALLBACK" = "Groupe"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Vous pouvez seulement envoyer des messages aux identifiants aveugles depuis une communauté"; -"DM_ERROR_INVALID" = "Veuillez vérifier l'ID de Session ou le nom ONS et réessayer"; -"COMMUNITY_ERROR_INVALID_URL" = "Veuillez vérifier l'URL que vous avez saisie et réessayer."; -"COMMUNITY_ERROR_GENERIC" = "Impossible de rejoindre"; -"DISAPPERING_MESSAGES_TITLE" = "Messages éphémères"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disparaît après lecture"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Les messages sont supprimés après avoir été lus."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disparaît après l'envoi"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Les messages sont supprimés après avoir été envoyés."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Minuteur"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Appliquer"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Ce paramètre s'applique à tout le monde dans cette conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/hi.lproj/Localizable.strings b/Session/Meta/Translations/hi.lproj/Localizable.strings deleted file mode 100644 index 33841b7274..0000000000 --- a/Session/Meta/Translations/hi.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "अटैचमेंट जोड़ें"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "कैप्शन"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "फ़ाइल प्रकार: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Size: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "आपके द्वारा भेजा जा रहा संदेश सीमा से अधिक है।"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "भेजें"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "अटैचमेंट"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "अनुलग्नक भेजने में त्रुटि"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "छवि प्रच्छन्न करने मे असफल"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "दस्तावेज़ चुनने में विफल."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "कृपया इस फ़ाइल या निर्देशिका का एक संपीड़ित संग्रह बनाएं और इसके बजाय उसे भेजने का प्रयास करें।"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "असमर्थित फ़ाइल"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "स्वर संदेश"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "ब्लॉक"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ को ब्लॉक करें?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "अनब्लॉक करें"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ को ब्लॉक कर दिया गया है"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "यूजर ब्लॉक किया हुआ है"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "अवरुद्ध उपयोगकर्ता आपको कॉल नहीं कर पाएंगे या आपको संदेश नहीं भेज पाएंगे।"; -/* Label for generic done button. */ -"BUTTON_DONE" = "पूरा हुआ"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "चुनें"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "No matches"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 match"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d of %d matches"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Block This User"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "म्यूट"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "बातचीत खोजें"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "इसमें कुछ मिनटों का समय लगेगा ।"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "डाटाबेस का अनुकूलन"; -/* The present; the current time. */ -"DATE_NOW" = "अभी"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "गायब होने वाले संदेश"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Edit Group"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Group created"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "आपने समूह छोड़ दिया है"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " You were removed from the group. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "अटैचमेंट का चयन करने में विफल।"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "अमान्य ऑडियो फ़ाइल."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "छोड़ें"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "ग्रुप को छोड़ें"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "सभी मीडिया"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "संदेश %d हटाएं"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "डिलीट मेसिज"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "आप"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "इस महीने"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "भेजना विफल"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "पढ़ें"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "जा रहा है..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "भेज दिया!"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "अपलोड हो रहा है"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "अपने लिए नोट"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "हो सकता है कि आपका %@ पुनरारंभ होने के दौरान आपको संदेश प्राप्त हुए हों।"; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ने गायब संदेश अक्षम कर दिए हैं।"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ने गायब संदेश टाइमर को %@ तक सेट कर दिया है।"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "छवि कैप्चर करने में असमर्थ।"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "छवि कैप्चर करने में असमर्थ।"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "कैमरा कॉन्फ़िगर करने में विफल।"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "अनाम एल्बम"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Session खोलने के लिए प्रमाणीकरण करें"; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "प्रमाणीकरण विफल रहा"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "मीडिया छोड़ें?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "मीडिया छोड़ें?"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "वौइस् मैसेज"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "ध्वनि संदेश रिकॉर्ड करने के लिए टैप करके रखें।"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "वौइस् मैसेज"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "आपने गायब संदेश अक्षम कर दिए हैं।"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "आपने गायब संदेश टाइमर को %@ तक सेट कर दिया है।"; -// MARK: - Session -"continue_2" = "जारी रखें"; -"copy" = "कॉपी करें"; -"invalid_url" = "अमान्य यूआरएल"; -"next" = "अगला"; -"share" = "शेयर करें"; -"invalid_session_id" = "अमान्य सेशन आईडी"; -"cancel" = "रद्द करें"; -"your_session_id" = "आपकी सेशन आईडी"; -"vc_landing_title_2" = "आपका सेशन यहां आरंभ होता है..."; -"vc_landing_register_button_title" = "सेशन आईडी बनाएं"; -"vc_landing_restore_button_title" = "अपना सेशन जारी रखें"; -"vc_landing_link_button_title" = "डिवाइस को लिंक करें"; -"view_fake_chat_bubble_1" = "सेशन क्या है?"; -"view_fake_chat_bubble_2" = "यह एक decentralized, encrypted मेसेजिंग ऐप है"; -"view_fake_chat_bubble_3" = "इसलिए यह मेरी निजी जानकारी या बातचीत का metadata इकठ्ठा नहीं करता? यह कैसे काम करता है?"; -"view_fake_chat_bubble_4" = "एडवांस्ड anonymous routing और end-to-end encryption के मिश्रण का प्रयोग करके।"; -"view_fake_chat_bubble_5" = "दोस्त दोस्तों को असुरक्षित मैसेंजर नहीं उपयोग करने देते। आपका स्वागत है।"; -"vc_register_title" = "अपनी सेशन आईडी को हेल्लो कहें"; -"vc_register_explanation" = "आपकी Session ID एक ऐसा अनोखा पता है जिसका उपयोग करके लोग आपसे Session पर संपर्क कर सकते हैं। आपकी वास्तविक पहचान से कोई संबंध नहीं होने के कारण, आपका Session ID डिज़ाइन द्वारा पूरी तरह से गुमनाम और निजी है |"; -"vc_restore_title" = "अकाउंट रिस्टोर करें"; -"vc_restore_explanation" = "अकाउंट बनाते समय बनाया गया अपना रिकवरी वाक्य डालें।"; -"vc_restore_seed_text_field_hint" = "अपना पुनर्प्राप्ति वाक्यांश लिखें"; -"vc_link_device_title" = "डिवाइस को लिंक करें"; -"vc_link_device_scan_qr_code_tab_title" = "QR कोड को स्कैन करें"; -"vc_display_name_title_2" = "अपना प्रदर्शन नाम चुनें"; -"vc_display_name_explanation" = "यह सेशन इस्तेमाल करते समय आपका नाम होगा। यह आपका असली नाम, उपनाम या कुछ और भी हो सकता है।"; -"vc_display_name_text_field_hint" = "डिस्प्ले नाम डालें"; -"vc_display_name_display_name_missing_error" = "कृपया एक डिस्प्ले नाम चुनें"; -"vc_display_name_display_name_too_long_error" = "कृपया एक छोटा डिसप्ले नाम चुनें"; -"vc_pn_mode_recommended_option_tag" = "संस्तुत"; -"vc_pn_mode_no_option_picked_modal_title" = "कृपया एक विकल्प चुनें।"; -"vc_home_empty_state_message" = "अभी तक आपके पास कोई कॉन्टैक्ट्स नहीं हैं"; -"vc_home_empty_state_button_title" = "एक सेशन प्रारंभ करें"; -"vc_seed_title" = "आपका रिकवरी वाक्यांश"; -"vc_seed_title_2" = "अपने पुनर्प्राप्ति वाक्यांश से मिलें"; -"vc_seed_explanation" = "आपका रिकवरी फ्रेज आपके Session Id की मास्टर कीय है — आप इसका इस्तेमाल अपनी Session ID को वापिस पाने के लिए कर सकते है अगर आपका फ़ोन गुम हो गया है | अपने रिकवरी फ्रेज को एक सुरक्षित जगह रखे और इसे किसी के साथ शेयर न करे |"; -"vc_seed_reveal_button_title" = "देखने के लिए दबाएं"; -"view_seed_reminder_subtitle_1" = "अकाउंट सुरक्षित रखने के लिए अपनी पुनर्व्यप्ती वाक्यांश को सेव करके रखें"; -"view_seed_reminder_subtitle_2" = "अपना पुनर्प्राप्ति वाक्यांश प्रकट करने के लिए संशोधित शब्दों को टैप और होल्ड करें, फिर अपनी Session ID को सुरक्षित करने के लिए इसे सुरक्षित रूप से संग्रहीत करें।"; -"view_seed_reminder_subtitle_3" = "अपने रिकवरी फ्रेज को एक सुरक्षित जगह रखे"; -"vc_path_title" = "पाथ"; -"vc_path_explanation" = "सेशन आपके मैसेज को सेशन के डेंटरलिज़्ड नेटवर्क की बहुत साडी सर्विस नोड्स में भेज देता है जो आपकी IP को छुपाती है."; -"vc_path_device_row_title" = "आप"; -"vc_path_guard_node_row_title" = "प्रवेश नोड"; -"vc_path_service_node_row_title" = "सर्विस नोड"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "अपने डिवाइस को लिंक करने के लिए, पुनर्प्राप्ति वाक्यांश दर्ज करें जो आपको साइन अप करते समय दिया गया था।"; -"vc_enter_public_key_text_field_hint" = "Session आईडी या ओएनएस नाम दर्ज करें"; -"admin_group_leave_warning" = "चूंकि आप इस समूह के निर्माता हैं, इसलिए इसे सभी के लिए हटा दिया जाएगा। इसे असंपादित नहीं किया जा सकता है।"; -"vc_join_open_group_suggestions_title" = "या इनमें से एक को जोड़ें..."; -"vc_settings_invite_a_friend_button_title" = "किसी मित्र को आमंत्रित करें"; -"copied" = "कॉपी किया गया!"; -"vc_conversation_settings_copy_session_id_button_title" = "कापी सेशन आईडी"; -"vc_conversation_input_prompt" = "मैसेज"; -"vc_conversation_voice_message_cancel_message" = "रद्द करने के लिए स्लाइड करें"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "क्या आप वाकई %@ द्वारा भेजे गए मीडिया को डाउनलोड करना चाहते हैं?"; -"modal_download_button_title" = "डाउनलोड"; -"modal_open_url_title" = "यूआरएल खोलें"; -"modal_open_url_explanation" = "क्या आप वाकई %@ खोलना चाहते हैं?"; -"modal_open_url_button_title" = "खोलें"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "%@ अनब्लॉक करें?"; -"modal_blocked_explanation" = "क्या आप वाकई %@ को अनब्लॉक करना चाहते हैं?"; -"modal_blocked_button_title" = "अनब्लॉक करें"; -"modal_link_previews_title" = "लिंक पूर्वावलोकन सक्षम करें?"; -"modal_link_previews_explanation" = "लिंक पूर्वावलोकन सक्षम करने से आपके द्वारा भेजे और प्राप्त किए जाने वाले URL के पूर्वावलोकन दिखाई देंगे. यह उपयोगी हो सकता है, लेकिन Session को पूर्वावलोकन उत्पन्न करने के लिए लिंक की गई वेबसाइटों से संपर्क करने की आवश्यकता होगी। आप कभी भी Session की सेटिंग में लिंक पूर्वावलोकन अक्षम कर सकते हैं।"; -"modal_link_previews_button_title" = "सक्षम करें"; -"vc_share_title" = "सत्र में साझा करें"; -"vc_share_loading_message" = "अटैचमेंट तैयार किए जा रहे हैं..."; -"vc_share_sending_message" = "भेजा जा रहा है..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "ग्रुप आमंत्रण खोलें"; -"vc_conversation_settings_invite_button_title" = "सदस्य जोड़ें"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/hr.lproj/Localizable.strings b/Session/Meta/Translations/hr.lproj/Localizable.strings deleted file mode 100644 index e411224c78..0000000000 --- a/Session/Meta/Translations/hr.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Privitak"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Naslov"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Vrsta datoteke: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Veličina: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Dosegnuto ograničenje poruke"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Pošalji"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Privitak"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Pogreška kod slanja privitka"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Nije moguće pretvoriti sliku."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Nije moguće obraditi videozapis."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Nije moguće raščlaniti sliku."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nije moguće izbrisati metapodatke sa slike."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Odabir dokumenta neuspješan."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Molimo stvorite komprimirani arhiv ove datoteke ili direktorija i pokušajte poslati ponovo."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nepodržana datoteka"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Glasovna poruka"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokiraj"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blokiraj %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Deblokiraj"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ je blokiran."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Korisnik blokiran"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blokirani korisnici neće vas moći nazvati niti poslati poruke."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Gotovo"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Odaberi"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Nema podudaranja"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 podudaranje"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d od %d podudaranja"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokiraj ovog korisnika"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Utišaj"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Pretraživanje razgovora"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Pomicanje i skaliranje"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Ovo može potrajati nekoliko minuta."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizacija Baze podataka"; -/* The present; the current time. */ -"DATE_NOW" = "Sada"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Nestajuće poruke"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Uredi Grupu"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "U ovom razgovoru nemate multimedijskih podataka."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Učitavanje novijih medija…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Učitavanje starijih medija…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Dohvaćanje traženog GIF-a nije uspjelo. Provjerite jeste li spojeni na internet."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Došlo je do nepoznate greške."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nije moguće odabrati GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Unesite svoju pretragu."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Greška. Dodirnite za ponovni pokušaj."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nema rezultata."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Kreirana Grupa"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Naslov je sada %@. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupa ažurirana."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Napustili ste grupu."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Uklonjeni ste iz grupe. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Ne možete podijeliti više od %@ stavki."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Odabir privitka nije uspio."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Nevažeća audio datoteka."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Napusti"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Napusti grupu"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Sva multimedija"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Izbriši broj poruka %d"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Izbriši poruku"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ u %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Ti"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ovaj mjesec"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Slanje nije uspjelo."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Pročitano"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Slanje…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Poslano"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Prenošenje…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ za %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Napomena sebi"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Možda ste primili poruke dok se %@ ponovno pokretao."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ je onemogućio nestajuće poruke."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ je postavo vrijeme za koliko će poruke nestati, na %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nije moguće snimiti sliku."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nije moguće snimiti sliku."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Konfiguriranje kamere nije uspjelo."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Neimenovani album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Označi kao pročitano"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Odgovori"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentificirajte se za otvaranje Session-a."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Neuspješna autentifikacija"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Odbaciti medij?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Odbaci medij"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (zadano)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Zvuk poruke"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Ništa"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dana"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ sati"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minuta"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekundi"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dan"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ sat"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minutu"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ tjedan"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ tjedana"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@tj"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Otkaži"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Obriši"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Glasovna poruka"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Dodirnite i držite za snimanje glasovne poruke."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Glasovna poruka"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Onemogućili ste nestajuće poruke."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Vrijeme nestajućih poruke postavili ste na %@"; -// MARK: - Session -"continue_2" = "Nastavi"; -"copy" = "Kopiraj"; -"invalid_url" = "Neispravna poveznica"; -"next" = "Sljedeće"; -"share" = "Podijeli"; -"invalid_session_id" = "Nevažeći Session ID"; -"cancel" = "Otkaži"; -"your_session_id" = "Vaš Session ID"; -"vc_landing_title_2" = "Vaš Session počinje ovdje..."; -"vc_landing_register_button_title" = "Kreiraj Session ID"; -"vc_landing_restore_button_title" = "Nastavite sa svojim Session-om"; -"vc_landing_link_button_title" = "Poveži uređaj"; -"view_fake_chat_bubble_1" = "Što je Session?"; -"view_fake_chat_bubble_2" = "To je decentralizirana aplikacija za razmjenu šifriranih poruka"; -"view_fake_chat_bubble_3" = "Dakle, ne prikuplja moje osobne podatke ili metapodatke razgovora? Kako to radi?"; -"view_fake_chat_bubble_4" = "Koristeći kombinacije naprednih anonimnih usmjeravanja i end-to-end tehnologiju šifriranja."; -"view_fake_chat_bubble_5" = "Prijatelji ne dopuštaju prijateljima da koriste kompromitirane aplikacije za dopisivanje. Nema na čemu."; -"vc_register_title" = "Pozdravite svoj Session ID"; -"vc_register_explanation" = "Vaš Session ID jedinstvena je adresa koju ljudi mogu koristiti da bi vas kontaktirali na Session-u. Bez povezivanja sa vašim stvarnim identitetom, vaš Session ID je potpuno anoniman i dizajniran privatno."; -"vc_restore_title" = "Vrati korisnički račun"; -"vc_restore_explanation" = "Unesite frazu za oporavak koja Vam je dana kada ste se prijavili za vraćanje računa."; -"vc_restore_seed_text_field_hint" = "Unesite frazu za oporavak"; -"vc_link_device_title" = "Poveži uređaj"; -"vc_link_device_scan_qr_code_tab_title" = "Skeniraj QR kôd"; -"vc_display_name_title_2" = "Odaberite svoje ime za prikaz"; -"vc_display_name_explanation" = "To će biti vaše ime dok ćete koristiti Session. To može biti vaše pravo ime, lažno ime ili bilo što drugo, što želite."; -"vc_display_name_text_field_hint" = "Unesite ime za prikaz"; -"vc_display_name_display_name_missing_error" = "Molimo odaberite svoje ime za prikaz"; -"vc_display_name_display_name_too_long_error" = "Odaberite kraće ime za prikaz"; -"vc_pn_mode_recommended_option_tag" = "Preporučeno"; -"vc_pn_mode_no_option_picked_modal_title" = "Odaberite opciju"; -"vc_home_empty_state_message" = "Nemate kontakata"; -"vc_home_empty_state_button_title" = "Pokreni Session razgovor"; -"vc_seed_title" = "Vaša fraza za oporavak"; -"vc_seed_title_2" = "Upoznajte Vašu frazu za oporavak"; -"vc_seed_explanation" = "Fraza za oporavak je glavni ključ vašeg Session ID-a - pomoću njega možete vratiti svoj Session ID ako izgubite pristup uređaju. Spremite frazu za oporavak na sigurno mjesto i nedajte je nikome."; -"vc_seed_reveal_button_title" = "Drži za otkrivanje"; -"view_seed_reminder_subtitle_1" = "Osigurajte svoj račun spremanjem fraze za oporavak"; -"view_seed_reminder_subtitle_2" = "Dodirnite i zadržite uređene riječi da biste otkrili frazu za oporavak, a zatim je sigurno spremite kako biste osigurali svoj Session ID."; -"view_seed_reminder_subtitle_3" = "Svakako pohranite frazu za oporavak na sigurno mjesto"; -"vc_path_title" = "Putanja"; -"vc_path_explanation" = "Session skriva vaš IP usmjeravanjem vaših poruka kroz više uslužnih čvorova u Session decentraliziranoj mreži. Ovo su zemlje kroz koje se vaša veza trenutno usmjerava:"; -"vc_path_device_row_title" = "Vi"; -"vc_path_guard_node_row_title" = "Ulazni čvor"; -"vc_path_service_node_row_title" = "Čvor usluge"; -"vc_path_destination_row_title" = "Odredište"; -"vc_path_learn_more_button_title" = "Saznaj više"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Unesite Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skeniraj QR kôd"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session treba pristup kameri za skeniranje QR kôdova"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Unesite naziv grupe"; -"vc_create_closed_group_empty_state_message" = "Još nemate kontakata"; -"vc_create_closed_group_group_name_missing_error" = "Unesite naziv grupe"; -"vc_create_closed_group_group_name_too_long_error" = "Unesite kraći naziv grupe"; -"vc_create_closed_group_too_many_group_members_error" = "Zatvorena grupa ne može imati više od 100 članova"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skeniraj QR kôd"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Postavke"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Molimo odaberite svoje ime za prikaz"; -"vc_settings_display_name_too_long_error" = "Odaberite kraće ime za prikaz"; -"vc_settings_privacy_button_title" = "Privatnost"; -"vc_settings_notifications_button_title" = "Obavijesti"; -"vc_settings_recovery_phrase_button_title" = "Fraza za oporavak"; -"vc_settings_clear_all_data_button_title" = "Obriši podatke"; -"vc_qr_code_title" = "QR kôd"; -"vc_qr_code_view_my_qr_code_tab_title" = "Pogledaj moj QR kôd"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skeniraj QR kôd"; -"vc_qr_code_view_scan_qr_code_explanation" = "Skenirajte nečiji QR kôd da biste započeli razgovor s njim"; -"vc_view_my_qr_code_explanation" = "Ovo je vaš QR kôd. Drugi ga korisnici mogu skenirati kako bi započeli sesiju s vama."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "O novim ćete porukama biti obaviješteni odmah i pouzdano pomoću Appleovih poslužitelja za obavijesti."; -"fast_mode" = "Brzi način"; -"slow_mode_explanation" = "Session će povremeno, u pozadini provjeravati ima li novih poruka."; -"slow_mode" = "Spor način"; -"vc_pn_mode_title" = "Obavijest o poruci"; -"vc_link_device_recovery_phrase_tab_title" = "Fraza za oporavak"; -"vc_link_device_scan_qr_code_explanation" = "Idite na Postavke → Fraza za oporavak, na drugom uređaju da biste prikazali svoj QR kôd."; -"vc_enter_recovery_phrase_title" = "Fraza za oporavak"; -"vc_enter_recovery_phrase_explanation" = "Da biste povezali svoj uređaj, unesite frazu za oporavak koja vam je dana prilikom prijave."; -"vc_enter_public_key_text_field_hint" = "Unesite Session ID ili ONS ime"; -"admin_group_leave_warning" = "Budući da ste tvorac ove grupe, ona će biti izbrisana za sve. To se ne može poništiti."; -"vc_join_open_group_suggestions_title" = "Ili se pridružite jednom od ovih..."; -"vc_settings_invite_a_friend_button_title" = "Pozovi prijatelja"; -"copied" = "Kopirano"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopiraj Session ID"; -"vc_conversation_input_prompt" = "Poruka"; -"vc_conversation_voice_message_cancel_message" = "Pomakni za odustajanje"; -"modal_download_attachment_title" = "Vjeruj %@?"; -"modal_download_attachment_explanation" = "Jeste li sigurni da želite preuzeti medije koje je poslao %@?"; -"modal_download_button_title" = "Preuzmi"; -"modal_open_url_title" = "Otvori poveznicu?"; -"modal_open_url_explanation" = "Jeste li sigurni da želite otvoriti %@?"; -"modal_open_url_button_title" = "Otvori"; -"modal_copy_url_button_title" = "Kopiraj poveznicu"; -"modal_blocked_title" = "Deblokiraj %@?"; -"modal_blocked_explanation" = "Jeste li sigurni da želite deblokirati %@?"; -"modal_blocked_button_title" = "Deblokiraj"; -"modal_link_previews_title" = "Omogući preglede poveznica?"; -"modal_link_previews_explanation" = "Omogućavanjem pregleda poveznica prikazat će se pregledi za URL-ove koje šaljete i primate. To može biti korisno, ali Session će trebati kontaktirati povezane web stranice kako bi generirao preglede. Uvijek možete onemogućiti preglede poveznica u postavkama Session-a."; -"modal_link_previews_button_title" = "Uključi"; -"vc_share_title" = "Podijeli sa Session-om"; -"vc_share_loading_message" = "Priprema privitaka..."; -"vc_share_sending_message" = "Slanje..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Otvori pozivnicu za grupu"; -"vc_conversation_settings_invite_button_title" = "Dodaj članove"; -"modal_send_seed_title" = "Upozorenje"; -"modal_send_seed_explanation" = "Ovo je vaša fraza za oporavak. Ako ju pošaljete nekome, imat će puni pristup vašem računu."; -"modal_send_seed_send_button_title" = "Pošalji"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Obavijesti samo kod spominjanja"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Kad je omogućeno, bit ćete obaviješteni samo o porukama koje vas spominju."; -"view_conversation_title_notify_for_mentions_only" = "Obavijesti samo kod spominjanja"; -"message_deleted" = "Ova poruka je izbrisana"; -"delete_message_for_me" = "Izbriši samo za mene"; -"delete_message_for_everyone" = "Izbriši za sve"; -"delete_message_for_me_and_recipient" = "Izbriši za mene i %@"; -"context_menu_reply" = "Odgovori"; -"context_menu_save" = "Spremi"; -"context_menu_ban_user" = "Zabrani korisnik"; -"context_menu_ban_and_delete_all" = "Zabrani i izbriši sve"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Dodaj privitak"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Galerija slika"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Sažmi opcije privitka"; -"invalid_recovery_phrase" = "Nevažeća fraza za oporavak"; -"DISMISS_BUTTON_TEXT" = "Odbaci"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Postavke"; -"call_outgoing" = "Zvali ste %@"; -"call_incoming" = "zvao vas je %@"; -"call_missed" = "Propušten poziv od %@"; -"APN_Message" = "Imate novu poruku!"; -"APN_Collapsed_Messages" = "Imate %@ novih poruka!"; -"PIN_BUTTON_TEXT" = "Prikvači"; -"UNPIN_BUTTON_TEXT" = "Otkvači"; -"modal_call_missed_tips_title" = "Propušten poziv"; -"modal_call_missed_tips_explanation" = "Propušten poziv od '%@' jer 'Audio i video pozivi' nemaju dopuštenje u Postavkama privatnosti."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ je napravio/la snimku zaslona."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Obriši sve podatke"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Podatke nije izbrisao 1 uslužni čvor. ID uslužnog čvora: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Podatke nije izbrisao %@ uslužni čvor. ID uslužnog čvora: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Fraza za oporavak"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/hu.lproj/Localizable.strings b/Session/Meta/Translations/hu.lproj/Localizable.strings deleted file mode 100644 index f847446d8b..0000000000 --- a/Session/Meta/Translations/hu.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Csatolmány"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Felirat"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Fájltípus"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Méret: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Üzenet méretkorlát elérve"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Küldés"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Csatolmány"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Hiba a melléklet küldésekor"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Nem lehet a képet konvertálni."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Nem sikerült feldogozni a videó fájlt."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Nem lehet a képet konvertálni."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nem sikerült eltávolítani a metaadatokat a képről."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nem lehet átméretezni a képet."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "A csatolmány túl nagy."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "A csatolmány érvénytelen tartalommal rendelkezik."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "A csatolmány fájlformátuma érvénytelen."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "A melléklet üres."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Nem sikerült kiválasztani a dokumentumot."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Kérjük, hozzon létre egy tömörített archívumot erről a fájlról vagy könyvtárról, és próbálja meg azt elküldeni."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nem támogatott fájlformátum"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Hangüzenet"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Letiltás"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ letiltása?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "%@ blokkolásának feloldása?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Feloldás"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "{0} Blokkolva."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Felhasználó Letiltva"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "blokkolása feloldva."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "A letiltott felhasználók nem tudnak majd hívni vagy üzeneteket küldeni."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Kész"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Kiválasztás"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Keresés..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Nincs találat"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 találat"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d a %d találatból"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Felhasználó tiltása"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Némítás"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Keresés a beszélgetésekben"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Mozgatás és méretezés"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Ez néhány percig eltarthat."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Adatbázis optimalizálása"; -/* The present; the current time. */ -"DATE_NOW" = "Most"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Eltűnő üzenetek"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Csoport szerkesztése"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "A beszélgetésben nem szerepel médiafájl."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Újabb média betöltése…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Régebbi média betöltése…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Nem sikerült lekérni a kért GIF-et. Kérjük, ellenőrizze, hogy online van-e."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ismeretlen hiba történt."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nem tud GIF-et választani"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Kérjük, írja be a keresőbe."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Hiba. Nyomjon az Újrapróbálkozás gombra."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nincs találat."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Csoport létrehozva"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ belépett a csoportba. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ kilépett a csoportból. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ el lett távolítva a csoportból. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ el lettek távolítva a csoportból. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "A cím mostantól. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Csoport frissítve."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Kiléptél a csoportból."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Eltávolítottak a csoportból. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Nem oszthatsz meg többet, mint %@ elemet."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nem sikerült betölteni a mellékletet."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Helytelen hangfájl."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Lecsatlalkozás"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Csoport elhagyása"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Az összes médiafájl"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Üzenetek törlése"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Üzenet törlése"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ ezen a dátumon: %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Te"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ebben a hónapban"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "A küldés sikertelen."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Elolvasva"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Küldés…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Elküldve"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Feltöltés…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ neki %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Privát feljegyzés"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Előfordulhat, hogy üzeneteket kapott, miközben a %@ újraindult."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ letiltotta az eltűnő üzeneteket."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Beállítottad, hogy az üzenetek ennyi idő után tűnjenek el: %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nem lehet a képet konvertálni."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nem lehet a képet konvertálni."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "A kamera konfigurálása sikertelen."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Névtelen Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Olvasottnak jelölés"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Válasz"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Hitelesítés az alkalmazás megnyitásához."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Hitelesítés sikertelen"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Média eldobása?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Média eldobása"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "(Alapértelmezett)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Üzenet hangja"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Nincs"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ nap"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ óra"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ perc"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@ m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ másodperc"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ nap"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ óra"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ perc"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ hét"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ hetek"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@hét"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Mégse"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Törlés"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Hangüzenet"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Hangüzenet küldéséhez érintsd meg és tartsd nyomva."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Hangüzenet"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Kikapcsoltad az eltűnő üzeneteket."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Beállítottad, hogy az üzenetek ennyi idő után tűnjenek el: %@"; -// MARK: - Session -"continue_2" = "Folytatás"; -"copy" = "Másolás"; -"invalid_url" = "Érvénytelen URL"; -"next" = "Tovább"; -"share" = "Megosztás"; -"invalid_session_id" = "Érvénytelen Session azonosító"; -"cancel" = "Mégse"; -"your_session_id" = "Az ön Session azonosítója"; -"vc_landing_title_2" = "Az ön Session-ja itt kezdődik..."; -"vc_landing_register_button_title" = "Session azonosító létrehozása"; -"vc_landing_restore_button_title" = "Folytassa a Session azonosítóját"; -"vc_landing_link_button_title" = "Eszköz társítása"; -"view_fake_chat_bubble_1" = "Mi az a Session?"; -"view_fake_chat_bubble_2" = "Ez egy decentralizált, titkosított üzenetküldő alkalmazás"; -"view_fake_chat_bubble_3" = "Tehát nem gyűjti a személyes adataimat vagy a beszélgetés metaadatait? Hogyan működik?"; -"view_fake_chat_bubble_4" = "Fejlett névtelen útválasztási és end-to-end titkosítási technológiák kombinációjának használata."; -"view_fake_chat_bubble_5" = "A barátok nem engedik, hogy a barátok kompromittált hírnököket használjanak. Szívesen."; -"vc_register_title" = "Ismerd meg a Session ID-d"; -"vc_register_explanation" = "Az üles azonosító az az egyedi cím, amelyet az emberek használhatnak, hogy kapcsolatba lépjenek Önnel az Ülés során. Mivel nincs kapcsolat a valódi személyazonosságával, az Ülés azonosító teljesen névtelen, és privát."; -"vc_restore_title" = "Fiók visszaállítása"; -"vc_restore_explanation" = "Írja be azt a helyreállítási kifejezést, amelyet a fiók visszaállításához regisztrálásakor kapott."; -"vc_restore_seed_text_field_hint" = "Írd be a helyreállítási szavakat"; -"vc_link_device_title" = "Eszköz társítása"; -"vc_link_device_scan_qr_code_tab_title" = "QR kód beolvasása"; -"vc_display_name_title_2" = "Válassza ki a megjelenítendő nevet"; -"vc_display_name_explanation" = "Ez lesz az ön neve, amikor használja a Session alkalmazást. Ez lehet a valódi neve, álneve, vagy bármi más, ami önnek tetszik."; -"vc_display_name_text_field_hint" = "Írja be a megjelenítendő nevet"; -"vc_display_name_display_name_missing_error" = "Válasszon megjelenítési nevet"; -"vc_display_name_display_name_too_long_error" = "Válasszon rövidebb megjelenítési nevet"; -"vc_pn_mode_recommended_option_tag" = "Ajánlott"; -"vc_pn_mode_no_option_picked_modal_title" = "Kérjük, válasszon egy lehetőséget"; -"vc_home_empty_state_message" = "Még nincsenek névjegyei"; -"vc_home_empty_state_button_title" = "Munkamenet indítása"; -"vc_seed_title" = "Helyreállítási szavak"; -"vc_seed_title_2" = "Írja be a helyreállítási kifejezést"; -"vc_seed_explanation" = "A helyreállítási kifejezés a Session azonosító főkulcsa - használhatja a Session azonosító visszaállítására, ha elveszíti a hozzáférését eszközéhez. Tárolja helyreállítási mondatát biztonságos helyen, és ne adja át senkinek."; -"vc_seed_reveal_button_title" = "Tartsa lenyomva a felfedéshez"; -"view_seed_reminder_subtitle_1" = "Biztosítsa fiókját a helyreállítási szavak elmentésével"; -"view_seed_reminder_subtitle_2" = "Érintse meg és tartsa lenyomva a szerkesztett szavakat, hogy felfedje a helyreállítási kifejezést, majd tárolja biztonságosan Session-azonosítója biztonsága érdekében."; -"view_seed_reminder_subtitle_3" = "Ügyeljen arra, hogy a helyreállítási szöveget biztonságos helyen tárolja"; -"vc_path_title" = "Elérési útvonal"; -"vc_path_explanation" = "A Session elrejti IP címét azzal, hogy az üzeneteket a Session decentralizált hálózatának több szolgáltatási csomópontján vezeti keresztül. Ezek azok az országok, ahol a kapcsolat jelenleg átmegy:"; -"vc_path_device_row_title" = "Te"; -"vc_path_guard_node_row_title" = "Belépési csomópont"; -"vc_path_service_node_row_title" = "Szolgáltatási csomópont"; -"vc_path_destination_row_title" = "Cél"; -"vc_path_learn_more_button_title" = "Tudj meg többet"; -"vc_create_private_chat_title" = "Új üzenet"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session azonosító megadása"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR kód beolvasása"; -"vc_enter_public_key_explanation" = "Beszélgetés kezdeményezéséhez addj meg egy Session ID-t vagy oszd meg a tiédet másokkal."; -"vc_scan_qr_code_camera_access_explanation" = "Kamera hozzáférésre van szükség a QR kód beolvasásához"; -"vc_create_closed_group_title" = "Csoport létrehozása"; -"vc_create_closed_group_text_field_hint" = "Adja meg a csoport nevét"; -"vc_create_closed_group_empty_state_message" = "Még nincsenek névjegyei"; -"vc_create_closed_group_group_name_missing_error" = "Adja meg a csoport nevét"; -"vc_create_closed_group_group_name_too_long_error" = "Írjon be rövidebb csoportnevet"; -"vc_create_closed_group_too_many_group_members_error" = "Egy zárt csoport nem lehet több 100 tagnál"; -"vc_join_public_chat_title" = "Csatlakozás A Közösséghez"; -"vc_join_public_chat_enter_group_url_tab_title" = "Közösség URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR kód beolvasása"; -"vc_enter_chat_url_text_field_hint" = "Add meg a Közösség URL-jét!"; -"vc_settings_title" = "Beállítások"; -"vc_group_settings_title" = "Csoport Beállítások"; -"vc_settings_display_name_missing_error" = "Kérjük, válassza ki a megjelenítendő nevet"; -"vc_settings_display_name_too_long_error" = "Válasszon rövidebb megjelenítési nevet"; -"vc_settings_privacy_button_title" = "Adatvédelem"; -"vc_settings_notifications_button_title" = "Értesítések"; -"vc_settings_recovery_phrase_button_title" = "Helyreállítási szavak"; -"vc_settings_clear_all_data_button_title" = "Adatok törlése"; -"vc_qr_code_title" = "QR kód"; -"vc_qr_code_view_my_qr_code_tab_title" = "Saját QR kódom"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR kód beolvasása"; -"vc_qr_code_view_scan_qr_code_explanation" = "Olvassa be valaki QR kódját, hogy beszélgetést kezdhessen vele"; -"vc_view_my_qr_code_explanation" = "Ez a QR kódod. Más felhasználók beszkennelhetik, hogy egy munkamenetet indítsanak el veled."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Az új üzenetekről megbízhatóan és azonnal értesítést kap az Apple értesítési szervereinek segítségével."; -"fast_mode" = "Gyorsított mód"; -"slow_mode_explanation" = "A Session alkalmanként, az új üzeneteket a háttérben fogja ellenőrizni."; -"slow_mode" = "Lassított mód"; -"vc_pn_mode_title" = "Üzenet értesítések"; -"vc_link_device_recovery_phrase_tab_title" = "Helyreállítási szavak"; -"vc_link_device_scan_qr_code_explanation" = "A QR-kód megjelenítéséhez nyissa meg a Beállítások → Helyreállítási kifejezés elemet másik eszközén."; -"vc_enter_recovery_phrase_title" = "Helyreállítási szavak"; -"vc_enter_recovery_phrase_explanation" = "A készülék összekapcsolásához adja meg a regisztrációkor megadott helyreállítási kifejezést."; -"vc_enter_public_key_text_field_hint" = "Írja be Session azonosítóját vagy ONS nevét"; -"admin_group_leave_warning" = "Mivel te vagy a csoport létrehozója, mindenki számára törölve lesz. Ezt nem lehet visszacsinálni."; -"vc_join_open_group_suggestions_title" = "Vagy csatlakozz az egyikhez az alábbiakból..."; -"vc_settings_invite_a_friend_button_title" = "Barát meghívása"; -"copied" = "Másolva"; -"vc_conversation_settings_copy_session_id_button_title" = "Session azonosító másolása"; -"vc_conversation_input_prompt" = "Üzenet"; -"vc_conversation_voice_message_cancel_message" = "Megszakításhoz csúsztasd"; -"modal_download_attachment_title" = "%@ megbízható?"; -"modal_download_attachment_explanation" = "Biztosan le szeretné tölteni %@ által küldött tartalmat?"; -"modal_download_button_title" = "Letöltés"; -"modal_open_url_title" = "URL megnyitása?"; -"modal_open_url_explanation" = "Biztosan kilépsz a következőből: %@?"; -"modal_open_url_button_title" = "Megnyitás"; -"modal_copy_url_button_title" = "Link másolása"; -"modal_blocked_title" = "%@ blokkolásának feloldása?"; -"modal_blocked_explanation" = "Biztosan szeretnéd a %@-t blokkolni?"; -"modal_blocked_button_title" = "Letiltás feloldása"; -"modal_link_previews_title" = "Engedélyezi a linkelőnézeteket?"; -"modal_link_previews_explanation" = "A linkelőnézetek engedélyezése megjeleníti az Ön által küldött és kapott linkek előnézetét. Ez hasznos lehet, de a Session így kapcsolatba fog lépni a linkelt webhelyekkel az előnézetek létrehozásához. A link előnézetét bármikor letilthatja a Session beállításaiban."; -"modal_link_previews_button_title" = "Engedélyezés"; -"vc_share_title" = "Megosztás a Session-hoz"; -"vc_share_loading_message" = "Melléklet előkészítése..."; -"vc_share_sending_message" = "Küldés..."; -"vc_share_link_previews_unsecure" = "Az előnézet nem töltődik be a nem biztonságos linkhez"; -"vc_share_link_previews_error" = "Előnézet betöltése nem lehetséges"; -"vc_share_link_previews_disabled_title" = "Link előnézet letiltva"; -"vc_share_link_previews_disabled_explanation" = "A linkelőnézetek engedélyezése megjeleníti az Ön által küldött és kapott linkek előnézetét. Ez hasznos lehet, de a Session így kapcsolatba fog lépni a linkelt webhelyekkel az előnézetek létrehozásához. A link előnézetét bármikor letilthatja a Session beállításaiban."; -"view_open_group_invitation_description" = "Nyilvános csoport meghívó"; -"vc_conversation_settings_invite_button_title" = "Tagok hozzáadása"; -"modal_send_seed_title" = "Figyelmeztetés"; -"modal_send_seed_explanation" = "Ez az Ön helyreállítási kulcsa. Ha elküldi valakinek, akkor a címzettnek teljes hozzáférése lesz az Ön fiókjához."; -"modal_send_seed_send_button_title" = "Küldés"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Értesítés csak említések esetén"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Ha engedélyezve van, csak az Önt említő üzenetekről kap értesítést."; -"view_conversation_title_notify_for_mentions_only" = "Értesítés csak említések esetén"; -"message_deleted" = "Ezt az üzenetet törölték"; -"delete_message_for_me" = "Törlés csak nálam"; -"delete_message_for_everyone" = "Törlés mindenkinél"; -"delete_message_for_me_and_recipient" = "Törlés nekem és neki: %@"; -"context_menu_reply" = "Válasz"; -"context_menu_save" = "Mentés"; -"context_menu_ban_user" = "Felhasználó letiltása"; -"context_menu_ban_and_delete_all" = "Tiltás és minden törlése"; -"context_menu_ban_user_error_alert_message" = "Felhasználó tiltása sikertelen"; -"accessibility_expanding_attachments_button" = "Melléklet csatolása"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokumentum"; -"accessibility_library_button" = "Képgaléria"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Csatolási lehetőségek összecsukása"; -"invalid_recovery_phrase" = "Helyreállító kódmondat felfedése"; -"DISMISS_BUTTON_TEXT" = "Elvetés"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Beállítások"; -"call_outgoing" = "Felhívtad %@"; -"call_incoming" = "%@ hívott téged"; -"call_missed" = "Nem fogadott hívás tőle: %@"; -"APN_Message" = "Új üzeneted érkezett."; -"APN_Collapsed_Messages" = "Új üzeneted érkezett."; -"PIN_BUTTON_TEXT" = "Kitűzés"; -"UNPIN_BUTTON_TEXT" = "Kitűzés eltávolítása"; -"modal_call_missed_tips_title" = "Nem fogadott hívás"; -"modal_call_missed_tips_explanation" = "Nem fogadott hívás '%@' -től, mert előbb engedélyezned kell a 'Hang és videó hívásokat' a Biztonsági beállításokban."; -"media_saved" = "%@ lementett egy médiaelemet."; -"screenshot_taken" = "%@ készített egy képernyőképet."; -"SEARCH_SECTION_CONTACTS" = "Névjegyek és csoportok"; -"SEARCH_SECTION_MESSAGES" = "Üzenetek"; -"MESSAGE_REQUESTS_TITLE" = "Üzenet kérések"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nincsenek függőben lévő üzenetkérelmek"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Mindent töröl"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Törlés"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Biztosan törölni akarod ezt az üzenetet?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Biztosan le szeretnéd tiltani?"; -"MESSAGE_REQUESTS_INFO" = "Üzenet küldésével a felhasználó üzenet kérése automatikusan elfogadásra kerül és a Session ID-d látható lesz számára."; -"MESSAGE_REQUESTS_ACCEPTED" = "Üzenetkérelmét elfogadtuk."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Új üzenete érkezett"; -"TXT_HIDE_TITLE" = "Elrejtés"; -"TXT_DELETE_ACCEPT" = "Elfogadás"; -"TXT_BLOCK_USER_TITLE" = "Felhasználó letiltása"; -"ALERT_ERROR_TITLE" = "Hiba"; -"modal_call_permission_request_title" = "Hívási engedélyek szükségesek"; -"modal_call_permission_request_explanation" = "Engedélyezni tudod a 'Hang és videó hívásokat' a Biztonsági beállításokban."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ááá! Hiba történt"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Próbáld újra később"; -"LOADING_CONVERSATIONS" = "Beszélgetések betöltése..."; -"DATABASE_MIGRATION_FAILED" = "Hiba történt az adatbázis optimalizálása közben\n\nExportálhatod az alkalmazás naplóüzeneteit, hogy megoszthasd hibafelderítésre vagy visszaállíthatod a készüléked\n\nFigyelem: Az eszköz visszaállítása minden 2 hétnél régebbi adat elvesztését eredményezi!"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Hiba történt. Ellenőrizd a helyreállítási kifejezésedet és próbáld újra!"; -"RECOVERY_PHASE_ERROR_LENGTH" = "Úgy tűnik nem adtál meg elég szót. Ellenőrizd a helyreállítási kifejezésedet és próbáld újra!"; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Úgy tűnik nem adtad meg az utolsó szavát a helyreállítási kifejezésednek. Ellenőrizd amit megadtál és próbáld újra!"; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Úgy tűnik van egy érvénytelen szó a helyreállítási kifejezésedben. Ellenőrizd amit megadtál és próbáld újra!"; -"RECOVERY_PHASE_ERROR_FAILED" = "A helyreállítási kifejezésed nem hitelesíthető. Ellenőrizd amit megadtál és próbáld újra!"; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "A hitelesítés nem elérhető."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Hitelesítés sikertelen."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Túl sok sikertelen próbálkozás. Kérlek, próbáld újra később!"; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Be kell állítania jelszót az iOS Beállításokban, hogy használni tudja a Képernyő Zárolása funkciót."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Be kell állítania jelszót az iOS Beállításokban, hogy használni tudja a Képernyő Zárolása funkciót."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Be kell állítania jelszót az iOS Beállításokban, hogy használni tudja a Képernyő Zárolása funkciót."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Küldés"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Újra"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Chat mutatása"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Üzenet küldése sikertelen."; -"INVALID_SESSION_ID_MESSAGE" = "Ellenőrizd a Session azonosítót és próbáld újra!"; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Ellenőrizd a visszaállítási kifejezést és próbáld újra!"; -"MEDIA_TAB_TITLE" = "Média"; -"DOCUMENT_TAB_TITLE" = "Dokumentumok"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "A beszélgetésben nincs dokumentum."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Újabb dokumentumok betöltése…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Régebbi dokumentumok betöltése…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktivitások"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Állatok és Természet"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Zászlók"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Étel és ital"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Tárgyak"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Legutóbbi"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Hangulatjelek és emberek"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Szimbólumok"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Utazás és helyek"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reagált az üzenetre: %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "És további 1 személy reagált az üzenetre: %@."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "És további %@ személy reagált az üzenetre: %@."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Lassíts! Túl sok hangulatjellel reagáltál. Próbáld újra később!"; -/* New conversation screen*/ -"vc_new_conversation_title" = "Új beszélgetés"; -"CREATE_GROUP_BUTTON_TITLE" = "Létrehozás"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Csatlalkozás"; -"PRIVACY_TITLE" = "Adatvédelem"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Képernyővédelem"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Session zárolása"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Touch ID, Face ID vagy jelszó szükséges a Session feloldásához."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Olvasási nyugták"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Olvasási nyugták"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Olvasási nyugták küldése egy-egy csevegésben."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Gépelésindikátorok"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Gépelésindikátorok"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "A gépelési mutatók megtekintése és megosztása az egyszemélyes csevegésekben."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link előnézet"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Hivatkozás előnézet küldése"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Hivatkozás előnézet készítése támogatott URL-ekhez."; -"PRIVACY_SECTION_CALLS" = "Hívások (Beta)"; -"PRIVACY_CALLS_TITLE" = "Hang és videó hívások"; -"PRIVACY_CALLS_DESCRIPTION" = "Hang és videó hívások engedélyezése más felhasználók felé és felől."; -"PRIVACY_CALLS_WARNING_TITLE" = "Hang és videó hívások (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Az Ön IP címe látható lesz a hívott fél, valamint egy Oxen Alapítvány szerver számára miközben a béta hívásokat használja. Biztos benne hogy engedélyezni akarja a Hang és Videó Hívásokat?"; -"NOTIFICATIONS_TITLE" = "Értesítések"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Értesítések módja"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Gyors mód használata"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Az Apple értesítési szerverein keresztül megbízhatóan és azonnal értesítést kapsz az új üzenetekről."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Menj a rendszer értesítési beállításaihoz!"; -"NOTIFICATIONS_SECTION_STYLE" = "Értesítések stílusa"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Hang"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Hang az alkalmazás használata közben"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Értesítés tartalma"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Az értesítésekben megjelenő információ."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Feladó neve és az üzenet"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Csak a feladó neve"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Se név, se üzenet"; -"CONVERSATION_SETTINGS_TITLE" = "Beszélgetések"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Üzenetek csonkítása"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Közösségek csonkolása"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "6 hónapnál idősebb közösségi üzenetek törlése ahol több mint 2000 üzenet van."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Hangüzenetek"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Hangüzenetek automatikus lejátszása"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Egymást követő hangüzenetek autómatikus lejátszása."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blokkolt kontaktok"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nincsenek blokkolt kontaktok."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Feloldás"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Biztosan szeretnéd %@-t blokkolni?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "ez a kontakt"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Biztosan szeretnéd %@-t feloldani?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "és %@-t?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "és %d további?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Letiltás feloldása"; -"APPEARANCE_TITLE" = "Megjelenés"; -"APPEARANCE_THEMES_TITLE" = "Témák"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Elsődleges szín"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Hogy vagy?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Én jól, és te?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Minden remek, köszi hogy kérdezted."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Automatikus éjszakai mód"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Rendszerbeállításokhoz igazodva"; -"HELP_TITLE" = "Súgó"; -"HELP_REPORT_BUG_TITLE" = "Hiba jelentése"; -"HELP_REPORT_BUG_DESCRIPTION" = "Hibanaplók exportálása és feltöltése a Session ügyfélszolgálatán keresztül."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Naplók exportálása"; -"HELP_TRANSLATE_TITLE" = "Session lefordítása"; -"HELP_FEEDBACK_TITLE" = "Szeretnénk visszajelzésedet"; -"HELP_FAQ_TITLE" = "GYIK"; -"HELP_SUPPORT_TITLE" = "Támogatás"; -"modal_clear_all_data_title" = "Az összes adat törlése"; -"modal_clear_all_data_explanation" = "Ezáltal az összes üzenete és kontaktja törölve lesz. Csak erről az eszközről, vagy az internetről is törölni kívánja adatait?"; -"modal_clear_all_data_explanation_2" = "Biztosan törölni akarod a fiókod a hálózatról? Ha folytatod nem tudod majd újra visszaállítani az üzeneteket és névjegyeket."; -"modal_clear_all_data_device_only_button_title" = "Törlés csak az eszközről"; -"modal_clear_all_data_entire_account_button_title" = "Törlés az eszközről és a hálózatról"; -"dialog_clear_all_data_deletion_failed_1" = "Az adatokat a következő szolgáltatási csomópontok nem törölték: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Az adatokat a következő szolgáltatási csomópontok nem törölték: %@."; -"modal_clear_all_data_confirm" = "Törlés"; -"modal_seed_title" = "Helyreállítási szavak"; -"modal_seed_explanation" = "Helyreállítási kódmondat segítségével visszaállíthatod a fiókod vagy új eszközt kapcsolhatsz hozzá."; -"modal_permission_explanation" = "A Session-nek szüksége van a %@ engedélyre a folytatáshoz. Ezt a hozzáférést engedélyezheti az iOS Beállításokban."; -"modal_permission_settings_title" = "Beállítások"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofon"; -"modal_permission_library" = "könyvtár"; -"DISAPPEARING_MESSAGES_OFF" = "Ki"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Ki"; -"COPY_GROUP_URL" = "Csoport URL-jének másolása"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontaktok"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Kérjük, válassz legalább 1 csoporttagot"; -"GROUP_CREATION_PLEASE_WAIT" = "Várj amíg elkészül a csoport..."; -"GROUP_CREATION_ERROR_TITLE" = "A csoport létrehozása nem sikerült"; -"GROUP_CREATION_ERROR_MESSAGE" = "Ellenőrizd az internetkapcsolatot, majd próbáld újra."; -"GROUP_UPDATE_ERROR_TITLE" = "A csoport frissítése nem sikerült"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Nem tudsz kilépni addig amíg hozzáadsz vagy eltávolítasz csoporttagokat."; -"GROUP_ACTION_REMOVE" = "Eltávolítás"; -"GROUP_TITLE_MEMBERS" = "Tagok"; -"GROUP_TITLE_FALLBACK" = "Csoport"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Csak egy közösségen belülről küldhet üzeneteket a Blinded azonosítóknak"; -"DM_ERROR_INVALID" = "Kérjük, ellenőrizze a Session azonosítót vagy az ONS(Felhasználó)-nevet, és próbálkozzon újra"; -"COMMUNITY_ERROR_INVALID_URL" = "Ellenőrizd az URL-t amit megadtál és próbáld újra."; -"COMMUNITY_ERROR_GENERIC" = "Nem sikerült csatlakozni"; -"DISAPPERING_MESSAGES_TITLE" = "Eltűnő üzenetek"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Típus törlése"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Olvasás után eltűnik"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Az üzenetek eltűnnek azok elolvasása után."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Eltűnik küldés után"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Üzenetek törlődnek küldés után."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Időzítő"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Beállít"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Ez a beállítás mindenkire érvényes a beszélgetésben."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Ez a beállítás mindenkire érvényes a beszélgetésben. Csak adminisztrátorok módosíthatjá ezt a beállítást."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ úgy állította be, hogy az üzenetek eltűnjenek %@ miután %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ megváltoztatta az üzeneteket, hogy eltűnjenek %@ miután már %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ kikapcsolta az eltűnő üzeneteket"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/id.lproj/Localizable.strings b/Session/Meta/Translations/id.lproj/Localizable.strings deleted file mode 100644 index a97b409b74..0000000000 --- a/Session/Meta/Translations/id.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Lampiran"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Keterangan"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipe Berkas: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Ukuran: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Batas pesan tercapai."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Kirim"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Lampiran"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Gagal Mengirim Lampiran"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Tidak dapat mengonversi gambar."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Video tidak dapat diproses."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Tidak dapat mengurai gambar."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Tidak dapat menghapus metadata dari gambar."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Tidak dapat mengubah ukuran gambar."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Lampiran terlalu besar."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Lampiran berisi konten yang tidak valid."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Lampiran memiliki format file yang tidak valid."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Lampiran kosong."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Gagal memilih dokumen."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Mohon buat arsip terkompres dari berkas atau direktori ini dan cobalah untuk mengirim arsip terkompres tersebut."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Berkas tidak didukung."; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Pesan Suara"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokir"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blokir %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Buka blokir %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Buka blokir"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ telah diblokir."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Pengguna diblokir"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Blokir %@ dilepaskan."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Pengguna terblokir tidak bisa menghubungi atau mengirimkan pesan kepada Anda."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Selesai"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Pilih"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Mencari..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Tidak ada yang cocok"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 hasil cocok"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d dari %d cocok"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokir Pengguna Ini"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Senyap"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Penelusuran Percakapan"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Pindahkan dan Ubah Skala"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Ini akan memerlukan beberapa menit."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Mengoptimalkan Database"; -/* The present; the current time. */ -"DATE_NOW" = "Sekarang"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Pesan Menghilang"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Ubah Grup"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Anda tidak memiliki media apapun dalam percakapan ini."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Memuat Media Baru…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Memuat Media Lama…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Gagal untuk menghadirkan GIF yang diinginkan. Mohon verifikasi Anda daring."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Terjadi kegagalan yang tidak diketahui."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Tak Dapat Memilih GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Mohon masukkan pencarian anda."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Gagal. Ketuk untuk Mencoba Ulang."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Tak Ada Hasil."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grup dibuat."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ bergabung dalam grup. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ keluar dari grup. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ telah dikeluarkan dari grup. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ telah dikeluarkan dari grup. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Topik baru saat ini '%@'."; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group dimutakhirkan"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Anda telah keluar dari group"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Anda dikeluarkan dari grup. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Anda tidak dapat membagikan lebih dari %@ item."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Gagal memilih lampiran."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Berkas audio tidak valid."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Tinggalkan"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Meninggalkan Grup."; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Semua Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Hapus %d Pesan"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Hapus Pesan"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ pada %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Anda"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Bulan Ini"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Gagal mengirim"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Baca"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Mengirim…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Terkirim"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Mengunggah..."; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ ke %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Catatan Pribadi"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Anda mungkin telah menerima pesan ketika %@ Anda sedang memulai ulang."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@menonaktifkan pesan tersembunyi"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@mengatur waktu penghilangan pesan menjadi %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Tidak dapat menangkap gambar."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Tidak dapat menangkap gambar."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Gagal mengkonfigurasi kamera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Album tanpa nama"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Tandai telah dibaca"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Balas"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Otentikasi untuk membuka Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autentikasi gagal."; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Buang Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Buang Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (bawaan)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Suara Pesan"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Tidak ada"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@hari"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@h"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@jam"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@j"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@menit"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ detik"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@d"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@hari"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ jam"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ menit"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@minggu"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@minggu"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@mgg"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Batal"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Hapus"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Pesan suara"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Ketuk dan tahan untuk merekam suara pesan"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Pesan suara"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Nonaktif pesan tersembunyi"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Anda mengatur pesan tersembunyi pada %@."; -// MARK: - Session -"continue_2" = "Lanjut"; -"copy" = "Salin"; -"invalid_url" = "URL salah"; -"next" = "Selanjutnya"; -"share" = "Bagikan"; -"invalid_session_id" = "Session salah"; -"cancel" = "Batal"; -"your_session_id" = "Session ID anda"; -"vc_landing_title_2" = "Session anda dimulai di sini"; -"vc_landing_register_button_title" = "Buat Session ID"; -"vc_landing_restore_button_title" = "Lanjutkan Session"; -"vc_landing_link_button_title" = "Tautkan dengan akun"; -"view_fake_chat_bubble_1" = "Apa itu Session?"; -"view_fake_chat_bubble_2" = "Session adalah aplikasi pesan terenkripsi yang terdesentralisasi"; -"view_fake_chat_bubble_3" = "Bagaimana dengan pengumpulan informasi personal atau metadata percakapan? Bagaimana cara kerjanya?"; -"view_fake_chat_bubble_4" = "Menggunakan kombinasi routing yang anonim canggih dan teknologi enkripsi ujung-ke-ujung (end-to-end encryption)"; -"view_fake_chat_bubble_5" = "Rekan yang baik tak membiarkan rekannya menggunakan aplikasi bertukar pesan yang tak aman. Terima kasih kembali."; -"vc_register_title" = "Ucapkan halo pada Session ID anda"; -"vc_register_explanation" = "Session ID adalah alamat unik yang bisa digunakan untuk mengontak anda. Tanpa koneksi dengan identitas asli, Session ID anda didesain bersifat anonim dan rahasia."; -"vc_restore_title" = "Kembalikan akun"; -"vc_restore_explanation" = "Masukkan kata pemulihan yang diberikan saat anda mencoba masuk ke akun"; -"vc_restore_seed_text_field_hint" = "masukan kata pemulihan"; -"vc_link_device_title" = "Tautkan perangkat"; -"vc_link_device_scan_qr_code_tab_title" = "Pindai kode QR"; -"vc_display_name_title_2" = "Pilih nama yang ditampilkan"; -"vc_display_name_explanation" = "Ini akan menjadi nama anda ketika menggunakan Session. Bisa merupakan nama asli, alias, atau apapun yang anda suka"; -"vc_display_name_text_field_hint" = "Masukkan nama"; -"vc_display_name_display_name_missing_error" = "Pilih nama yang ditampilkan"; -"vc_display_name_display_name_too_long_error" = "Nama yang dibuat terlalu panjang"; -"vc_pn_mode_recommended_option_tag" = "Direkomendasikan"; -"vc_pn_mode_no_option_picked_modal_title" = "Pilih salah satu opsi"; -"vc_home_empty_state_message" = "Anda belum memiliki kontak"; -"vc_home_empty_state_button_title" = "Mulai sebuah Session"; -"vc_seed_title" = "Kata pemulihan anda"; -"vc_seed_title_2" = "Inilah kata pemulihan anda"; -"vc_seed_explanation" = "Kata pemulihan adalah kunci Session ID -- bisa digunakan untuk mengembalikan Session ID ketika anda kehilangan perangkat. Simpan kata pemulihan di tempat yang aman dan jangan berikan kepada siapapun"; -"vc_seed_reveal_button_title" = "Tekan untuk melihat"; -"view_seed_reminder_subtitle_1" = "Amankan akun anda dengan menyimpan kata pemulihan"; -"view_seed_reminder_subtitle_2" = "Ketuk dan tekan kata yang disensor untuk mengetahui kata pemulihan anda, lalu simpan baik-baik untuk mengamnkan Session ID anda"; -"view_seed_reminder_subtitle_3" = "Pastikan untuk menyimpan kata pemulihan di tempat yang aman"; -"vc_path_title" = "Jalur"; -"vc_path_explanation" = "Session menyembunyikan IP dengan memantulkan pesan melalui berbagai simpul layanan di jaringan Session yang terdesentralisasi. Ini adalah negara yang menjadi lokasi pesan anda dipantulkan"; -"vc_path_device_row_title" = "Anda"; -"vc_path_guard_node_row_title" = "Simpul masuk"; -"vc_path_service_node_row_title" = "Simpul layanan"; -"vc_path_destination_row_title" = "Tujuan"; -"vc_path_learn_more_button_title" = "Pelajari lebih lanjut"; -"vc_create_private_chat_title" = "Pesan Baru"; -"vc_create_private_chat_enter_session_id_tab_title" = "Masukkan Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Pindai kode QR"; -"vc_enter_public_key_explanation" = "Mulai percakapan baru dengan memasukkan ID Session seseorang atau bagikan ID Session Anda dengan mereka."; -"vc_scan_qr_code_camera_access_explanation" = "Session membutuhkan akses kamera untuk memindai kode QR"; -"vc_create_closed_group_title" = "Buat Grup"; -"vc_create_closed_group_text_field_hint" = "Masukkan nama grup"; -"vc_create_closed_group_empty_state_message" = "anda belum memiliki kontak"; -"vc_create_closed_group_group_name_missing_error" = "Masukkan nama grup"; -"vc_create_closed_group_group_name_too_long_error" = "Masukkan nama grup yang lebih pendek"; -"vc_create_closed_group_too_many_group_members_error" = "Grup tertutup maksimal berisi 100 anggota"; -"vc_join_public_chat_title" = "Gabung dengan Komunitas"; -"vc_join_public_chat_enter_group_url_tab_title" = "Tautan Komunitas"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Pindai kode QR"; -"vc_enter_chat_url_text_field_hint" = "Masukkan Tautan Komunitas"; -"vc_settings_title" = "Pengaturan"; -"vc_group_settings_title" = "Pengaturan grup"; -"vc_settings_display_name_missing_error" = "Pilih sebuah nama"; -"vc_settings_display_name_too_long_error" = "Nama yang dibuat terlalu panjang"; -"vc_settings_privacy_button_title" = "Privasi"; -"vc_settings_notifications_button_title" = "Notifikasi"; -"vc_settings_recovery_phrase_button_title" = "Kata pemulihan"; -"vc_settings_clear_all_data_button_title" = "Hapus data"; -"vc_qr_code_title" = "Kode QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Lihat kode QR saya"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Pindai kode QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Pindai kode QR pengguna lain untuk memulai percakapan"; -"vc_view_my_qr_code_explanation" = "Ini adalah kode QR anda. Pengguna lain bisa memindainya untuk memulai percakapan dengan anda"; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Anda akan menerima pesan baru dengan andal dan cepat menggunakan server notifikasi Apple."; -"fast_mode" = "Mode Cepat"; -"slow_mode_explanation" = "Session sesekali akan memeriksa pesan baru di latar belakang."; -"slow_mode" = "Mode Lambat"; -"vc_pn_mode_title" = "Notifikasi Pesan"; -"vc_link_device_recovery_phrase_tab_title" = "Frasa Pemulihan"; -"vc_link_device_scan_qr_code_explanation" = "Arahkan ke Pengaturan → Frasa Pemulihan di perangkat Anda yang lain untuk menampilkan kode QR Anda."; -"vc_enter_recovery_phrase_title" = "Frasa Pemulihan"; -"vc_enter_recovery_phrase_explanation" = "Untuk menautkan perangkat Anda, masukkan frasa pemulihan yang diberikan kepada Anda saat mendaftar."; -"vc_enter_public_key_text_field_hint" = "Masukkan ID Session atau nama ONS"; -"admin_group_leave_warning" = "Karena Anda adalah pembuat grup ini, grup ini akan dihapus untuk semua orang. Hal ini tidak dapat dibatalkan."; -"vc_join_open_group_suggestions_title" = "Atau gabung salah satu dari ini..."; -"vc_settings_invite_a_friend_button_title" = "Undang Teman"; -"copied" = "Disalin"; -"vc_conversation_settings_copy_session_id_button_title" = "Salin ID Session"; -"vc_conversation_input_prompt" = "Pesan"; -"vc_conversation_voice_message_cancel_message" = "Geser untuk Batal"; -"modal_download_attachment_title" = "Percayai %@?"; -"modal_download_attachment_explanation" = "Apakah Anda yakin ingin mengunduh media yang dikirim oleh %@?"; -"modal_download_button_title" = "Unduh"; -"modal_open_url_title" = "Buka Tautan?"; -"modal_open_url_explanation" = "Apakah Anda yakin ingin membuka %@?"; -"modal_open_url_button_title" = "Buka"; -"modal_copy_url_button_title" = "Salin Tautan"; -"modal_blocked_title" = "Buka blokir %@?"; -"modal_blocked_explanation" = "Apakah Anda yakin ingin membuka blokir %@?"; -"modal_blocked_button_title" = "Buka blokir"; -"modal_link_previews_title" = "Aktifkan Pratinjau Tautan?"; -"modal_link_previews_explanation" = "Mengaktifkan pratinjau tautan akan menampilkan pratinjau untuk URL yang anda kirim dan terima. Ini bisa berguna, tetapi Session perlu menghubungi situs web yang ditautkan untuk menghasilkan pratinjau. Anda selalu dapat menonaktifkan pratinjau tautan di pengaturan Session."; -"modal_link_previews_button_title" = "Aktifkan"; -"vc_share_title" = "Bagikan ke Session"; -"vc_share_loading_message" = "Menyiapkan lampiran..."; -"vc_share_sending_message" = "Mengirim..."; -"vc_share_link_previews_unsecure" = "Pratinjau tidak dimuat untuk tautan yang tidak aman"; -"vc_share_link_previews_error" = "Tidak dapat memuat pratinjau"; -"vc_share_link_previews_disabled_title" = "Pratinjau Tautan Dinonaktifkan"; -"vc_share_link_previews_disabled_explanation" = "Mengaktifkan pratinjau tautan akan menampilkan pratinjau untuk URL yang Anda bagikan. Ini bisa berguna, tetapi Session perlu menghubungi situs web tertaut untuk membuat pratinjau.\n\nAnda dapat mengaktifkan pratinjau tautan di setelan Session."; -"view_open_group_invitation_description" = "Undangan grup terbuka"; -"vc_conversation_settings_invite_button_title" = "Tambah Anggota"; -"modal_send_seed_title" = "Peringatan"; -"modal_send_seed_explanation" = "Ini adalah frasa pemulihan Anda. Jika Anda mengirimkannya ke seseorang, mereka akan memiliki akses penuh ke akun Anda."; -"modal_send_seed_send_button_title" = "Kirim"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Beri Tahu Hanya untuk Sebutan"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Saat diaktifkan, Anda hanya akan diberi tahu untuk pesan yang menyebut Anda."; -"view_conversation_title_notify_for_mentions_only" = "Beri Tahu Hanya untuk Sebutan"; -"message_deleted" = "Pesan ini telah dihapus"; -"delete_message_for_me" = "Hapus untuk saya"; -"delete_message_for_everyone" = "Hapus untuk semua orang"; -"delete_message_for_me_and_recipient" = "Hapus untuk saya dan %@"; -"context_menu_reply" = "Balas"; -"context_menu_save" = "Simpan"; -"context_menu_ban_user" = "Blokir Pengguna"; -"context_menu_ban_and_delete_all" = "Blokir dan Hapus Semua"; -"context_menu_ban_user_error_alert_message" = "Gagal untuk memblokir pengguna"; -"accessibility_expanding_attachments_button" = "Tambah lampiran"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokumen"; -"accessibility_library_button" = "Galeri foto"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Kecilkan opsi lampiran"; -"invalid_recovery_phrase" = "Frasa Pemulihan Tidak Valid"; -"DISMISS_BUTTON_TEXT" = "Buang"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Pengaturan"; -"call_outgoing" = "Anda memanggil %@"; -"call_incoming" = "%@ memanggil Anda"; -"call_missed" = "Panggilan Tak Terjawab dari %@"; -"APN_Message" = "Anda menerima pesan baru."; -"APN_Collapsed_Messages" = "Anda menerima pesan baru %@."; -"PIN_BUTTON_TEXT" = "Semat"; -"UNPIN_BUTTON_TEXT" = "Lepaskan"; -"modal_call_missed_tips_title" = "Panggilan tak terjawab"; -"modal_call_missed_tips_explanation" = "Panggilan tidak terjawab dari '%@' karena Anda perlu mengaktifkan izin 'Panggilan suara dan video' di Pengaturan Privasi."; -"media_saved" = "Media disimpan oleh %@."; -"screenshot_taken" = "%@ mengambil tangkapan layar."; -"SEARCH_SECTION_CONTACTS" = "Kontak & Grup"; -"SEARCH_SECTION_MESSAGES" = "Pesan"; -"MESSAGE_REQUESTS_TITLE" = "Permintaan Pesan"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Tidak ada permintaan pesan tertunda"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Hapus Semua"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Hapus"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Apakah Anda yakin ingin menolak permintaan pesan ini?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Apakah Anda yakin ingin memblokir kontak ini?"; -"MESSAGE_REQUESTS_INFO" = "Mengirim pesan ke pengguna ini akan secara otomatis menerima permintaan pesan mereka dan mengungkapkan ID Session Anda."; -"MESSAGE_REQUESTS_ACCEPTED" = "Permintaan pesan Anda telah diterima."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Anda mendapatkan permintaan pesan baru"; -"TXT_HIDE_TITLE" = "Sembunyikan"; -"TXT_DELETE_ACCEPT" = "Terima"; -"TXT_BLOCK_USER_TITLE" = "Blokir Pengguna"; -"ALERT_ERROR_TITLE" = "Kesalahan"; -"modal_call_permission_request_title" = "Izin Panggilan Diperlukan"; -"modal_call_permission_request_explanation" = "Anda dapat mengaktifkan izin 'Panggilan suara dan video' di Pengaturan Privasi."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ups, terjadi kesalahan"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Silakan coba lagi nanti"; -"LOADING_CONVERSATIONS" = "Memuat percakapan..."; -"DATABASE_MIGRATION_FAILED" = "Terjadi kesalahan saat mengoptimalkan database\n\nAnda dapat mengekspor log aplikasi Anda agar dapat dibagikan untuk pemecahan masalah atau Anda dapat memulihkan perangkat Anda\n\nPeringatan: Memulihkan perangkat Anda akan mengakibatkan hilangnya data apa pun yang lebih lama dari dua minggu"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Ada yang salah. Silakan periksa frase pemulihan Anda dan coba lagi."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Sepertinya Anda tidak memasukkan cukup kata. Silakan periksa frase pemulihan Anda dan coba lagi."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Sepertinya Anda melewatkan kata terakhir dari frasa pemulihan Anda. Harap periksa apa yang Anda masukkan dan coba lagi."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Tampaknya ada kata yang tidak valid dalam frasa pemulihan Anda. Harap periksa apa yang Anda masukkan dan coba lagi."; -"RECOVERY_PHASE_ERROR_FAILED" = "Frasa pemulihan Anda tidak dapat diverifikasi. Harap periksa apa yang Anda masukkan dan coba lagi."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Autentikasi tidak dapat diakses."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Autentikasi gagal."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Terlalu banyak upaya autentikasi yang gagal. Silakan coba lagi nanti."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Anda harus mengaktifkan kode sandi di Pengaturan iOS untuk menggunakan Kunci Layar."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Anda harus mengaktifkan kode sandi di Pengaturan iOS untuk menggunakan Kunci Layar."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Anda harus mengaktifkan kode sandi di Pengaturan iOS untuk menggunakan Kunci Layar."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Kirim"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Coba lagi"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Tampilkan Obrolan"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Pesan Anda gagal terkirim."; -"INVALID_SESSION_ID_MESSAGE" = "Periksa ID Session dan coba lagi."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Silakan periksa Frasa Pemulihan dan coba lagi."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Dokumen"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Anda tidak memiliki media apapun dalam percakapan ini."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Memuat Dokumen Baru…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Memuat Dokumen Lama…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktivitas"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Hewan & Alam"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Bendera"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Makanan & Minuman"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objek"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Baru Digunakan"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smiley & Orang"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Simbol"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Perjalanan & Tempat"; -"EMOJI_REACTS_NOTIFICATION" = "%@ bereaksi ke pesan %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Dan 1 lainnya telah bereaksi %@ ke pesan ini."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Dan %@ lainnya telah bereaksi %@ ke pesan ini."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Pelan - pelan! Anda telah mengirim terlalu banyak reaksi emoji. Coba lagi nanti."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Percakapan Baru"; -"CREATE_GROUP_BUTTON_TITLE" = "Buat"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Gabung"; -"PRIVACY_TITLE" = "Privasi"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Keamanan Layar"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Kunci Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Membutuhkan Touch ID, Face ID, atau kode sandi Anda untuk membuka Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Laporan Terbaca"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Laporan Terbaca"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Kirim tanda baca dalam obrolan pribadi."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indikator Mengetik"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indikator Mengetik"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Lihat dan bagikan indikator mengetik dalam percakapan pribadi."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Pratinjau Tautan"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Kirim Pratinjau Tautan"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Buat pratinjau tautan untuk URL yang didukung."; -"PRIVACY_SECTION_CALLS" = "Panggilan (Beta)"; -"PRIVACY_CALLS_TITLE" = "Panggilan Suara dan Video"; -"PRIVACY_CALLS_DESCRIPTION" = "Aktifkan panggilan suara dan video ke atau dari pengguna lain."; -"PRIVACY_CALLS_WARNING_TITLE" = "Panggilan Suara dan Video (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Alamat IP Anda dapat dilihat oleh mitra panggilan Anda dan server Oxen Foundation saat menggunakan panggilan versi beta. Apakah Anda yakin ingin mengaktifkan Panggilan Suara dan Video?"; -"NOTIFICATIONS_TITLE" = "Notifikasi"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Model Notifikasi"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Gunakan Mode Cepat"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Anda akan menerima pesan baru dengan andal dan cepat menggunakan server notifikasi Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Buka pengaturan notifikasi perangkat"; -"NOTIFICATIONS_SECTION_STYLE" = "Gaya Notifikasi"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Suara"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Berbunyi saat Aplikasi Dibuka"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Isi Notifikasi"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informasi yang ditampilkan dalam notifikasi."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nama dan Isi"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Nama Saja"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Tanpa Nama atau Isi"; -"CONVERSATION_SETTINGS_TITLE" = "Percakapan"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Pemangkasan Pesan"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Pangkas Komunitas"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Hapus pesan yang lebih lama dari 6 bulan dalam komunitas yang memiliki lebih dari 2.000 pesan."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Pesan Suara"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Putar Otomatis Pesan Suara"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Putar otomatis pesan suara secara berurutan."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Kontak Diblokir"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Anda tidak memiliki kontak yang diblokir."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Buka blokir"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Apakah Anda yakin ingin membuka blokir %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "kontak ini"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Apakah Anda yakin ingin membuka blokir %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "dan %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "dan %d lainnya?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Buka blokir"; -"APPEARANCE_TITLE" = "Tampilan"; -"APPEARANCE_THEMES_TITLE" = "Tema"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Warna utama"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Apa kabarmu?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Kabar saya baik, kamu bagaimana?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Saya baik-baik saja, terima kasih."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Mode Malam otomatis"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Sesuaikan dengan pengaturan sistem"; -"HELP_TITLE" = "Bantuan"; -"HELP_REPORT_BUG_TITLE" = "Laporkan Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Ekspor log Anda, lalu unggah berkas melalui Layanan Bantuan Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Ekspor Log"; -"HELP_TRANSLATE_TITLE" = "Terjemahkan Session"; -"HELP_FEEDBACK_TITLE" = "Kami ingin masukan Anda"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Dukungan"; -"modal_clear_all_data_title" = "Hapus semua data"; -"modal_clear_all_data_explanation" = "Tindakan ini akan menghapus pesan dan kontak Anda secara permanen. Apakah Anda ingin menghapus hanya di perangkat ini saja, atau juga menghapus data Anda dari jaringan?"; -"modal_clear_all_data_explanation_2" = "Apakah Anda yakin ingin menghapus data Anda dari jaringan? Jika Anda melanjutkan, Anda tidak akan dapat memulihkan pesan atau kontak Anda."; -"modal_clear_all_data_device_only_button_title" = "Hapus di Perangkat Saja"; -"modal_clear_all_data_entire_account_button_title" = "Hapus di Perangkat dan Jaringan"; -"dialog_clear_all_data_deletion_failed_1" = "Data tidak dihapus oleh 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data tidak dihapus oleh %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Hapus"; -"modal_seed_title" = "Kata pemulihan anda"; -"modal_seed_explanation" = "Anda dapat menggunakan frasa pemulihan untuk memulihkan akun atau menautkan perangkat."; -"modal_permission_explanation" = "Session membutuhkan %@ akses untuk melanjutkan. Anda dapat mengaktifkan akses di pengaturan iOS."; -"modal_permission_settings_title" = "Pengaturan"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofon"; -"modal_permission_library" = "galeri"; -"DISAPPEARING_MESSAGES_OFF" = "Mati"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Mati"; -"COPY_GROUP_URL" = "Salin URL Grup"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontak"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Pilih setidaknya 1 anggota grup"; -"GROUP_CREATION_PLEASE_WAIT" = "Harap tunggu sementara grup dibuat..."; -"GROUP_CREATION_ERROR_TITLE" = "Gagal Membuat Grup"; -"GROUP_CREATION_ERROR_MESSAGE" = "Silakan periksa koneksi internet Anda dan coba lagi."; -"GROUP_UPDATE_ERROR_TITLE" = "Gagal Memperbarui Grup"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Tidak dapat keluar saat menambahkan atau menghapus anggota lain."; -"GROUP_ACTION_REMOVE" = "Hapus"; -"GROUP_TITLE_MEMBERS" = "Anggota"; -"GROUP_TITLE_FALLBACK" = "Grup"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Anda hanya dapat mengirim pesan ke Blinded ID dari dalam Komunitas"; -"DM_ERROR_INVALID" = "Harap periksa ID Session atau nama ONS dan coba lagi"; -"COMMUNITY_ERROR_INVALID_URL" = "Harap periksa URL yang Anda masukkan dan coba lagi."; -"COMMUNITY_ERROR_GENERIC" = "Tidak Dapat Bergabung"; -"DISAPPERING_MESSAGES_TITLE" = "Pesan Menghilang"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Hapus Jenis"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Menghilang Setelah Dibaca"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Pesan dihapus setelah dibaca."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Menghilang Setelah Dikirim"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Pesan dihapus setelah dikirim."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Atur"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Setelan ini berlaku untuk semua orang dalam percakapan ini."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Setelan ini berlaku untuk semua orang dalam percakapan ini. Hanya admin grup yang dapat mengubah pengaturan ini."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ telah memasang pesan untuk menghilang %@ setelah %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ telah mengubah pesan untuk menghilang %@ setelah %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ telah menonaktifkan pesan menghilang"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/it.lproj/Localizable.strings b/Session/Meta/Translations/it.lproj/Localizable.strings deleted file mode 100644 index f9e614c549..0000000000 --- a/Session/Meta/Translations/it.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Allegato"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Didascalia"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipo file: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Dimensione: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Limite caratteri raggiunto"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Invia"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Allegato"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Errore nell'invio dell'allegato"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Impossibile convertire l'immagine."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Impossibile elaborare il video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Impossibile elaborare l'immagine."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Impossibile rimuovere i metadati dall'immagine."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Impossibile ridimensionare l'immagine."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Allegato troppo pesante."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "L'allegato contiene contenuti non validi."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Il formato dell'allegato non è valido."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "L'allegato è vuoto."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Selezione del documento non riuscita."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Crea un archivio compresso di questo file o cartella e prova a inviare quello."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "File non supportato"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Messaggio vocale"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blocca"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloccare %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Sbloccare %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Sblocca"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ è stato bloccato."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Utente bloccato"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ è stato sbloccato."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Gli utenti bloccati non potranno chiamarti o inviarti messaggi."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Fatto"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Seleziona"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Cerco..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Nessun risultato"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 risultato"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d di %d risultati"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blocca questo utente "; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Silenzia"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Cerca nella conversazione"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Sposta e ridimensiona"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Potrebbe richiedere alcuni minuti."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Ottimizzazione database"; -/* The present; the current time. */ -"DATE_NOW" = "Ora"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Messaggi effimeri"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Modifica gruppo"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Non hai media in questa conversazione."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Carico media più recenti..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Carico media meno recenti…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Errore nel recupero della GIF richiesta. Verifica che la connessione sia attiva."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Si è verificato un errore sconosciuto."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Impossibile selezionare GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Inserisci la tua ricerca."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Errore. Tocca per riprovare."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nessun risultato."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Gruppo creato."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ fa ora parte del gruppo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ ha abbandonato il gruppo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ è stato rimosso dal gruppo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ sono stati rimossi dal gruppo. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Il titolo ora è '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Gruppo aggiornato."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Hai abbandonato il gruppo."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Sei stato rimosso dal gruppo. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Non puoi condividere più di %@ elementi."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Selezione allegato non riuscita."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "File audio non valido."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Abbandona"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Abbandona gruppo"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Tutti i media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Elimina %d messaggi"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Elimina messaggio"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ il %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Tu"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Questo mese"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Invio non riuscito."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Letto"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Invio in corso..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Inviato"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Carico…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ su %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note personali"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Potresti aver ricevuto messaggi mentre il tuo %@ si riavviava."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ha disabilitato i messaggi effimeri."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ha impostato il timer dei messaggi effimeri su %@."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Impossibile scattare foto."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Impossibile scattare foto."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Configurazione fotocamera non riuscita."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Album senza nome"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Segna come letto"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Rispondi"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Identificati per aprire Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autenticazione fallita"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Scartare media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Scarta media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (predefinito)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Suono messaggio"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Nessuno"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ giorni"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@g"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ ore"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minuti"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ secondi"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ giorno"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ ora"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuto"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ settimana"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ settimane"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@sett"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Annulla"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Elimina"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Messaggio vocale"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tieni premuto per registrare un messaggio vocale."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Messaggio vocale"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Hai disabilitato i messaggi effimeri."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Hai impostato il timer dei messaggi effimeri su %@."; -// MARK: - Session -"continue_2" = "Continua"; -"copy" = "Copia"; -"invalid_url" = "URL non valido"; -"next" = "Avanti"; -"share" = "Condividi"; -"invalid_session_id" = "Session ID non valido"; -"cancel" = "Annulla"; -"your_session_id" = "Il tuo Session ID"; -"vc_landing_title_2" = "La tua sessione inizia qui..."; -"vc_landing_register_button_title" = "Crea Session ID"; -"vc_landing_restore_button_title" = "Continua la tua sessione"; -"vc_landing_link_button_title" = "Collega un dispositivo"; -"view_fake_chat_bubble_1" = "Che cos'è Session?"; -"view_fake_chat_bubble_2" = "È un'app di messaggistica decentralizzata e cifrata"; -"view_fake_chat_bubble_3" = "Quindi non raccoglie le mie informazioni personali o i metadati delle mie conversazioni? Come funziona?"; -"view_fake_chat_bubble_4" = "Utilizzando una combinazione di instradamento anonimo avanzato e tecnologie di cifratura end-to-end."; -"view_fake_chat_bubble_5" = "Gli amici veri non lasciano che i propri amici utilizzino app di messaggistica compromesse. Non c'è di che."; -"vc_register_title" = "Ecco il tuo Session ID"; -"vc_register_explanation" = "Il tuo Session ID è l'indirizzo univoco che le persone possono utilizzare per contattarti su Session. Senza alcun legame con la tua vera identità, il Session ID è progettato per essere totalmente anonimo e privato."; -"vc_restore_title" = "Ripristina il tuo account"; -"vc_restore_explanation" = "Inserisci la frase di recupero che ti è stata data quando ti sei registrato per ripristinare il tuo account."; -"vc_restore_seed_text_field_hint" = "Inserisci la tua frase di recupero"; -"vc_link_device_title" = "Collega un dispositivo"; -"vc_link_device_scan_qr_code_tab_title" = "Scansiona il codice QR"; -"vc_display_name_title_2" = "Scegli il tuo nome"; -"vc_display_name_explanation" = "Questo sarà il tuo nome quando usi Session. Può essere il tuo vero nome, uno pseudonimo o quello che ti pare."; -"vc_display_name_text_field_hint" = "Inserisci un nome"; -"vc_display_name_display_name_missing_error" = "Scegli un nome"; -"vc_display_name_display_name_too_long_error" = "Inserisci un nome più breve"; -"vc_pn_mode_recommended_option_tag" = "Consigliato"; -"vc_pn_mode_no_option_picked_modal_title" = "Scegli un'opzione"; -"vc_home_empty_state_message" = "Non hai ancora nessun contatto"; -"vc_home_empty_state_button_title" = "Inizia una sessione"; -"vc_seed_title" = "La tua frase di recupero"; -"vc_seed_title_2" = "Ecco la tua frase di recupero"; -"vc_seed_explanation" = "La tua frase di recupero è la chiave principale per il tuo Session ID: puoi usarla per ripristinare il Session ID se perdi l'accesso al tuo dispositivo. Conserva la frase di recupero in un luogo sicuro e non condividerla con nessuno."; -"vc_seed_reveal_button_title" = "Tieni premuto per rivelare"; -"view_seed_reminder_subtitle_1" = "Proteggi il tuo account salvando la frase di recupero"; -"view_seed_reminder_subtitle_2" = "Tocca e tieni premute le parole redatte per rivelare la tua frase di recupero, poi salvala in un posto sicuro per proteggere il tuo Session ID."; -"view_seed_reminder_subtitle_3" = "Assicurati di salvare la tua frase di recupero in un luogo sicuro"; -"vc_path_title" = "Percorso"; -"vc_path_explanation" = "Session nasconde il tuo IP facendo rimbalzare i messaggi attraverso diversi nodi di servizio nella sua rete decentralizzata. Questi sono i paesi attraverso cui la tua connessione sta passando al momento:"; -"vc_path_device_row_title" = "Tu"; -"vc_path_guard_node_row_title" = "Nodo di entrata"; -"vc_path_service_node_row_title" = "Nodo di servizio"; -"vc_path_destination_row_title" = "Destinazione"; -"vc_path_learn_more_button_title" = "Per saperne di più"; -"vc_create_private_chat_title" = "Nuovo messaggio"; -"vc_create_private_chat_enter_session_id_tab_title" = "Inserisci il Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scansiona il codice QR"; -"vc_enter_public_key_explanation" = "Inizia una nuova conversazione inserendo il Session ID di qualcuno o condividendo con loro il tuo Session ID."; -"vc_scan_qr_code_camera_access_explanation" = "La Sessione ha bisogno dell'accesso alla fotocamera per scansionare i codici QR"; -"vc_create_closed_group_title" = "Crea gruppo"; -"vc_create_closed_group_text_field_hint" = "Inserisci un nome per il gruppo"; -"vc_create_closed_group_empty_state_message" = "Non hai ancora nessun contatto"; -"vc_create_closed_group_group_name_missing_error" = "Inserisci un nome per il gruppo"; -"vc_create_closed_group_group_name_too_long_error" = "Inserisci un nome gruppo più breve"; -"vc_create_closed_group_too_many_group_members_error" = "Un gruppo chiuso non può avere più di 100 membri"; -"vc_join_public_chat_title" = "Unisciti alla comunità"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL comunità"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scansiona il codice QR"; -"vc_enter_chat_url_text_field_hint" = "Inserisci l'URL della comunità"; -"vc_settings_title" = "Impostazioni"; -"vc_group_settings_title" = "Impostazioni gruppo"; -"vc_settings_display_name_missing_error" = "Scegli un nome visualizzare"; -"vc_settings_display_name_too_long_error" = "Scegli un nome più breve"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifiche"; -"vc_settings_recovery_phrase_button_title" = "Frase di recupero"; -"vc_settings_clear_all_data_button_title" = "Elimina dati"; -"vc_qr_code_title" = "Codice QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Visualizza il mio codice QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scansiona il codice QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scansiona il codice QR di un altro utente per avviare una conversazione"; -"vc_view_my_qr_code_explanation" = "Questo è il tuo codice QR. Gli altri utenti possono scansionarlo per iniziare una sessione con te."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Riceverai notifiche di nuovi messaggi in modo affidabile e immediato utilizzando i server di notifica di Apple."; -"fast_mode" = "Modalità veloce"; -"slow_mode_explanation" = "Session controllerà di tanto in tanto la presenza di nuovi messaggi in background."; -"slow_mode" = "Modalità lenta"; -"vc_pn_mode_title" = "Notifiche messaggi"; -"vc_link_device_recovery_phrase_tab_title" = "Frase di recupero"; -"vc_link_device_scan_qr_code_explanation" = "Vai su Impostazioni → Frase di recupero sul tuo altro dispositivo per mostrare il tuo codice QR."; -"vc_enter_recovery_phrase_title" = "Frase di recupero"; -"vc_enter_recovery_phrase_explanation" = "Per collegare il tuo dispositivo, inserisci la frase di recupero che ti è stata data quando ti sei registrato."; -"vc_enter_public_key_text_field_hint" = "Inserisci Session ID o nome ONS"; -"admin_group_leave_warning" = "Perché sei il creatore di questo gruppo sarà eliminato per tutti. Questo non può essere annullato."; -"vc_join_open_group_suggestions_title" = "Oppure unisciti a uno di questi..."; -"vc_settings_invite_a_friend_button_title" = "Invita un Amico"; -"copied" = "Copiato"; -"vc_conversation_settings_copy_session_id_button_title" = "Copia Session ID"; -"vc_conversation_input_prompt" = "Messaggio"; -"vc_conversation_voice_message_cancel_message" = "Scorri per annullare"; -"modal_download_attachment_title" = "Ti fidi di %@?"; -"modal_download_attachment_explanation" = "Vuoi scaricare i media inviati da %@?"; -"modal_download_button_title" = "Scarica"; -"modal_open_url_title" = "Aprire URL?"; -"modal_open_url_explanation" = "Vuoi aprire %@?"; -"modal_open_url_button_title" = "Apri"; -"modal_copy_url_button_title" = "Copia link"; -"modal_blocked_title" = "Sbloccare %@?"; -"modal_blocked_explanation" = "Vuoi sbloccare %@?"; -"modal_blocked_button_title" = "Sblocca"; -"modal_link_previews_title" = "Abilitare anteprime dei link?"; -"modal_link_previews_explanation" = "Abilitare le anteprime dei link farà mostrare delle anteprime per gli URL che invii e ricevi. Questo può essere utile, ma Session dovrà contattare i siti web collegati per generare le anteprime. Puoi sempre disabilitare le anteprime dei link nelle impostazioni di Session."; -"modal_link_previews_button_title" = "Abilita"; -"vc_share_title" = "Condividi con Session"; -"vc_share_loading_message" = "Preparo allegati..."; -"vc_share_sending_message" = "Invio..."; -"vc_share_link_previews_unsecure" = "Anteprima non caricata: il link non è sicuro"; -"vc_share_link_previews_error" = "Impossibile caricare l'anteprima"; -"vc_share_link_previews_disabled_title" = "Anteprime dei link disabilitate"; -"vc_share_link_previews_disabled_explanation" = "Abilitare le anteprime dei link farà mostrare delle anteprime per gli URL che invii e ricevi. Questo può essere utile, ma Session dovrà contattare i siti web collegati per generare le anteprime.\n\nPuoi abilitare le anteprime dei link nelle impostazioni di Session."; -"view_open_group_invitation_description" = "Apri invito di gruppo"; -"vc_conversation_settings_invite_button_title" = "Aggiungi membri"; -"modal_send_seed_title" = "Attenzione"; -"modal_send_seed_explanation" = "Questa è la tua frase di recupero. Se la invii a qualcuno, quella persona avrà accesso totale al tuo account."; -"modal_send_seed_send_button_title" = "Invia"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notifica solo per le menzioni"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Se abilitato, verrai notificato solo per i messaggi che ti menzionano."; -"view_conversation_title_notify_for_mentions_only" = "Notificando solo per le menzioni"; -"message_deleted" = "Questo messaggio è stato eliminato"; -"delete_message_for_me" = "Elimina solo per me"; -"delete_message_for_everyone" = "Elimina per tutti"; -"delete_message_for_me_and_recipient" = "Elimina per me e %@"; -"context_menu_reply" = "Rispondi"; -"context_menu_save" = "Salva"; -"context_menu_ban_user" = "Bandisci utente"; -"context_menu_ban_and_delete_all" = "Bandisci ed elimina tutto"; -"context_menu_ban_user_error_alert_message" = "Impossibile bandire l'utente"; -"accessibility_expanding_attachments_button" = "Aggiungi allegati"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Documento"; -"accessibility_library_button" = "Libreria foto"; -"accessibility_camera_button" = "Fotocamera"; -"accessibility_main_button_collapse" = "Comprimi opzioni allegato"; -"invalid_recovery_phrase" = "Frase di recupero non valida"; -"DISMISS_BUTTON_TEXT" = "Chiudi"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Impostazioni"; -"call_outgoing" = "Hai chiamato %@"; -"call_incoming" = "%@ ti ha chiamato"; -"call_missed" = "Chiamata persa da %@"; -"APN_Message" = "Hai ricevuto un nuovo messaggio"; -"APN_Collapsed_Messages" = "Hai %@ nuovi messaggi."; -"PIN_BUTTON_TEXT" = "Fissa"; -"UNPIN_BUTTON_TEXT" = "Togli"; -"modal_call_missed_tips_title" = "Chiamata persa"; -"modal_call_missed_tips_explanation" = "Chiamata persa da '%@' perché era necessario abilitare l'autorizzazione \"Chiamate vocali e video\" nelle impostazioni di privacy."; -"media_saved" = "Media salvato da %@."; -"screenshot_taken" = "%@ ha acquisito una schermata."; -"SEARCH_SECTION_CONTACTS" = "Contatti e gruppi"; -"SEARCH_SECTION_MESSAGES" = "Messaggi"; -"MESSAGE_REQUESTS_TITLE" = "Richieste di messaggi"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nessuna richiesta in sospeso"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Cancella tutto"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Confermi di voler eliminare tutte le richieste e gli inviti ai gruppi?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Cancella"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Vuoi eliminare questa richiesta?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Vuoi bloccare questo contatto?"; -"MESSAGE_REQUESTS_INFO" = "Se mandi un messaggio a questo utente, accetterai automaticamente la sua richiesta e rivelerai il tuo Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "La tua richiesta di messaggio è stata accettata."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Hai una nuova richiesta di messaggio"; -"TXT_HIDE_TITLE" = "Nascondi"; -"TXT_DELETE_ACCEPT" = "Accetta"; -"TXT_BLOCK_USER_TITLE" = "Blocca utente"; -"ALERT_ERROR_TITLE" = "Errore"; -"modal_call_permission_request_title" = "Permessi di chiamata necessari"; -"modal_call_permission_request_explanation" = "Puoi concedere l'autorizzazione alle \"Chiamate vocali e video\" nelle impostazioni di privacy."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ops, si è verificato un errore"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Riprova più tardi"; -"LOADING_CONVERSATIONS" = "Carico conversazioni..."; -"DATABASE_MIGRATION_FAILED" = "Si è verificato un errore durante l'ottimizzazione del database\n\nPuoi esportare il resoconto per aiutare a risolvere l'errore o puoi ripristinare il tuo dispositivo\n\nAttenzione: ripristinare il tuo dispositivo comporterà la perdita di tutti i dati più vecchi di due settimane"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Qualcosa è andato storto. Controlla la tua frase di recupero e riprova."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Sembra che tu non abbia inserito abbastanza parole. Controlla la tua frase di recupero e riprova."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Sembra che manchi l'ultima parola della tua frase di recupero. Controlla cosa hai inserito e riprova."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Sembra ci sia una parola non valida nella tua frase di recupero. Controlla cosa hai inserito e riprova."; -"RECOVERY_PHASE_ERROR_FAILED" = "Non è stato possibile verificare la tua frase di recupero. Controlla cosa hai inserito e riprova."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Impossibile accedere all'autenticazione."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Autenticazione fallita."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Troppi tentativi di autenticazione falliti. Riprova più tardi."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Devi abilitare il codice nelle impostazioni di iOS per poter usare il blocco schermo."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Devi abilitare il codice nelle impostazioni di iOS per poter usare il blocco schermo."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Devi abilitare il codice nelle impostazioni di iOS per poter usare il blocco schermo."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Invia"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Riprova"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Mostra chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Invio del tuo messaggio non riuscito."; -"INVALID_SESSION_ID_MESSAGE" = "Controlla il Session ID e riprova."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Controlla la frase di recupero e riprova."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documenti"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Non hai alcun documento in questa conversazione."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Carico il documento più recente…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Carico il documento meno recente…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Attività"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animali e natura"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Bandiere"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Cibi e bevande"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Oggetti"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Usate di recente"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Faccine e persone"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Simboli"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Viaggi e luoghi"; -"EMOJI_REACTS_NOTIFICATION" = "%@ ha reagito al messaggio con %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "E 1 altro ha reagito con %@ a questo messaggio."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "E %@ altri hanno reagito con %@ a questo messaggio."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Rallenta! Hai inviato troppe reazioni. Riprova fra poco."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nuova conversazione"; -"CREATE_GROUP_BUTTON_TITLE" = "Crea"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Unisciti"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Sicurezza dello schermo"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Blocca Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Richiedi Touch ID, Face ID o il tuo codice di accesso per sbloccare Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Conferme di lettura"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Conferme di lettura"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Invia la conferma di lettura nelle chat uno a uno."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicatori di scrittura"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicatori di scrittura"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Visualizza e condividi gli indicatori di digitazione nelle conversazioni uno a uno."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Anteprime dei link"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Invia le anteprime dei link"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Genera le anteprime dei link per gli URL supportati."; -"PRIVACY_SECTION_CALLS" = "Chiamate (beta)"; -"PRIVACY_CALLS_TITLE" = "Chiamate vocali e video"; -"PRIVACY_CALLS_DESCRIPTION" = "Abilita chiamate vocali e video da e verso gli altri utenti."; -"PRIVACY_CALLS_WARNING_TITLE" = "Chiamate vocali e video (beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Il tuo indirizzo IP è visibile al tuo interlocutore e a un server della Oxen Foundation nel corso delle chiamate beta. Vuoi abilitare le chiamate vocali e video?"; -"NOTIFICATIONS_TITLE" = "Notifiche"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Strategia di notifica"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Usa la modalità veloce"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Riceverai le notifiche dei nuovi messaggi in modo affidabile e immediato utilizzando i server di notifica di Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Vai alle impostazioni di notifica del dispositivo"; -"NOTIFICATIONS_SECTION_STYLE" = "Stile notifiche"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Suono"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Suono quando l'app è aperta"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Contenuto notifiche"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Le informazioni mostrate nelle notifiche."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nome e contenuto"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Solo il nome"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Nessun nome o contenuto"; -"CONVERSATION_SETTINGS_TITLE" = "Conversazioni"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Sfoltitura dei messaggi"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Sfoltisci comunità"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Elimina i messaggi più vecchi di 6 mesi nelle comunità che hanno più di 2.000 messaggi."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Messaggi vocali"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Riproduci automaticamente i messaggi vocali"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Riproduci automaticamente i messaggi vocali consecutivi."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Contatti bloccati"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Non hai contatti bloccati."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Sblocca"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Vuoi sbloccare %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "questo contatto"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Vuoi sbloccare %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "e %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "e %d altri?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Sblocca"; -"APPEARANCE_TITLE" = "Aspetto"; -"APPEARANCE_THEMES_TITLE" = "Temi"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Colore primario"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Come stai?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Sto bene, grazie. Tu?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Sto benissimo, grazie."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Modalità notte automatica"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Utilizza le impostazioni di sistema"; -"HELP_TITLE" = "Aiuto"; -"HELP_REPORT_BUG_TITLE" = "Segnala un errore"; -"HELP_REPORT_BUG_DESCRIPTION" = "Esporta i tuoi resoconti, poi carica il file attraverso il Supporto di Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Esporta i resoconti"; -"HELP_TRANSLATE_TITLE" = "Traduci Session"; -"HELP_FEEDBACK_TITLE" = "Dicci la tua opinione"; -"HELP_FAQ_TITLE" = "Domande frequenti"; -"HELP_SUPPORT_TITLE" = "Assistenza"; -"modal_clear_all_data_title" = "Elimina tutti i dati"; -"modal_clear_all_data_explanation" = "Questo eliminerà definitivamente i tuoi messaggi e contatti. Vorresti cancellare solo questo dispositivo o eliminare anche i tuoi dati dalla rete?"; -"modal_clear_all_data_explanation_2" = "Sei sicuro di voler eliminare i tuoi dati dalla rete? Se continui, non potrai più recuperare i tuoi messaggi o i contatti."; -"modal_clear_all_data_device_only_button_title" = "Cancella solo il dispositivo"; -"modal_clear_all_data_entire_account_button_title" = "Cancella dispositivo e rete"; -"dialog_clear_all_data_deletion_failed_1" = "Dati non eliminati da 1 nodo di servizio. ID nodo di servizio: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Dati non eliminati da %@ nodi di servizio. ID nodi di servizio: %@."; -"modal_clear_all_data_confirm" = "Cancella"; -"modal_seed_title" = "La tua frase di recupero"; -"modal_seed_explanation" = "Puoi usare la tua frase di recupero per recuperare il tuo account o collegare un dispositivo."; -"modal_permission_explanation" = "Session ha bisogno dell'accesso a %@ per continuare. Puoi consentire l'accesso nelle impostazioni di iOS."; -"modal_permission_settings_title" = "Impostazioni"; -"modal_permission_camera" = "Fotocamera"; -"modal_permission_microphone" = "Microfono"; -"modal_permission_library" = "Libreria"; -"DISAPPEARING_MESSAGES_OFF" = "No"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "No"; -"COPY_GROUP_URL" = "Copia l'URL del gruppo"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contatti"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Scegli almeno 1 membro del gruppo"; -"GROUP_CREATION_PLEASE_WAIT" = "Attendi mentre il gruppo viene creato..."; -"GROUP_CREATION_ERROR_TITLE" = "Impossibile creare il gruppo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Verifica la tua connessione di rete e riprova."; -"GROUP_UPDATE_ERROR_TITLE" = "Impossibile aggiornare il gruppo"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Non puoi abbandonare durante l'aggiunta o la rimozione di altri membri."; -"GROUP_ACTION_REMOVE" = "Rimuovi"; -"GROUP_TITLE_MEMBERS" = "Membri"; -"GROUP_TITLE_FALLBACK" = "Gruppo"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Puoi inviare messaggi a ID nascosti solo da dentro a una comunità"; -"DM_ERROR_INVALID" = "Controlla il Session ID o il nome ONS e riprova"; -"COMMUNITY_ERROR_INVALID_URL" = "Controlla l'URL inserito e riprova."; -"COMMUNITY_ERROR_GENERIC" = "Impossibile unirsi"; -"DISAPPERING_MESSAGES_TITLE" = "Messaggi effimeri"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Tipo di eliminazione"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Scomparsa dopo lettura"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "I messaggi vengono eliminati dopo che sono stati letti."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Scomparsa dopo invio"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "I messaggi vengono eliminati dopo che sono stati inviati."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Imposta"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Questa impostazione si applica a tutti i partecipanti di questa conversazione."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Questa impostazione si applica a tutti i partecipanti di questa conversazione.\nSolo gli amministratori possono modificarla."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ ha impostato il timer dei messaggi effimeri a %@ che sono stati %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ ha modificato il timer dei messaggi effimeri a %@ che sono stati %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ ha disattivato i messaggi effimeri"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Si è verificato un errore durante l'apertura del database\n\nPuoi esportare il resoconto per aiutare a risolvere l'errore o puoi provare a ripristinare il tuo dispositivo\n\nAttenzione: ripristinare il tuo dispositivo comporterà la perdita di tutti i dati più vecchi di due settimane"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "L'app ci sta mettendo molto ad aprirsi\n\nPuoi continuare ad aspettare che si apra, esportare il resoconto per aiutare a risolvere il problema o provare a chiudere e riaprire l'app."; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Esci"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Si è verificato un errore durante l'apertura del database\n\nPuoi esportare e condividere il resoconto per aiutare a risolvere il problema, ma per continuare a usare Session potresti aver bisogno di reinstallare l'app."; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Messaggio originale non trovato."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Mostra meno"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Richieste di messaggi"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Richieste di messaggi di comunità"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Consenti richieste di messaggi da conversazioni di comunità."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Potrai inviare messaggi vocali e allegati una volta che il destinatario avrà approvato questa richiesta."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Invio"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Inviato"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Letto"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Invio non riuscito"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Inviato"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Ricevuto"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Da"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID file"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Tipo file"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Dimensione file"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Risoluzione"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Durata"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Sincronizzazione fallita"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Sincronizzazione"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Invio del messaggio non riuscito"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Sincronizzazione del messaggio suoi tuoi altri dispositivi non riuscita"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Elimina da tutti i miei dispositivi"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Invia di nuovo"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Sincronizza di nuovo"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Cerca GIF?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session si connetterà a Giphy per fornire i risultati di ricerca. Non avrai la totale protezione dei metadati quando invierai GIF."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Info messaggio"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Silenzia"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Riattiva"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Segna come letta"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Segna come non letta"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Abbandona gruppo"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Abbandona comunità"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Vuoi abbandonare %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Abbandono..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Abbandono del gruppo non riuscito!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Impossibile abbandonare il gruppo, riprova"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Elimina gruppo"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Vuoi eliminare %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Elimina conversazione"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Vuoi eliminare la tua conversazione con %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Nascondi Note personali"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Vuoi nascondere %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Imposta foto profilo"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Salva"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Rimuovi"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Impossibile rimuovere la foto profilo"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Dimensione massima del file superata"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Seleziona una foto meno pesante e riprova"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Impossibile aggiornare il profilo"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Controlla la tua connessione e riprova"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Inserisci un nome"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Messaggi non letti"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Non hai messaggi da %@. Invia un messaggio per iniziare una conversazione!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "Non ci sono messaggi in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "Non hai messaggi in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ ha disattivato le richieste di messaggi dalle comunità, quindi non puoi inviare un messaggio."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Alcuni dei tuoi dispositivi stanno utilizzando una versione obsoleta. La sincronizzazione potrebbe essere inaffidabile finché non vengono aggiornati."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Si è verificato un errore durante il tentativo di caricare la tua password di recupero.\n\nEsporta il resoconto, poi carica il file attraverso il Supporto di Session per aiutare a risolvere il problema."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Si è verificato un errore durante l'archiviazione del messaggio in uscita per l'invio, potresti dover riavviare l'app prima di poter inviare i messaggi."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "C'è un problema nell'apertura del database. Riavvia l'app e riprova."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Questa impostazione si applica a tutti i partecipanti di questa conversazione."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "I messaggi spariscono dopo essere stati inviati."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Hai impostato il timer dei messaggi per farli scomparire %@ dopo che sono stati %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Hai modificato il timer dei messaggi per farli scomparire %@ dopo che sono stati %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Hai disattivato i messaggi effimeri"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Originale"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "La versione originale dei messaggi effimeri."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ sta usando un client obsoleto. I messaggi effimeri potrebbero non funzionare come previsto."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Stai provando ad aggiornare da una versione che non supporta più aggiornamenti\n\nPer continuare a usare Session devi ripristinare il tuo dispositivo\n\nAttenzione: ripristinare il tuo dispositivo comporterà la perdita di tutti i dati più vecchi di due settimane"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "letti"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "inviati"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Scompaiono dopo - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Scompaiono dopo lettura - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Scompaiono dopo invio - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Scompaiono dopo: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Scompaiono dopo lettura: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Scompaiono dopo invio: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Il nome del gruppo è ora %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Nome del gruppo aggiornato."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Immagine del gruppo aggiornata."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "Hanno rimosso %@ dal gruppo."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "Hanno rimosso %@ e %@ dal gruppo."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "Hanno rimosso %@ e %@ altri dal gruppo."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ ha lasciato il gruppo."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ è ora amministratore."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ e %@ sono ora amministratori."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ e %@ altri sono ora amministratori."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "%@ ti ha rimosso."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Confermi di voler eliminare questo invito al gruppo?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Confermi di voler bloccare %@? Gli utenti bloccati non possono inviarti richieste di messaggi, inviti ai gruppi o chiamarti."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ ti ha invitato a unirti a %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Impossibile eliminare il gruppo, riprova."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Inviando un messaggio a questo gruppo accetterai automaticamente l'invito."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "C'è un problema con il recupero dei dati richiesti. RIprova più tardi."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Membri del gruppo"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Invio invito"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invito inviato"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invito fallito"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Invio promozione ad amministratore"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Promozione ad amministratore inviata"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Promozione ad amministratore fallita"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Imposta immagine del gruppo"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Impossibile aggiornare l'immagine."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Impossibile rimuovere l'immagine."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Inserisci nome del gruppo"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Scegli un nome per il gruppo."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Scegli un nome più breve."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Inserisci descrizione del gruppo"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Scegli una descrizione più breve."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Gli amministratori non possono essere rimossi"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invita"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invita contatti"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "Non hai altri contatti."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Invio invito"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Invio inviti"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Impossibile invitare %@ su %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Impossibile invitare %@ e %@ su %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Impossibile invitare %@ e %@ altri su %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promuovi amministratori"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promuovi"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "Non ci sono più membri in questo gruppo."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Invio promozione"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Invio promozioni"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Impossibile promuovere %@ su %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Impossibile promuovere %@ e %@ su %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Impossibile promuovere %@ e %@ altri su %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "I gruppi sono stati aggiornati, crea un nuovo gruppo per aggiornare. Le vecchie funzionalità di gruppo smetteranno di funzionare da %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Aggiorna informazioni del gruppo"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Il nome e la descrizione del gruppo sono visibili a tutti i membri del gruppo."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Aggiorna nome del gruppo"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Il nome del gruppo è visibile a tutti i membri del gruppo."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "Hai ricevuto un invito a unirti a %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ja.lproj/Localizable.strings b/Session/Meta/Translations/ja.lproj/Localizable.strings deleted file mode 100644 index 267370580f..0000000000 --- a/Session/Meta/Translations/ja.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "添付ファイル"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "キャプション"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "ファイルの種類:%@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "サイズ:%@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "メッセージの上限に達しました。"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "送信"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "添付ファイル"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "添付ファイルの送信エラー"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "画像を変換できません。"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "動画を処理できませんでした"; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "画像の解析に失敗しました。"; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "画像からメタデータを消去できませんでした。"; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "画像のサイズを変換できません。"; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "添付ファイルのサイズが大きすぎます。"; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "添付ファイルに無効なコンテンツが含まれています。"; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "添付ファイルに無効なファイル形式があります"; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "添付ファイルの中身が空です"; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "ドキュメントの選択に失敗しました"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "ファイルやディレクトリを圧縮して再送信してみてください。"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "未対応ファイル"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "音声メッセージ"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "ブロックする"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ をブロックしますか?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "%@のブロックを解除しますか?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "ブロックを解除する"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@はブロックされました。"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "ユーザがブロックされました"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@のブロックを解除しました"; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "ブロックされたユーザは、あなたにメッセージや通話を発信することができなくなります。"; -/* Label for generic done button. */ -"BUTTON_DONE" = "完了"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "選択"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "検索中です。。。"; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "見つかりません"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "ありました"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d ( %d のうち)"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "このユーザをブロックする"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "消音"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "会話の検索"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "編集"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "数分かかる可能性があります。"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "データベースを更新中"; -/* The present; the current time. */ -"DATE_NOW" = "現在"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "消えるメッセージ"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "グループを編集"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "この会話にはメディアがありません。"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "新しいメディアを読み込んでいます..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "古いメディアを読み込んでいます..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "GIFの取り込みに失敗しました。ネットに接続しているか確認してください。"; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "未知のエラー"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIFを選べません"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "検索語を入力してください"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "エラーです。タップして再試行してください。"; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "該当なし"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "グループが作成されました"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@がグループに加わりました "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ がグループを退会しました. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ はグループから削除されました。 "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ はグループから削除されました。 "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "タイトルが「%@」に変更されました"; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "グループを更新しました"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "グループを離れました"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " あなたはこのグループから削除されました "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "画像の共有は%@点までです。"; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "添付ファイルを選択できませんでした"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "無効な音声ファイル"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "離脱"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "グループを離脱"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "すべてのメディア"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "%d個のメッセージを削除"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "メッセージを削除"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ - %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "あなた"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "今月"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "送信失敗"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "既読"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "送信しています..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "送信済み"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "アップロード中"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ から %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "自分のためのメモ"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "%@の再起動中にメッセージが届いたかもしれません"; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@がメッセージの消失をオフにしました"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@がメッセージの消失時間を%@に設定しました"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "画像はキャプチャできません"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "画像はキャプチャできません"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "カメラの設定ができませんでした"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "無名のアルバム"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "既読にする"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "返信"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Sessionの起動認証"; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "認証失敗"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "メディアを破棄しますか?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "メディアを破棄する"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@(デフォルト)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "メッセージサウンド"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "音声なし"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@日"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@日"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@時間"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@時間"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@分"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@分"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@秒"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@秒"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@日"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@時間"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@分"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@週間"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@週間"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@週間"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "キャンセル"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "削除"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "音声メッセージ"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "タップを保持して音声録音"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "音声メッセージ"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "消えるメッセージをオフにしました"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "消えるメッセージの消失時間を%@に設定しました"; -// MARK: - Session -"continue_2" = "続行する"; -"copy" = "コピーする"; -"invalid_url" = "URL が不正です"; -"next" = "次"; -"share" = "共有する"; -"invalid_session_id" = "Session ID が不正です"; -"cancel" = "取り消す"; -"your_session_id" = "あなたの Session ID"; -"vc_landing_title_2" = "ここから Session が始まります..."; -"vc_landing_register_button_title" = "Session ID を作成する"; -"vc_landing_restore_button_title" = "Session を続ける"; -"vc_landing_link_button_title" = "既存のアカウントにリンクする"; -"view_fake_chat_bubble_1" = "Session とは?"; -"view_fake_chat_bubble_2" = "分散型の暗号化されたメッセージングアプリです"; -"view_fake_chat_bubble_3" = "個人情報や会話のメタデータは収集されませんか?どのように機能しますか?"; -"view_fake_chat_bubble_4" = "高度な匿名ルーティングとエンドツーエンドの暗号化テクノロジーを組み合わせて使用します。"; -"view_fake_chat_bubble_5" = "友人は、セキュリティ侵害されたメッセンジャーを自らの友人に使用させません。どういたしまして。"; -"vc_register_title" = "Session ID をご紹介します"; -"vc_register_explanation" = "Session ID は、Session で連絡を取るために使用できる一意のアドレスです。本当のアイデンティティに関係なく、あなたの Session ID は設計上完全に匿名でプライベートです。"; -"vc_restore_title" = "アカウントを復元する"; -"vc_restore_explanation" = "アカウントを復元するためにサインアップしたときに与えられたリカバリーフレーズを入力します。"; -"vc_restore_seed_text_field_hint" = "リカバリーフレーズを入力してください"; -"vc_link_device_title" = "端末をリンクする"; -"vc_link_device_scan_qr_code_tab_title" = "QR コードをスキャンする"; -"vc_display_name_title_2" = "表示名を選択してください"; -"vc_display_name_explanation" = "これは、Session を使用するときの名前になります。あなたの本当の名前、エイリアス、またはあなたが好きな他のものに設定することができます。"; -"vc_display_name_text_field_hint" = "表示名を入力してください"; -"vc_display_name_display_name_missing_error" = "表示名を選択してください"; -"vc_display_name_display_name_too_long_error" = "短い表示名を選択してください"; -"vc_pn_mode_recommended_option_tag" = "オススメ"; -"vc_pn_mode_no_option_picked_modal_title" = "オプションを選択してください"; -"vc_home_empty_state_message" = "まだ連絡先がありません"; -"vc_home_empty_state_button_title" = "Session を開始する"; -"vc_seed_title" = "あなたのリカバリーフレーズ"; -"vc_seed_title_2" = "リカバリーフレーズに合致する"; -"vc_seed_explanation" = "リカバリーフレーズは、Session ID のマスターキーです。端末にアクセスできなくなった場合、これを使用して Session ID を復元できます。リカバリーフレーズを安全な場所に保管し、誰にも教えないでください。"; -"vc_seed_reveal_button_title" = "ホールドして表示"; -"view_seed_reminder_subtitle_1" = "リカバリーフレーズを保存してアカウントを保護する"; -"view_seed_reminder_subtitle_2" = "編集された単語をタップして長押ししてリカバリーフレーズを表示し、それを安全に保管して Session ID を保護します。"; -"view_seed_reminder_subtitle_3" = "リカバリーフレーズは安全な場所に保管してください"; -"vc_path_title" = "パス"; -"vc_path_explanation" = "Session は、Sessionの分散型ネットワークの複数のサービスノードを介してメッセージをバウンスすることにより、IP を隠します。これらは、接続が現在バウンスされている国です。"; -"vc_path_device_row_title" = "あなた"; -"vc_path_guard_node_row_title" = "エントリーノード"; -"vc_path_service_node_row_title" = "サービスノード"; -"vc_path_destination_row_title" = "目的先"; -"vc_path_learn_more_button_title" = "詳細"; -"vc_create_private_chat_title" = "新着メッセージ"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session ID を入力してください"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR コードをスキャンする"; -"vc_enter_public_key_explanation" = "新しい会話を始めるには、セッションIDを入力するか、セッションIDを共有します。"; -"vc_scan_qr_code_camera_access_explanation" = "Session で QR コードをスキャンするにはカメラへのアクセスが必要です"; -"vc_create_closed_group_title" = "グループを作成"; -"vc_create_closed_group_text_field_hint" = "グループ名を入力してください"; -"vc_create_closed_group_empty_state_message" = "まだ連絡先がありません"; -"vc_create_closed_group_group_name_missing_error" = "グループ名を入力してください"; -"vc_create_closed_group_group_name_too_long_error" = "短いグループ名を入力してください"; -"vc_create_closed_group_too_many_group_members_error" = "非公開グループは 100 人を超えるメンバーを抱えることはできません"; -"vc_join_public_chat_title" = "コミュニティに参加する"; -"vc_join_public_chat_enter_group_url_tab_title" = "コミュニティ URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR コードをスキャンする"; -"vc_enter_chat_url_text_field_hint" = "コミュニティ URL を入力してください"; -"vc_settings_title" = "設定"; -"vc_group_settings_title" = "グループ設定"; -"vc_settings_display_name_missing_error" = "表示名を選択してください"; -"vc_settings_display_name_too_long_error" = "短い表示名を選択してください"; -"vc_settings_privacy_button_title" = "プライバシー"; -"vc_settings_notifications_button_title" = "通知"; -"vc_settings_recovery_phrase_button_title" = "リカバリーフレーズ"; -"vc_settings_clear_all_data_button_title" = "データを消去する"; -"vc_qr_code_title" = "QR コード"; -"vc_qr_code_view_my_qr_code_tab_title" = "私の QR コードを表示する"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR コードをスキャンする"; -"vc_qr_code_view_scan_qr_code_explanation" = "誰かの QR コードをスキャンして、会話を始めましょう"; -"vc_view_my_qr_code_explanation" = "これはあなたの QR コードです。他のユーザーはそれをスキャンして、あなたとの Session を開始できます。"; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Appleの通知サーバーの利用で、すぐかつ確実に新しいメッセージの受信を通知されます。"; -"fast_mode" = "高速モード"; -"slow_mode_explanation" = "Sessionは時々バックグラウンドで新しいメッセージの受信をチェックします。"; -"slow_mode" = "低速モード"; -"vc_pn_mode_title" = "メッセージ通知"; -"vc_link_device_recovery_phrase_tab_title" = "リカバリーフレーズ"; -"vc_link_device_scan_qr_code_explanation" = "QRコードを表示するのに、他のデバイスから「設定→リカバリーフレーズ」へナビゲートする"; -"vc_enter_recovery_phrase_title" = "リカバリーフレーズ"; -"vc_enter_recovery_phrase_explanation" = "デバイスをリンクするのに、サインアップした時に与えられたリカバリーフレーズを入力します。"; -"vc_enter_public_key_text_field_hint" = "Session IDを入力する"; -"admin_group_leave_warning" = "このグループの作成者なので、削除すると全てのメンバーが追い出されます。元に戻せません。"; -"vc_join_open_group_suggestions_title" = "または、以下のグループに参加する…"; -"vc_settings_invite_a_friend_button_title" = "友達を招待"; -"copied" = "コピーしました"; -"vc_conversation_settings_copy_session_id_button_title" = "Session ID をコピーする"; -"vc_conversation_input_prompt" = "メッセージ"; -"vc_conversation_voice_message_cancel_message" = "スライドして取り消す"; -"modal_download_attachment_title" = "%@ を信頼しますか?"; -"modal_download_attachment_explanation" = "%@ が送信したメディアをダウンロードしてもよろしいですか?"; -"modal_download_button_title" = "ダウンロード"; -"modal_open_url_title" = "URLを開きますか?"; -"modal_open_url_explanation" = "%@を本当に開いてもよろしいですか?"; -"modal_open_url_button_title" = "開く"; -"modal_copy_url_button_title" = "リンクをコピーする"; -"modal_blocked_title" = "%@のブロックを解除しますか?"; -"modal_blocked_explanation" = "%@のブロックを解除してもよろしいですか?"; -"modal_blocked_button_title" = "ブロックを解除する"; -"modal_link_previews_title" = "リンクプレビューを有効にしますか?"; -"modal_link_previews_explanation" = "リンクプレビューを有効すると、URLを送受信する場合にプレビューが表示されます。これは便利ですが、プレビューを作成するのにSessionはそのウェブサイトに接続する必要があります。Sessionの設定から、リンクプレビューをいつでも無効にできます。"; -"modal_link_previews_button_title" = "有効にする"; -"vc_share_title" = "Sessionと共有"; -"vc_share_loading_message" = "添付ファイルを準備しています..."; -"vc_share_sending_message" = "送信中…"; -"vc_share_link_previews_unsecure" = "セキュアでないリンクのプレビューは読み込めません"; -"vc_share_link_previews_error" = "プレビューを読み込めません"; -"vc_share_link_previews_disabled_title" = "リンクのプレビューが無効です"; -"vc_share_link_previews_disabled_explanation" = "リンクプレビューを有効すると、URLを送受信する場合にプレビューが表示されます。これは便利ですが、プレビューを作成するのにSessionはそのウェブサイトに接続する必要があります。Sessionの設定から、リンクプレビューをいつでも無効にできます。"; -"view_open_group_invitation_description" = "公開グループからの招待"; -"vc_conversation_settings_invite_button_title" = "メンバーを追加する"; -"modal_send_seed_title" = "警告"; -"modal_send_seed_explanation" = "これはあなたの復元フレーズです。もし誰かに送信すると、あなたのアカウントにフルアクセスできます。"; -"modal_send_seed_send_button_title" = "送信"; -"vc_conversation_settings_notify_for_mentions_only_title" = "メンションのみ"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "有効にすると、あなたに言及するメッセージのみが通知されます。"; -"view_conversation_title_notify_for_mentions_only" = "メンションのみを通知する"; -"message_deleted" = "このメッセージは削除されました"; -"delete_message_for_me" = "自分の端末から削除"; -"delete_message_for_everyone" = "全員の端末から削除"; -"delete_message_for_me_and_recipient" = "自分と %@ の端末から削除する"; -"context_menu_reply" = "返信"; -"context_menu_save" = "保存"; -"context_menu_ban_user" = "ユーザーをBAN"; -"context_menu_ban_and_delete_all" = "BANしてすべてを削除する"; -"context_menu_ban_user_error_alert_message" = "ユーザーをBANできません"; -"accessibility_expanding_attachments_button" = "添付ファイルを追加"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "ドキュメント"; -"accessibility_library_button" = "写真を選択"; -"accessibility_camera_button" = "カメラ"; -"accessibility_main_button_collapse" = "添付ファイルのオプションを閉じる"; -"invalid_recovery_phrase" = "無効な復元フレーズ"; -"DISMISS_BUTTON_TEXT" = "中止"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "設定"; -"call_outgoing" = "%@ に発信"; -"call_incoming" = "%@から着信"; -"call_missed" = "%@からの不在着信"; -"APN_Message" = "新しいメッセージがあります。"; -"APN_Collapsed_Messages" = "%@ 件の新規メッセージがあります。"; -"PIN_BUTTON_TEXT" = "ピン留め"; -"UNPIN_BUTTON_TEXT" = "ピン留めを外す"; -"modal_call_missed_tips_title" = "通話できません"; -"modal_call_missed_tips_explanation" = "プライバシー設定で「音声通話とビデオ通話」を許可していないため、%@から着信できませんでした。"; -"media_saved" = "メディアは%@によって保存されました。"; -"screenshot_taken" = "%@はスクリーンショットを撮りました。"; -"SEARCH_SECTION_CONTACTS" = "連絡先とグループ"; -"SEARCH_SECTION_MESSAGES" = "メッセージ"; -"MESSAGE_REQUESTS_TITLE" = "メッセージリクエスト"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "保留しているリクエストはありません"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "すべて消去"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "本当に全てのメッセージリクエストを消去しますか?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "消去"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "本当にこのリクエストを削除しますか?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "この連絡先をブロックしてもよろしいですか?"; -"MESSAGE_REQUESTS_INFO" = "このユーザーにメッセージを送信すると、自動的にメッセージのリクエストが受け付けられ、あなたのセッションIDが公開されます。"; -"MESSAGE_REQUESTS_ACCEPTED" = "リクエストが承認されました"; -"MESSAGE_REQUESTS_NOTIFICATION" = "新しいリクエストがあります"; -"TXT_HIDE_TITLE" = "非表示"; -"TXT_DELETE_ACCEPT" = "許可"; -"TXT_BLOCK_USER_TITLE" = "ユーザーをブロック"; -"ALERT_ERROR_TITLE" = "エラー"; -"modal_call_permission_request_title" = "許可が必要です"; -"modal_call_permission_request_explanation" = "プライバシー設定から音声とビデオ通話の許可を有効にできます。"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "エラーが発生してしまいました!"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "後でもう一度お試しください"; -"LOADING_CONVERSATIONS" = "会話データを読み込んでいます"; -"DATABASE_MIGRATION_FAILED" = "データベースの最適化時にエラーが発生しました\n\nトラブルシューティングのために共有するためにアプリケーションログをエクスポートするか、デバイスを復元することができます。\n\n警告: お使いのデバイスを復元すると、2週間以上のデータが失われます。"; -"RECOVERY_PHASE_ERROR_GENERIC" = "エラーが発生しました。接続を確認してもう一度やり直してください。"; -"RECOVERY_PHASE_ERROR_LENGTH" = "十分な単語を入力していないようです。復元フレーズを確認して、もう一度やり直してください。"; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "復元フレーズの最後の単語が見つかりませんでした。入力したものを確認して、もう一度やり直してください。"; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "復元フレーズに無効な単語が表示されます。入力した単語を確認して、もう一度お試しください。"; -"RECOVERY_PHASE_ERROR_FAILED" = "復元フレーズを確認できませんでした。入力したものを確認して、もう一度やり直してください。"; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "認証情報にアクセスできませんでした。"; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "認証に失敗しました。"; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "ログイン試行回数を超えました。しばらくして再度お試しください。"; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "画面ロックを使うにはiOSでパスコードを設定してください。"; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "画面ロックを使うにはiOSでパスコードを設定してください。"; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "画面ロックを使うにはiOSでパスコードを設定してください。"; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "送信"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "再試行"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "チャットを表示"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "メッセージの送信に失敗しました。"; -"INVALID_SESSION_ID_MESSAGE" = "セッションIDを確認してもう一度やり直してください"; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "リカバリーフレーズを確認してもう一度やり直してください。"; -"MEDIA_TAB_TITLE" = "メディア"; -"DOCUMENT_TAB_TITLE" = "ドキュメント"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "この会話にはドキュメントがありません。"; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "新しいドキュメントを読み込んでいます…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "古いドキュメントを読み込んでいます…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "アクティビティ"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "動物&自然"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "フラグ"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "食べ物・飲み物"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "オブジェクト"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "最近使用したもの"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "絵文字と人"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "記号"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "旅行&場所"; -"EMOJI_REACTS_NOTIFICATION" = "%@ がメッセージ %@ に反応."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "が %@ をこのメッセージに反応しました."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "%@ が %@ をこのメッセージに反応しました."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "スローダウンしました。絵文字リアクターが多すぎます。しばらくしてからもう一度試してください。"; -/* New conversation screen*/ -"vc_new_conversation_title" = "新しい会話"; -"CREATE_GROUP_BUTTON_TITLE" = "作成する"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "参加"; -"PRIVACY_TITLE" = "プライバシー"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "スクリーン・セキュリティ"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Sessionをロック"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "セッションのロックを解除するには、Touch ID、Face ID、またはパスコードが必要です。"; -"PRIVACY_SECTION_READ_RECEIPTS" = "既読通知"; -"PRIVACY_READ_RECEIPTS_TITLE" = "既読通知"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "1対1のチャットで既読通知を送信します。"; -"PRIVACY_SECTION_TYPING_INDICATORS" = "入力中アイコン"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "入力中アイコン"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "入力中の表示を1対1のチャットで相手に表示します。"; -"PRIVACY_SECTION_LINK_PREVIEWS" = "リンクプレビュー"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "リンクプレビューを送る"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "サポートされている URL のリンクプレビューを表示します。"; -"PRIVACY_SECTION_CALLS" = "通話 (ベータ版)"; -"PRIVACY_CALLS_TITLE" = "音声とビデオ通話"; -"PRIVACY_CALLS_DESCRIPTION" = "他のユーザーとの音声通話やビデオ通話を有効にします。"; -"PRIVACY_CALLS_WARNING_TITLE" = "音声通話とビデオ通話 (ベータ版)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "音声通話とビデオ通話を使用している間、あなたのIPはあなたの通話相手とOxen Foundationサーバーに表示されます。 音声通話とビデオ通話を有効にしてもよろしいですか?"; -"NOTIFICATIONS_TITLE" = "通知"; -"NOTIFICATIONS_SECTION_STRATEGY" = "通知スタイル"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "高速モードを使用する"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Appleの通知サーバーの利用で、すぐかつ確実に新しいメッセージの受信を通知されます。"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "端末の通知設定に移動"; -"NOTIFICATIONS_SECTION_STYLE" = "通知スタイル"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "サウンド"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "アプリが開いているときの音"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "通知内容"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "通知に表示される情報"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "名前とメッセージ"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "名前のみ"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "名前もメッセージも無し"; -"CONVERSATION_SETTINGS_TITLE" = "会話"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "メッセージの削減"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "コミュニティをトリムする"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "2,000件以上のメッセージを持つコミュニティから6ヶ月以上のメッセージを削除します。"; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "音声メッセージ"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "音声メッセージの自動再生"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "音声メッセージを自動再生します"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "ブロックされた連絡先"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "ブロックされた連絡先がありません。"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "ブロック解除"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "%@のブロックを解除してもよろしいですか?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "この連絡先"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "本当に %@ のブロックを解除しますか?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "と %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "%dとその他"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "ブロック解除"; -"APPEARANCE_TITLE" = "デザイン設定"; -"APPEARANCE_THEMES_TITLE" = "テーマ"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "プライマリーカラー"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "調子はどうだい?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "いい感じだよ、貴方はどう?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "絶好調だよ!"; -"APPEARANCE_NIGHT_MODE_TITLE" = "自動ナイトモード"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "システム設定に一致する"; -"HELP_TITLE" = "ヘルプ"; -"HELP_REPORT_BUG_TITLE" = "バグを報告"; -"HELP_REPORT_BUG_DESCRIPTION" = "ログをエクスポートし、Sessionのヘルプデスクにてファイルをアップロードします。"; -"HELP_REPORT_BUG_ACTION_TITLE" = "ログのエクスポート"; -"HELP_TRANSLATE_TITLE" = "セッションを翻訳"; -"HELP_FEEDBACK_TITLE" = "ご意見をお聞かせください。"; -"HELP_FAQ_TITLE" = "よくある質問"; -"HELP_SUPPORT_TITLE" = "サポート"; -"modal_clear_all_data_title" = "すべてのデータを消去する"; -"modal_clear_all_data_explanation" = "これにより、メッセージと連絡先が完全に削除されます。このデバイスのみを消去するか、ネットワークからデータを削除しますか?"; -"modal_clear_all_data_explanation_2" = "ネットワークからデータを削除してもよろしいですか? 続行すると、メッセージや連絡先を復元することはできません。"; -"modal_clear_all_data_device_only_button_title" = "端末のみ消去"; -"modal_clear_all_data_entire_account_button_title" = "端末とネットワークを消去"; -"dialog_clear_all_data_deletion_failed_1" = "このサービスノードからデータが削除されませんでした。ID: %@"; -"dialog_clear_all_data_deletion_failed_2" = "%@ つのサービスノードからデータが削除されませんでした。ID %@"; -"modal_clear_all_data_confirm" = "消去"; -"modal_seed_title" = "あなたのリカバリーフレーズ"; -"modal_seed_explanation" = "復元フレーズを使用してアカウントを復元したり、デバイスをリンクしたりできます。"; -"modal_permission_explanation" = "セッションを続行するには %@ のアクセスが必要です。iOSの設定でアクセスを有効にできます。"; -"modal_permission_settings_title" = "設定"; -"modal_permission_camera" = "カメラ"; -"modal_permission_microphone" = "マイクロフォン"; -"modal_permission_library" = "ライブラリ"; -"DISAPPEARING_MESSAGES_OFF" = "オフ"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "オフ"; -"COPY_GROUP_URL" = "グループのURLをコピー"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "連絡先"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "グループメンバーを少なくとも 2 人選択してください"; -"GROUP_CREATION_PLEASE_WAIT" = "グループが作成されるまでお待ちください..."; -"GROUP_CREATION_ERROR_TITLE" = "グループを作成できませんでした"; -"GROUP_CREATION_ERROR_MESSAGE" = "インターネット接続を確認して、もう一度やり直してください。"; -"GROUP_UPDATE_ERROR_TITLE" = "グループの更新ができませんでした"; -"GROUP_UPDATE_ERROR_MESSAGE" = "他のメンバーを追加または削除中は退出できません。"; -"GROUP_ACTION_REMOVE" = "削除"; -"GROUP_TITLE_MEMBERS" = "メンバー"; -"GROUP_TITLE_FALLBACK" = "グループ"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Blinded IDへのメッセージの送信は、コミュニティ内からのみ可能です。"; -"DM_ERROR_INVALID" = "セッションIDまたはONS名を確認して再度お試しください。"; -"COMMUNITY_ERROR_INVALID_URL" = "入力されたURLをご確認の上、再度お試しください。"; -"COMMUNITY_ERROR_GENERIC" = "参加できませんでした"; -"DISAPPERING_MESSAGES_TITLE" = "消えるメッセージ"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "削除の種類"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "既読後に消えます"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "メッセージは読み込んだ後に削除されます。"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "送信後に消えます"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "メッセージは送信後に削除されます。"; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "タイマー"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "セット"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "この設定は、この会話の全員に適用されます。"; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "この設定はこの会話の全員に適用されます。グループ管理者のみがこの設定を変更できます。"; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ が %@ になった後、 %@消えるようにメッセージを設定しました"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ が %@ になった後、 %@消えるようにメッセージを設定しました"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ は消えているメッセージをオフにしました"; - -/* context_menu_info */ -"context_menu_info" = "お知らせ"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "\n\nデータベースを開くときにエラーが発生しました。トラブルシューティングのために共有するためにアプリケーションログをエクスポートするか、デバイス\n\n警告: デバイスを復元すると、2週間以上のデータが失われます。"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "アプリの起動に時間がかかっています\n\nアプリが起動するまで待ち続けるか、アプリケーション ログをエクスポートしてトラブルシューティング用に共有するか、アプリを再度開いてみることができます"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "復元されたデータベースを開くときにエラーが発生しました\n\nアプリケーション ログをエクスポートしてトラブルシューティングのために共有できますが、セッションを引き続き使用するには再インストールが必要な場合があります"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "表示を隠す"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "メッセージ"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "コミュニティーメッセージリクエスト"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "コミュニティの会話からのメッセージリクエストを許可する"; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "受信者がこのメッセージリクエストを承認すると、音声メッセージと添付ファイルを送信できます"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "送金中"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "送信済み"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "読むか"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "送信失敗しました"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "送信"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "受信"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "差出人"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ファイルID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "ファイルタイプ"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "ファイルサイズ"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "解決法"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "持続期間"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "同期に失敗しました"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "同期中"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "メッセージの送信に失敗しました"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "メッセージを他のデバイスと同期できませんでした"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "すべてのデバイスから削除"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "再送"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "再同期"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "GIF を検索しますか?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "セッションは検索結果を提供するためにGiphyに接続します。GIFを送信するときに完全なメタデータ保護はありません。"; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "メッセージ情報"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "ミュート"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "ミュート解除"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "既読にする"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "未読にする"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "グループを抜ける"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "コミュニティーを脱退する"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "本当に\"%@\"から退出しますか?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "終了しています..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "グループから脱退できませんでした!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "グループから脱退できません。もう一度やり直してください。"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "グループを削除"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "本当に\"%@\"を削除しますか?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "会話を削除する"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "自分用メモを隠す"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "ディスプレイの画像を設定"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "保存"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "削除"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "ファイルの最大サイズを超えています"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "プロフィールを更新できませんでした。"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "名前を入力"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "未読のメッセージ"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "既読"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "送信"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "グループ名を更新しました"; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "グループ表示画像を更新しました。"; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "グループメンバー"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "招待に失敗しました。"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "ディスプレイの画像を設定"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "グループ名を入力"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "グループ名を入力してください。"; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "グループ説明を入力してください"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "管理者を削除することはできません"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "招待"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "連絡先がありません。"; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "招待を送る"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "グループ名を更新する"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "%@ に招待されました。"; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ko.lproj/Localizable.strings b/Session/Meta/Translations/ko.lproj/Localizable.strings deleted file mode 100644 index 0f96638f3e..0000000000 --- a/Session/Meta/Translations/ko.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "첨부파일"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "설명문구"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "파일 형식: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "크기: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "글자 수 제한을 초과했습니다."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "전송"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "첨부 파일"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "첨부파일 전송 오류"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "이미지를 변환할 수 없습니다."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "동영상을 처리할 수 없습니다."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "이미지를 분석할 수 없습니다"; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "이미지에서 메타데이터를 제거할 수 없습니다."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "이미지 크기를 조절할 수 없습니다."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "첨부파일 용량이 너무 큽니다."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "첨부 파일에 잘못된 내용이 포함되어 있습니다."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "첨부 파일 유형이 잘못되었습니다!"; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "첨부 파일의 내용이 없습니다."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "알 수 없는 이유로 파일을 불러올 수 없습니다."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Please create a compressed archive of this file or directory and try sending that instead."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "지원되지 않는 파일 형식입니다."; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "음성 메시지"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "차단"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "차단 %@"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "차단 해제"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ has been blocked."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "차단된 사용자"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blocked users will not be able to call you or send you messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "완료"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "선택"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "일치하는 항목 없음"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 match"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d of %d matches"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "이 사용자를 차단"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "음소거"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "대화 검색"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "이 작업은 몇 분 정도 소요될 수 있습니다."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "데이터베이스 최적화"; -/* The present; the current time. */ -"DATE_NOW" = "최근"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Disappearing Messages"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "그룹 편집"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF를 선택할 수 없습니다."; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "검색할 내용을 입력하십시오."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "검색 결과 없음"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "그룹이 생성되었습니다."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "그룹 정보가 업데이트되었습니다."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "You have left the group."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " You were removed from the group. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "나가기"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "그룹 나가기"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "모든 미디어"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Delete Message"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "나"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "이번 달"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "전송 실패"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "읽음"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "전송중…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "보냄"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "업로드 중…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "개인용 메모"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "확인"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "읽음으로 표시"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "답장"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "메시지 소리"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "없음"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@일"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@시간"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@분"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@주"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@주"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@주"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "취소"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "삭제"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "음성 메시지"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "음성 메시지"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "복사"; -"invalid_url" = "Invalid URL"; -"next" = "다음"; -"share" = "공유"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "취소"; -"your_session_id" = "당신의 세션 ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "세션 ID 생성"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "다른 장치와 연결"; -"view_fake_chat_bubble_1" = "세션은 무엇인가요?"; -"view_fake_chat_bubble_2" = "탈 중앙화 된 암호화 메시지 앱입니다."; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "당신의 Session ID에게 인사해주세요."; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "사용자"; -"vc_path_guard_node_row_title" = "출구 노드"; -"vc_path_service_node_row_title" = "서비스 통신망"; -"vc_path_destination_row_title" = "목적지"; -"vc_path_learn_more_button_title" = "더 알아보기"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session ID 입력"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR 코드 스캔"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "설정"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "개인정보"; -"vc_settings_notifications_button_title" = "알림"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "데이터 삭제"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR 코드 스캔"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast 모드"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow 모드"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "복구 구문"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "복구 구문"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Session ID나 ONS name을 입력하세요."; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "친구 초대"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Session ID 복사"; -"vc_conversation_input_prompt" = "메시지"; -"vc_conversation_voice_message_cancel_message" = "취소하려면 슬라이드"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "다운로드"; -"modal_open_url_title" = "URL 열기"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "열기"; -"modal_copy_url_button_title" = "링크 복사"; -"modal_blocked_title" = "%@님의 차단을 해제 하시겠습니까?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "차단 해제"; -"modal_link_previews_title" = "링크 미리보기를 사용하시겠습니까?"; -"modal_link_previews_explanation" = "링크 미리보기를 켤 경우 송수신자에게 웹사이트의 미리보기를 제공합니다. 이는 유용한 기능이지만, Session은 미리보기를 만들기 위해 링크된 주소를 접근하게 됩니다. 사용자는 언제나 설정에서 링크 미리보기를 끌 수 있습니다."; -"modal_link_previews_button_title" = "활성화"; -"vc_share_title" = "Session으로 공유하기"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "전송 중..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "미리보기를 사용할 수 없습니다."; -"vc_share_link_previews_disabled_title" = "링크 미리보기 끄기"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "멤버 추가"; -"modal_send_seed_title" = "경고"; -"modal_send_seed_explanation" = "이것은 당신의 복구 구절입니다. 복구 구절을 가지고 있는 사용자는 누구든 당신의 세션계정의 접근할 수 있습니다."; -"modal_send_seed_send_button_title" = "전송"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "삭제된 메세지 입니다."; -"delete_message_for_me" = "나에게서만 삭제"; -"delete_message_for_everyone" = "모두에게서 삭제"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "답장"; -"context_menu_save" = "저장"; -"context_menu_ban_user" = "사용자 차단"; -"context_menu_ban_and_delete_all" = "차단 및 전부 삭제"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "첨부파일 추가"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "문서"; -"accessibility_library_button" = "사진 보관함"; -"accessibility_camera_button" = "카메라"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "잘못된 복구 구문 입니다."; -"DISMISS_BUTTON_TEXT" = "취소"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "설정"; -"call_outgoing" = "%@님에게 전화함"; -"call_incoming" = "%@ 님의 전화"; -"call_missed" = "%@ 님의 부재중 통화"; -"APN_Message" = "새 메시지가 도착했습니다."; -"APN_Collapsed_Messages" = "%@ 님에게 새 메시지가 도착했습니다."; -"PIN_BUTTON_TEXT" = "고정"; -"UNPIN_BUTTON_TEXT" = "고정 해제"; -"modal_call_missed_tips_title" = "부재중 전화"; -"modal_call_missed_tips_explanation" = "%@ 님의 전화를 받지 못했습니다. 개인정보 설정에서 '음성 및 영상 통화' 항목을 활성화 시켜주십시오."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "메시지"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "모두 지우기"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "지우기"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "정말 이 메시지를 삭제하시겠습니까?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "새로운 메시지가 왔습니다"; -"TXT_HIDE_TITLE" = "숨기기"; -"TXT_DELETE_ACCEPT" = "수락"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "통화 권한이 필요합니다."; -"modal_call_permission_request_explanation" = "개인정보 설정에서 '음성 및 영상 통화' 항목을 활성화 시킬 수 있습니다."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "그룹을 불러오는데 오류가 발생하였습니다."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "나중에 다시 시도해주십시오"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "모든 데이터 삭제"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ku.lproj/Localizable.strings b/Session/Meta/Translations/ku.lproj/Localizable.strings deleted file mode 100644 index e94c53ce7e..0000000000 --- a/Session/Meta/Translations/ku.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "هاوپێچ"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "ناونیشان"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "جۆری دۆسیە:%@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "قەبارە: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "قەبارەی نووسینی نامە سنووردارە"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "ناردن"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "هاوپێچ"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "هەڵە لە ناردنی هاوپێچ"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "ناتوانرێت جۆری وێنە بگۆردرێت."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "ناتوانرێت کار بە ڤیدیۆ بکرێت."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "ناتوانرێت جۆری وێنە بگۆردرێت."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "ناتوانرێت زانیاری داتاکان بسردڕێتەوە."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "ناتوانرێت قەبارەی وێنە بگۆردرێت."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "قەبارەی هاوپێچ زۆرە."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "هاوپێچ ناوەرۆکێکی نادروستی تێدایە."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "پاشگری فایلی هاوپێچ هەڵەیە."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "هاوپێچ بەتاڵە."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "هەڵبژاردنی فایل سەرکەوتوو نەبوو."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "تکایە قەبارەی فایلەکە یاخۆد فۆلدەرەکە بچووک بکەرەوە ئینجا هەولی دووبارە ناردنی بدە."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "فایلی نەزانراو"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "نامەی دەنگی"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "دوورخستن"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "ئایا دووری دەخەیتەوە%@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "لابردنی دوورخستنەوە?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "لابردنی دوورخستنەوە"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ دوورخرایەوە."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "بەکارهێنەر دوورخرایەوە"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ دوورخرایەوە."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "بەکارهێنەرە دوورخراوەکان ناتوانن پەیوەندیت پێوە بکەن یاخود نامەت بۆ بنێرن."; -/* Label for generic done button. */ -"BUTTON_DONE" = "ئەنجامدرا"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "هەڵبژێرە"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "گەڕان بەدوای..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "هێچ لێکچوویەک نییە"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 لێکچوو"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d لە %d لێکچووە"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "دوورخستنەوەی ئەم بەکارهێنەرە"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "کپ کردن"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "گەڕان بە نێو گفتوگۆدا"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "جووڵە و پێوەر"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "ئەمە چەند خولەکێکی پێدەچێت."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "باشکردنی بنکەدراوە"; -/* The present; the current time. */ -"DATE_NOW" = "ئێستا"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "نەمانی پەیامەکان"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "دەستکاری گروپ"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "لەم گفتوگۆیەدا هیچ میدیایەکتان نییە."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "بارکردنی میدیای نوێتر…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "بارکردنی میدیای کۆنتر…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "شکستی هێنا لە هێنانی GIF ی داواکراو. تکایە پشتڕاستی بکەرەوە کە لە سەرهێڵیت."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "هەڵەیەکی نەناسراو ڕوویدا."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "ناتوانرێت GIF هەڵبژێردرێت"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "تکایە گەڕانەکەت بنووسە."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "هەڵە. کرتە بکە بۆ دووبارە هەوڵدانەوە."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "بێ ئەنجامە."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "گروپ دروست کرا"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ پەیوەندی بە گروپەکەوە کرد. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ گروپەکەی بەجێهێشت. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ لە گروپەکە لابرا. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ لە گروپەکە لابران. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "ناونیشان ئێستا '%@' ە. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "گروپ نوێکرایەوە."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "تۆ گروپەکەت بەجێهێشتووە."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " تۆ لە گروپ دەرکرایت. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "ناتوانیت زیاتر لە %@ شتەکان هاوبەش بکەیت."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Leave"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Leave Group"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "All Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Delete Message"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "You"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "This Month"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sending failed."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Read"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sending…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sent"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploading…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note to Self"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "You"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/lt.lproj/Localizable.strings b/Session/Meta/Translations/lt.lproj/Localizable.strings deleted file mode 100644 index feb0d9a906..0000000000 --- a/Session/Meta/Translations/lt.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Priedas"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Caption"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Failo tipas: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Dydis: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Message limit reached"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Siųsti"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Priedas"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Klaida siunčiant priedą"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Nepavyko pasirinkti dokumento."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Please create a compressed archive of this file or directory and try sending that instead."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nepalaikomas failas"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Balso žinutė"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Užblokuoti"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Užblokuoti %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Atblokuoti"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ has been blocked."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Naudotojas užblokuotas"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blocked users will not be able to call you or send you messages."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Atlikta"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Select"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "No matches"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 match"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d of %d matches"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Užblokuoti šį naudotoją"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Mute"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Search Conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Tai gali užtrukti kelias minutes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizuojama duomenų bazė"; -/* The present; the current time. */ -"DATE_NOW" = "Dabar"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Išnykstančios žinutės"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Taisyti grupę"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Įkeliama naujesnė medija…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Įkeliama senesnė medija…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Įvyko nežinoma klaida."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupė sukurta"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupė atnaujinta."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Jūs išėjote iš grupės."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Jūs buvote pašalinti iš grupės. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nepavyko pasirinkti priedo."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Neteisingas garso įrašo failas."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Išeiti"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Išeiti iš grupės"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Visa medija"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Ištrinti žinutę"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ ties %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Jūs"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "This Month"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sending failed."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Perskaityta"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Siunčiama…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Išsiųsta"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploading…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Pastabos sau"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ išjungė išnykstančias žinutes."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Nepavyko konfigūruoti kameros."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Žymėti kaip skaitytą"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Atsakyti"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Žinučių garsas"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Nėra"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Atsisakyti"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Ištrinti"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Balso žinutė"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Balso žinutė"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Jūs išjungėte išnykstančias žinutes."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Tęsti"; -"copy" = "Kopijuoti"; -"invalid_url" = "Neteisingas URL"; -"next" = "Kitas"; -"share" = "Bendrinti"; -"invalid_session_id" = "Neteisingas Session ID"; -"cancel" = "Atsisakyti"; -"your_session_id" = "Jūsų Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Susikurti Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Susieti įrenginį"; -"view_fake_chat_bubble_1" = "Kas yra Session?"; -"view_fake_chat_bubble_2" = "Tai – decentralizuota, šifruota pokalbių programėlė"; -"view_fake_chat_bubble_3" = "Ji nerenka mano asmeninės informacijos ar mano pokalbių metaduomenų? Kaip ji veikia?"; -"view_fake_chat_bubble_4" = "Naudodama išplėstinio anoniminio nukreipimo ir ištisinio šifravimo technologijų kombinaciją."; -"view_fake_chat_bubble_5" = "Draugai neleidžia savo draugams naudotis į pavojų statančiomis programėlėmis. Prašom."; -"vc_register_title" = "Pasisveikinkite su savo Session ID"; -"vc_register_explanation" = "Jūsų Session ID yra unikalus adresas, kurį žmonės gali naudoti, kad susisiektų su jumis per Session programėlę. Neturėdamas jokių sąsajų su jūsų tikrąja tapatybe, jūsų Session ID yra tyčia visiškai anoniminis ir privatus."; -"vc_restore_title" = "Atkurkite savo paskyrą"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Įveskite savo atkūrimo frazę"; -"vc_link_device_title" = "Susieti įrenginį"; -"vc_link_device_scan_qr_code_tab_title" = "Skenuoti QR kodą"; -"vc_display_name_title_2" = "Pasirinkite savo rodomą vardą"; -"vc_display_name_explanation" = "Tai bus jūsų vardas, kai naudositės Session. Tai gali būti jūsų tikras vardas, slapyvardis ar bet kas kita."; -"vc_display_name_text_field_hint" = "Įveskite pasirinktą rodomą vardą"; -"vc_display_name_display_name_missing_error" = "Pasirinkite rodomą vardą"; -"vc_display_name_display_name_too_long_error" = "Pasirinkite trumpesnį rodomą vardą"; -"vc_pn_mode_recommended_option_tag" = "Rekomenduojama"; -"vc_pn_mode_no_option_picked_modal_title" = "Pasirinkite parinktį"; -"vc_home_empty_state_message" = "Kol kas neturite jokių adresatų"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Jūsų atkūrimo frazė"; -"vc_seed_title_2" = "Pasitikite savo atkūrimo frazę"; -"vc_seed_explanation" = "Jūsų atkūrimo frazė yra pagrindinis raktas į jūsų Session ID — galite ją naudoti, kad atkurtumėte savo Session ID tuo atveju, jei prarasite prieigą prie savo įrenginio. Laikykite savo atkūrimo frazę saugioje vietoje ir niekam jos nerodykite."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Apsaugokite savo paskyrą įsirašydami atkūrimo frazę"; -"view_seed_reminder_subtitle_2" = "Bakstelėkite ir laikykite ant redaguotų žodžių, kad būtų atskleista jūsų atkūrimo frazė. Tuomet, laikykite ją saugioje vietoje, kad apsaugotumėte savo Session ID."; -"view_seed_reminder_subtitle_3" = "Užtikrinkite, kad laikytumėte savo atkūrimo frazę saugioje vietoje"; -"vc_path_title" = "Kelias"; -"vc_path_explanation" = "Programėlė Session slepia jūsų IP adresą, peradresuodama jūsų žinutes per kelis aptarnavimo mazgus Session decentralizuotame tinkle. Štai čia yra šalys, per kurias šiuo metu yra peradresuojamas jūsų ryšys:"; -"vc_path_device_row_title" = "Jūs"; -"vc_path_guard_node_row_title" = "Įėjimo mazgas"; -"vc_path_service_node_row_title" = "Aptarnavimo mazgas"; -"vc_path_destination_row_title" = "Paskirties vieta"; -"vc_path_learn_more_button_title" = "Sužinoti daugiau"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skenuoti QR kodą"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Įveskite grupės pavadinimą"; -"vc_create_closed_group_empty_state_message" = "Kol kas neturite jokių adresatų"; -"vc_create_closed_group_group_name_missing_error" = "Įveskite grupės pavadinimą"; -"vc_create_closed_group_group_name_too_long_error" = "Įveskite trumpesnį grupės pavadinimą"; -"vc_create_closed_group_too_many_group_members_error" = "Uždaroje grupėje negali būti daugiau kaip 100 narių"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skenuoti QR kodą"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Nustatymai"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Pasirinkite rodomą vardą"; -"vc_settings_display_name_too_long_error" = "Pasirinkite trumpesnį rodomą vardą"; -"vc_settings_privacy_button_title" = "Privatumas"; -"vc_settings_notifications_button_title" = "Pranešimai"; -"vc_settings_recovery_phrase_button_title" = "Atkūrimo frazė"; -"vc_settings_clear_all_data_button_title" = "Išvalyti duomenis"; -"vc_qr_code_title" = "QR kodas"; -"vc_qr_code_view_my_qr_code_tab_title" = "Rodyti mano QR kodą"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skenuoti QR kodą"; -"vc_qr_code_view_scan_qr_code_explanation" = "Nuskenuokite kieno nors QR kodą, kad pradėtumėte su juo pokalbį"; -"vc_view_my_qr_code_explanation" = "Tai yra jūsų QR kodas. Kiti naudotojai gali jį nuskenuoti, kad pradėtų su jumis pokalbio seansą."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Jums bus nedelsiant ir patikimai pranešama apie naujas žinutes, naudojant „Apple“ pranešimų serverius."; -"fast_mode" = "Greita veiksena"; -"slow_mode_explanation" = "Session programėlė retkarčiais fone tikrins, ar yra naujų žinučių."; -"slow_mode" = "Lėta veiksena"; -"vc_pn_mode_title" = "Pranešimai apie žinutes"; -"vc_link_device_recovery_phrase_tab_title" = "Atkūrimo frazė"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Atkūrimo frazė"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Įveskite Session ID arba ONS vardą"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Arba prisijunkite prie vienos iš šių..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Nukopijuota"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopijuoti Session ID"; -"vc_conversation_input_prompt" = "Žinutė"; -"vc_conversation_voice_message_cancel_message" = "Perbraukite, norėdami atsisakyti"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Atsisiųsti"; -"modal_open_url_title" = "Atverti URL nuorodą?"; -"modal_open_url_explanation" = "Ar tikrai norite atverti %@?"; -"modal_open_url_button_title" = "Atverti"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Atblokuoti %@?"; -"modal_blocked_explanation" = "Ar tikrai norite atblokuoti %@?"; -"modal_blocked_button_title" = "Atblokuoti"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Įjungti"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Ruošiami priedai..."; -"vc_share_sending_message" = "Siunčiama..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Pakvietimas į atvirą grupę"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Išvalyti visus duomenis"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Jūsų atkūrimo frazė"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/lv.lproj/Localizable.strings b/Session/Meta/Translations/lv.lproj/Localizable.strings deleted file mode 100644 index d1ef83a3ce..0000000000 --- a/Session/Meta/Translations/lv.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Pielikums"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Paraksts"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Faila paplašinājums: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Izmērs: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Sasniegts ziņojuma garuma ierobežojums"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Nosūtīt"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Pielikums"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Pielikuma nosūtīšana neizdevās"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Nevar konvertēt attēlu."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Nevar apstrādāt video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Nevar analizēt attēlu."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nav iespējams noņemt metadatus no attēla."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nevar mainīt attēla izmēru."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Pielikums ir pārāk liels."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Pielikumā ir ietverts nederīgs saturs."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Pielikumam ir nederīgs faila formāts."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Pielikums ir tukšs."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Neizdevās izvēlēties dokumentu."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Lūdzu, izveido šīs datnes vai mapes saspiestu arhīvu un mēģini nosūtīt to."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Fails nav atbalstīts"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Balss ziņojums"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloķēt"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloķēt %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Atbloķēt %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Atbloķēt"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ tika bloķēts."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Lietotājs bloķēts"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ tika bloķēts."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Bloķētie lietotāji nevarēs tev piezvanīt vai nosūtīt ziņojumu."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Pabeigts"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Atlasīt"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Meklē..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Sakritību nav"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 sakritība"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d sakritība no %d"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloķēt šo lietotāju"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Izslēgt Skaņu"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Meklēt sarunu"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Pārvietot un mainīt izmēru"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Var paiet dažas minūtes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizē datu bāzi"; -/* The present; the current time. */ -"DATE_NOW" = "Tagad"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Gaistošie ziņojumi"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Rediģēt grupu"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Šajā sarunā tev nav neviena medija."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Ielādē jaunāku mediju…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Ielādē vecāku mediju…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Pieprasītais GIF netika saņemts. Lūdzu pārbaudi, vai esi tiešsaistē."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Radusies nezināma kļūda."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF nevar tikt izvēlēts"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Lūdzu ievadi savu meklējumu."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Kļūda. Klikšķini, lai mēģinātu vēlreiz."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nekas netika atrasts."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupa ir izveidota"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "Grupai pievienojās %@. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ atstāja grupu. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ tika noņemts no grupas. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ tika noņemti no grupas. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Jaunais nosaukums ir '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupas informācija atjaunināta."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Tu esi atstājis grupu."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Tu tiki noņemts no grupas. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Tu nevari atzīmēt vairāk, kā %@ vienumus."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Neizdevās atzīmēt pielikumu."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Neatbalstīts audio fails."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Atstāt"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Atstāt grupu"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Visi mediji"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Dzēst %d ziņojumus"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Dzēst ziņojumu"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Tu"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Šomēnes"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Nosūtīšana neizdevās."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Izlasīts"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sūta…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Nosūtīts"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Augšupielādē…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ no %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Ziņojums man"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Tu varētu būt saņēmis ziņojumus, kamēr %@ pārstartējās."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Labi"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ir atspējojis gaistošos ziņojumus."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ir uzstādījis gaistošos ziņojumus uz %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nevar satvert attēlu."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nevar satvert attēlu."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Kameru neizdevās uzstādīt."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Nenosaukts albums"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Atzīmēt kā izlasītu"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Atbildēt"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentificēties, lai atvērtu Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autentifikācija neizdevās"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Izmest medijus?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Izmest medijus"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (noklusējums)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Ziņojuma skaņa"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Neviena"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dienas"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d."; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ stundas"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@st."; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minūtes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@min."; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekundes"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@sek."; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ diena"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ stunda"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minūte"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ nedēļa"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ nedēļas"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@ned."; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Atcelt"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Dzēst"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Balss ziņojums"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Pieskaries un turi, lai ierakstītu ziņojumu."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Balss ziņojums"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Tu atspējoji gaistošos ziņojumus."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Tu uzstādīji gaistošo ziņojumu laiku uz %@"; -// MARK: - Session -"continue_2" = "Turpināt"; -"copy" = "Kopēt"; -"invalid_url" = "Nepareiza URL adrese"; -"next" = "Nākamais"; -"share" = "Dalīties"; -"invalid_session_id" = "Nepareizs Session ID"; -"cancel" = "Atcelt"; -"your_session_id" = "Tavs Session ID"; -"vc_landing_title_2" = "Tavs sesija sākas šeit..."; -"vc_landing_register_button_title" = "Izveidot Session ID"; -"vc_landing_restore_button_title" = "Turpini savu sesiju"; -"vc_landing_link_button_title" = "Pievienot iekārtu"; -"view_fake_chat_bubble_1" = "Kāda sesija?"; -"view_fake_chat_bubble_2" = "Šī ir decentralizētas, šifrētas ziņojumapmaiņas aplikācija"; -"view_fake_chat_bubble_3" = "Tātad, tā nevāc manu personīgo informāciju vai manu sarunu metadatus? Kā tā darbojas?"; -"view_fake_chat_bubble_4" = "Lietojot īpašas anonīmas maršrutēšanas un no gala līdz galam šifrēšanas tehnoloģijas."; -"view_fake_chat_bubble_5" = "Draugi neļauj draugiem izmantot kompromitētus ziņojumapmaiņas rīkus. Nav par ko."; -"vc_register_title" = "Saki \"sveiks!\" savam Session ID"; -"vc_register_explanation" = "Tavs Session ID ir unikāla adrese, ko cilvēki var lietot, lai sazinātos ar tevi Session. Ja neapvieno Session ID ar tavu reālo identitāti, tad tas ir anonīms un privāts pēc dizaina."; -"vc_restore_title" = "Atjauno savu kontu"; -"vc_restore_explanation" = "Lai atjaunotu savu kontu, ievadi atjaunošanas frāzi, kuru tu saņēmi reģistrējoties."; -"vc_restore_seed_text_field_hint" = "Ievadi savu atjaunošanas frāzi"; -"vc_link_device_title" = "Pievienot iekārtu"; -"vc_link_device_scan_qr_code_tab_title" = "Skenēt QR kodu"; -"vc_display_name_title_2" = "Izvēlies savu atainojamo vārdu"; -"vc_display_name_explanation" = "Šis būs tavs vārds Session lietošanai. Tas var būt tavs īstais vārds, pseidonīms, vai jebkas, kas vien tev patīk."; -"vc_display_name_text_field_hint" = "Ievadi atainojamo vārdu"; -"vc_display_name_display_name_missing_error" = "Lūdzu, izvēlies atainojamo vārdu"; -"vc_display_name_display_name_too_long_error" = "Lūdzu, izvēlies īsāku atainojamo vārdu"; -"vc_pn_mode_recommended_option_tag" = "Ieteicamais"; -"vc_pn_mode_no_option_picked_modal_title" = "Lūdzu, izvēlies opciju"; -"vc_home_empty_state_message" = "Patreiz Tev nav neviena kontakta"; -"vc_home_empty_state_button_title" = "Uzsākt sesiju"; -"vc_seed_title" = "Tava atjaunošanas frāze"; -"vc_seed_title_2" = "Iepazīsties ar savu atjaunošanas frāzi"; -"vc_seed_explanation" = "Atjaunošanas frāze ir galvenā atslēga tavam Session ID - tu vari to izmantot, lai atjaunotu savu Session ID gadījumā, ja zaudē piekļuvi savai ierīcei. Saglabā savu atjaunošanas frāzi drošā vietā un nenodod to nevienam."; -"vc_seed_reveal_button_title" = "Turi lai atklātu"; -"view_seed_reminder_subtitle_1" = "Aizsargā savu kontu, saglabājot savu atjaunošanas frāzi"; -"view_seed_reminder_subtitle_2" = "Pieskaries un turi rediģētos vārdus, lai atklātu savu atjaunošanas frāzi, tad noglabā to drošā vietā lai aizsargātu savu Session ID."; -"view_seed_reminder_subtitle_3" = "Pārliecinies, ka glabā savu atjaunošanas frāzi drošā vietā"; -"vc_path_title" = "Ceļš"; -"vc_path_explanation" = "Session slēpj tavu IP adresi, maršrutējot tavus ziņojumus caur vairākiem pakalpojuma mezgliem Session decentralizētajā tīklā. Patreiz tavs savienojums tiek maršrutēts caur šādām valstīm:"; -"vc_path_device_row_title" = "Tu"; -"vc_path_guard_node_row_title" = "Ieejas mezgls"; -"vc_path_service_node_row_title" = "Pakalpojuma mezgls"; -"vc_path_destination_row_title" = "Galamērķis"; -"vc_path_learn_more_button_title" = "Uzzināt vairāk"; -"vc_create_private_chat_title" = "Jauna ziņa"; -"vc_create_private_chat_enter_session_id_tab_title" = "Ievadīt Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skenēt QR kodu"; -"vc_enter_public_key_explanation" = "Sāciet jaunu sarunu ievadot kāda lietotāja Session ID vai kopīgojiet ar viņu savu Sessions ID."; -"vc_scan_qr_code_camera_access_explanation" = "Lai skenētu QR kodus, Session ir nepieciešama piekļuve kamerai"; -"vc_create_closed_group_title" = "Izveidot grupu"; -"vc_create_closed_group_text_field_hint" = "Ievadīt grupas nosaukumu"; -"vc_create_closed_group_empty_state_message" = "Patreiz Tev nav neviena kontakta"; -"vc_create_closed_group_group_name_missing_error" = "Lūdzu, ievadiet grupas nosaukumu"; -"vc_create_closed_group_group_name_too_long_error" = "Lūdzu, ievadiet īsāku grupas nosaukumu"; -"vc_create_closed_group_too_many_group_members_error" = "Slēgtajā grupā nedrīkst būt vairāk par 100 dalībniekiem"; -"vc_join_public_chat_title" = "Pievienoties kopienai"; -"vc_join_public_chat_enter_group_url_tab_title" = "Kopienas URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skenēt QR kodu"; -"vc_enter_chat_url_text_field_hint" = "Ievadiet kopienas URL"; -"vc_settings_title" = "Iestatījumi"; -"vc_group_settings_title" = "Grupas iestatījumi"; -"vc_settings_display_name_missing_error" = "Lūdzu, izvēlies atainojamo vārdu"; -"vc_settings_display_name_too_long_error" = "Lūdzu, izvēlies īsāku atainojamo vārdu"; -"vc_settings_privacy_button_title" = "Privātums"; -"vc_settings_notifications_button_title" = "Paziņojumi"; -"vc_settings_recovery_phrase_button_title" = "Atjaunošanas frāze"; -"vc_settings_clear_all_data_button_title" = "Izdzēst datus"; -"vc_qr_code_title" = "QR kods"; -"vc_qr_code_view_my_qr_code_tab_title" = "Skatīt manu QR kodu"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skenēt QR kodu"; -"vc_qr_code_view_scan_qr_code_explanation" = "Lai uzsāktu ar kādu sarunu, noskenē viņa QR kodu"; -"vc_view_my_qr_code_explanation" = "Šis ir tavs QR kods. Lai uzsāktu sesiju ar tevi, citi lietotāji var noskenēt to."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Tu saņemsi paziņojumus par jauniem ziņojumiem droši un nekavējoties, izmantojot Apple paziņojumu pakalpojumus."; -"fast_mode" = "Ātrais režīms"; -"slow_mode_explanation" = "Session laiku pa laikam fonā pārbaudīs, vai nav jaunu ziņojumu."; -"slow_mode" = "Lēnais režīms"; -"vc_pn_mode_title" = "Paziņojumi par ziņojumiem"; -"vc_link_device_recovery_phrase_tab_title" = "Atjaunošanas frāze"; -"vc_link_device_scan_qr_code_explanation" = "Lai parādītu QR kodu, savā citā ierīcē izvēlies Iestatījumi -> Atjaunošanas frāze."; -"vc_enter_recovery_phrase_title" = "Atjaunošanas frāze"; -"vc_enter_recovery_phrase_explanation" = "Lai pievienotu savu iekārtu, ievadi atjaunošanas frāzi, kuru tu saņēmi reģistrējoties."; -"vc_enter_public_key_text_field_hint" = "Ievadi Session ID vai ONS nosaukumu"; -"admin_group_leave_warning" = "Ņemot vērā, ka Tu esi šīs grupas izveidotājs, tā tiks dzēsta visiem. Šo darbību nevarēs atsaukt."; -"vc_join_open_group_suggestions_title" = "Vai pievienojies kādai no šīm..."; -"vc_settings_invite_a_friend_button_title" = "Uzaicināt draugu"; -"copied" = "Nokopēts"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopēt Session ID"; -"vc_conversation_input_prompt" = "Ziņojums"; -"vc_conversation_voice_message_cancel_message" = "Velc, lai atceltu"; -"modal_download_attachment_title" = "Uzticēties %@?"; -"modal_download_attachment_explanation" = "Vai esi pārliecināts, ka vēlies lejupielādēt mediju, ko atsūtījis %@?"; -"modal_download_button_title" = "Lejupielādēt"; -"modal_open_url_title" = "Atvērt URL adresi?"; -"modal_open_url_explanation" = "Vai esi pārliecināts, ka vēlies atvērt %@?"; -"modal_open_url_button_title" = "Atvērt"; -"modal_copy_url_button_title" = "Kopēt Saiti"; -"modal_blocked_title" = "Atbloķēt %@?"; -"modal_blocked_explanation" = "Vai esi pārliecināts, ka vēlies atbloķēt %@?"; -"modal_blocked_button_title" = "Atbloķēt"; -"modal_link_previews_title" = "Iespējot saišu priekšskatījumus?"; -"modal_link_previews_explanation" = "Saišu priekšskatījumu iespējošana parādīs URL, kuras tu sūti vai saņem. Tas var būt noderīgi, taču Session būs jāsazinās ar saistītajām interneta vietnēm, lai atainotu šos priekšskatījumus. Tu vari vienmēr atspējot saišu priekšskatījumus Session uzstādījumos."; -"modal_link_previews_button_title" = "Iespējot"; -"vc_share_title" = "Dalīties ar Session"; -"vc_share_loading_message" = "Sagatavo pielikumus..."; -"vc_share_sending_message" = "Sūta..."; -"vc_share_link_previews_unsecure" = "Priekšskatījums nav ielādēts nedrošai saitei"; -"vc_share_link_previews_error" = "Nevar ielādēt priekšskatījumu"; -"vc_share_link_previews_disabled_title" = "Saites priekšskatījumi atspējoti"; -"vc_share_link_previews_disabled_explanation" = "Ieslēdzot saites priekšskatījumus, tiks rādīti kopīgoto URL priekšskati. Tas var būt noderīgi, taču Session būs jāsazinās ar saistītajām vietnēm, lai ģenerētu priekšskatījumus.\n\nSaites priekšskatījumus varat iespējot Session iestatījumos."; -"view_open_group_invitation_description" = "Atvērtās grupas uzaicinājums"; -"vc_conversation_settings_invite_button_title" = "Pievienot dalībniekus"; -"modal_send_seed_title" = "Brīdinājums"; -"modal_send_seed_explanation" = "Šī ir tava atjaunošanas frāze. Ja kādam to nosūtīsi, tad viņš iegūs pilnas piekļuves tiesības tavam kontam."; -"modal_send_seed_send_button_title" = "Nosūtīt"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Paziņot tikai pieminēšanas gadījumā"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Ja iespējots, tev tiks paziņots tikai par ziņojumiem, kuros esi pieminēts."; -"view_conversation_title_notify_for_mentions_only" = "Paziņot tikai pieminēšanas gadījumā"; -"message_deleted" = "Šis ziņojums tika izdzēsts"; -"delete_message_for_me" = "Dzēst tikai man"; -"delete_message_for_everyone" = "Dzēst visiem"; -"delete_message_for_me_and_recipient" = "Dzēst man un %@"; -"context_menu_reply" = "Atbildēt"; -"context_menu_save" = "Saglabāt"; -"context_menu_ban_user" = "Aizliegt lietotāju"; -"context_menu_ban_and_delete_all" = "Aizliegt un izdzēst visu"; -"context_menu_ban_user_error_alert_message" = "Lietotāju bloķēt neizdevās"; -"accessibility_expanding_attachments_button" = "Pievienot pielikumus"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokuments"; -"accessibility_library_button" = "Attēlu bibliotēka"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Sakļaut pielikumu iespējas"; -"invalid_recovery_phrase" = "Atjaunošanas frāze nav pareiza"; -"DISMISS_BUTTON_TEXT" = "Noraidīt"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Iestatījumi"; -"call_outgoing" = "Jūs zvanījāt %@"; -"call_incoming" = "Jums zvanīja %@"; -"call_missed" = "Neatbildēts zvans no %@"; -"APN_Message" = "Jums ir jauna ziņa."; -"APN_Collapsed_Messages" = "Jums ir %@ jaunas ziņas."; -"PIN_BUTTON_TEXT" = "Piespraust"; -"UNPIN_BUTTON_TEXT" = "Atspraust"; -"modal_call_missed_tips_title" = "Neatbildēts zvans"; -"modal_call_missed_tips_explanation" = "Jūs palaidāt zvanu no ‘%@' jo konfidencialitātes iestatījumos bija jāaktivizē atļauja \"Balss un video zvani\"."; -"media_saved" = "Multividi saglabāja %@."; -"screenshot_taken" = "%@ veica ekrānuzņēmumu."; -"SEARCH_SECTION_CONTACTS" = "Kontakti un grupas"; -"SEARCH_SECTION_MESSAGES" = "Ziņojumi"; -"MESSAGE_REQUESTS_TITLE" = "Ziņu pieprasījumi"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nav gaidošu ziņojumu pieprasījumu"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Notīrīt visu"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Vai esat pārliecināts, ka vēlaties dzēst visu ziņu pieprasījumus un grupu uzaicinājumus?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Notīrīt"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Vai jūs esat pārliecināti ka vēlaties nodzēst šo ziņu?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Vai tiešām vēlaties bloķēt šo kontaktu?"; -"MESSAGE_REQUESTS_INFO" = "Nosūtot ziņu šim lietotājam, automātiski tiks pieņemts viņa ziņu pieprasījums un atklāts Jūsu Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Jūsu ziņojuma pieprasījums tika pieņemts."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Jums ir jauns ziņojuma pieprasījums"; -"TXT_HIDE_TITLE" = "Slēpt"; -"TXT_DELETE_ACCEPT" = "Pieņemt"; -"TXT_BLOCK_USER_TITLE" = "Bloķēt lietotāju"; -"ALERT_ERROR_TITLE" = "Kļūda"; -"modal_call_permission_request_title" = "Nepieciešama zvanu atļauja"; -"modal_call_permission_request_explanation" = "Jūs varat atļaut 'Bals un Video zvanus' privātuma iestatījumos."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ups, notika kļūda"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Lūdzu, mēģiniet vēlreiz vēlāk"; -"LOADING_CONVERSATIONS" = "Ielādē sarakstes..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Sūtīt"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Mēģināt vēlreiz"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Lūdzu pārbaudiet savu Sassion ID un mēģiniet vēlreiz."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Priekšmeti"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Nesen izmantotie"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Simboli"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Izdzēst visus datus"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "1 pakalpojuma mezglā dati netika dzēsti. Pakalpojuma mezgla ID %@."; -"dialog_clear_all_data_deletion_failed_2" = "Dati netika izdzēsti %@ pakalpojuma mezglos. Pakalpojuma mezgla ID %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Tava atjaunošanas frāze"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ne-NP.lproj/Localizable.strings b/Session/Meta/Translations/ne-NP.lproj/Localizable.strings deleted file mode 100644 index 394fe1b9e4..0000000000 --- a/Session/Meta/Translations/ne-NP.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "संम्लगन गर्नुहोस्"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "क्याप्शन"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "फाईलको प्रकार"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "आकार"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "सन्देश साइज सीमा पुग्यो।"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "पठाउनुहोस्"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "संम्लगन गर्नुहोस्"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "संलग्नहरु पठाउनमा त्रुटि।"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "कागजात छनौट गर्न असफल भयो।"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "कृपया यो फाईल वा डाइरेक्टरीको संकुचित संग्रह सिर्जना गर्नुहोस् वा अर्को पठौने प्रयास गर्नुहोस्।"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "असमर्थित फाइल"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "आवाज सन्देशहरू"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "ब्लक गर्नुहोस्"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "ब्लक्क गर्नुहोस् ।"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "अनब्लक गर्नुहोस्"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@रोकिएको छ"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "प्रयोगकर्ता ब्लक"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "अवरुद्ध प्रयोगकर्ताहरू तपाईंलाई कल गर्न वा सन्देशहरू पठाउन सक्षम छैनन्।"; -/* Label for generic done button. */ -"BUTTON_DONE" = "भयो"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "छन्नुहोस्।"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "कुनै मिलेन"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 मेल"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d को %d मिल्यो।"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "यस प्रयोगकर्तालाई ब्लक गर्नुहोस्"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "म्यूट गर्नुहोस्"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "कुराकानी खोज्नुहोस्"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "सार्नुहोस् र मापन गर्नुहोस्"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "यसले केहि मिनेट लिन सक्दछ।"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "डाटाबेस अनकुल पारिदै"; -/* The present; the current time. */ -"DATE_NOW" = "अहिले "; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "आफै मेटिने सन्देशहरू"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "समूह सम्पादन गर्नुहोस्"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "तपाईंसँग यस कुराकानीमा कुनै मिडिया छैन"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "नयाँ मिडिया लोड गर्दै"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "पुरानो मिडिया लोड हुँदै"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "अनुरोध गरिएको GIF प्राप्त गर्न असफल भयो। कृपया प्रमाणित गर्नुहोस् कि तपाईं अनलाइन हुनुहुन्छ।"; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "एउटा अज्ञात त्रुटि देखा पर्‍यो।"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF छनौट गर्न असक्षम"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "कृपया तपाईको खोज प्रविष्ट गर्नुहोस्"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "त्रुटि, पुन: प्रयास गर्न ट्याप गर्नुहोस्"; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "कुनै नतिजाहरू छैनन्"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "समूह सिर्जना भयो"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "शीर्षक अब %@ हो. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "समूह अद्यावधिक गरियो।"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "तपाईंले समूह छोड्नुभयो"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = "तपाईंलाई समूहबाट हटाइयो"; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "तपाईं %@ भन्दा बढी चिजहरु बाड्न सक्नुहुन्न "; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "अनुलग्नक चयन गर्न असफल।"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "अवैध अडियो फाईल"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "छोड्नुहोस"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "समुह छोड्नुहोस"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "सबै मिडिया"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "%D सन्देशहरू मेटाउनुहोस्"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "सन्देशहरू मेट्नुहोस्"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ मा %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "तपाईं"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "यो महिना"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "पठाउन असफल भयो।"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "पढिएको"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "… पठाउँदै"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sent"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploading…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note to Self"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "मिडिया त्याग्नुहोस्"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (पूर्वनिर्धारित)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Recommended"; -"vc_pn_mode_no_option_picked_modal_title" = "Please Pick an Option"; -"vc_home_empty_state_message" = "You don't have any contacts yet"; -"vc_home_empty_state_button_title" = "Start a Session"; -"vc_seed_title" = "Your Recovery Phrase"; -"vc_seed_title_2" = "Meet your recovery phrase"; -"vc_seed_explanation" = "Your recovery phrase is the master key to your Session ID — you can use it to restore your Session ID if you lose access to your device. Store your recovery phrase in a safe place, and don’t give it to anyone."; -"vc_seed_reveal_button_title" = "Hold to reveal"; -"view_seed_reminder_subtitle_1" = "Secure your account by saving your recovery phrase"; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Make sure to store your recovery phrase in a safe place"; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "You"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destination"; -"vc_path_learn_more_button_title" = "Learn More"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Enter Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/nl.lproj/Localizable.strings b/Session/Meta/Translations/nl.lproj/Localizable.strings deleted file mode 100644 index 361542c74f..0000000000 --- a/Session/Meta/Translations/nl.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Bijlage"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Bijschrift"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Bestand type: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Grootte: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Maximale berichtlengte bereikt"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Versturen"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Bijlage"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Versturen bijlage mislukt"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Afbeelding converteren mislukt."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Video converteren mislukt."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Afbeelding verwerken mislukt."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Metadata van afbeelding verwijderen mislukt."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Aanpassen formaat afbeelding mislukt."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Bijlage is te groot."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Bijlage bevat ongeldige inhoud."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Bijlage heeft een ongeldig bestandsformaat."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Bijlage is leeg."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Document kiezen mislukt."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Maak een gecomprimeerd archief aan van deze bestand of map en probeer dat te verzenden."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Niet-ondersteund bestand"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Spraakbericht"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokkeren"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blokkeer %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Deblokkeer %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Blokkering opheffen"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ is geblokkeerd."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Gebruiker Geblokkeerd"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ is gedeblokkeerd."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Geblokkeerde gebruikers zijn niet in staat om u te bellen of berichten te sturen."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Ok"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Selecteer"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Zoeken..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Geen overeenkomsten"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 overeenkomst"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d van de %d overeenkomsten"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Deze gebruiker blokkeren"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Dempen"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Zoek gesprek"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Verplaatsen en in grootte veranderen"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Dit kan een paar minuten duren."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimaliseer Database"; -/* The present; the current time. */ -"DATE_NOW" = "Nu"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Zelf-wissende berichten"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Groep bewerken"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "U heeft geen media in dit gesprek."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Nieuwere media laden…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Oudere media laden…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Het ophalen van de gevraagde GIF, is mislukt. Controleer of u online bent."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Er is een onbekende fout opgetreden."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Kan GIF-Bestand niet kiezen"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Vul alstublieft uw zoekopdracht in."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Fout. Tik om opnieuw te proberen."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Geen resultaten."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Groep aangemaakt"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Titel is nu '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Groep bijgewerkt."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "U heeft de groep verlaten."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Je bent verwijderd uit deze groep. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Je kunt niet meer dan %@ items delen."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Fout bij het selecteren van de bijlage."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ongeldig audio-bestand."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Verlaten"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Verlaat groep"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Alle media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Verwijder %d Berichten"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Verwijder bericht"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ op %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "U"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Deze maand"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Verzenden mislukt."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Lees"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Verzenden…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Verzonden"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploaden…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ naar %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Notitie aan mezelf"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "U heeft mogelijk berichten ontvangen terwijl u %@ opnieuw aan het opstarten was."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Begrepen"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ heeft zelf-wissende berichten uitgeschakeld."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ heeft de timer voor zelf-wissende berichten op %@ ingesteld"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Kan afbeelding niet vastleggen."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Kan afbeelding niet vastleggen."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Instellen van de camera mislukt."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Naamloze Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Markeer als gelezen"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Antwoord"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticeer om Session te openen."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Verificatie mislukt"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Media verwijderen?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Media verwijderen"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (standaard)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Geluid van bericht"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Geen"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dagen"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ uren"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minuten"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconden"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dag"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ uur"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuut"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weken"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Annuleren"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Wissen"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Spraakbericht"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Houd deze knop ingedrukt om een audio bericht te versturen."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Spraakbericht"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Je hebt zelf-wissende berichten uitgeschakeld."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "U heeft de timer voor zelf-wissende berichten op %@ ingesteld"; -// MARK: - Session -"continue_2" = "Doorgaan"; -"copy" = "Kopieer"; -"invalid_url" = "Ongeldige URL"; -"next" = "Volgende"; -"share" = "Delen"; -"invalid_session_id" = "Verkeerde Session ID"; -"cancel" = "Annuleren"; -"your_session_id" = "Uw Session-ID"; -"vc_landing_title_2" = "Uw Sessie begint hier..."; -"vc_landing_register_button_title" = "Session-ID aanmaken"; -"vc_landing_restore_button_title" = "Doorgaan met je sessie"; -"vc_landing_link_button_title" = "Koppel een apparaat"; -"view_fake_chat_bubble_1" = "Wat is Session?"; -"view_fake_chat_bubble_2" = "Het is een gedecentraliseerde, versleutelde berichten-app"; -"view_fake_chat_bubble_3" = "Dus het verzamelt niet mijn persoonlijke informatie of de metagegevens van mijn gesprek? Hoe werkt het?"; -"view_fake_chat_bubble_4" = "Met behulp van een combinatie van geavanceerde anonieme routing en end-to-end encryptietechnologieën."; -"view_fake_chat_bubble_5" = "Vrienden laten vrienden geen gecompromitteerde berichten apps gebruiken. Graag gedaan."; -"vc_register_title" = "Zeg hallo tegen uw Session-ID"; -"vc_register_explanation" = "Uw Session-ID is het unieke adres dat mensen kunnen gebruiken om contact met u op te nemen via Session. Zonder verbinding met je echte identiteit, is je Session-ID volledig anoniem en privé."; -"vc_restore_title" = "Account herstellen"; -"vc_restore_explanation" = "Voer de herstel zin in die je hebt gekregen toen je je hebt aangemeld om je account te herstellen."; -"vc_restore_seed_text_field_hint" = "Voer uw herstel zin in"; -"vc_link_device_title" = "Koppel een apparaat"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR-code"; -"vc_display_name_title_2" = "Kies je weergavenaam"; -"vc_display_name_explanation" = "Dit is je naam wanneer je Session gebruikt. Het kan je echte naam zijn, een alias, of wat je maar wilt."; -"vc_display_name_text_field_hint" = "Kies een weergavenaam"; -"vc_display_name_display_name_missing_error" = "Voer a. u. b. een weergave naam in"; -"vc_display_name_display_name_too_long_error" = "Kies een kortere weergavenaam"; -"vc_pn_mode_recommended_option_tag" = "Aanbevolen"; -"vc_pn_mode_no_option_picked_modal_title" = "Gelieve een optie selecteren"; -"vc_home_empty_state_message" = "U heeft nog geen contactpersonen"; -"vc_home_empty_state_button_title" = "Sessie starten"; -"vc_seed_title" = "Uw Herstel Zin"; -"vc_seed_title_2" = "Maak kennis met uw herstel zin"; -"vc_seed_explanation" = "Uw herstel zin is de hoofdsleutel van uw Session-ID - u kunt deze gebruiken om uw Session-ID te herstellen als u de toegang tot uw apparaat verliest. Sla uw herstel zin op een veilige plek op en geef deze aan niemand op."; -"vc_seed_reveal_button_title" = "Ingedrukt houden om te onthullen"; -"view_seed_reminder_subtitle_1" = "Beveilig je account door je herstel zin op te slaan"; -"view_seed_reminder_subtitle_2" = "Houd de aangepaste woorden ingedrukt om uw herstelzin te onthullen, en sla het vervolgens veilig op om uw Session-ID te beveiligen."; -"view_seed_reminder_subtitle_3" = "Zorg ervoor dat u uw herstel zin op een veilige plek opslaat"; -"vc_path_title" = "Locatie"; -"vc_path_explanation" = "Session verbergt uw IP door uw berichten te routeren via meerdere Service Nodes in het gedecentraliseerde netwerk van Session. Dit zijn de landen die uw verbinding momenteel doorvoert:"; -"vc_path_device_row_title" = "U"; -"vc_path_guard_node_row_title" = "Invoer node"; -"vc_path_service_node_row_title" = "Service node"; -"vc_path_destination_row_title" = "Bestemming"; -"vc_path_learn_more_button_title" = "Kom meer te weten"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Voer Session-ID in"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scan QR-code"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session heeft toegang nodig tot de camera om QR codes te scannen"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Vul een groepsnaam in"; -"vc_create_closed_group_empty_state_message" = "U heeft nog geen contactpersonen"; -"vc_create_closed_group_group_name_missing_error" = "Vul een groepsnaam in"; -"vc_create_closed_group_group_name_too_long_error" = "Vul a. u. b een kortere groepsnaam in"; -"vc_create_closed_group_too_many_group_members_error" = "Een gesloten groep kan niet meer dan 100 leden hebben"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR-code scannen"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Instellingen"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Voer a. u. b. een weergave naam in"; -"vc_settings_display_name_too_long_error" = "Kies een kortere weergavenaam"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Meldingen"; -"vc_settings_recovery_phrase_button_title" = "Herstel zin"; -"vc_settings_clear_all_data_button_title" = "Gegevens wissen"; -"vc_qr_code_title" = "QR-code"; -"vc_qr_code_view_my_qr_code_tab_title" = "Bekijk mijn QR-code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR-code scannen"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan iemands QR-code om een gesprek te beginnen"; -"vc_view_my_qr_code_explanation" = "Dit is je QR-code. Andere gebruikers kunnen deze scannen om een sessie met je te starten."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Je wordt op een betrouwbare en onmiddellijke manier op de hoogte gebracht van nieuwe berichten via Apple's notificatieservers."; -"fast_mode" = "Snelle Modus"; -"slow_mode_explanation" = "Sessie controleert af en toe op nieuwe berichten in de achtergrond."; -"slow_mode" = "Langzame modus"; -"vc_pn_mode_title" = "Berichtmeldingen"; -"vc_link_device_recovery_phrase_tab_title" = "Herstel zin"; -"vc_link_device_scan_qr_code_explanation" = "Navigeer naar Instellingen → Herstel zin op je andere apparaat om je QR-code te tonen."; -"vc_enter_recovery_phrase_title" = "Herstel zin"; -"vc_enter_recovery_phrase_explanation" = "Om je apparaat te koppelen, voer je de herstelzin in die je kreeg toen je je aanmeldde."; -"vc_enter_public_key_text_field_hint" = "Voer Session-ID of ONS naam in"; -"admin_group_leave_warning" = "Omdat u de maker van deze groep bent, wordt het voor iedereen verwijderd. Dit kan niet ongedaan worden gemaakt."; -"vc_join_open_group_suggestions_title" = "Of neem deel aan een van deze..."; -"vc_settings_invite_a_friend_button_title" = "Nodig een vriend uit"; -"copied" = "Gekopieerd"; -"vc_conversation_settings_copy_session_id_button_title" = "Session-ID kopiëren"; -"vc_conversation_input_prompt" = "Bericht"; -"vc_conversation_voice_message_cancel_message" = "Veeg om te annuleren"; -"modal_download_attachment_title" = "Vertrouw %@?"; -"modal_download_attachment_explanation" = "Weet je zeker dat je deze media van %@ wilt downloaden?"; -"modal_download_button_title" = "Downloaden"; -"modal_open_url_title" = "URL openen?"; -"modal_open_url_explanation" = "Weet u zeker dat u %@ wilt openen?"; -"modal_open_url_button_title" = "Openen"; -"modal_copy_url_button_title" = "Kopieer link"; -"modal_blocked_title" = "Blokkering opheffen voor %@?"; -"modal_blocked_explanation" = "Weet je zeker dat je %@ weer wilt toelaten?"; -"modal_blocked_button_title" = "Deblokkeren"; -"modal_link_previews_title" = "Linkvoorbeeld inschakelen?"; -"modal_link_previews_explanation" = "Link previews inschakelen zal previews tonen voor URLs die u verstuurt en ontvangt. Dit kan nuttig zijn, maar Session moet contact opnemen met gekoppelde websites om previews te genereren. U kunt links altijd uitschakelen in de Session’s-instellingen."; -"modal_link_previews_button_title" = "Inschakelen"; -"vc_share_title" = "Delen naar de Session"; -"vc_share_loading_message" = "Bijlagen voorbereiden..."; -"vc_share_sending_message" = "Aan het verzenden..."; -"vc_share_link_previews_unsecure" = "Voorbeeld kon niet geladen worden vanwege onveilige link"; -"vc_share_link_previews_error" = "Voorbeeld laden mislukt"; -"vc_share_link_previews_disabled_title" = "Link Voorbeelden Uitgeschakeld"; -"vc_share_link_previews_disabled_explanation" = "Link Voorbeelden inschakelen zal een voorbeeld van je gedeelde URL's tonen. Dit kan handig zijn, maar Session moet daarvoor de website van de Link in kwestie contacteren om een voorbeeld te kunnen genereren. \n\n Je kan Link Voorbeelden activeren in Session's instellingen."; -"view_open_group_invitation_description" = "Open groepsuitnodiging"; -"vc_conversation_settings_invite_button_title" = "Voeg deelnemers toe"; -"modal_send_seed_title" = "Waarschuwing"; -"modal_send_seed_explanation" = "Dit is je herstelzin. Als je het naar iemand stuurt hebben ze volledige toegang tot je account."; -"modal_send_seed_send_button_title" = "Verzenden"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Alleen melding bij vermeldingen"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Wanneer ingeschakeld, wordt u alleen op de hoogte gesteld voor berichten die u vermelden."; -"view_conversation_title_notify_for_mentions_only" = "Melding alleen voor vermeldingen"; -"message_deleted" = "Dit bericht is verwijderd"; -"delete_message_for_me" = "Verwijder alleen voor mij"; -"delete_message_for_everyone" = "Verwijder voor iedereen"; -"delete_message_for_me_and_recipient" = "Verwijderen voor mij en %@"; -"context_menu_reply" = "Antwoord"; -"context_menu_save" = "Opslaan"; -"context_menu_ban_user" = "Gebruiker verbannen"; -"context_menu_ban_and_delete_all" = "Blokkeer en verwijder alles"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Bijlage toevoegen"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Fotobibliotheek"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Bijlage-opties inklappen"; -"invalid_recovery_phrase" = "Ongeldig Herstelzin"; -"DISMISS_BUTTON_TEXT" = "Negeren"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Instellingen"; -"call_outgoing" = "Je belde %@"; -"call_incoming" = "%@ heeft je gebeld"; -"call_missed" = "Gemiste oproep van %@"; -"APN_Message" = "Je hebt een nieuw bericht."; -"APN_Collapsed_Messages" = "Je hebt een %@ nieuw bericht."; -"PIN_BUTTON_TEXT" = "Vastzetten"; -"UNPIN_BUTTON_TEXT" = "Losmaken"; -"modal_call_missed_tips_title" = "Oproep gemist"; -"modal_call_missed_tips_explanation" = "Oproep gemist van '%@' omdat je de 'Spraak- en video-oproep' permissie nodig hebt in de privacy-instellingen."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ heeft een schermafbeelding genomen."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Berichten"; -"MESSAGE_REQUESTS_TITLE" = "Berichtverzoeken"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Geen berichtverzoeken in behandeling"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Alles wissen"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Wissen"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Weet je zeker dat je dit bericht wilt verwijderen?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Uw berichtenverzoek is geaccepteerd."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Je hebt een nieuw berichtverzoek"; -"TXT_HIDE_TITLE" = "Verbergen"; -"TXT_DELETE_ACCEPT" = "Accepteren"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Toestemming vereist"; -"modal_call_permission_request_explanation" = "U kunt de machtiging 'Spraak- en video-oproepen' inschakelen in de privacy-instellingen."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, er is een fout opgedoken"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Probeer het later nog eens"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Wis alle gegevens"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Gegevens niet verwijderd door 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Gegevens niet verwijderd door %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Uw Herstel Zin"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/no.lproj/Localizable.strings b/Session/Meta/Translations/no.lproj/Localizable.strings deleted file mode 100644 index 5125ccc65b..0000000000 --- a/Session/Meta/Translations/no.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Vedlegg"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Bildetekst"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Filtype: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Størrelse: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Meldingsgrensen er nådd"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Send"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Vedlegg"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Feil ved sending av vedlegg"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Kan ikke konvertere bilde."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Kan ikke behandle video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Kan ikke behandle bilde."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Kan ikke fjerne metadata fra bilde."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Kan ikke endre størrelse på bilde."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Vedlegget er for stort."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Vedlegget inneholder ugyldig innhold."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Vedlegget har et ugyldig filformat."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Vedlegget er tomt."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Kunne ikke velge dokument."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Vennligst lag et komprimert arkiv av denne filen eller mappen, og prøv å sende det i stedet."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Filtypen støttes ikke"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Talemelding"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokker"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blokkere %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Opphev blokkering av %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Fjern blokkering"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ er blokkert."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Bruker blokkert"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Blokkeringen av %@ er fjernet."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blokkerte brukere vil ikke kunne ringe deg eller sende meldinger."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Ferdig"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Velg"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Ingen treff"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 treff"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d av %d treff"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokker denne brukeren"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Demp"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Søk i samtale"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Flytt og skaler"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Dette kan ta noen minutter."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimaliserer databasen"; -/* The present; the current time. */ -"DATE_NOW" = "Nå"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Tidsbegrensede Meldinger"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Redigere gruppe"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Du har ingen medier i denne samtalen."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Laster inn nyere medier…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Laster inn eldre medier…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Kunne ikke hente den valgte GIFen. Venligst sjekk forbindelsen din."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "En ukjent feil oppstod."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Kan ikke velge GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Vennligst skriv inn søkeord."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Feil. Trykk for å prøve på nytt."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Ingen resultater."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Gruppe opprettet"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ ble med i gruppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ forlot gruppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ ble fjernet fra guppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ ble fjernet fra gruppen. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Tittelen er nå '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Gruppe oppdatert."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Du har forlatt gruppen."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Du ble fjernet fra gruppen. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Du kan ikke dele mer enn %@ elementer."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Mislyktes i å legge til vedleggsfil."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ugyldig lydfil."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Forlat"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Forlat gruppe"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Alle medier"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Slett %d meldinger"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Slett Melding"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ på %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Du"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Denne Måneden"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sending mislyktes."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Les"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sender…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sendt"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Laster opp…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ til %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Egne notater"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Det er mulig du har mottatt meldinger mens din %@ startet på nytt."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ok"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ deaktiverte tidsbegrensede beskjeder."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ angitt melding tid til %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Klarte ikke ta bilde."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Klarte ikke ta bilde."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Konfigurering av kameraet mislyktes."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Navnløst bildealbum"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marker som lest"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Svar"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentiser for å åpne Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autentifisering mislyktes"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Forkast Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Forkast media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (standard)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Melding lyd"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Ingen"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dager"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ timer"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@t"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutter"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekunder"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dag"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ time"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minutt"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ uke"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ uker"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@u"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Avbryt"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Slett"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Talemelding"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Trykk og hold for å spille inn en talemelding."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Talemelding"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du slo av utløpstid for meldinger."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du angitt tid for å forsvinne melding til %@"; -// MARK: - Session -"continue_2" = "Fortsett"; -"copy" = "Kopier"; -"invalid_url" = "Ugyldig URL"; -"next" = "Neste"; -"share" = "Dele"; -"invalid_session_id" = "Ugyldig Session-ID"; -"cancel" = "Avbryt"; -"your_session_id" = "Din Session-ID"; -"vc_landing_title_2" = "Din Session begynner her..."; -"vc_landing_register_button_title" = "Opprette Session-ID"; -"vc_landing_restore_button_title" = "Fortsett din Session"; -"vc_landing_link_button_title" = "Koble til en enhet"; -"view_fake_chat_bubble_1" = "Hva er Session?"; -"view_fake_chat_bubble_2" = "Det er en desentralisert, kryptert meldingsapp"; -"view_fake_chat_bubble_3" = "Så den samler ikke inn mine personlige opplysninger eller mine samtalers metadata? Hvordan fungerer det?"; -"view_fake_chat_bubble_4" = "Ved hjelp av en kombinasjon av avansert, anonym meldingstransports-dirigering og ende-til-ende-krypteringsteknikk."; -"view_fake_chat_bubble_5" = "Venner lar ikke venner bruke kompromitterte meldingstjenester. Vel bekomme."; -"vc_register_title" = "Si hei til din Session-ID"; -"vc_register_explanation" = "Din Session-ID er den unike adressen folk kan bruke til å kontakte deg på Session. Uten noen kobling til din virkelige identitet, så er din Session-ID fullstendig anonym og privat i sin natur."; -"vc_restore_title" = "Gjenopprett din konto"; -"vc_restore_explanation" = "Tast inn gjenopprettingsfrasen du ble gitt da du registrerte deg, så du kan tilbakestille kontoen din."; -"vc_restore_seed_text_field_hint" = "Skriv inn din gjenopprettingsfrase"; -"vc_link_device_title" = "Koble til en enhet"; -"vc_link_device_scan_qr_code_tab_title" = "Skanne QR-kode"; -"vc_display_name_title_2" = "Velg ditt visningsnavn"; -"vc_display_name_explanation" = "Dette blir ditt navn når du bruker Session. Det kan være ditt virkelige navn, et alias, eller noe annet du liker."; -"vc_display_name_text_field_hint" = "Skriv inn et visningsnavn"; -"vc_display_name_display_name_missing_error" = "Vennligst velg et visningsnavn"; -"vc_display_name_display_name_too_long_error" = "Vennligst velg et kortere visningsnavn"; -"vc_pn_mode_recommended_option_tag" = "Anbefalt"; -"vc_pn_mode_no_option_picked_modal_title" = "Vennligst velg et alternativ"; -"vc_home_empty_state_message" = "Du har ingen kontakter ennå"; -"vc_home_empty_state_button_title" = "Start en økt"; -"vc_seed_title" = "Din gjenopprettingsfrase"; -"vc_seed_title_2" = "Hils på din gjenopprettingsfrase"; -"vc_seed_explanation" = "Din gjenopprettingsfrase er hovednøkkelen til din Session-ID – du kan bruke den til å gjenopprette din Session-ID hvis du mister tilgangen til din enhet. Lagre din gjenopprettingsfrase på et trygt sted, og gi den ikke til noen."; -"vc_seed_reveal_button_title" = "Hold nede for å få vist"; -"view_seed_reminder_subtitle_1" = "Sikre kontoen din ved å lagre din gjenopprettingsfrase"; -"view_seed_reminder_subtitle_2" = "Trykk og hold inne de overflødige ordene for å hente gjenopprettingsfrasen din, og lagre den trygt å sikre din Session-ID."; -"view_seed_reminder_subtitle_3" = "Pass på å lagre gjenopprettingsfrasen på et sikkert sted"; -"vc_path_title" = "Bane"; -"vc_path_explanation" = "Session skjuler din IP ved å sende meldingene dine gjennom flere Service Nodes i Sessions desentraliserte nettverk. Dette er landene din forbindelse er for øyeblikket i ferd med å returnere:"; -"vc_path_device_row_title" = "Du"; -"vc_path_guard_node_row_title" = "Inngangsnode"; -"vc_path_service_node_row_title" = "Tjenestenode"; -"vc_path_destination_row_title" = "Destinasjon"; -"vc_path_learn_more_button_title" = "Lær mer"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Skriv inn Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skann QR-kode"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session trenger kameratilgang for å skanne QR-koder"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Skriv inn et gruppenavn"; -"vc_create_closed_group_empty_state_message" = "Du har ingen kontakter ennå"; -"vc_create_closed_group_group_name_missing_error" = "Vennligst skriv inn et gruppenavn"; -"vc_create_closed_group_group_name_too_long_error" = "Vennligst velg et kortere gruppenavn"; -"vc_create_closed_group_too_many_group_members_error" = "En lukket gruppe kan ikke ha mer enn 100 medlemmer"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skann QR-kode"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Innstillinger"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Vennligst velg et visningsnavn"; -"vc_settings_display_name_too_long_error" = "Vennligst velg et kortere visningsnavn"; -"vc_settings_privacy_button_title" = "Personvern"; -"vc_settings_notifications_button_title" = "Varslinger"; -"vc_settings_recovery_phrase_button_title" = "Gjenopprettingsfrase"; -"vc_settings_clear_all_data_button_title" = "Fjern data"; -"vc_qr_code_title" = "QR-kode"; -"vc_qr_code_view_my_qr_code_tab_title" = "Vis min QR-kode"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skanne QR-kode"; -"vc_qr_code_view_scan_qr_code_explanation" = "Skanne en annen brukers QR-kode for å starte en samtale med dem"; -"vc_view_my_qr_code_explanation" = "Dette er din QR-kode. Andre brukere kan skanne den for å starte en økt med deg."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Du vil bli varslet om nye meldinger, pålitelighet og med en gang ved hjelp av Apple's varslingsserver."; -"fast_mode" = "Rask modus"; -"slow_mode_explanation" = "Session kommer nå og da til å sjekke etter nye meldinger i bakgrunnen."; -"slow_mode" = "Saktemodus"; -"vc_pn_mode_title" = "Meldingsvarslinger"; -"vc_link_device_recovery_phrase_tab_title" = "Gjenopprettingsfrase"; -"vc_link_device_scan_qr_code_explanation" = "Gå til Instillinger → Gjenopprettingsfrase på din enhet for å få vist din QR-kode."; -"vc_enter_recovery_phrase_title" = "Gjenopprettingsfrase"; -"vc_enter_recovery_phrase_explanation" = "For å lenke til din enhet, skriv inn gjenopprettingsfrasen som du ble gitt når du registrerte deg."; -"vc_enter_public_key_text_field_hint" = "Skriv inn Session-ID eller ONS-navn"; -"admin_group_leave_warning" = "Fordi du er skaperen av denne gruppen, vil den bli slettet for alle. Dette kan ikke gjøres om."; -"vc_join_open_group_suggestions_title" = "Eller slutt deg til en av disse..."; -"vc_settings_invite_a_friend_button_title" = "Inviter en venn"; -"copied" = "Kopiert"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopier Session-ID"; -"vc_conversation_input_prompt" = "Beskjed"; -"vc_conversation_voice_message_cancel_message" = "Dra for å avbryte"; -"modal_download_attachment_title" = "Stol på %@?"; -"modal_download_attachment_explanation" = "Er du sikker på at du vil laste ned medier sendt av %@?"; -"modal_download_button_title" = "Last ned"; -"modal_open_url_title" = "Åpne URL?"; -"modal_open_url_explanation" = "Er du sikker på at du vil åpne %@?"; -"modal_open_url_button_title" = "Åpne"; -"modal_copy_url_button_title" = "Kopier lenke"; -"modal_blocked_title" = "Fjern blokkeringen av %@?"; -"modal_blocked_explanation" = "Er du sikker på at du vil fjerne blokkeringen av %@?"; -"modal_blocked_button_title" = "Fjern blokkering"; -"modal_link_previews_title" = "Aktivere forhåndsvisning av lenker?"; -"modal_link_previews_explanation" = "Ved å skru på lenkeforhåndsvisning, vil du få forhåndsvist URL'er du sender og mottar. Dette kan være nyttig, men Session er nødt til å koble til websidene for å generere forhåndsvisninger. Du har alltid muligheten til å skru av lenkeforhåndsvisning i Session's innstillinger senere."; -"modal_link_previews_button_title" = "Aktiver"; -"vc_share_title" = "Dele til Session"; -"vc_share_loading_message" = "Forbereder vedlegg..."; -"vc_share_sending_message" = "Sender..."; -"vc_share_link_previews_unsecure" = "Forhåndsvisning ikke lastet inn for usikker lenke"; -"vc_share_link_previews_error" = "Kunne ikke laste inn forhåndsvisning"; -"vc_share_link_previews_disabled_title" = "Lenkeforhåndsvisning deaktivert"; -"vc_share_link_previews_disabled_explanation" = "Ved å skru på lenkeforhåndsvisning muligjøres forhåndsvisning av URL'er du deler. Dette kan være nyttig, men Session blir nødt til å koble seg til de lenkede websidene for å generere forhåndsvisninger.\n\nDu kan aktivere lenkeforhåndsvisning i Session's instillinger."; -"view_open_group_invitation_description" = "Åpne gruppeinvitasjon"; -"vc_conversation_settings_invite_button_title" = "Legg til medlemmer"; -"modal_send_seed_title" = "Advarsel"; -"modal_send_seed_explanation" = "Dette er din gjenopprettingsfrase. Om du sender den til noen vil de få full tilgang til din konto."; -"modal_send_seed_send_button_title" = "Sende"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Varsle kun når jeg blir omtalt"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Når aktivert vil du bare bli varslet når meldinger omtaler deg."; -"view_conversation_title_notify_for_mentions_only" = "Varsle kun når jeg blir omtalt"; -"message_deleted" = "Denne meldingen har blitt slettet"; -"delete_message_for_me" = "Slett kun hos meg"; -"delete_message_for_everyone" = "Slett hos alle"; -"delete_message_for_me_and_recipient" = "Slette hos meg og %@"; -"context_menu_reply" = "Svar"; -"context_menu_save" = "Lagre"; -"context_menu_ban_user" = "Utesteng bruker"; -"context_menu_ban_and_delete_all" = "Utesteng og slett alle"; -"context_menu_ban_user_error_alert_message" = "Ute av stand til å utestenge bruker"; -"accessibility_expanding_attachments_button" = "Legg til vedlegg"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Bildebiblioteket"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Skjul vedleggsalternativer"; -"invalid_recovery_phrase" = "Ugyldig frase for gjenoppretting"; -"DISMISS_BUTTON_TEXT" = "Avvis"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Innstillinger"; -"call_outgoing" = "Du ringte %@"; -"call_incoming" = "%@ ringte deg"; -"call_missed" = "Tapt anrop fra %@"; -"APN_Message" = "Du har fått en ny melding."; -"APN_Collapsed_Messages" = "Du har %@ nye meldinger."; -"PIN_BUTTON_TEXT" = "Fest"; -"UNPIN_BUTTON_TEXT" = "Løsne"; -"modal_call_missed_tips_title" = "Anrop tapt"; -"modal_call_missed_tips_explanation" = "Oppringing fra '%@' mislyktes fordi du trengte å aktivere 'Lyd- og videosamtaler'-tillatelsen i personvernsinnstillingene."; -"media_saved" = "Media lagret av %@."; -"screenshot_taken" = "%@ tok et skjermbilde."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Meldinger"; -"MESSAGE_REQUESTS_TITLE" = "Meldingsforespørsler"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Ingen ventende meldingsforespørsler"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Tøm alle"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Tøm"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Er du sikker på at du ønsker å slette denne meldingsforespørselen?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Er du sikker på at du ønsker å blokkere denne kontakten?"; -"MESSAGE_REQUESTS_INFO" = "Ved å sende en melding til denne brukeren medfører det at du automatisk godtar deres meldingsforespørsel og det avslører din Session-ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Din meldingsforespørsel har blitt godkjent."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Du har en ny meldingsforespørsel"; -"TXT_HIDE_TITLE" = "Skjule"; -"TXT_DELETE_ACCEPT" = "Godta"; -"TXT_BLOCK_USER_TITLE" = "Blokker bruker"; -"ALERT_ERROR_TITLE" = "Feilmelding"; -"modal_call_permission_request_title" = "Samtaletillatelser kreves"; -"modal_call_permission_request_explanation" = "Du kan aktivere \"Lyd- og videosamtaler\"-tillatelsene i personvernsinstillingene."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Uff da, det oppsto en feil"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Vennligst prøv igjen senere"; -"LOADING_CONVERSATIONS" = "Laster inn samtaler..."; -"DATABASE_MIGRATION_FAILED" = "En feil oppsto under database-optimaliseringen\n\nDu kan eksportere applikasjonsloggene dine for å kunne dele dem for feilsøking eller du kan gjenopprette enheten din\n\nAdvarsel: Ved å gjenopprette enheten din resulterer det i at du mister all data som er eldre enn to uker gamle"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Noe gikk galt. Vennligst sjekk gjenopprettingsfrasen din og prøv på nytt."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Det ser ut som du ikke skrev inn mange nok ord. Vennligst sjekk gjenopprettingsfrasen din og prøv på nytt."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Det ser ut til at du mangler det siste ordet i gjenopprettingsfrasen din. Vennligst sjekk det du skrev inn og prøv på nytt."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Det ser ut som det er et ugyldig ord i gjenopprettingsfrasen din. Vennligst sjekk det du skrev inn og prøv på nytt."; -"RECOVERY_PHASE_ERROR_FAILED" = "Din gjenopprettingsfrase kunne ikke bli verifisert. Vennligst sjekk det du skrev inn og prøv på nytt."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Kunne ikke få tilgang til autentiseringsfunksjonaliteten."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Autentisering feilet."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "For mange mislykkede autentiseringsforsøk. Prøv igjen senere."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Du må aktivere en kode i iOS-innstillingene dine for å kunne bruke låseskjermen."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Du må aktivere en kode i iOS-innstillingene dine for å kunne bruke låseskjermen."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Du må aktivere en kode i dine iOS-innstillinger for å kunne bruke låseskjermen."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Sende"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Prøv på nytt"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Vise samtale"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Meldingen din lot seg ikke sende."; -"INVALID_SESSION_ID_MESSAGE" = "Vennligst sjekk Session-ID'en og prøv på nytt."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Vennligst sjekk gjenopprettingsfrasen og prøv på nytt."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Dokumenter"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Du har ingen medier i denne samtalen."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Laster inn nyere dokument…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Laster inn eldre dokument…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktiviteter"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Dyr og natur"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flagg"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Mat og drikke"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objekter"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Nylig brukte"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smilemerker og folk"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symboler"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Reise og steder"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reagerer på meldingen med %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Og 1 annen har reagert %@ til denne meldingen."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Og %@ andre har reagert %@ til denne meldingen."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Fjern alle data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data ikke slettet av 1 tjenestenode. Tjenestenode-ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data ikke slettet av %@ tjenestenoder. Tjenestenode-ID'er: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Din gjenopprettingsfrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/pl.lproj/Localizable.strings b/Session/Meta/Translations/pl.lproj/Localizable.strings deleted file mode 100644 index ee7bd62c97..0000000000 --- a/Session/Meta/Translations/pl.lproj/Localizable.strings +++ /dev/null @@ -1,1133 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Załącznik"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Podpis"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Typ pliku: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Rozmiar: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Osiągnięto limit wiadomości."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Wyślij"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Załącznik"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Wystąpił błąd podczas wysyłania załącznika"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Nie można przekonwertować obrazu."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Nie można przetworzyć wideo."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Nie można przetworzyć załączonej grafiki."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nie można usunąć metadanych z obrazu."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nie można zmienić rozmiaru obrazu."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Załącznik jest za duży."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Załącznik zawiera nieprawidłową zawartość."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Załącznik ma nieprawidłowy format pliku."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Załącznik jest pusty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Nie udało się wybrać dokumentu."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Nieobsługiwany typ pliku. Spróbuj go skompresować przed ponownym wysyłaniem."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nieobsługiwany plik"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Wiadomość głosowa"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Zablokuj"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Zablokować %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Odblokować %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Odblokuj"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ został zablokowany."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Użytkownik zablokowany"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ został odblokowany."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Zablokowani użytkownicy nie będą mogli do Ciebie dzwonić ani wysyłać Ci wiadomości."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Gotowe"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Zaznacz"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Wyszukiwanie..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Brak wyników"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 wynik"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d z %d wyników"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Zablokuj tego użytkownika"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Wycisz"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Szukaj w konwersacji"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Przesuń i zmień wielkość"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "To może zająć kilka minut."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optymalizacja bazy danych"; -/* The present; the current time. */ -"DATE_NOW" = "Teraz"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Znikające wiadomości"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Edytuj grupę"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "W tej konwersacji nie ma plików."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Ładowanie nowszych mediów..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Ładowanie starszych mediów..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Nie udało się pobrać GIFu. Sprawdź połączenie z Internetem."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Wystąpił nieznany błąd."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nie udało się wybrać GIFa"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Wprowadź wyszukiwanie"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Błąd. Dotknij by ponowić."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Brak wyników"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupa została stworzona."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ dołączył(a) do grupy. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ opuścił(a) grupę. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ został usunięty z grupy. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ zostali usunięci z grupy. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Nowy tytuł to '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Zaktualizowano grupę."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Opuściłeś(aś) grupę."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Usunięto cię z grupy. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Nie można udostępnić więcej niż %@ multimediów."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nie udało się wybrać załącznika."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Niepoprawny plik dźwiękowy."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Opuść"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Opuść grupę"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Pliki"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Usunięto %d wiadomości"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Usuń wiadomość"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Ty"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Ten miesiąc"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Wysyłanie nie powiodło się."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Odczytana"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Wysyłanie..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Wysłano"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Wysyłanie..."; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ do %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Moje notatki"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Możliwe, że otrzymałeś wiadomości podczas restartowania %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ wyłączył(a) znikające wiadomości."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ustawił(a) znikające wiadomości na %@."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nie można wykonać zdjęcia."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nie można wykonać zdjęcia."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Nie można skonfigurować kamery."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Album bez nazwy"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Oznacz jako przeczytane"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Odpowiedz"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Uwierzytelnij, by używać Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Uwierzytelnianie nie powiodło się."; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Odrzucić Multimedia?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Odrzuć multimedia"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (domyślny)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Dźwięk wiadomości"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Brak"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dni"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ godz"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@g"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ min"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@min"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekund"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@sek"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dzień"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ godz"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ min"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ tydz"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ tyg"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@tyg"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Anuluj"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Usuń"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Wiadomość głosowa"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Dotknij i przytrzymaj, aby nagrać wiadomość głosową."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Wiadomość głosowa"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Wyłączono znikające wiadomości."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ustawiono czasomierz znikających wiadomości na %@."; -// MARK: - Session -"continue_2" = "Kontyntynuj"; -"copy" = "Kopiuj"; -"invalid_url" = "nieprawidłowy URL"; -"next" = "Kolejny"; -"share" = "Udostępnij"; -"invalid_session_id" = "Nieprawidłowy identyfikator Session"; -"cancel" = "Anuluj"; -"your_session_id" = "Twój identyfikator Session"; -"vc_landing_title_2" = "Twoja Session zaczyna się tutaj..."; -"vc_landing_register_button_title" = "Utwórz identyfikator Session"; -"vc_landing_restore_button_title" = "Kontynuuj swoją sesję"; -"vc_landing_link_button_title" = "Połącz z istniejącym kontem"; -"view_fake_chat_bubble_1" = "Jaka jest Session"; -"view_fake_chat_bubble_2" = "To zdecentralizowana, szyfrowana aplikacja do przesyłania wiadomości"; -"view_fake_chat_bubble_3" = "Więc nie zbiera moich danych osobowych ani metadanych z mojej rozmowy? Jak to działa?"; -"view_fake_chat_bubble_4" = "Wykorzystując połączenie zaawansowanych anonimowych tras i technologii szyfrowania end-to-end."; -"view_fake_chat_bubble_5" = "Znajomi nie pozwalają znajomym korzystać z zainfekowanych komunikatorów. Nie ma za co."; -"vc_register_title" = "Przywitaj się z identyfikatorem Session"; -"vc_register_explanation" = "Twój identyfikator Session to unikalny adres, za pomocą którego można się z Tobą kontaktować w Sesji. Bez połączenia z twoją prawdziwą tożsamością, identyfikator Session jest z założenia całkowicie anonimowy i prywatny."; -"vc_restore_title" = "Przywróć swoje konto"; -"vc_restore_explanation" = "Wprowadź frazę odzyskiwania, która została Ci przekazana podczas rejestracji w celu przywrócenia konta."; -"vc_restore_seed_text_field_hint" = "Wpisz swoją frazę odzyskiwania"; -"vc_link_device_title" = "Połącz urządzenie"; -"vc_link_device_scan_qr_code_tab_title" = "Skanuj kod QR"; -"vc_display_name_title_2" = "Wybierz swoją nazwę wyświetlaną"; -"vc_display_name_explanation" = "To będzie twoje imię, kiedy będziesz używać Sesji. Może to być twoje prawdziwe imię, alias lub cokolwiek innego, co lubisz."; -"vc_display_name_text_field_hint" = "Wprowadź wyświetlaną nazwe"; -"vc_display_name_display_name_missing_error" = "Wybierz wyświetlaną nazwę"; -"vc_display_name_display_name_too_long_error" = "Wybierz krótszą nazwę wyświetlaną"; -"vc_pn_mode_recommended_option_tag" = "Zalecana"; -"vc_pn_mode_no_option_picked_modal_title" = "Wybierz opcję"; -"vc_home_empty_state_message" = "Nie masz jeszcze żadnych kontaktów"; -"vc_home_empty_state_button_title" = "Rozpocznij sesję"; -"vc_seed_title" = "Twoja fraza odzyskiwania"; -"vc_seed_title_2" = "Poznaj swoją frazę odzyskiwania"; -"vc_seed_explanation" = "Twoja fraza odzyskiwania jest kluczem głównym do identyfikatora Session - możesz go użyć do przywrócenia identyfikatora Session, jeśli stracisz dostęp do urządzenia. Przechowuj swoją frazę odzyskiwania w bezpiecznym miejscu i nikomu jej nie udostępniaj."; -"vc_seed_reveal_button_title" = "Przytrzymaj, aby odsłonić"; -"view_seed_reminder_subtitle_1" = "Zabezpiecz swoje konto, zapisując frazę odzyskiwania"; -"view_seed_reminder_subtitle_2" = "Stuknij i przytrzymaj zredagowane słowa, aby odsłonić frazę odzyskiwania, a następnie przechowuj ją bezpiecznie, aby zabezpieczyć identyfikator Session."; -"view_seed_reminder_subtitle_3" = "Pamiętaj, aby przechowywać frazę odzyskiwania w bezpiecznym miejscu"; -"vc_path_title" = "Ścieżka"; -"vc_path_explanation" = "Sesja ukrywa Twój adres IP, odbijając wiadomości przez kilka węzłów usług w zdecentralizowanej sieci Session. Oto kraje, w których obecnie Twoje połączenie jest odbijane:"; -"vc_path_device_row_title" = "Ty"; -"vc_path_guard_node_row_title" = "Węzeł wejścia"; -"vc_path_service_node_row_title" = "Węzeł serwisowy"; -"vc_path_destination_row_title" = "Miejsce docelowe"; -"vc_path_learn_more_button_title" = "Dowiedz się więcej"; -"vc_create_private_chat_title" = "Nowa wiadomość"; -"vc_create_private_chat_enter_session_id_tab_title" = "Wpisz identyfikator Session"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skanowania QR code"; -"vc_enter_public_key_explanation" = "Rozpocznij nową rozmowę, wpisując czyjeś ID sesji lub udostępnij im swój identyfikator sesji."; -"vc_scan_qr_code_camera_access_explanation" = "Session wymaga dostępu do kamery aby skanować kody QR"; -"vc_create_closed_group_title" = "Utwórz Grupę"; -"vc_create_closed_group_text_field_hint" = "Wpisz nazwę grupy"; -"vc_create_closed_group_empty_state_message" = "Nie masz jeszcze żadnych kontaktów"; -"vc_create_closed_group_group_name_missing_error" = "Wpisz nazwę grupy"; -"vc_create_closed_group_group_name_too_long_error" = "Wprowadź krótszą nazwę grupy"; -"vc_create_closed_group_too_many_group_members_error" = "Grupa zamknięta nie może mieć więcej niż 100 członków"; -"vc_join_public_chat_title" = "Dołącz do społeczności"; -"vc_join_public_chat_enter_group_url_tab_title" = "Adres URL społeczności"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skanowania QR code"; -"vc_enter_chat_url_text_field_hint" = "Wprowadź adres URL społeczności"; -"vc_settings_title" = "Ustawienia"; -"vc_group_settings_title" = "Ustawienia Grupy"; -"vc_settings_display_name_missing_error" = "Wybierz wyświetlaną nazwę"; -"vc_settings_display_name_too_long_error" = "Wybierz krótszą nazwę wyświetlaną"; -"vc_settings_privacy_button_title" = "Prywatność"; -"vc_settings_notifications_button_title" = "Powiadomienia"; -"vc_settings_recovery_phrase_button_title" = "Fraza odzyskiwania"; -"vc_settings_clear_all_data_button_title" = "Wyczyść dane"; -"vc_qr_code_title" = "Kod QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Wyświetl mój kod QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skanowania QR code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Zeskanuj czyjś kod QR, aby rozpocząć z nim rozmowę"; -"vc_view_my_qr_code_explanation" = "To jest twój kod QR. Inni użytkownicy mogą go zeskanować, aby rozpocząć z tobą sesję."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Zostaniesz natychmiast powiadomiony o nowych wiadomościach w niezawodny sposób przy użyciu serwerów powiadomień Apple."; -"fast_mode" = "Tryb szybki"; -"slow_mode_explanation" = "Session będzie czasami sprawdzać w tle czy są nowe wiadomości."; -"slow_mode" = "Tryb wolny"; -"vc_pn_mode_title" = "Powiadomienia o wiadomości"; -"vc_link_device_recovery_phrase_tab_title" = "Fraza odzyskiwania"; -"vc_link_device_scan_qr_code_explanation" = "Przejdź do Ustawień → Fraza odzyskiwania na innym urządzeniu, aby wyświetlić kod QR."; -"vc_enter_recovery_phrase_title" = "Fraza odzyskiwania"; -"vc_enter_recovery_phrase_explanation" = "Aby powiązać te urządzenie, wpisz frazę odzyskiwania która została wyświetlona przy rejestracji."; -"vc_enter_public_key_text_field_hint" = "Wprowadź Session ID lub nazwę ONS"; -"admin_group_leave_warning" = "Ta grupa zostanie usunięta dla każdego ponieważ jesteś jej założycielem. Jest to nieodwracalne."; -"vc_join_open_group_suggestions_title" = "Lub dołącz do jednej z tych..."; -"vc_settings_invite_a_friend_button_title" = "Zaproś znajomego"; -"copied" = "Skopiowano"; -"vc_conversation_settings_copy_session_id_button_title" = "Skopiuj Session ID"; -"vc_conversation_input_prompt" = "Wiadomość"; -"vc_conversation_voice_message_cancel_message" = "Przesuń aby anulować"; -"modal_download_attachment_title" = "Zaufać %@?"; -"modal_download_attachment_explanation" = "Czy na pewno chcesz pobrać załacznik wysłany przez %@?"; -"modal_download_button_title" = "Pobierz"; -"modal_open_url_title" = "Otworzyć URL?"; -"modal_open_url_explanation" = "Czy na pewno chcesz otworzyć %@?"; -"modal_open_url_button_title" = "Otwórz"; -"modal_copy_url_button_title" = "Kopiuj odnośnik"; -"modal_blocked_title" = "Odblokować %@?"; -"modal_blocked_explanation" = "Czy na pewno chcesz odblokować %@?"; -"modal_blocked_button_title" = "Odblokuj"; -"modal_link_previews_title" = "Włączyć podgląd linków?"; -"modal_link_previews_explanation" = "Włączanie podglądów linków wyświetli podgląd dla adresów URL które wysyłasz i otrzymujesz. Może to być użyteczne, ale Session będzie musiał się połączyć ze stronami których linki wysyłasz aby wygenerować podgląd. Możesz zawsze wyłączyć podgląd linków w ustawieniach Session."; -"modal_link_previews_button_title" = "Włącz"; -"vc_share_title" = "Udostępnij w Session"; -"vc_share_loading_message" = "Przygotowywanie załączników..."; -"vc_share_sending_message" = "Wysyłanie..."; -"vc_share_link_previews_unsecure" = "Podgląd nie jest załadowany dla niezabezpieczonego linku"; -"vc_share_link_previews_error" = "Nie można załadować podglądu"; -"vc_share_link_previews_disabled_title" = "Podgląd linków wyłączony"; -"vc_share_link_previews_disabled_explanation" = "Włączanie podglądów linków wyświetli podgląd dla adresów URL, które udostępniasz. Może to być użyteczne, ale Session będzie musiał się połączyć, z których stronami linki wysyłasz, aby wygenerować podgląd. \n\nMożesz włączyć podgląd linków w ustawieniach Session."; -"view_open_group_invitation_description" = "Otwórz zaproszenie do grupy"; -"vc_conversation_settings_invite_button_title" = "Dodaj użytkowników"; -"modal_send_seed_title" = "Uwaga"; -"modal_send_seed_explanation" = "To jest Twoja fraza odzyskiwania. Jeśli wyślesz ją do kogoś, będzie miał pełny dostęp do Twojego konta."; -"modal_send_seed_send_button_title" = "Wyślij"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Powiadom tylko o wzmiankach"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Gdy włączone, będzie wysyłane powiadomienie tylko o wiadomościach które wspominają ciebie."; -"view_conversation_title_notify_for_mentions_only" = "Powiadomienie tylko o wzmiankach"; -"message_deleted" = "Ta wiadomość została usunięta"; -"delete_message_for_me" = "Usuń tylko dla mnie"; -"delete_message_for_everyone" = "Usuń dla wszystkich"; -"delete_message_for_me_and_recipient" = "Usuń dla mnie i %@"; -"context_menu_reply" = "Odpowiedz"; -"context_menu_save" = "Zapisz"; -"context_menu_ban_user" = "Zbanuj użytkownika"; -"context_menu_ban_and_delete_all" = "Zbanuj i usuń wszystko"; -"context_menu_ban_user_error_alert_message" = "Nie można zbanować użytkownika"; -"accessibility_expanding_attachments_button" = "Dodaj załączniki"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Galeria zdjęć"; -"accessibility_camera_button" = "Aparat"; -"accessibility_main_button_collapse" = "Zwiń opcje załączników"; -"invalid_recovery_phrase" = "Nieprawidłowa fraza odzyskiwania"; -"DISMISS_BUTTON_TEXT" = "Odrzuć"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Ustawienia"; -"call_outgoing" = "Zadzwoniłeś/aś do %@"; -"call_incoming" = "Użytkownik %@ dzwonił"; -"call_missed" = "Nieodebrane połączenie od %@"; -"APN_Message" = "Masz nową wiadomość"; -"APN_Collapsed_Messages" = "Masz %@ nowych wiadomości."; -"PIN_BUTTON_TEXT" = "Przypnij"; -"UNPIN_BUTTON_TEXT" = "Odepnij"; -"modal_call_missed_tips_title" = "Połączenie nieodebrane"; -"modal_call_missed_tips_explanation" = "Połączenie nieodebrane od '%@' ponieważ musisz włączyć uprawnienie 'Połączenia głosowe i wideo' w Ustawieniach Prywatności."; -"media_saved" = "Media zapisane przez %@."; -"screenshot_taken" = "%@ wykonał zrzut ekranu."; -"SEARCH_SECTION_CONTACTS" = "Kontakty i Grupy"; -"SEARCH_SECTION_MESSAGES" = "Wiadomości"; -"MESSAGE_REQUESTS_TITLE" = "Żądania wiadomości"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Brak oczekujących żądań wiadomości"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Wyczyść wszystko"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Wyczyść"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Czy na pewno chcesz usunąć to żądanie wiadomości?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Czy na pewno chcesz zablokować ten kontakt?"; -"MESSAGE_REQUESTS_INFO" = "Wysłanie wiadomości do tego użytkownika spowoduje automatyczne zaakceptowanie jego prośby o wiadomość i ujawnienie Twojego identyfikatora sesji."; -"MESSAGE_REQUESTS_ACCEPTED" = "Twoje żądanie wiadomości zostało zaakceptowane."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Masz nowe żądanie wiadomości"; -"TXT_HIDE_TITLE" = "Ukryj"; -"TXT_DELETE_ACCEPT" = "Zaakceptuj"; -"TXT_BLOCK_USER_TITLE" = "Zablokuj użytkownika"; -"ALERT_ERROR_TITLE" = "Błąd"; -"modal_call_permission_request_title" = "Wymagane uprawnienia połączenia"; -"modal_call_permission_request_explanation" = "Możesz włączyć uprawnienie 'Połączenia głosowe i wideo' w Ustawieniach Prywatności."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Wystąpił błąd"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Spróbuj ponownie później"; -"LOADING_CONVERSATIONS" = "Wczytywanie rozmów..."; -"DATABASE_MIGRATION_FAILED" = "Wystąpił błąd podczas optymalizacji bazy danych\n\nMożesz wyeksportować dziennik aplikacji, aby móc go udostępnić w celu rozwiązania problemu. Ewentualnie możesz przywrócić konto z frazy odzyskiwania\n\nOstrzeżenie: Przywracanie konta spowoduje utratę danych starszych niż dwa tygodnie"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Coś poszło nie tak. Sprawdź frazę odzyskiwania i spróbuj ponownie."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Wygląda na to, że nie wprowadziłeś wystarczającej ilości słów. Sprawdź swoją frazę odzyskiwania i spróbuj ponownie."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Wygląda na to, że brakuje Ci ostatniego słowa swojej frazy odzyskiwania. Proszę sprawdzić co wprowadziłeś i spróbować ponownie."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Wygląda na to, że w Twojej frazie odzyskiwania jest nieprawidłowe słowo. Sprawdź, co wprowadziłeś i spróbuj ponownie."; -"RECOVERY_PHASE_ERROR_FAILED" = "Twoja fraza odzyskiwania nie mogła zostać zweryfikowana. Proszę sprawdzić co wprowadziłeś i spróbować ponownie."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Nie udało się uzyskać dostępu do uwierzytelniania."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Uwierzytelnianie nie powiodło się."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Zbyt wiele błędnych logowań. Spróbuj później."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Musisz włączyć kod dostępu w ustawieniach systemu iOS, aby korzystać z blokady ekranu."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Aby korzystać z blokady ekranu, musisz włączyć kod dostępu w ustawieniach iOS."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Aby korzystać z blokady ekranu, musisz włączyć kod dostępu w ustawieniach iOS."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Wyślij"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Ponów"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Pokaż Czat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Twoja wiadomość nie została wysłana."; -"INVALID_SESSION_ID_MESSAGE" = "Proszę sprawdzić ID sesji i spróbować ponownie."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Proszę sprawdzić frazę odzyskiwania i spróbować ponownie."; -"MEDIA_TAB_TITLE" = "Multimedia"; -"DOCUMENT_TAB_TITLE" = "Dokumenty"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Nie masz żadnego dokumentu w tej rozmowie."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Wczytywanie nowego dokumentu…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Wczytywanie starszego dokumentu…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktywności"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Zwierzęta i Natura"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flagi"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Jedzenie i Napoje"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Obiekty"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Ostatnio używane"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Uśmiechy i Ludzie"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbole"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Podróże i Miejsca"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reaguje na wiadomość z %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "I jedna osoba zareagowała %@ na tę wiadomość."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "A %@ innych zareagowało %@ na tę wiadomość."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Zwolnij! Wysłałeś zbyt wiele reakcji emoji. Spróbuj ponownie wkrótce."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nowa rozmowa"; -"CREATE_GROUP_BUTTON_TITLE" = "Utwórz"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Dołącz"; -"PRIVACY_TITLE" = "Prywatność"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Zabezpieczenia ekranu"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Zablokuj Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Wymagaj Touch ID, Face ID lub kodu dostępu, aby odblokować Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Potwierdzenia odczytania"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Potwierdzenia przeczytania"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Wysyłaj potwierdzenia odczytu w czatach jeden do jednego."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Wskaźniki pisania"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Wskaźniki pisania"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Zobacz i udostępnij wskaźniki pisania w rozmowach indywidualnych."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Podgląd linków"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Wyślij podgląd linku"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generuj podgląd linków dla obsługiwanych adresów URL."; -"PRIVACY_SECTION_CALLS" = "Połączenia (Beta)"; -"PRIVACY_CALLS_TITLE" = "Połączenia głosowe i wideo"; -"PRIVACY_CALLS_DESCRIPTION" = "Umożliwia połączenia głosowe i wideo do i od innych użytkowników."; -"PRIVACY_CALLS_WARNING_TITLE" = "Połączenia głosowe i wideo (beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Twój adres IP jest widoczny dla partnera połączenia i serwera fundacji Oxen podczas korzystania z połączeń beta. Czy na pewno chcesz włączyć połączenia głosowe i wideo?"; -"NOTIFICATIONS_TITLE" = "Powiadomienia"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Strategia powiadomień"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Użyj trybu szybkiego"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Zostaniesz natychmiast powiadomiony o nowych wiadomościach w niezawodny sposób przy użyciu Serwerów Powiadomień Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Przejdź do ustawień powiadomień"; -"NOTIFICATIONS_SECTION_STYLE" = "Styl powiadomień"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Dźwięk"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Dźwięk, gdy aplikacja jest otwarta"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Treść powiadomienia"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informacje wyświetlane w powiadomieniach."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nazwa i treść"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Tylko nazwa"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Brak nazwy lub treści"; -"CONVERSATION_SETTINGS_TITLE" = "Rozmowy"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Przycinanie wiadomości"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Przytnij społeczności"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Usuń wiadomości starsze niż 6 miesięcy ze społeczności, które mają ponad 2000 wiadomości."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Wiadomości dźwiękowe"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Automatyczne odtwarzanie wiadomości audio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Automatyczne odtwarzanie kolejnych wiadomości dźwiękowych."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Zablokowane kontakty"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nie masz zablokowanych kontaktów."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Odblokuj"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Czy na pewno chcesz odblokować %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "ten kontakt"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Czy na pewno chcesz odblokować %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "i %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "i %d innych?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Odblokuj"; -"APPEARANCE_TITLE" = "Wygląd"; -"APPEARANCE_THEMES_TITLE" = "Motywy"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Kolor podstawowy"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Jak się masz?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Dobrze, dzięki. A ty?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Świetnie, dziękuję."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Automatyczny Tryb nocny"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Dopasuj ustawienia systemowe"; -"HELP_TITLE" = "Pomoc"; -"HELP_REPORT_BUG_TITLE" = "Zgłoś błąd"; -"HELP_REPORT_BUG_DESCRIPTION" = "Eksportuj swoje logi, a następnie prześlij plik za pomocą działu pomocy Sesji."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Eksportuj logi"; -"HELP_TRANSLATE_TITLE" = "Przetłumacz sesję"; -"HELP_FEEDBACK_TITLE" = "Chcielibyśmy poznać Twoją opinię"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Pomoc"; -"modal_clear_all_data_title" = "Wyczyść wszystkie dane"; -"modal_clear_all_data_explanation" = "Spowoduje to trwałe usunięcie wiadomości i kontaktów. Czy chcesz wyczyścić tylko to urządzenie, czy też usunąć dane z sieci?"; -"modal_clear_all_data_explanation_2" = "Czy na pewno chcesz usunąć swoje dane z sieci? Jeśli będziesz kontynuować, nie będziesz w stanie przywrócić swoich wiadomości lub kontaktów."; -"modal_clear_all_data_device_only_button_title" = "Wyczyść tylko urządzenie"; -"modal_clear_all_data_entire_account_button_title" = "Wyczyść urządzenie i sieć"; -"dialog_clear_all_data_deletion_failed_1" = "Dane nie zostały usunięte przez 1 węzeł usługowy. Identyfikator węzła: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Dane nie zostały usunięte przez %@ węzły usługowe. Identyfikatory węzłów: %@."; -"modal_clear_all_data_confirm" = "Wyczyść"; -"modal_seed_title" = "Twoja fraza odzyskiwania"; -"modal_seed_explanation" = "Możesz użyć frazy odzyskiwania, aby przywrócić swoje konto lub połączyć dodatkowe urządzenie."; -"modal_permission_explanation" = "Session potrzebuje dostępu %@, aby kontynuować. Możesz włączyć ten dostęp w ustawieniach iOS."; -"modal_permission_settings_title" = "Ustawienia"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofon"; -"modal_permission_library" = "biblioteka"; -"DISAPPEARING_MESSAGES_OFF" = "Wyłączone"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Wyłączone"; -"COPY_GROUP_URL" = "Skopiuj adres URL grupy"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontakty"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Proszę wybrać co najmniej 1 członka grupy"; -"GROUP_CREATION_PLEASE_WAIT" = "Proszę czekać na utworzenie grupy..."; -"GROUP_CREATION_ERROR_TITLE" = "Nie udało się utworzyć grupy"; -"GROUP_CREATION_ERROR_MESSAGE" = "Sprawdź swoje połączenie z internetem i spróbuj ponownie."; -"GROUP_UPDATE_ERROR_TITLE" = "Nie można zaktualizować grupy"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Nie można opuścić podczas dodawania lub usuwania innych członków."; -"GROUP_ACTION_REMOVE" = "Usuń"; -"GROUP_TITLE_MEMBERS" = "Członkowie"; -"GROUP_TITLE_FALLBACK" = "Grupa"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Możesz wysyłać wiadomości tylko do tych maskowanych identyfikatorów, które są wewnątrz społeczności"; -"DM_ERROR_INVALID" = "Proszę sprawdzić ID sesji lub nazwę ONS i spróbować ponownie"; -"COMMUNITY_ERROR_INVALID_URL" = "Proszę sprawdzić adres URL i spróbować ponownie."; -"COMMUNITY_ERROR_GENERIC" = "Nie można dołączyć"; -"DISAPPERING_MESSAGES_TITLE" = "Znikające wiadomości"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Usuń typ"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Zniknij po przeczytaniu"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Wiadomości kasują się po ich przeczytaniu."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Zniknij po wysłaniu"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Wiadomości usuwane po ich wysłaniu."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Minutnik"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Zapisz"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "To ustawienie dotyczy wszystkich w tej rozmowie."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "To ustawienie dotyczy wszystkich w tej konwersacji. Tylko administratorzy grupy mogą zmienić to ustawienie."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ ustawił(a) znikające wiadomości na %@ po tym, jak były %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ ustawił(a) znikające wiadomości na %@ po tym, jak były %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ wyłączył znikające wiadomości"; - -/* context_menu_info */ -"context_menu_info" = "Informacje"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Wystąpił błąd podczas optymalizacji bazy danych\n\nMożesz wyeksportować dziennik aplikacji, aby móc go udostępnić w celu rozwiązania problemu. Ewentualnie możesz przywrócić konto z frazy odzyskiwania\n\nOstrzeżenie: Przywracanie konta spowoduje utratę danych starszych niż dwa tygodnie"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "Aplikacja zajmuje dużo czasu do uruchomienia\n\nMożesz nadal czekać na uruchomienie aplikacji lub wyeksportuj dzienniki aplikacji, aby udostępnić w celu rozwiązywania problemów i możesz spróbować ponownie otworzyć aplikację"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Wyjdź"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Wystąpił błąd podczas otwierania przywróconej bazy danych\n\nMożesz wyeksportować dzienniki aplikacji, aby udostępnić je w celu rozwiązywania problemów, ale aby kontynuować korzystanie z Sesji, możesz potrzebować ponownej instalacji"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Nie znaleziono oryginalnej wiadomości."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Pokaż mniej"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Prośby o konwersacje"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Prośby o Wiadomość Społeczności"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Zezwalaj na prośby o wiadomości z rozmów społecznościowych."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Będziesz mógł wysyłać wiadomości głosowe i załączniki -po zatwierdzeniu przez odbiorcę tego żądania wiadomości"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Wysyłanie"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Wysłano"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Przeczytano"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Nie udało się wysłać"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Wysłano"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Otrzymano"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Od"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "Identyfikator pliku"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Typ pliku"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Rozmiar pliku"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Rozdzielczość"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Czas trwania"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Błąd synchronizacji"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Synchronizowanie"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Nie udało się wysłać wiadomości"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Nie udało się zsynchronizować wiadomości z innymi urządzeniami"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Usuń ze wszystkich moich urządzeń"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Wyślij ponownie"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Synchronizuj ponownie"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Szukaj GIF-ów"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Sesja połączy się z Giphy, aby dostarczyć wyniki wyszukiwania. Nie będziesz mieć pełnej ochrony metadanych podczas wysyłania GIF-ów."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Informacje o wiadomości"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Wycisz"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Wyłącz wyciszenie"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Oznacz jako przeczytane"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Oznacz jako nieprzeczytane"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Opuść grupę"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Opuść społeczność"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Czy na pewno chcesz opuścić %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Opuszczanie..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Nie udało się opuścić grupy!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Nie można opuścić grupy, proszę spróbować ponownie"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Usuń grupę"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Czy na pewno chcesz usunąć %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Usuń konwersację"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Czy na pewno chcesz usunąć historię konwersacji z %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Ukryj swoje notatki"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Czy na pewno chcesz ukryć %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Ustaw zdjęcie, które będzie wyświetlane"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Zapisz"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Usuń"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Nie można usunąć zdjęcia profilowego"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Przekroczono maksymalny rozmiar pliku"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Wybierz mniejsze zdjęcie i spróbuj ponownie"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Nie można zaktualizować profilu"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Sprawdź swoje połączenie z internetem i spróbuj ponownie"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Wprowadź nazwę"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Nieprzeczytane wiadomości"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Nie masz wiadomości od %@. Wyślij wiadomość, aby rozpocząć rozmowę!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "Nie masz żadnych wiadomości w %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "Nie masz żadnych wiadomości w %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ ma wyłączone żądania wiadomości z rozmów społecznościowych, więc nie możesz wysłać im wiadomości."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Niektóre z Twoich urządzeń używają przestarzałych wersji. Synchronizacja może być niewiarygodna do czasu ich aktualizacji."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Wystąpił błąd podczas próby załadowania hasła odzyskiwania.\n\nProszę wyeksportować swoje wpisy, a następnie przesłać plik za pośrednictwem działu pomocy dla Sesji, aby pomóc rozwiązać ten problem."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Wystąpił błąd podczas próby przechowywania wiadomości wychodzącej, może być konieczne ponowne uruchomienie aplikacji zanim będziesz mógł wysyłać dalej wiadomości."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Wystąpił problem podczas otwierania bazy danych. Uruchom ponownie aplikację i spróbuj ponownie."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "To ustawienie dotyczy wszystkich w tej rozmowie."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Wiadomości kasują się po ich przeczytaniu."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Ty ustawił(a) znikające wiadomości na %@ po tym, jak były na %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "%@ ustawił(a) znikające wiadomości na %@ po tym, jak były na %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Wyłączyłeś wiadomości znikające"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Starsze"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Oryginalna wersja komunikatów znikających."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ używa przestarzałego klienta. Wiadomości nie mogą działać zgodnie z oczekiwaniami."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Próbujesz zaktualizować z wersji, która nie obsługuje już aktualizacji\n\nAby kontynuować korzystanie z sesji, musisz przywrócić urządzenie\n\nOstrzeżenie: Przywracanie urządzenia spowoduje utratę danych starszych niż dwa tygodnie"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "przeczytano"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "wysłano"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Zniknij po - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Zniknij po przeczytaniu - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Zniknij po przeczytaniu - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Zniknij po: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Zniknij po przeczytaniu: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Zniknij po wysłaniu: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Nazwa grupy od teraz jest %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Zaktualizowano nazwę grupy."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Zdjęcie grupy zostało zaktualizowane."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ został usunięty z grupy."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ i %@ zostali usunięci z grupy."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@, %@ i inni zostali usunięci z grupy."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ opuścił(a) grupę."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ został(a) Administratorem."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ i %@ zostali Administratorami."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ i %@ i inni zostali Administratorami."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/pt-BR.lproj/Localizable.strings b/Session/Meta/Translations/pt-BR.lproj/Localizable.strings deleted file mode 100644 index 65caba1f82..0000000000 --- a/Session/Meta/Translations/pt-BR.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Anexo"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Legenda"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipo de arquivo: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Tamanho: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Limite de mensagens atingido."; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Enviar"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Anexo"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Erro ao Enviar Anexo"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Não é possível converter a imagem."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Não foi possível processar o vídeo."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Não foi possível analisar a imagem."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Não é possível remover os metadados da imagem."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Não é possível redimensionar a imagem."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "O anexo é muito grande."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "O anexo contém conteúdo inválido."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "O anexo possui um formato de arquivo inválido."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "O anexo está vazio."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Falha ao selecionar o documento."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Por favor, crie um arquivo comprimido deste arquivo ou diretório e tente novamente o envio."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Arquivo não suportado"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Mensagem de voz"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloquear"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloquear %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Desbloquear %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Desbloquear"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ foi bloqueado."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Usuário Bloqueado"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ foi desbloqueado."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Você não receberá mais ligações e mensagens de quem bloquear."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Pronto"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Selecionar"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Procurando..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Sem resultados"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 resultado"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d de %d resultados"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloquear este usuário"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Silenciar"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Buscar na Conversa"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Mover e Redimensionar"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Isso pode levar alguns minutos."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Otimizando base de dados"; -/* The present; the current time. */ -"DATE_NOW" = "Agora"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Mensagens que desaparecem"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Editar Grupo"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Você não tem mídia desta conversa."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Carregando Novas Mídias..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Carregando Mídias Antigas..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Falha ao baixar o GIF requisitado. Por favor, verifique se você está online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ocorreu um erro desconhecido."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Impossível Escolher GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Por favor, insira a sua busca."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Falha. Toque para tentar novamente."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nenhum Resultado."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupo criado."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ entrou no grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ saiu do grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ foi removido(a) do grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ foram removidos(as) do grupo. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "O título agora é '%@'."; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupo atualizado."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Você saiu do grupo."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Você foi removido do grupo. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Você não pode compartilhar mais de %@ itens."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Falha ao selecionar anexo."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Arquivo de áudio inválido."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Sair"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Sair do Grupo"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Todas as mídias"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Excluir %d mensagens"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Excluir mensagem"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ em %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Você"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Este mês"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "O envio falhou."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Lida"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Enviando..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Enviado"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Enviando..."; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ para %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Recado para mim"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Pode ser que você tenha recebido mensagens enquanto seu %@ reiniciava."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ desabilitou mensagens efêmeras."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ definiu a expiração da mensagem efêmera para %@."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Não foi possível capturar a imagem."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Não foi possível capturar a imagem."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Falha ao configurar câmera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Álbum sem nome"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marcar como Lido"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Responder"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentique-se para abrir o Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Falha na Autenticação"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Descartar mídia?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Descartar mídia"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (padrão)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Som de mensagem"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Silencioso"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dias"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@dias"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ horas"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@horas"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutos"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@minutos"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ segundos"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@segundos"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dia"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hora"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuto"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ semana"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ semanas"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@sm"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancelar"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Apagar"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Mensagem de voz"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Toque e segure para gravar uma mensagem de voz."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Mensagem de voz"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Você desabilitou mensagens efêmeras."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Você definiu a expiração de mensagens efêmeras para %@."; -// MARK: - Session -"continue_2" = "Continuar"; -"copy" = "Copiar"; -"invalid_url" = "URL inválido"; -"next" = "Próximo"; -"share" = "Compartilhar"; -"invalid_session_id" = "ID Session inválido"; -"cancel" = "Cancelar"; -"your_session_id" = "Seu ID Session"; -"vc_landing_title_2" = "O Session começa aqui..."; -"vc_landing_register_button_title" = "Criar ID Session"; -"vc_landing_restore_button_title" = "Continuar com seu Session"; -"vc_landing_link_button_title" = "Link para uma conta existente"; -"view_fake_chat_bubble_1" = "O que é o Session?"; -"view_fake_chat_bubble_2" = "É um aplicativo de mensagens criptografado e descentralizado"; -"view_fake_chat_bubble_3" = "Então ele não coleta minhas informações pessoais ou meus metadados de conversa? Como funciona?"; -"view_fake_chat_bubble_4" = "Usando uma combinação de tecnologias avançadas de roteamento anônimo e criptografia de ponta a ponta."; -"view_fake_chat_bubble_5" = "Amigos não deixam amigos usarem aplicativos de mensagem comprometidos. De nada."; -"vc_register_title" = "Diga olá ao seu ID Session"; -"vc_register_explanation" = "Seu ID Session é o endereço exclusivo que as pessoas podem usar para entrar em contato com você no Session. Sem conexão com sua identidade real, seu ID Session é totalmente anônimo e privado por definição."; -"vc_restore_title" = "Restaurar sua conta"; -"vc_restore_explanation" = "Digite a frase de recuperação que lhe foi fornecida quando você se inscreveu para restaurar sua conta."; -"vc_restore_seed_text_field_hint" = "Digite sua frase de recuperação"; -"vc_link_device_title" = "Sincronize dispositivo"; -"vc_link_device_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_display_name_title_2" = "Escolha seu nome de exibição"; -"vc_display_name_explanation" = "Este será o seu nome quando usar o Session. Pode ser seu nome verdadeiro, um apelido ou qualquer outra coisa que você quiser."; -"vc_display_name_text_field_hint" = "Digite um nome de exibição"; -"vc_display_name_display_name_missing_error" = "Escolha um nome de exibição"; -"vc_display_name_display_name_too_long_error" = "Escolha um nome de exibição mais curto"; -"vc_pn_mode_recommended_option_tag" = "Recomendado"; -"vc_pn_mode_no_option_picked_modal_title" = "Escolha uma opção"; -"vc_home_empty_state_message" = "Você ainda não possui contatos"; -"vc_home_empty_state_button_title" = "Iniciar uma sessão"; -"vc_seed_title" = "Sua frase de recuperação"; -"vc_seed_title_2" = "Revele sua frase de recuperação"; -"vc_seed_explanation" = "Sua frase de recuperação é a chave mestra do seu ID Session - você pode usá-la para restaurar seu ID Session se perder o acesso ao seu dispositivo. Armazene sua frase de recuperação em um local seguro e não a entregue a ninguém."; -"vc_seed_reveal_button_title" = "Segure para revelar"; -"view_seed_reminder_subtitle_1" = "Proteja sua conta salvando sua frase de recuperação"; -"view_seed_reminder_subtitle_2" = "Toque e segure as palavras editadas para revelar sua frase de recuperação e armazene-a com segurança para proteger seu ID Session."; -"view_seed_reminder_subtitle_3" = "Guarde sua frase de recuperação em um local seguro"; -"vc_path_title" = "Caminho"; -"vc_path_explanation" = "O Session oculta seu IP ao enviar suas mensagens através de vários Nós de Serviço na rede descentralizada do Session. Estes são os países pelos quais sua conexão está sendo ricocheteada no momento:"; -"vc_path_device_row_title" = "Você"; -"vc_path_guard_node_row_title" = "Nó de Entrada"; -"vc_path_service_node_row_title" = "Nó de Serviço"; -"vc_path_destination_row_title" = "Destino"; -"vc_path_learn_more_button_title" = "Saber mais"; -"vc_create_private_chat_title" = "Nova Mensagem"; -"vc_create_private_chat_enter_session_id_tab_title" = "Digite o ID Session"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_enter_public_key_explanation" = "Inicie uma nova conversa inserindo o ID da sessão de alguém ou compartilhe o ID da sessão com alguém."; -"vc_scan_qr_code_camera_access_explanation" = "O Session precisa de acesso à câmera para escanear códigos QR"; -"vc_create_closed_group_title" = "Criar Grupo"; -"vc_create_closed_group_text_field_hint" = "Digite o nome do grupo"; -"vc_create_closed_group_empty_state_message" = "Você ainda não possui contatos"; -"vc_create_closed_group_group_name_missing_error" = "Digite um nome de grupo"; -"vc_create_closed_group_group_name_too_long_error" = "Digite um nome de grupo mais curto"; -"vc_create_closed_group_too_many_group_members_error" = "Um grupo fechado não pode ter mais de 100 membros"; -"vc_join_public_chat_title" = "Entrar na Comunidade"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL da comunidade"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_enter_chat_url_text_field_hint" = "Insira URL da Comunidade"; -"vc_settings_title" = "Configurações"; -"vc_group_settings_title" = "Configurações do Grupo"; -"vc_settings_display_name_missing_error" = "Escolha um nome de exibição"; -"vc_settings_display_name_too_long_error" = "Escolha um nome de exibição mais curto"; -"vc_settings_privacy_button_title" = "Privacidade"; -"vc_settings_notifications_button_title" = "Notificações"; -"vc_settings_recovery_phrase_button_title" = "Frase de recuperação"; -"vc_settings_clear_all_data_button_title" = "Apagar os dados"; -"vc_qr_code_title" = "Código QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Ver meu código QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Escanear código QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Escaneie o código QR de alguém para iniciar uma conversa com essa pessoa"; -"vc_view_my_qr_code_explanation" = "Este é o seu código QR. Outros usuários podem escaneá-lo para iniciar uma sessão com você."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Você será notificado de forma confiável e imediata sobre novas mensagens usando os servidores de notificação da Apple."; -"fast_mode" = "Modo Rápido"; -"slow_mode_explanation" = "O session verificará ocasionalmente por novas mensagens em segundo plano."; -"slow_mode" = "Modo Lento"; -"vc_pn_mode_title" = "Notificação de Mensangens"; -"vc_link_device_recovery_phrase_tab_title" = "Frase de Recuperação"; -"vc_link_device_scan_qr_code_explanation" = "Navegue até Configurações -> Frase de Recuperação no outro dispositivo para visualizar seu QR code."; -"vc_enter_recovery_phrase_title" = "Frase de Recuperação"; -"vc_enter_recovery_phrase_explanation" = "Para vincular o seu dispositivo, insira a frase de recuperação que foi gerada quando você criou sua conta."; -"vc_enter_public_key_text_field_hint" = "Insira seu ID Session ou ONS"; -"admin_group_leave_warning" = "Porque você é o criador deste grupo ele será excluído para todos. Isso não pode ser desfeito."; -"vc_join_open_group_suggestions_title" = "Ou junte-se a um desses..."; -"vc_settings_invite_a_friend_button_title" = "Convide um amigo"; -"copied" = "Copiado"; -"vc_conversation_settings_copy_session_id_button_title" = "Copiar ID Session"; -"vc_conversation_input_prompt" = "Mensagem"; -"vc_conversation_voice_message_cancel_message" = "Deslize para cancelar"; -"modal_download_attachment_title" = "Confiar %@?"; -"modal_download_attachment_explanation" = "Você tem certeza que deseja baixar a mídia enviada por %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Abrir URL?"; -"modal_open_url_explanation" = "Você tem certeza que deseja abrir %@/?"; -"modal_open_url_button_title" = "Abrir"; -"modal_copy_url_button_title" = "Copiar link"; -"modal_blocked_title" = "Desbloquear %@?"; -"modal_blocked_explanation" = "Você tem certeza que deseja desbloquear %@?"; -"modal_blocked_button_title" = "Desbloquear"; -"modal_link_previews_title" = "Ativar pré-visualizações de link?"; -"modal_link_previews_explanation" = "Ativar a pré-visualização de links irá mostrar as URLs que você receber e enviar. Isto pode ser útil, o Session precisa se conectar aos sites vinculados gerar as prévias. Você poderá desabiliatar esta opção nas configurações do Session."; -"modal_link_previews_button_title" = "Ativar"; -"vc_share_title" = "Compartilhar no Session"; -"vc_share_loading_message" = "Preparando anexos..."; -"vc_share_sending_message" = "Enviando..."; -"vc_share_link_previews_unsecure" = "Pré-visualização não carregada para link não seguro"; -"vc_share_link_previews_error" = "Não foi possível carregar a pré-visualização"; -"vc_share_link_previews_disabled_title" = "Pré-visualizações de Link Desativadas"; -"vc_share_link_previews_disabled_explanation" = "Ativar a pré-visualização de links irá mostrar prévias das URLs que você compartilha. Isso pode ser útil, mas Session precisa se conectar aos sites vinculados para gerar as pré-visualizações. Você poderá habilitar esta opção nas configurações do Session."; -"view_open_group_invitation_description" = "Convite para grupo aberto"; -"vc_conversation_settings_invite_button_title" = "Adicionar Membros"; -"modal_send_seed_title" = "Aviso"; -"modal_send_seed_explanation" = "Essa é sua frase de recuperação. Se você mandá-la para alguem, essa pessoa terá acesso completo a sua conta."; -"modal_send_seed_send_button_title" = "Enviar"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notificar apenas menções"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Quando ativo, você só receberá notificações quando alguém mencionar você."; -"view_conversation_title_notify_for_mentions_only" = "Apenas notifcar quando mencionado"; -"message_deleted" = "Essa mensagem foi deletada"; -"delete_message_for_me" = "Apagar para mim"; -"delete_message_for_everyone" = "Apagar para todos"; -"delete_message_for_me_and_recipient" = "Apagar para mim e para %@"; -"context_menu_reply" = "Responder"; -"context_menu_save" = "Salvar"; -"context_menu_ban_user" = "Banir Usuário"; -"context_menu_ban_and_delete_all" = "Banir e Apagar Tudo"; -"context_menu_ban_user_error_alert_message" = "Não foi possível banir usuário"; -"accessibility_expanding_attachments_button" = "Adicionar anexos"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Documento"; -"accessibility_library_button" = "Biblioteca de Fotos"; -"accessibility_camera_button" = "Câmera"; -"accessibility_main_button_collapse" = "Recolher opções de anexo"; -"invalid_recovery_phrase" = "Frase de Recuperação inválida"; -"DISMISS_BUTTON_TEXT" = "Ignorar"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Configurações"; -"call_outgoing" = "Você ligou para %@"; -"call_incoming" = "%@ Ligou para você"; -"call_missed" = "Ligação perdida de %@"; -"APN_Message" = "Você recebem uma nova mensagem."; -"APN_Collapsed_Messages" = "Você tem %@ novas mensagens."; -"PIN_BUTTON_TEXT" = "Fixar"; -"UNPIN_BUTTON_TEXT" = "Desfixar"; -"modal_call_missed_tips_title" = "Chamada perdida"; -"modal_call_missed_tips_explanation" = "Chamada perdida de '%@', você precisa habilitar a permissão de 'Voz e Video' nas configurações de Privacidade."; -"media_saved" = "Mídia salva por %@."; -"screenshot_taken" = "%@ fez uma captura de tela."; -"SEARCH_SECTION_CONTACTS" = "Contatos e Grupos"; -"SEARCH_SECTION_MESSAGES" = "Mensagens"; -"MESSAGE_REQUESTS_TITLE" = "Solicitações de Mensagem"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nenhuma solicitação de mensagem pendente"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Limpar tudo"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Tem certeza de que deseja limpar todos os pedidos de mensagens e convites de grupo?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Limpar"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Você tem certeza que deseja excluir esta solicitação de mensagem?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Tem certeza de que deseja bloquear esse contato?"; -"MESSAGE_REQUESTS_INFO" = "Enviar uma mensagem para este usuário automaticamente aceitará seu pedido de mensagem e revelará o seu ID de sessão."; -"MESSAGE_REQUESTS_ACCEPTED" = "Sua solicitação de mensagem foi aceita."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Você tem uma nova solicitação de mensagem"; -"TXT_HIDE_TITLE" = "Ocultar"; -"TXT_DELETE_ACCEPT" = "Aceitar"; -"TXT_BLOCK_USER_TITLE" = "Bloquear Usuário"; -"ALERT_ERROR_TITLE" = "Erro"; -"modal_call_permission_request_title" = "Permissões de ligação necessárias"; -"modal_call_permission_request_explanation" = "Você pode habilitar a permissão de 'Voz e vídeo' nas Configurações de Privacidade."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ops, ocorreu um erro"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Por favor tente novamente mais tarde"; -"LOADING_CONVERSATIONS" = "Carregando conversas..."; -"DATABASE_MIGRATION_FAILED" = "Ocorreu um erro ao otimizar o banco de dados\n\nVocê pode exportar seus logs de aplicativos para poder compartilhar para solucionar problemas ou pode restaurar seu dispositivo\n\nAviso: Restaurar seu dispositivo resultará em perda de dados anteriores a duas semanas"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Algo deu errado. Por favor, verifique sua frase de recuperação e tente novamente."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Parece que você não inseriu palavras o suficiente. Por favor, verifique sua frase de recuperação e tente novamente."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Parece que está faltando a última palavra da sua frase de recuperação. Por favor, verifique o que você digitou e tente novamente."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Parece haver uma palavra inválida na sua frase de recuperação. Por favor, verifique o que você digitou e tente novamente."; -"RECOVERY_PHASE_ERROR_FAILED" = "A sua frase de recuperação não pôde ser verificada. Por favor, verifique o que você inseriu e tente novamente."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Não foi possível acessar a autenticação."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Falha na autenticação."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Você excedeu o número máximo permitido de tentativas de autenticação. Por favor, tente novamente mais tarde."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Você deve ativar um código nos Ajustes do iOS para usar o Bloqueio de Tela."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Você deve ativar um código nos Ajustes do iOS para usar o Bloqueio de Tela."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Você deve ativar um código nos Ajustes do iOS para usar o Bloqueio de Tela."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Enviar"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Tentar novamente"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Exibir conversa"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Falha ao enviar a sua mensagem."; -"INVALID_SESSION_ID_MESSAGE" = "Por favor, verifique o ID da sessão e tente novamente."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Por favor, verifique a frase de recuperação e tente novamente."; -"MEDIA_TAB_TITLE" = "Mídia"; -"DOCUMENT_TAB_TITLE" = "Documentos"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Você não tem nenhum documento nesta conversa."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Carregando documento mais recente…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Carregando documento mais antigo…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Atividades"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animais e Natureza"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Bandeiras"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Comida e Bebida"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objetos"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Usado Recentemente"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Emoticons & Pessoas"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Símbolos"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Viagens e lugares"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reage a uma mensagem com %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "E mais 1 reagiu com %@ a esta mensagem."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "E %@ outros reagiram com %@ a esta mensagem."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Vá devagar! Você enviou reações de emoji demais. Tente novamente em breve."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nova Conversa"; -"CREATE_GROUP_BUTTON_TITLE" = "Criar"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Entrar"; -"PRIVACY_TITLE" = "Privacidade"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Segurança de Tela"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Bloquear Sessão"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Exigir Touch ID, Face ID ou senha para desbloquear o Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Confirmações de Leitura"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Confirmações de Leitura"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Enviar confirmações de leitura em conversas individuais."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicadores de Digitação"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicadores de Digitação"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Veja e compartilhe indicadores de digitação em conversas individuais."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Pré-visualização de Link"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Enviar pré-visualizações de links"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Gerar pré-visualizações de links para URLs suportadas."; -"PRIVACY_SECTION_CALLS" = "Chamadas (Beta)"; -"PRIVACY_CALLS_TITLE" = "Chamadas de voz e vídeo"; -"PRIVACY_CALLS_DESCRIPTION" = "Permite chamadas de voz e vídeo para e de outros usuários."; -"PRIVACY_CALLS_WARNING_TITLE" = "Chamadas de voz e vídeo (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Seu endereço IP está visível para o seu parceiro de chamadas e um servidor da Fundação Oxen durante o uso de chamadas beta. Tem certeza de que deseja ativar chamadas de voz e vídeo?"; -"NOTIFICATIONS_TITLE" = "Notificações"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Estratégia de Notificação"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Usar Modo Rápido"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Você será notificado de forma confiável e imediata sobre novas mensagens usando os servidores de notificação da Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Ir para configurações de notificação do dispositivo"; -"NOTIFICATIONS_SECTION_STYLE" = "Estilo de Notificação"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Som"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Som quando o aplicativo estiver aberto"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Conteúdo de Notificação"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "As informações exibidas nas notificações."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nome e conteúdo"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Somente Nome"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Sem nome ou conteúdo"; -"CONVERSATION_SETTINGS_TITLE" = "Conversas"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Corte de Mensagens"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Cortar Comunidades"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Exclua mensagens com mais de 6 meses de Comunidades que tenham mais de 2.000 mensagens."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Mensagens de áudio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Reproduzir mensagens de áudio automaticamente"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Reproduzir automaticamente mensagens de áudio consecutivas."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Contatos Bloqueados"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nenhum contato bloqueado."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Desbloquear"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Você tem certeza que deseja desbloquear %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "este contato"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Você tem certeza que deseja desbloquear %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "e %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "e %d outros?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Desbloquear"; -"APPEARANCE_TITLE" = "Aparência"; -"APPEARANCE_THEMES_TITLE" = "Temas"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Cor primária"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Como você está?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Eu estou bem, obrigado, e você?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Eu estou muito bem, obrigado."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Modo noturno automático"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "A mesma do sistema"; -"HELP_TITLE" = "Ajuda"; -"HELP_REPORT_BUG_TITLE" = "Relatar um Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exporte seus logs, e envie o arquivo através do Help Desk do Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportar Logs"; -"HELP_TRANSLATE_TITLE" = "Traduzir o Session"; -"HELP_FEEDBACK_TITLE" = "Nós adoraríamos seu feedback"; -"HELP_FAQ_TITLE" = "Perguntas Frequentes"; -"HELP_SUPPORT_TITLE" = "Suporte"; -"modal_clear_all_data_title" = "Limpar todos os dados"; -"modal_clear_all_data_explanation" = "Isto excluirá permanentemente suas mensagens e contatos. Você gostaria de limpar este dispositivo somente ou excluir seus dados da rede também?"; -"modal_clear_all_data_explanation_2" = "Tem certeza de que deseja excluir seus dados da rede? Se você continuar, não será capaz de restaurar suas mensagens ou contatos."; -"modal_clear_all_data_device_only_button_title" = "Limpar Somente o Dispositivo"; -"modal_clear_all_data_entire_account_button_title" = "Limpar o Dispositivo e a Rede"; -"dialog_clear_all_data_deletion_failed_1" = "Dados não excluídos por 1 Service Node. ID do Service Node: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Dados não excluídos por %@ Service Nodes. IDs dos Service Nodes: %@."; -"modal_clear_all_data_confirm" = "Limpar"; -"modal_seed_title" = "Sua frase de recuperação"; -"modal_seed_explanation" = "Você pode usar a sua frase de recuperação para restaurar a sua conta ou vincular um dispositivo."; -"modal_permission_explanation" = "O Session precisa do acesso %@ para continuar. Você pode habilitar o acesso nas configurações do iOS."; -"modal_permission_settings_title" = "Configurações"; -"modal_permission_camera" = "câmera"; -"modal_permission_microphone" = "microfone"; -"modal_permission_library" = "biblioteca"; -"DISAPPEARING_MESSAGES_OFF" = "Desligado"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Desligado"; -"COPY_GROUP_URL" = "Copiar URL do grupo"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contatos"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Por favor, escolha pelo menos 1 membro para o grupo"; -"GROUP_CREATION_PLEASE_WAIT" = "Por favor aguarde enquanto o grupo é criado..."; -"GROUP_CREATION_ERROR_TITLE" = "Não foi possível criar o grupo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Verifique sua conexão com a Internet e tente novamente."; -"GROUP_UPDATE_ERROR_TITLE" = "Não foi possível atualizar grupo"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Não é possível sair enquanto adiciona ou remove outros membros."; -"GROUP_ACTION_REMOVE" = "Remover"; -"GROUP_TITLE_MEMBERS" = "Membros"; -"GROUP_TITLE_FALLBACK" = "Grupo"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Você só pode enviar mensagens para IDs ocultos de uma comunidade"; -"DM_ERROR_INVALID" = "Por favor, verifique o ID da Sessão ou nome ONS e tente novamente"; -"COMMUNITY_ERROR_INVALID_URL" = "Por favor, verifique a URL digitada e tente novamente."; -"COMMUNITY_ERROR_GENERIC" = "Falha ao entrar"; -"DISAPPERING_MESSAGES_TITLE" = "Mensagens que desaparecem"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Tipo de exclusão"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Desaparecer depois de ler"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Mensagens são excluídas depois que elas são lidas."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Desaparecer após o envio"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "As mensagens são excluídas após serem enviadas."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Aplicar"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Essa configuração se aplica a todos nesta conversa."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Esta configuração aplica-se a todos nesta conversa. Apenas os administradores de grupos podem alterar essa configuração."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ definiu mensagens para desaparecer %@ depois de terem sido %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ alterou as mensagens para desaparecer %@ depois de ter sido %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ desativou o desaparecimento de mensagens"; - -/* context_menu_info */ -"context_menu_info" = "Informações"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Ocorreu um erro ao abrir o banco de dados\n\nVocê pode exportar seus logs de aplicativos para compartilhar para solucionar problemas ou você pode tentar restaurar seu dispositivo\n\nAviso: Restaurar seu dispositivo irá resultar em perda de quaisquer dados anteriores a duas semanas"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "O aplicativo está demorando muito para iniciar\n\nVocê pode continuar esperando o aplicativo ser iniciado, exporte seus logs da aplicação e, compartilhar para solucionar problemas ou tente abrir o aplicativo novamente"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Sair"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Ocorreu um erro ao abrir o banco de dados restaurado\n\nVocê pode exportar seus logs do aplicativo e, compartilhar para resolver problemas, mas para continuar usando o Session, talvez seja necessário reinstalar"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Mensagem original não encontrada."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Mostrar menos"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Solicitações de Mensagem"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Solicitações de mensagem da comunidade"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Permitir pedidos de mensagens de conversas da Comunidade."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Você poderá enviar mensagens de voz e anexos quando o destinatário aprovar esta solicitação de mensagem"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Enviando"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Enviado"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Lido"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Falha ao enviar"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Enviado"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Recebida"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "De"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID do Arquivo"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Tipo de Arquivo"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Tamanho de Arquivo"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolução"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duração"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Falha ao sincronizar"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Sincronizando"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Falha ao enviar a mensagem"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Falha ao sincronizar a mensagem com seus outros dispositivos"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Apagar de todos os meus dispositivos"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Reenviar"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Sincronizar novamente"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Procurar GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session se conectará ao Giphy para fornecer resultados de pesquisa. Você não terá proteção completa de metadados ao enviar GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Informação da mensagem"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mutar"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Ativar o som"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Marcar como lida"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Marcar como não lida"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Sair do Grupo"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Sair da Comunidade"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Você tem certeza que deseja sair %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Saindo..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Falha ao sair do Grupo!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Não foi possível sair do Grupo, por favor, tente novamente"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Apagar Grupo"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Tem certeza de que deseja excluir %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Apagar Conversa"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Tem certeza que deseja apagar a conversa com %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Ocultar nota para mim"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Tem certeza de que deseja esconder %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Definir imagem de exibição"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Salvar"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remover"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Não é possível remover a imagem do avatar"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Tamanho máximo do arquivo excedido"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Por favor, selecione uma imagem menor e tente novamente"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Não foi possível atualizar o perfil"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Por favor verifique sua conexão com a internet e tente novamente"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Digite um nome"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Mensagens Não Lidas"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Você não possui mensagens de %@. Envie uma mensagem para começar a conversa!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "Não há mensagens em %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "Você não tem mensagens em %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ tem solicitações de mensagens de conversas da comunidade desativadas, então você não pode enviar uma mensagem para eles."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Alguns dos seus dispositivos estão usando uma versão desatualizada. A sincronização pode não ser confiável até que sejam atualizados."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Um erro ocorreu ao tentar carregar sua senha de recuperação.\n\nPor favor, exporte seus logs e, em seguida, envie o arquivo no centro de ajuda da sessão para ajudar a resolver este problema."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Ocorreu um erro ao tentar armazenar a mensagem de saída no envio, talvez seja necessário reiniciar o aplicativo antes de enviar mensagens."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Existe um problema ao abrir o banco de dados. Por favor, reinicie o aplicativo e tente novamente."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Essa configuração se aplica a todos nesta conversa."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "As mensagens desaparecerão após serem enviadas."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Você definiu para desaparecer as mensagens %@ após elas terem sido %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Você alterou as mensagens para desaparecer %@ após elas terem sido %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Você desativou o desaparecimento de mensagens"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legado"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Versão original das mensagens desaparecendo."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ está usando um cliente desatualizado. Excluir mensagens podem não funcionar como esperado."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Você está tentando atualizar de uma versão que não suporta mais a atualização.\n\nPara continuar a usar o Session, você precisa restaurar o dispositivo\n\nAviso: Restaurar seu dispositivo resultará em perda de todos os dados anteriores a duas semanas"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "lida"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "enviada"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Desaparecer após - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Desaparecer após ler - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Desaparecer após enviar - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Desaparecer após: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Desaparecer após ler: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Desaparecer após enviar: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "O nome do grupo agora é %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Nome do grupo atualizado."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Imagem do grupo atualizada."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ foi convidado(a) a juntar-se ao grupo."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ e %@ foram convidados a juntarem-se ao grupo."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ e %@ outros foram convidados a juntar-se ao grupo."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ foi removido(a) do grupo."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ e %@ foram removidos do grupo."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ e %@ outros foram removidos do grupo."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ deixou o grupo."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ foi promovido a Administrador."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ e %@ foram promovidos a Administrador."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ e %@ outros foram promovidos a Administrador."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Você foi removido do %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Tem certeza que deseja excluir este convite de grupo?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Tem certeza que deseja bloquear %@? Usuários bloqueados não podem enviar mensagens, pedidos de grupo para você ou ligar para você."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ convidou você para se juntar a %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Não foi possível apagar o Grupo, por favor, tente novamente."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Enviar uma mensagem para este grupo, aceitará automaticamente o convite do grupo."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "Ocorreu um problema ao recuperar os dados necessários. Por favor, tente mais tarde."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Participantes do Grupo"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Enviando convite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Convite enviado"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Falha ao convidar"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Enviando promoção do administrador"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Definir Imagem do Grupo"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Não foi possível atualizar a imagem."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Não foi possível remover a imagem."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Digite o nome do grupo"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Por favor, escolha um nome para o grupo."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Por favor, escolha um nome menor para o grupo."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Digite a descrição do grupo"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Por favor, escolha uma descrição menor para o grupo."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Administradores não podem ser removidos"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Convide"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Convidar Contatos"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "Você não possui mais contatos."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Enviando convite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Enviando convites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Falha ao convidar %@ para %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Falha ao convidar %@ e %@ para %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Falha ao convidar %@ e %@ outros para %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promover Administradores"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promover"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "Não há mais pessoas neste grupo."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Falha ao promover %@ no %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Falha ao promover %@ e %@ no %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Falha ao promover %@ e %@ outros no %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Os grupos foram atualizados, crie um novo grupo para atualizar. A funcionalidade antiga do grupo será desativada a partir de %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Atualizar Informações do Grupo"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Nome do grupo e a descrição estão visíveis para todos os membros do grupo."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Atualizar Nome do Grupo"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "O nome do grupo está visível para todos os membros do grupo."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "Você foi convidado a juntar-se a %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ foi convidado a juntar-se ao grupo."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ foi convidado a se juntar-se ao grupo. O histórico de conversas será compartilhado."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "Ocorreu um erro ao tentar iniciar a gravação para a mensagem de voz."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Defina suas mensagens para desaparecer %@ depois que forem %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "As mensagens que você enviar não irão mais desaparecer. Tem certeza de que deseja desativar desaparecer mensagens?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirmar"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/pt-PT.lproj/Localizable.strings b/Session/Meta/Translations/pt-PT.lproj/Localizable.strings deleted file mode 100644 index c90635f083..0000000000 --- a/Session/Meta/Translations/pt-PT.lproj/Localizable.strings +++ /dev/null @@ -1,1138 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Anexo"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Legenda"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipo de ficheiro: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Tamanho: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Atingido o limite da mensagem"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Enviar"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Anexo"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Erro ao enviar o anexo"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Não é possível converter a imagem."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Impossível processar o vídeo."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Não é possível obter a imagem."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Não é possível remover os metadados da imagem."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Não é possível redimensionar a imagem."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Anexo demasiado grande."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "O anexo inclui conteúdo inválido."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "O anexo tem um formato de arquivo inválido."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Anexo está vazio."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Erro ao escolher o documento."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "É favor criar um arquivo comprimido deste ficheiro ou diretório e tentar enviá-lo como alternativa."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Ficheiro não suportado"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Mensagem de voz"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Bloquear"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Bloquear %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Desbloquear %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Desbloquear"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ foi bloqueado(a)."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Utilizador bloqueado"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ foi desbloqueado(a)."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Os utilizadores bloqueados não poderão ligar-lhe nem enviar-lhe mensagens."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Concluir"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Selecionar"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Pesquisando..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Nenhum resultado"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 resultado"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d de %d resultados"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bloquear este utilizador"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Silenciar"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Pesquisar conversa"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Mover e Dimensionar"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Este processo poderá demorar alguns minutos."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Otimizando a base de dados"; -/* The present; the current time. */ -"DATE_NOW" = "Agora"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Destruição de mensagens"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Editar grupo"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Não existe multimédia nesta conversa."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Carregando multimédia recente…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Carregando multimédia antiga…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Impossível obter o GIF escolhido. É favor verificar se possui ligação à Internet."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ocorreu um erro desconhecido."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Não é possível escolher o GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Introduza o texto para pesquisar."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Erro. Toque para tentar novamente."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Sem resultados."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupo criado"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ entrou no grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ saiu do grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ foi removido do grupo. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ foi removido do grupo. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "O título agora é '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupo atualizado."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Saiu do grupo."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Foi removido(a) do grupo. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Não pode partilhar mais do que %@ itens."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Erro ao selecionar o anexo."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ficheiro de áudio inválido."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Sair"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Sair do grupo"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Toda a multimédia"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Apagar %d mensagens"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Apagar mensagem"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ em %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Eu"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Este mês"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Erro ao enviar."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Lida"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "A enviar…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Enviado"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Carregando…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ para %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Nota pessoal"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Poderá ter recebido mensagens enquanto o seu %@ reiniciava."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ desativou o desaparecimento de mensagens."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ definiu o desparecimento das mensagens em %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Não é possível obter a imagem."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Não é possível obter a imagem."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Erro ao configurar a câmara."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Álbum sem nome"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Definir como lida"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Responder"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentique para abrir Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "A autenticação falhou"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Descartar Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Descartar Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (Predefinição)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Som da Mensagem"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Nenhum"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dias"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ horas"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutos"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@ m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ segundos"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dia"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hora"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minuto"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ semana"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ semanas"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@sem"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancelar"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Apagar"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Mensagem de voz"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Pressione e segure para gravar uma mensagem de voz."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Mensagem de voz"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Você desativou a destruição de mensagens."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Definiu o tempo de destruição de mensagens para %@"; -// MARK: - Session -"continue_2" = "Continuar"; -"copy" = "Copiar"; -"invalid_url" = "URL inválido"; -"next" = "Seguinte"; -"share" = "Partilhar"; -"invalid_session_id" = "ID de sessão inválida"; -"cancel" = "Cancelar"; -"your_session_id" = "Seu ID de sessão"; -"vc_landing_title_2" = "Sua sessão começa aqui ..."; -"vc_landing_register_button_title" = "Criar ID de Sessão"; -"vc_landing_restore_button_title" = "Continuar com a sua sessão"; -"vc_landing_link_button_title" = "Associar dispositivo"; -"view_fake_chat_bubble_1" = "O que é o Session?"; -"view_fake_chat_bubble_2" = "É uma aplicaçāo de mensagens encriptadas e descentralizado"; -"view_fake_chat_bubble_3" = "Então não coleta as minhas informações ou as minhas conversas? Como é que funciona?"; -"view_fake_chat_bubble_4" = "Usando uma combinação de tecnologias avançadas de roteamento anônimo e criptografia de ponta a ponta."; -"view_fake_chat_bubble_5" = "Amigos não deixam amigos usarem aplicativos de mensagem comprometidos. De nada."; -"vc_register_title" = "Diga olá ao seu ID Session"; -"vc_register_explanation" = "O ID da sessão é o endereço único que as pessoas podem usar para entrar em contato com você no Session. Sem nenhuma conexão com sua identidade real, o seu ID de sessão é totalmente anônimo e privado por design."; -"vc_restore_title" = "Restaure a sua conta"; -"vc_restore_explanation" = "Digite a frase de recuperação que lhe foi fornecida quando você se inscreveu para restaurar sua conta."; -"vc_restore_seed_text_field_hint" = "Digite a sua frase de recuperação"; -"vc_link_device_title" = "Associar dispositivo"; -"vc_link_device_scan_qr_code_tab_title" = "Ler código QR"; -"vc_display_name_title_2" = "Escolha seu nome"; -"vc_display_name_explanation" = "Este será o seu nome quando usar o Session. Pode ser seu nome verdadeiro, um apelido ou qualquer outra coisa que você quiser."; -"vc_display_name_text_field_hint" = "Introduza um nome de utilizador"; -"vc_display_name_display_name_missing_error" = "Por favor, escolha um nome a exibir"; -"vc_display_name_display_name_too_long_error" = "Por favor, escolha um nome de exibição mais curto"; -"vc_pn_mode_recommended_option_tag" = "Recomendado"; -"vc_pn_mode_no_option_picked_modal_title" = "Por favor, escolha uma Opção"; -"vc_home_empty_state_message" = "Ainda não tem nenhum contacto"; -"vc_home_empty_state_button_title" = "Iniciar sessão"; -"vc_seed_title" = "Sua frase de recuperação"; -"vc_seed_title_2" = "Revele sua frase de recuperação"; -"vc_seed_explanation" = "A sua frase de recuperação é a chave principal para o Session ID — pode usá-la para restaurar a sua Session ID caso perda o acesso ao seu dispositivo. Guarde a sua frase de recuperação num local seguro e não a partilhe com ninguém. "; -"vc_seed_reveal_button_title" = "Segure para revelar"; -"view_seed_reminder_subtitle_1" = "Proteja a sua conta guardando a sua frase de recuperação "; -"view_seed_reminder_subtitle_2" = "Tap and hold the redacted words to reveal your recovery phrase, then store it safely to secure your Session ID."; -"view_seed_reminder_subtitle_3" = "Certifique-se que guarda a sua frase de recuperação num local seguro "; -"vc_path_title" = "Path"; -"vc_path_explanation" = "Session hides your IP by routing your messages through multiple Service Nodes in Session's decentralized network. These are the countries your connection is currently being routed through:"; -"vc_path_device_row_title" = "Você"; -"vc_path_guard_node_row_title" = "Entry Node"; -"vc_path_service_node_row_title" = "Service Node"; -"vc_path_destination_row_title" = "Destino"; -"vc_path_learn_more_button_title" = "Saber mais"; -"vc_create_private_chat_title" = "Nova mensagem"; -"vc_create_private_chat_enter_session_id_tab_title" = "Inserir ID da sessão"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Ler código QR"; -"vc_enter_public_key_explanation" = "Iniciar uma nova conversa, introduzindo o Session ID de alguém ou compartilhando o seu Session ID com outros utilizadores. "; -"vc_scan_qr_code_camera_access_explanation" = "O Session necessita de acesso à câmara de modo a ler códigos QR"; -"vc_create_closed_group_title" = "Criar grupo"; -"vc_create_closed_group_text_field_hint" = "Introduzir o nome do grupo"; -"vc_create_closed_group_empty_state_message" = "Você ainda não tem contatos"; -"vc_create_closed_group_group_name_missing_error" = "Por favor, insira o nome do grupo"; -"vc_create_closed_group_group_name_too_long_error" = "Digite um nome de grupo mais curto"; -"vc_create_closed_group_too_many_group_members_error" = "Um grupo fechado/privado não pode ter mais de 100 pessoas"; -"vc_join_public_chat_title" = "Junte-se à comunidade"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL da comunidade"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Ler código QR"; -"vc_enter_chat_url_text_field_hint" = "Inserir o URL da comunidade"; -"vc_settings_title" = "Definições"; -"vc_group_settings_title" = "Definições do grupo"; -"vc_settings_display_name_missing_error" = "Escolha um nome de exibição"; -"vc_settings_display_name_too_long_error" = "Escolha um nome de exibição mais curto"; -"vc_settings_privacy_button_title" = "Privacidade"; -"vc_settings_notifications_button_title" = "Notificações"; -"vc_settings_recovery_phrase_button_title" = "Frase de recuperação"; -"vc_settings_clear_all_data_button_title" = "Apagar os dados"; -"vc_qr_code_title" = "Código QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Visualizar o meu código QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Ler código QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Ocasionalmente, o Session procurará novas mensagens em segundo plano. "; -"slow_mode" = "Modo lento"; -"vc_pn_mode_title" = "Notificações de mensagem"; -"vc_link_device_recovery_phrase_tab_title" = "Frase de recuperação"; -"vc_link_device_scan_qr_code_explanation" = "Navegue para Configurações → Frase de recuperação no outro dispositivo para mostrar o código QR."; -"vc_enter_recovery_phrase_title" = "Frase de recuperação"; -"vc_enter_recovery_phrase_explanation" = "Para se conectar com o seu dispositivo, introduza o código de recuperação que lhe foi fornecido quando realizou a sua inscrição. "; -"vc_enter_public_key_text_field_hint" = "Introduzir Session ID ou nome de ONS"; -"admin_group_leave_warning" = "Tendo em conta que é o criador deste grupo, ele será eliminado para todos. Não poderá retroceder com a sua eliminação. "; -"vc_join_open_group_suggestions_title" = "Ou junte-se a um destes..."; -"vc_settings_invite_a_friend_button_title" = "Convidar um Amigo"; -"copied" = "Copiado"; -"vc_conversation_settings_copy_session_id_button_title" = "Copiar ID da sessão"; -"vc_conversation_input_prompt" = "Mensagem"; -"vc_conversation_voice_message_cancel_message" = "Deslize para cancelar"; -"modal_download_attachment_title" = "Confiar em %@?"; -"modal_download_attachment_explanation" = "Tem a certeza que pretende descarregar o conteúdo enviado por %@ ?"; -"modal_download_button_title" = "Transferir"; -"modal_open_url_title" = "Abrir URL"; -"modal_open_url_explanation" = "Tem certeza de que deseja abrir %@?"; -"modal_open_url_button_title" = "Abrir"; -"modal_copy_url_button_title" = "Copiar Ligação"; -"modal_blocked_title" = "Desbloquear %@?"; -"modal_blocked_explanation" = "Tem certeza que deseja desbloquear %@?"; -"modal_blocked_button_title" = "Desbloquear"; -"modal_link_previews_title" = "Ativar pré-visualizações do link?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Ativar"; -"vc_share_title" = "Partilhar com o Session"; -"vc_share_loading_message" = "A preparar anexos..."; -"vc_share_sending_message" = "A enviar..."; -"vc_share_link_previews_unsecure" = "Pré-visualização não carregada devido a link inseguro"; -"vc_share_link_previews_error" = "Não foi possível carregar a pré-visualização"; -"vc_share_link_previews_disabled_title" = "Pré-visualizações dos links estão desativadas."; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Abrir convite de grupo"; -"vc_conversation_settings_invite_button_title" = "Adicionar membros"; -"modal_send_seed_title" = "Aviso"; -"modal_send_seed_explanation" = "Esta é a sua frase de recuperação. Se a enviar a alguém, essa pessoa terá acesso total à sua conta. "; -"modal_send_seed_send_button_title" = "Enviar"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notificar apenas quando sou mencionado "; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Após a sua ativação, apenas será notificado quando for mencionado numa mensagem. "; -"view_conversation_title_notify_for_mentions_only" = "Notificar-me apenas quando sou mencionado "; -"message_deleted" = "Esta mensagem foi apagada"; -"delete_message_for_me" = "Apagar apenas para mim"; -"delete_message_for_everyone" = "Apagar para todos"; -"delete_message_for_me_and_recipient" = "Apagar para mim e %@"; -"context_menu_reply" = "Responder"; -"context_menu_save" = "Guardar"; -"context_menu_ban_user" = "Banir utilizador"; -"context_menu_ban_and_delete_all" = "Banir e Apagar Todos"; -"context_menu_ban_user_error_alert_message" = "Não foi possível banir o utilizador"; -"accessibility_expanding_attachments_button" = "Adicionar anexos"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Documento"; -"accessibility_library_button" = "Galeria de fotos"; -"accessibility_camera_button" = "Câmara"; -"accessibility_main_button_collapse" = "Recolher opções de anexos"; -"invalid_recovery_phrase" = "Frase de recuperação inválida"; -"DISMISS_BUTTON_TEXT" = "Ignorar"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Definições"; -"call_outgoing" = "Você ligou %@"; -"call_incoming" = "%@ ligou-lhe"; -"call_missed" = "Chamada perdida de %@"; -"APN_Message" = "Você tem uma nova mensagem."; -"APN_Collapsed_Messages" = "Você tem %@ mensagens novas."; -"PIN_BUTTON_TEXT" = "Fixar"; -"UNPIN_BUTTON_TEXT" = "Desafixar"; -"modal_call_missed_tips_title" = "Chamada perdida"; -"modal_call_missed_tips_explanation" = "Perdeu uma chamada de '%@' , porque necessita de ativar as chamadas de voz e vídeo nas configurações de privacidade. "; -"media_saved" = "Conteúdo guardado por %@"; -"screenshot_taken" = "%@ fez uma captura de ecrã."; -"SEARCH_SECTION_CONTACTS" = "Contactos e Grupos"; -"SEARCH_SECTION_MESSAGES" = "Mensagens"; -"MESSAGE_REQUESTS_TITLE" = "Pedidos de Mensagem"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nenhum pedido de mensagem pendente"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Limpar tudo"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Tem a certeza que pretende eliminar todos os pedidos de mensagens e grupos? "; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Apagar"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Tem certeza de que deseja apagar este pedido de mensagem?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Tem a certeza que pretende bloquear este contacto?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Seu pedido de mensagem foi aceito."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Você tem um novo pedido de mensagem"; -"TXT_HIDE_TITLE" = "Ocultar"; -"TXT_DELETE_ACCEPT" = "Aceitar"; -"TXT_BLOCK_USER_TITLE" = "Bloquear utilizador"; -"ALERT_ERROR_TITLE" = "Erro"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "Pode ativar 'Chamadas de voz e vídeo' nas Configurações de Privacidade."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, ocorreu um erro"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Tenta novamente mais tarde"; -"LOADING_CONVERSATIONS" = "A carregar conversas..."; -"DATABASE_MIGRATION_FAILED" = "Ocorreu um erro aquando da otimização da base de dados \n\\ - -Pode exportar os seus inícios de sessão da aplicação de modo a partilhar uma eventual resolução de erros ou pode restaurar o seu dispositivo. - -Alerta: Restaurar o seu dispositivo levará à perda dos dados mais antigos que duas semanas"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Aconteceu algo errado. Por favor, verifique a sua frase de recuperação e tente novamente."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Parece que não introduziu palavras suficientes. Por favor, verifique a sua frase de recuperação e tente novamente. "; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Parece que falta a última palavra da sua frase de recuperação. Por favor, verifique o que introduziu e tente novamente."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Parece haver uma palavra incorreta no seu código de recuperação. Por favor, verifique o que introduziu e tente novamente. "; -"RECOVERY_PHASE_ERROR_FAILED" = "Não foi possível verificar a sua frase de recuperação. Por favor, verifique o que introduziu e tente novamente. "; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Não foi possível aceder."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Falha na autenticação. "; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Demasiadas tentativas falhadas. Por favor, tente novamente mais tarde."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Deve ativar a sua senha nas definições do seu iOS de modo a usar o Screen Lock. "; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Deve ativar a sua senha nas definições do seu iOS de modo a usar o Screen Lock. "; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Deve ativar a sua senha nas definições do seu iOS de modo a usar o Screen Lock. "; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Enviar"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Tentar novamente"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Mostrar conversa"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "O envio da sua mensagem falhou."; -"INVALID_SESSION_ID_MESSAGE" = "Por favor, verifique o seu Session ID e tente novamente. "; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Por favor, verifique a sua frase de recuperação e tente novamente."; -"MEDIA_TAB_TITLE" = "Multimédia"; -"DOCUMENT_TAB_TITLE" = "Documentos"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Não existe nenhum documento neste conversa. "; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "A carregar documento mais recente…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "A carregar documento mais antigo…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Atividades"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animais e natureza"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Comida e bebidas"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objetos"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recentemente utilizado"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Símbolos"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Viagem e locais"; -"EMOJI_REACTS_NOTIFICATION" = "%@ Reagiu à sua mensagem com %@"; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Outra pessoa reagiu %@ a esta mensagem "; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Calma! Enviou demasiadas reações de emojis. Tente novamente em breve."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nova conversa"; -"CREATE_GROUP_BUTTON_TITLE" = "Criar"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Entrar"; -"PRIVACY_TITLE" = "Privacidade"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Segurança de ecrã"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Bloquear sessão"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Requer Touch ID, Face ID ou password para desbloquear o Session. "; -"PRIVACY_SECTION_READ_RECEIPTS" = "Recibos de Leitura"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Recibos de Leitura"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Enviar confirmações de leitura em conversas privadas."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicadores de escrita"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicadores de escrita"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Pré-visualização de links"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Enviar pré-visualizações de links"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Criar pré-visualização de links para URLs suportados. "; -"PRIVACY_SECTION_CALLS" = "Chamadas (Beta)"; -"PRIVACY_CALLS_TITLE" = "Chamadas de vídeo e voz"; -"PRIVACY_CALLS_DESCRIPTION" = "Ativar as chamadas de voz e vídeo de e para outros utilizadores. "; -"PRIVACY_CALLS_WARNING_TITLE" = "Chamadas de vídeo e voz (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "O seu adereço de IP estará visível para o seu companheiro de chamada e para o servidor Fundação Oxen enquanto usa as chamadas em versão BETA. Tem a certeza que pretende ativar as chamadas de voz e vídeo? "; -"NOTIFICATIONS_TITLE" = "Notificações"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Estratégia da notificação"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Usar Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Ao usar os servidores de notificação da Apple, será notificado de novas mensagens de forma consistente e imediata. "; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Ir para as definições de notificações"; -"NOTIFICATIONS_SECTION_STYLE" = "Estilo de notificação"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Som"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Som de quando a aplicação é iniciada "; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Conteúdo da notificação"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informação exibida nas notificações"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nome e conteúdo"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Apenas o nome"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Sem Nome ou Conteúdo"; -"CONVERSATION_SETTINGS_TITLE" = "Conversas"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Eliminar mensagens com mais de 6 meses, de comunidades que têm acima de 2.000 mensagens."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Mensagens de voz"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Reproduzir automaticamente mensagens de áudio "; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Reproduzir automaticamente mensagens de áudio seguidas."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Contactos Bloqueados"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Não possui nenhum contacto bloqueado. "; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Tem a certeza que pretende bloquear %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "Este contacto"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Tem a certeza que quer bloquear %@ ?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "e %@ ?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "e %d outros?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Aparência"; -"APPEARANCE_THEMES_TITLE" = "Temas"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Cor Principal"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Como estás?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Estou bem obrigado, e tu? "; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Estou bem, obrigado."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Modo noturno automático"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Ajuda"; -"HELP_REPORT_BUG_TITLE" = "Denunciar erro"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exportar os seus inícios de sessão e carregar o ficheiro através do Centro de Ajuda do Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportar inícios de sessão"; -"HELP_TRANSLATE_TITLE" = "Traduzir Session"; -"HELP_FEEDBACK_TITLE" = "Adorávamos saber a sua opinião"; -"HELP_FAQ_TITLE" = "FAQ (Perguntas Mais Frequentes)"; -"HELP_SUPPORT_TITLE" = "Suporte"; -"modal_clear_all_data_title" = "Limpar todos os dados"; -"modal_clear_all_data_explanation" = "Apagará permanentemente as suas mensagens e contactos. Gostaria de eliminar isto apenas do seu telemóvel, ou também eliminar a sua base de dados inteira? "; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Limpar apenas o dispositivo"; -"modal_clear_all_data_entire_account_button_title" = "Limpar dispositivo e base de dados"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Apagar"; -"modal_seed_title" = "Sua frase de recuperação"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Definições"; -"modal_permission_camera" = "Câmara"; -"modal_permission_microphone" = "Microfone"; -"modal_permission_library" = "Biblioteca"; -"DISAPPEARING_MESSAGES_OFF" = "Desligado"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Desligado"; -"COPY_GROUP_URL" = "Copiar URL do grupo"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contatos"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Por favor, escolha pelo menos um membro do grupo"; -"GROUP_CREATION_PLEASE_WAIT" = "Por favor, aguarde enquanto o grupo é criado..."; -"GROUP_CREATION_ERROR_TITLE" = "Não foi possível criar grupo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Por favor, verifique a sua ligação à internet e tente novamente."; -"GROUP_UPDATE_ERROR_TITLE" = "Não foi possível atualizar o grupo"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Não pode sair enquanto não adicionar ou remover outros membros do grupo."; -"GROUP_ACTION_REMOVE" = "Eliminar "; -"GROUP_TITLE_MEMBERS" = "Membros"; -"GROUP_TITLE_FALLBACK" = "Grupo"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Por favor, verifique o Session ID ou o nome OSN e tente novamente."; -"COMMUNITY_ERROR_INVALID_URL" = "Por favor, verifique o URL colocado e tente novamente. "; -"COMMUNITY_ERROR_GENERIC" = "Falha ao entrar"; -"DISAPPERING_MESSAGES_TITLE" = "Desaparecimento de mensagens"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Categorias de eliminação"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Desaparecer após leitura"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "As mensagens serão apagadas após serem lidas."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Desaparecer mensagem após o seu envio"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "As mensagens serão apagadas após o seu envio."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Temporizador"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Configurar "; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Esta configuração aplica-se a todos os membros desta conversa."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Esta configuração aplica-se a todos os membros da conversa. \n Apenas os administradores do grupo podem modificar esta configuração. "; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Informações"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "A aplicação está a demorar imenso tempo para iniciar\n\n - -Pode continuar a esperar que a aplicação inicie, exportando os seus inícios de sessão de modo a partilhar eventuais erros, ou pode tentar iniciar a aplicação novamente."; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Sair"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Não foi encontrada a mensagem original."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Mostrar menos"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Pedidos de Mensagem"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Solicitações de mensagens da comunidade"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "A enviar"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Enviada"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Lida"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Erro ao enviar"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Enviada"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Recebida"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "De"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID do ficheiro"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Tipo de ficheiro"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Tamanho do ficheiro"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duração"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Falha ao sincronizar"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "A sincronizar"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Erro ao enviar mensagem"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Falha ao sincronizar a mensagem com os seus outros dispositivos"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Eliminar de todos os meus dispositivos"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Enviar novamente"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Procurar GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "O Session será conectado com o Giphy de modo a fornecer resultados de pesquisa. Os seus dados não serão protegidos de forma completa ao enviar GIFs. "; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Informações da mensagem"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Silenciar"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Não silenciar"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Marcar como lida"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Marcar como não lida"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Sair do grupo"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Sair da comunidade"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Tem a certeza que pretende sair %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "A sair..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Erro ao sair do grupo!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Não foi possível sair do grupo, por favor, tente novamente"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Eliminar grupo"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Tem a certeza que pretende eliminar %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Eliminar conversa"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Tem a certeza que pretende eliminar a sua conversa com %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Tem a certeza que pretende ocultar %@? "; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Definir imagem a exibir"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Guardar"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Eliminar "; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Não foi possível remover a imagem do avatar"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Tamanho máximo do arquivo excedido"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Por favor, escolha uma fotografia mais pequena e tente novamente"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Não foi possível atualizar o perfil"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Por favor, verifique a sua conexão à Internet e tente novamente."; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Introduza um nome"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Mensagens não lidas"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Não possui mensagens de %@. Envie uma mensagem para iniciar a conversa! "; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "Não existem mensagens em %@. "; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "Não possui mensagens em %@. "; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Esta configuração aplica-se a todos os membros nesta conversa."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "As mensagens desaparecerão após o seu envio."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legado"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "lida"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "enviada"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Desaparecer após - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Desaparecer após leitura - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "O nome do grupo é agora '%@'"; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Nome de grupo atualizado. "; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ foi convidado para se juntar ao grupo."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ e %@ foram convidados para se juntarem ao grupo."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ foi removido do grupo."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ saiu do grupo."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ foi promovido a administrador."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ e %@ foram promovidos a administradores. "; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Foi removido de %@. "; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ convidou-o a juntar-se a %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Não foi possível eliminar o grupo, por favor, tente novamente. "; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Membros do grupo"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Enviar convite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Convite enviado"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "O convite falhou"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Introduzir nome do grupo"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Por favor, escolha um nome para o grupo."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Inserir descrição do grupo"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Administradores não podem ser removidos."; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Convidar"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Convidar contactos"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "Não possui mais contactos. "; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Enviar convite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Enviar convites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Falha ao convidar %@ para %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Falha ao convidar %@ e %@ para %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promover administradores"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promover"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Atualizar informações do grupo"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Atualizar nome do grupo"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "O nome do grupo está visível para todos os membros."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "Foi convidado a juntar-se a %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ e %@ foram convidados para se juntarem ao grupo."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ e %@ foram convidados a participar no grupo. O histórico de conversas foi partilhado."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ e %@ foram convidados a participar do grupo. O histórico de conversas foi partilhado."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ e %@ outros foram convidados para se juntarem ao grupo."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirmar"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ro.lproj/Localizable.strings b/Session/Meta/Translations/ro.lproj/Localizable.strings deleted file mode 100644 index a85bb47277..0000000000 --- a/Session/Meta/Translations/ro.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Atașament"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Captură"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tipul fișierului: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Dimensiune: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Limita de mesaje a fost atinsă"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Trimite"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Atașament"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Eroare la trimiterea atașamentului"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Nu se poate converti imaginea."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Videoclipul nu a putut fi procesat."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Imaginea nu poate fi procesata."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Eliminarea metadata din imagine este imposibila."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nu se poate redimensiona imaginea."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Atasamentul este prea mare."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Conținutul atașamentului este invalid."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Formatul atașamentului este invalid."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Atașamentul este gol."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Alegere document nereușită."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Creează o arhivă a acestui fișier sau director și încearcă trimiterea acesteia."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Tip fișier incompatibil"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Mesaj vocal"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blochează"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blochează %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Deblocați %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Deblochează"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ a fost blocat."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Utilizator blocat"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ a fost deblocat."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Utilizatorii blocați nu te vor apela sau trimite mesaje."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Gata"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Selectează"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Căutare..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Nu există rezultate"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "Un rezultat"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d din %d potriviri"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blochează acest utilizator"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Dezactivează sunet"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Caută conversație"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Mută și modifică mărimea"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Poate dura câteva minute."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizare bază de date"; -/* The present; the current time. */ -"DATE_NOW" = "Acum"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Mesaje temporare"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Editează grupul"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Nu aveți fișier media în această conversație."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Încărcăre fișiere media noi…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Încărcăre fișiere media vechi…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Nu s-a putut găsi GIF-ul cautat. Va rugăm verificați dacă sunteți online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "O eroare neașteptată a avut loc."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nu s-a putut găsi GIF-ul"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Căutați."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Eroare. Apasă pentru a reîncerca."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Nici un rezultat."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupul a fost creat"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ s-a alăturat grupului. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ a părăsit grupul. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ a fost eliminat din grup. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ au fost eliminați din grup. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Noul titlu al grupului este '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupul este actualizat."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Ați ieșit din grup."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Ați fost eliminat din grup. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "No poți partaja mai mult de %@ elemente."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nu a putut fi selectat atașamentul."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Fișier audio invalid."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Părăsește"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Părăsește grupul"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Șterge %d de mesaje"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Șterge mesaj"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ pe %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Tu"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Luna aceasta"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Trimitere eșuată."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Citit"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Trimitere…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Trimis"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Încărcare…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ către %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Notă personală"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Este posibil să fi primit mesaje cât timp %@ a fost repornit."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ok"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ a dezactivat mesajele care dispar."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ a fixat timpul in care dispar mesajele la %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Imposibil de realizat captură foto."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nu se poate efectua captura foto."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Nu am putut configura camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Album fără Nume"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Marchează ca Citit"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Răspunde"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentifică-te pentru a deschide Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autentificare eșuată"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Renunți la atașament?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Renunță"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (implicit)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Sunet notificare mesaj"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Nici unul"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ Zile"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@Z"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ Ore"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@O"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@Minute"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ Secunde"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@S"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@z"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ Oră"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minut"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ o săptămână"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ săptămâni"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@săpt"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Renunță"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Șterge"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Mesaj vocal"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Apasă și menține apăsat pentru a înregistra un mesaj vocal."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Mesaj vocal"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ai dezactivat funcția de mesaje care dispar."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ai setat intervalul de timp al mesajelor care dispar la %@"; -// MARK: - Session -"continue_2" = "Continuă"; -"copy" = "Copiază"; -"invalid_url" = "Adresa URL invalidă"; -"next" = "Următorul"; -"share" = "Partajează"; -"invalid_session_id" = "Id Session invalid"; -"cancel" = "Renunță"; -"your_session_id" = "ID-ul tău Session"; -"vc_landing_title_2" = "Pentru tine, Session începe aici..."; -"vc_landing_register_button_title" = "Creează ID Session"; -"vc_landing_restore_button_title" = "Continuă Sessiunea"; -"vc_landing_link_button_title" = "Atașează un dispozitiv contului tău"; -"view_fake_chat_bubble_1" = "Ce este Session?"; -"view_fake_chat_bubble_2" = "Este o aplicație decentralizată, criptată și destinată mesajelor sigure"; -"view_fake_chat_bubble_3" = "Deci nu colectează informații personale despre mine sau metadatele conversațiilor mele? Cum funcționează?"; -"view_fake_chat_bubble_4" = "Utilizănd concomitent criptare end-to-end de înalt nivel și tehnologii de rutare anonimă avansată."; -"view_fake_chat_bubble_5" = "Prietenii nu își pot lăsa prietenii sa folosească aplicații de mesagerie compromise. Cu plăcere."; -"vc_register_title" = "Salută-ți noul ID Session"; -"vc_register_explanation" = "ID-ul tău Session este unica adresă pe care oamenii o pot folosi pentru a intra în contact cu tine pe Session. Fără nici o conexiune la identitatea ta reală, Id-ul tău Session este total anonim si sigur din definiție."; -"vc_restore_title" = "Restaurează cont"; -"vc_restore_explanation" = "Introdu fraza de recuperare care ți-a fost oferită în momentul în care ți-ai creeat contul pentru a îți recupera contul."; -"vc_restore_seed_text_field_hint" = "Scrie fraza de recuperare"; -"vc_link_device_title" = "Atașează un dispozitiv"; -"vc_link_device_scan_qr_code_tab_title" = "Scanează cod QR"; -"vc_display_name_title_2" = "Alege-ți un nickname"; -"vc_display_name_explanation" = "Acesta va fi numele tău cand folosești Session. Acesta poate fi numele tău real, un alias, sau orice iți vine în minte."; -"vc_display_name_text_field_hint" = "Introdu un nickname"; -"vc_display_name_display_name_missing_error" = "Alege un nume care va fi afișat"; -"vc_display_name_display_name_too_long_error" = "Alege un nume care va fi afișat mai scurt"; -"vc_pn_mode_recommended_option_tag" = "Recomandat"; -"vc_pn_mode_no_option_picked_modal_title" = "Te rog alege o optiune"; -"vc_home_empty_state_message" = "Încă nu ai nici un contact"; -"vc_home_empty_state_button_title" = "Pornește o Sessiune"; -"vc_seed_title" = "Fraza de recuperare"; -"vc_seed_title_2" = "Aceasta este fraza ta de recuperare"; -"vc_seed_explanation" = "Fraza ta de recuperare este cheia absoluta a ID-ului tău Session - o poți folosi ca să îți restaurezi ID-ul Session dacă pierzi accesul la dispozitivul tău. Pune fraza de recuperare la loc sigur și nu o împărtăși cu nimeni."; -"vc_seed_reveal_button_title" = "Ține apăsat pentru a răzui"; -"view_seed_reminder_subtitle_1" = "Securizează-ți contul salvând fraza ta de recuperare"; -"view_seed_reminder_subtitle_2" = "Apasă și menține apăsat pe cuvinte pentru a descoperi fraza de recuperare, apoi pune-o la loc sigur pentru a îți securiza ID-ul Session."; -"view_seed_reminder_subtitle_3" = "Asigură-te că pui la loc sigur fraza ta de recuperare"; -"vc_path_title" = "Cale"; -"vc_path_explanation" = "Session îți ascunde IP-ul prin rutarea mesajelor tale prin mai multe noduri de serviciu ale session. Acestea sunt țările prin care trec mesajele tale:"; -"vc_path_device_row_title" = "Tu"; -"vc_path_guard_node_row_title" = "Nod de intrare"; -"vc_path_service_node_row_title" = "Nod de serviciu"; -"vc_path_destination_row_title" = "Destinatie"; -"vc_path_learn_more_button_title" = "Află mai mult"; -"vc_create_private_chat_title" = "Mesaj nou"; -"vc_create_private_chat_enter_session_id_tab_title" = "Introdu id session"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scanează cod QR"; -"vc_enter_public_key_explanation" = "Începe o conversație nouă introducând ID-ul sesiunii cuiva sau partajează-ți ID-ul sesiunii cu el."; -"vc_scan_qr_code_camera_access_explanation" = "Session are nevoie de permisiunea de acces la camera pentru a scana coduri QR"; -"vc_create_closed_group_title" = "Creează grup"; -"vc_create_closed_group_text_field_hint" = "Introduceți un nume de grup"; -"vc_create_closed_group_empty_state_message" = "Încă nu aveți persoane de contact"; -"vc_create_closed_group_group_name_missing_error" = "Vă rugăm introduceți un nume de grup"; -"vc_create_closed_group_group_name_too_long_error" = "Vă rugăm introduceți un nume de grup mai scurt"; -"vc_create_closed_group_too_many_group_members_error" = "Un grup închis nu poate avea mai mult de 100 de membri"; -"vc_join_public_chat_title" = "Alătură-te comunității"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL-ul comunității"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scanați codul QR"; -"vc_enter_chat_url_text_field_hint" = "Introduceți URL-ul comunității"; -"vc_settings_title" = "Setări"; -"vc_group_settings_title" = "Setarile Grupului"; -"vc_settings_display_name_missing_error" = "Vă rugăm să alegeți un nume"; -"vc_settings_display_name_too_long_error" = "Vă rugăm să alegeți un nume mai scurt"; -"vc_settings_privacy_button_title" = "Confidențialitate"; -"vc_settings_notifications_button_title" = "Notificări"; -"vc_settings_recovery_phrase_button_title" = "Fraza de recuperare"; -"vc_settings_clear_all_data_button_title" = "Ștergeți datele"; -"vc_qr_code_title" = "Cod QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Vizualizați codul QR"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scanați codul QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scanează codul QR al cuiva pentru a începe o conversație cu ei"; -"vc_view_my_qr_code_explanation" = "Acesta este codul tău QR. Ceilalți utilizatori îl pot scana ca să înceapă o sesiune cu tine."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Vei fi notificat în legătură cu noile mesaje imediat prin serverele de încredere Apple pentru notificări."; -"fast_mode" = "Modul rapid"; -"slow_mode_explanation" = "Session va verifica ocazional în fundal dacă există mesaje noi."; -"slow_mode" = "Modul încet"; -"vc_pn_mode_title" = "Notificări mesaje"; -"vc_link_device_recovery_phrase_tab_title" = "Fraza de recuperare"; -"vc_link_device_scan_qr_code_explanation" = "Intră în setări -> Fraza de recuperare pe celălalt dispozitiv pentru a descoperi codul tău QR."; -"vc_enter_recovery_phrase_title" = "Fraza de recuperare"; -"vc_enter_recovery_phrase_explanation" = "Pentru a adăuga noul tău dispozitiv, folosește fraza de recuperare care ți-a fost dată când ți-ai creat contul."; -"vc_enter_public_key_text_field_hint" = "Introdul ID-ul Session sau numele ONS"; -"admin_group_leave_warning" = "Pentru că tu ești creatorul grupului, acesta va fi șters pentru toată lumea. Această acțiune este ireversibilă."; -"vc_join_open_group_suggestions_title" = "Sau alătura-te unuia dintre acestea..."; -"vc_settings_invite_a_friend_button_title" = "Invită un prieten"; -"copied" = "Copiat"; -"vc_conversation_settings_copy_session_id_button_title" = "Copiază ID Session"; -"vc_conversation_input_prompt" = "Mesaj"; -"vc_conversation_voice_message_cancel_message" = "Glisează pentru a renunța"; -"modal_download_attachment_title" = "Ai incredere în %@?"; -"modal_download_attachment_explanation" = "Esti sigur ca vrei să descarci fișierul media trimis de %@?"; -"modal_download_button_title" = "Descarcă"; -"modal_open_url_title" = "Deschizi URl?"; -"modal_open_url_explanation" = "Esti sigur că vrei să deschizi %@?"; -"modal_open_url_button_title" = "Deschide"; -"modal_copy_url_button_title" = "Copiază link"; -"modal_blocked_title" = "Deblochezi %@?"; -"modal_blocked_explanation" = "Esti sigur ca vrei sa deblochezi %@?"; -"modal_blocked_button_title" = "Deblochează"; -"modal_link_previews_title" = "Pornești previzualizare?"; -"modal_link_previews_explanation" = "Permițând previzualizare linkurilor va arăta previzualizări ale URL-urilor Pe care le trimiți și primești. Acestea pot fi folositoare, dar Session Va trebui să contacteze siturile pentru afișa previzualizările. Poți oricând să dezactivezi previzualizare linkurilor în setările session."; -"modal_link_previews_button_title" = "Pornește"; -"vc_share_title" = "Partajează cu Session"; -"vc_share_loading_message" = "Pregătirea atașamente..."; -"vc_share_sending_message" = "Trimitere..."; -"vc_share_link_previews_unsecure" = "Previzualizarea nu a fost încărcată pentru linkul nesigur"; -"vc_share_link_previews_error" = "Nu a fost posibilă încărcarea pre vizualizări"; -"vc_share_link_previews_disabled_title" = "Previzualizare linkurilor dezactivată"; -"vc_share_link_previews_disabled_explanation" = "Activarea previzualizărilor linkurilor va afișa previzualizări pentru adresele pe care le partajați. Acest lucru poate fi util, dar Session va trebui să contacteze site-urile conectate pentru a genera previzualizări.\n\nPuteți activa linkul de previzualizări din setările sesiunii."; -"view_open_group_invitation_description" = "Invitație la grup deschis"; -"vc_conversation_settings_invite_button_title" = "Adaugă membrii"; -"modal_send_seed_title" = "Atenţie"; -"modal_send_seed_explanation" = "Aceasta este fraza ta de recuperare. Orice persoană în posesia acestei fraze are access total la contul tău."; -"modal_send_seed_send_button_title" = "Trimite"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notifică doar pentru Menționări"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Când este activată, vei fi notificat doar pentru mesajele care te menționează."; -"view_conversation_title_notify_for_mentions_only" = "Notificare doar pentru Menționări"; -"message_deleted" = "Acest mesaj a fost șters"; -"delete_message_for_me" = "Șterge doar pentru mine"; -"delete_message_for_everyone" = "Șterge pentru toată lumea"; -"delete_message_for_me_and_recipient" = "Șterge pentru mine și %@"; -"context_menu_reply" = "Răspunde"; -"context_menu_save" = "Salvează"; -"context_menu_ban_user" = "Banează Utilizator"; -"context_menu_ban_and_delete_all" = "Banează și Șterge Tot"; -"context_menu_ban_user_error_alert_message" = "Imposibil de banat utilizatorul"; -"accessibility_expanding_attachments_button" = "Adaugă fișiere"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Galerie Foto"; -"accessibility_camera_button" = "Cameră"; -"accessibility_main_button_collapse" = "Restrânge opțiunile de atașare"; -"invalid_recovery_phrase" = "Frază de recuperare nevalidă"; -"DISMISS_BUTTON_TEXT" = "Respinge"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Setări"; -"call_outgoing" = "Ai sunat pe %@"; -"call_incoming" = "%@ v-a apelat"; -"call_missed" = "Apel pierdut de la %@"; -"APN_Message" = "Ai primit un mesaj nou."; -"APN_Collapsed_Messages" = "Ai %@ mesaje noi."; -"PIN_BUTTON_TEXT" = "Fixați"; -"UNPIN_BUTTON_TEXT" = "Anulați fixarea"; -"modal_call_missed_tips_title" = "Apel pierdut"; -"modal_call_missed_tips_explanation" = "Apel pierdut de la „%@” deoarece trebuie să oferi permisiunea pentru „Apeluri vocale și video” din setările de confidențialitate."; -"media_saved" = "Conținut media salvat de %@."; -"screenshot_taken" = "%@ a făcut o captură de ecran."; -"SEARCH_SECTION_CONTACTS" = "Contacte & Grupuri"; -"SEARCH_SECTION_MESSAGES" = "Mesaje"; -"MESSAGE_REQUESTS_TITLE" = "Cereri de mesaj"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Nici o cerere de mesaje în așteptare"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Șterge Toate"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Ești sigur că vrei să ștergi toate cererile de mesaje și invitațiile de grup?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Sterge"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Sunteţi sigur că doriţi să ştergeţi această solicitare de mesaj?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Ești sigur că vrei să blochezi acest contact?"; -"MESSAGE_REQUESTS_INFO" = "Trimiterea unui mesaj către acest utilizator va accepta automat solicitarea de mesaje și va dezvălui ID-ul tău."; -"MESSAGE_REQUESTS_ACCEPTED" = "Solicitarea ta de mesaj a fost acceptată."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Aveți o cerere de mesaj noua"; -"TXT_HIDE_TITLE" = "Ascunde"; -"TXT_DELETE_ACCEPT" = "Acceptă"; -"TXT_BLOCK_USER_TITLE" = "Blochează utilizator"; -"ALERT_ERROR_TITLE" = "Eroare"; -"modal_call_permission_request_title" = "Permisiuni de apel necesare"; -"modal_call_permission_request_explanation" = "Puteți activa permisiunea „Apeluri vocale și video” în Setările de confidențialitate."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Ups, a apărut o eroare"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Vă rugăm să încercați din nou mai târziu"; -"LOADING_CONVERSATIONS" = "Se încarcă conversațiile..."; -"DATABASE_MIGRATION_FAILED" = "A aparut o eroare la optimizarea bazei de date\n\nPoti exporta jurnalele aplicatiei pentru a putea imparti pentru depanare sau poti restaura dispozitivul\n\nAvertisment: Restaurarea aparatului va duce la pierderea datelor mai vechi de două saptamani"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Ceva nu a funcționat. Verificați fraza de recuperare și încercați din nou."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Se pare că nu aţi introdus suficiente cuvinte. Vă rugăm să verificaţi fraza de recuperare şi încercaţi din nou."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Se pare că lipsește ultimul cuvânt din fraza de recuperare. Te rugăm să verifici ce ai introdus și să încerci din nou."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Se pare că există un cuvânt nevalid în fraza de recuperare. Vă rugăm să verificaţi ce aţi introdus şi să încercaţi din nou."; -"RECOVERY_PHASE_ERROR_FAILED" = "Fraza de recuperare nu a putut fi verificată. Vă rugăm să verificaţi ce aţi introdus şi să încercaţi din nou."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Autentificarea nu a putut fi accesată."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Autentificare esuata."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Prea multe încercări de autentificare eșuate. Vă rugăm să încercați din nou mai târziu."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Trebuie să activați un cod de acces în setările iOS pentru a putea utiliza blocarea ecranului."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Trebuie să activați un cod de acces în setările iOS pentru a putea utiliza blocarea ecranului."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Trebuie să activați un cod de acces în setările iOS pentru a putea utiliza blocarea ecranului."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Trimite"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Reîncercați"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Arată conversația"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Mesajul tău nu a putut fi trimis."; -"INVALID_SESSION_ID_MESSAGE" = "Vă rugăm să verificați ID-ul Session și să încercați din nou."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Vă rugăm să verificați fraza de recuperare și încercați din nou."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documente"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "Nu ai niciun document în această conversație."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Încărcare document mai nou…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Încărcare document mai vechi…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activități"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animale & Natura"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Steaguri"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Alimente și băuturi"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Obiecte"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Utilizate recent"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Emoticoane & Persoane"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Simboluri"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Călătorie & Locuri"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacționează la un mesaj cu %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Şi încă 1 a reacţionat %@ la acest mesaj."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Și alții %@ au reacționat %@ la acest mesaj."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Mai încet! Ai trimis prea multe reacții. Încearcă din nou în curând."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Conversație nouă"; -"CREATE_GROUP_BUTTON_TITLE" = "Creează"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Alătură-te"; -"PRIVACY_TITLE" = "Confidențialitate"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Securitate ecran(App Lock)"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Blocați Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Necesită Touch ID, Face ID sau parola pentru a debloca sesiunea."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Confirmări de citire"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Confirmări de citire"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Trimite confirmări de citire în chat-uri unu-la-unu."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indicatori tastare"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indicatorii de tastare"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Vezi și partajează indicatorii de tastare în conversații unu-la-unu."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Previzualizări Link"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Trimite previzualizare link"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Genereaza previzualizari link-uri pentru URL-uri suportate."; -"PRIVACY_SECTION_CALLS" = "Apeluri (Beta)"; -"PRIVACY_CALLS_TITLE" = "Apeluri vocale și video"; -"PRIVACY_CALLS_DESCRIPTION" = "Activează apelurile vocale și video către și de la alți utilizatori."; -"PRIVACY_CALLS_WARNING_TITLE" = "Apeluri vocale și video (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Adresa ta IP este vizibilă partenerului tău și unui server Oxen Foundation în timp ce folosești apelurile beta. Sunteți sigur că doriți să activați apelurile de voce si video?"; -"NOTIFICATIONS_TITLE" = "Notificări"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Strategie de notificare"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Folosește modul rapid"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Vei fi notificat de un mesaj nou în mod sigur și imediat folosind serverele de notificare Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Mergeți la setările de notificare ale dispozitivului"; -"NOTIFICATIONS_SECTION_STYLE" = "Stil de notificare"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sunet"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sunet când aplicația este deschisă"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Conținut notificări"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informaţiile prezentate în notificări."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Nume & Conținut"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Doar nume"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Nici nume nici conținut"; -"CONVERSATION_SETTINGS_TITLE" = "Conversații"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Scurtarea mesajelor"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Scurtați comunitățile"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Ştergeţi mesajele mai vechi de 6 luni de la comunităţile care au peste 2.000 de mesaje."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Mesaje audio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Auto-redare mesaje audio"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Redare automată a mesajelor audio consecutive."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Contacte blocate"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nu ai niciun contact blocat."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Deblochează"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Ești sigur ca vrei sa îl(o) deblochezi pe %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "acest contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Ești sigur ca vrei sa îl(o) deblochezi pe %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "și %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "și %d alții?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Deblochează"; -"APPEARANCE_TITLE" = "Aspect"; -"APPEARANCE_THEMES_TITLE" = "Teme"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Culoare primară"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Ce mai faci?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Vă mulţumesc frumos, dumneavoastră?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Ma simt minunat, mulțumesc."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Mod de noapte automat"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Potrivire setări de sistem"; -"HELP_TITLE" = "Ajutor"; -"HELP_REPORT_BUG_TITLE" = "Raportati o problema"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exportă jurnalele, apoi încarcă fișierul chiar dacă sesiunea Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportați jurnalele"; -"HELP_TRANSLATE_TITLE" = "Traduceți Session"; -"HELP_FEEDBACK_TITLE" = "Ne-ar plăcea feedback-ul tău"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Asistență"; -"modal_clear_all_data_title" = "Șterge toate datele"; -"modal_clear_all_data_explanation" = "Acest lucru va şterge definitiv mesajele şi contactele dumneavoastră. Doriţi să ştergeţi doar acest dispozitiv sau să ştergeţi şi datele din reţea?"; -"modal_clear_all_data_explanation_2" = "Sigur doriți să ștergeți datele dvs. din rețea? Dacă continuați, nu veți putea să vă restaurați mesajele sau contactele."; -"modal_clear_all_data_device_only_button_title" = "Curăță doar dispozitivul"; -"modal_clear_all_data_entire_account_button_title" = "Curăță dispozitivul și rețeaua"; -"dialog_clear_all_data_deletion_failed_1" = "Datele nu au fost șterse de un modul de serviciu. Nodul de servicii: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Datele nu au fost șterse de %@ Noduri de serviciu. ID-uri de serviciu: %@."; -"modal_clear_all_data_confirm" = "Ștergeți"; -"modal_seed_title" = "Fraza ta de recuperare"; -"modal_seed_explanation" = "Puteți folosi fraza de recuperare pentru a vă restaura contul sau pentru a lega un dispozitiv."; -"modal_permission_explanation" = "Sesiunea are nevoie de acces %@ pentru a continua. Puteți activa accesul în setările iOS."; -"modal_permission_settings_title" = "Setări"; -"modal_permission_camera" = "cameră"; -"modal_permission_microphone" = "microfon"; -"modal_permission_library" = "bibliotecă"; -"DISAPPEARING_MESSAGES_OFF" = "Dezactivat"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Dezactivat"; -"COPY_GROUP_URL" = "Copiază URL-ul grupului"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacte"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Te rugăm să alegi cel puțin un membru al grupului"; -"GROUP_CREATION_PLEASE_WAIT" = "Te rugăm să aștepți până când grupul este creat..."; -"GROUP_CREATION_ERROR_TITLE" = "Nu s-a putut crea grupul"; -"GROUP_CREATION_ERROR_MESSAGE" = "Vă rugăm să verificați conexiunea la internet și să încercați din nou."; -"GROUP_UPDATE_ERROR_TITLE" = "Nu s-a putut actualiza grupul"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Nu pot pleca în timp ce adăugați sau eliminați alți membri."; -"GROUP_ACTION_REMOVE" = "Elimină"; -"GROUP_TITLE_MEMBERS" = "Participanți"; -"GROUP_TITLE_FALLBACK" = "Grup"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Poți trimite mesaje numai către ID-uri orbite din comunitate"; -"DM_ERROR_INVALID" = "Verificați ID-ul Session sau numele ONS și încercați din nou"; -"COMMUNITY_ERROR_INVALID_URL" = "Vă rugăm să verificați adresa URL introdusă și să încercați din nou."; -"COMMUNITY_ERROR_GENERIC" = "Nu s-a putut alătura"; -"DISAPPERING_MESSAGES_TITLE" = "Mesaje temporare"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Șterge tip"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Dispare după citire"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Şterge mesajele după ce au fost citite."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Dispare după trimitere"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Şterge mesajele după ce au fost trimise."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Temporizator"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Setează"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Această setare se aplică tuturor celor din această conversație."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Această setare se aplică tuturor celor din această conversație. Numai administratorii de grup pot schimba această setare."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ a setat mesaje pentru a dispărea %@ după ce au fost %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ a schimbat mesajele pentru a dispărea %@ după ce au fost %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ a dezactivat mesajele care dispar"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "A apărut o eroare la deschiderea bazei de date\n\n Poți exporta jurnalele aplicației pentru reparare sau poți restaura dispozitivul\n\n Atenție: La restaurarea dispozitivului tău, vei pierde toate datele mai vechi de doua săptămâni"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Mesajul original nu a fost găsit."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Arată mai puțin"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Cereri de Mesaje"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Veți putea trimite mesaje vocale și atașamente după ce destinatarul a aprobat cererea de mesaj"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Se trimite"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Trimis"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Citit"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Trimitere eșuată"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Trimis"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Primit"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Șterge de pe toate dispozitivele mele"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Retrimite"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resincronizează"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Caută GIF-uri?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session se va conecta la Giphy pentru a obține rezultate la căutare. Dvs. nu veți avea acces la protecția completă a metadatelor când trimiteți GIF-uri."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Despre Mesaj"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Marchează ca citit"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Marchează ca necitit"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Părăsește Grupul"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Părăsește Comunitatea"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Ești sigur ca vrei sa părăsești %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Părăsire a Grupului eșuată!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/ru.lproj/Localizable.strings b/Session/Meta/Translations/ru.lproj/Localizable.strings deleted file mode 100644 index 1ac14cd541..0000000000 --- a/Session/Meta/Translations/ru.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Вложение"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Подпись"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Тип файла: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Размер: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Достигнут предел сообщений"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Отправить"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Вложение"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Ошибка отправки вложения"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Невозможно конвертировать изображение."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Невозможно обработать видео."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Невозможно распознать изображение."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Не удается удалить метаданные из изображения."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Невозможно изменить размер изображения."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Вложение слишком большое."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Вложение содержит неподдерживаемое содержимое."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Вложение имеет неверный формат файла."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Вложение без содержимого."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Не удалось выбрать документ."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Пожалуйста, создайте сжатый архив этого файла или папки и попробуйте отправить его."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Неподдерживаемый файл"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Голосовое сообщение"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Заблокировать"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Заблокировать %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Разблокировать %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Разблокировать"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "Пользователь %@ был заблокирован."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Пользователь заблокирован"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "Пользователь %@ был разблокирован."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Заблокированные пользователи не смогут звонить или отправлять сообщения Вам."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Готово"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Выбрать"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Поиск..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Нет совпадений"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 совпадение"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d из %d совпадений"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Заблокировать этого пользователя"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Без звука"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Искать в разговоре"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Перемещение и масштабирование"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Это может занять несколько минут."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Оптимизация базы данных"; -/* The present; the current time. */ -"DATE_NOW" = "Сейчас"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Исчезающие сообщения"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Изменить группу"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "В этой беседе нет медиафайлов."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Загрузка новых медиа…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Загрузка старых медиа…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Не удалось получить запрошенный GIF-файл. Убедитесь, что вы подключены к сети."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Произошла неизвестная ошибка."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Не удается выбрать GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Пожалуйста, введите ваш запрос."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Ошибка. Нажмите, чтобы повторить попытку."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Нет результатов."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Группа создана."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ вошел в группу. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ вышел из группы. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ удален из группы. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ был удален из группы. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Название изменено на «%@». "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Группа обновлена."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Вы покинули группу."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Вы были удалены из группы. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Вы не можете поделиться больше, чем %@ элементами."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Не удалось выбрать вложение."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Некорректный аудиофайл."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Покинуть"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Покинуть группу"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Все медиа"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Удалить %d сообщений"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Удалить сообщение"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ - %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Вы"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Этот месяц"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Отправка не удалась"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Прочитано"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Отправка…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Отправлено"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Загрузка…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ в %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Заметка для себя"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Возможно, вы получили сообщения во время перезапуска вашего %@."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ок"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ отключил(а) исчезающие сообщения."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ установил(а) время исчезновения сообщений — %@."; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Невозможно сделать снимок."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Невозможно сделать снимок."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Не удалось настроить камеру."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Безымянный альбом"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Отметить как прочтенное"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Ответить"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Аутентификация для открытия Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Ошибка аутентификации"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Отклонить медиа?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Отклонить медиа"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (по умолчанию)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Звук сообщения"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Нет"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ дней"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@д"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ часов"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ч"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ минут"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@м"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ секунд"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@с"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ дня"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ часа"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ минуты"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ недели"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ недель"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@н"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Отменить"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Удалить"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Голосовое сообщение"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Нажмите и удерживайте для записи голосового сообщения"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Голосовое сообщение"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Вы отключили исчезающие сообщения."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Вы установили время исчезновения сообщений — %@."; -// MARK: - Session -"continue_2" = "Продолжить"; -"copy" = "Копировать"; -"invalid_url" = "Неверная ссылка"; -"next" = "Далее"; -"share" = "Поделиться"; -"invalid_session_id" = "Неверный Session ID"; -"cancel" = "Отмена"; -"your_session_id" = "Ваш Session ID"; -"vc_landing_title_2" = "Здесь начинается Session..."; -"vc_landing_register_button_title" = "Создать Session ID"; -"vc_landing_restore_button_title" = "Восстановить Session ID"; -"vc_landing_link_button_title" = "Привязать к существующему аккаунту"; -"view_fake_chat_bubble_1" = "Что такое Session?"; -"view_fake_chat_bubble_2" = "Это децентрализованное, зашифрованное приложение для обмена сообщениями"; -"view_fake_chat_bubble_3" = "Значит ли это, что оно не собирает мою личную информацию или метаданные моего разговора? Как оно работает?"; -"view_fake_chat_bubble_4" = "С использованием комбинации передовых технологий анонимной маршрутизации и сквозного шифрования."; -"view_fake_chat_bubble_5" = "Друзья не позволят друзьям использовать ненадежные мессенджеры. Пользуйтесь на здоровье."; -"vc_register_title" = "Познакомьтесь со своим Session ID"; -"vc_register_explanation" = "Ваш Session ID - это уникальный адрес, который другие пользователи могут использовать для связи с вами при помощи Session. Поскольку ваш Session ID никак не связан с вашей настоящей личностью, он по определению является полностью анонимным и конфиденциальным."; -"vc_restore_title" = "Восстановите свой аккаунт"; -"vc_restore_explanation" = "Для восстановления учетной записи введите секретную фразу, которая была предоставлена вам при регистрации."; -"vc_restore_seed_text_field_hint" = "Введите секретную фразу для восстановления"; -"vc_link_device_title" = "Привязать устройство"; -"vc_link_device_scan_qr_code_tab_title" = "Сканировать QR-код"; -"vc_display_name_title_2" = "Выберите ваше отображаемое имя"; -"vc_display_name_explanation" = "Это имя будет отображаться, когда вы используете Session. Это может быть ваше настоящее имя, псевдоним или что угодно по вашему выбору."; -"vc_display_name_text_field_hint" = "Введите отображаемое имя"; -"vc_display_name_display_name_missing_error" = "Пожалуйста, выберите отображаемое имя"; -"vc_display_name_display_name_too_long_error" = "Пожалуйста, выберите более короткое отображаемое имя"; -"vc_pn_mode_recommended_option_tag" = "Рекомендуется"; -"vc_pn_mode_no_option_picked_modal_title" = "Пожалуйста, выберите метод"; -"vc_home_empty_state_message" = "У вас еще нет контактов"; -"vc_home_empty_state_button_title" = "Начать Сессию"; -"vc_seed_title" = "Ваша секретная фраза для восстановления"; -"vc_seed_title_2" = "А вот и ваша секретная фраза для восстановления"; -"vc_seed_explanation" = "Ваша секретная фраза для восстановления является главным ключом к вашему Session ID. Храните свою ее в надежном месте и никому не передавайте."; -"vc_seed_reveal_button_title" = "Удерживайте, чтобы показать"; -"view_seed_reminder_subtitle_1" = "Защитите свой аккаунт, сохранив секретную фразу для восстановления"; -"view_seed_reminder_subtitle_2" = "Нажмите и удерживайте сокращенные слова, чтобы открыть секретную фразу, а затем сохраните ее в надежном месте, чтобы защитить свой Session ID."; -"view_seed_reminder_subtitle_3" = "Обязательно сохраните секретную фразу в надежном месте."; -"vc_path_title" = "Маршрут"; -"vc_path_explanation" = "Session скрывает ваш IP, перенаправляя ваши сообщения через несколько сервисных узлов своей децентрализованной сети. Вот страны, через которые в данный момент проходит ваш сеанс связи:"; -"vc_path_device_row_title" = "Вы"; -"vc_path_guard_node_row_title" = "Узел входа"; -"vc_path_service_node_row_title" = "Служебный узел"; -"vc_path_destination_row_title" = "Место назначения"; -"vc_path_learn_more_button_title" = "Узнать больше"; -"vc_create_private_chat_title" = "Новое сообщение"; -"vc_create_private_chat_enter_session_id_tab_title" = "Введите Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Сканировать QR-код"; -"vc_enter_public_key_explanation" = "Введите Session ID собеседника или отправьте ему ваш Session ID чтобы начать новую беседу."; -"vc_scan_qr_code_camera_access_explanation" = "Session нужен доступ к камере для сканирования QR-кодов"; -"vc_create_closed_group_title" = "Создать группу"; -"vc_create_closed_group_text_field_hint" = "Введите название группы"; -"vc_create_closed_group_empty_state_message" = "У вас еще нет контактов"; -"vc_create_closed_group_group_name_missing_error" = "Пожалуйста, введите название группы"; -"vc_create_closed_group_group_name_too_long_error" = "Пожалуйста, введите более короткое имя группы"; -"vc_create_closed_group_too_many_group_members_error" = "В закрытой группе не может быть больше 100 участников"; -"vc_join_public_chat_title" = "Присоединиться к сообществу"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL сообщества"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Сканировать QR-код"; -"vc_enter_chat_url_text_field_hint" = "Введите URL сообщества"; -"vc_settings_title" = "Настройки"; -"vc_group_settings_title" = "Настройки группы"; -"vc_settings_display_name_missing_error" = "Пожалуйста, выберите отображаемое имя"; -"vc_settings_display_name_too_long_error" = "Пожалуйста, выберите более короткое отображаемое имя"; -"vc_settings_privacy_button_title" = "Конфиденциальность"; -"vc_settings_notifications_button_title" = "Уведомления"; -"vc_settings_recovery_phrase_button_title" = "Секретная фраза"; -"vc_settings_clear_all_data_button_title" = "Очистить данные"; -"vc_qr_code_title" = "QR-код"; -"vc_qr_code_view_my_qr_code_tab_title" = "Посмотреть мой QR-код"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Сканировать QR-код"; -"vc_qr_code_view_scan_qr_code_explanation" = "Отсканируйте QR-код другого человека, чтобы начать с ним разговор"; -"vc_view_my_qr_code_explanation" = "Это ваш QR-код. Другие пользователи могут сканировать его, чтобы начать диалог с вами."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Вы будете получать уведомления о новых сообщениях надежно и сразу же с помощью серверов уведомлений Apple."; -"fast_mode" = "Ускоренный режим"; -"slow_mode_explanation" = "Время от времени в фоновом режиме будут проверяться новые сообщения."; -"slow_mode" = "Медленный режим"; -"vc_pn_mode_title" = "Уведомления о Сообщениях"; -"vc_link_device_recovery_phrase_tab_title" = "Секретная фраза"; -"vc_link_device_scan_qr_code_explanation" = "Перейдите в Настройки → Секретная фраза на другом устройстве, чтобы показать ваш QR-код."; -"vc_enter_recovery_phrase_title" = "Секретная фраза"; -"vc_enter_recovery_phrase_explanation" = "Чтобы связать ваше устройство, введите секретную фразу, которая была предоставлена вам при регистрации."; -"vc_enter_public_key_text_field_hint" = "Введите Session ID или ONS имя"; -"admin_group_leave_warning" = "Так как вы являетесь создателем этой группы, она будет удалена для всех. Это нельзя будет отменить."; -"vc_join_open_group_suggestions_title" = "Или присоединитесь к одной из этих..."; -"vc_settings_invite_a_friend_button_title" = "Пригласить друга"; -"copied" = "Скопировано"; -"vc_conversation_settings_copy_session_id_button_title" = "Копировать Session ID"; -"vc_conversation_input_prompt" = "Сообщения"; -"vc_conversation_voice_message_cancel_message" = "Проведите для отмены"; -"modal_download_attachment_title" = "Доверять %@?"; -"modal_download_attachment_explanation" = "Вы уверены, что хотите загрузить медиафайлы, присланные %@?"; -"modal_download_button_title" = "Скачать"; -"modal_open_url_title" = "Открыть ссылку?"; -"modal_open_url_explanation" = "Вы уверены, что хотите открыть %@?"; -"modal_open_url_button_title" = "Открыть"; -"modal_copy_url_button_title" = "Копировать ссылку"; -"modal_blocked_title" = "Разблокировать %@?"; -"modal_blocked_explanation" = "Вы уверены, что хотите разблокировать %@?"; -"modal_blocked_button_title" = "Разблокировать"; -"modal_link_previews_title" = "Включить предварительный просмотр ссылок?"; -"modal_link_previews_explanation" = "Включение предпросмотра ссылок покажет превью для отправляемых и получаемых ссылок. Это может быть полезно, но Session нужно будет соединиться с сайтами, связанными с ссылками, чтобы сгенерировать предпросмотр. Вы всегда можете отключить предпросмотр ссылок в настройках Session."; -"modal_link_previews_button_title" = "Включить"; -"vc_share_title" = "Поделиться в Session"; -"vc_share_loading_message" = "Подготовка вложений..."; -"vc_share_sending_message" = "Отправка..."; -"vc_share_link_previews_unsecure" = "Предпросмотр не загружен для небезопасных ссылок"; -"vc_share_link_previews_error" = "Невозможно загрузить предпросмотр"; -"vc_share_link_previews_disabled_title" = "Ссылка предпросмотра выключена"; -"vc_share_link_previews_disabled_explanation" = "Включение предпросмотра ссылок покажет превью для отправляемых и получаемых ссылок. Это может быть полезно, но Session нужно будет соединиться с сайтами, на которые ведут ссылки, чтобы сгенерировать предпросмотр. \n\nВы всегда можете отключить предпросмотр ссылок в настройках Session."; -"view_open_group_invitation_description" = "Открыть приглашение в группу"; -"vc_conversation_settings_invite_button_title" = "Добавить участников"; -"modal_send_seed_title" = "Предупреждение"; -"modal_send_seed_explanation" = "Это ваша секретная фраза для восстановления. Если вы отправите ее кому-то, он получит полный доступ к вашей учетной записи."; -"modal_send_seed_send_button_title" = "Отправить"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Уведомлять только об упоминаниях"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Когда включено, вы будете уведомлены только о сообщениях, упоминающих вас."; -"view_conversation_title_notify_for_mentions_only" = "Уведомления только для упоминаний"; -"message_deleted" = "Это сообщение было удалено"; -"delete_message_for_me" = "Удалить только для меня"; -"delete_message_for_everyone" = "Удалить для всех"; -"delete_message_for_me_and_recipient" = "Удалить для меня и %@"; -"context_menu_reply" = "Ответить"; -"context_menu_save" = "Сохранить"; -"context_menu_ban_user" = "Заблокировать пользователя"; -"context_menu_ban_and_delete_all" = "Заблокировать и удалить всех"; -"context_menu_ban_user_error_alert_message" = "Не удалось заблокировать пользователя"; -"accessibility_expanding_attachments_button" = "Добавить вложения"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Документ"; -"accessibility_library_button" = "Библиотека фотографий"; -"accessibility_camera_button" = "Камера"; -"accessibility_main_button_collapse" = "Свернуть параметры вложений"; -"invalid_recovery_phrase" = "Неверная секретная фраза"; -"DISMISS_BUTTON_TEXT" = "Закрыть"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Настройки"; -"call_outgoing" = "Вы позвонили %@"; -"call_incoming" = "%@ звонил(а) вам"; -"call_missed" = "Пропущенный звонок от %@"; -"APN_Message" = "Вы получили новое сообщение"; -"APN_Collapsed_Messages" = "Вы получили %@ новых сообщений."; -"PIN_BUTTON_TEXT" = "Закрепить"; -"UNPIN_BUTTON_TEXT" = "Открепить"; -"modal_call_missed_tips_title" = "Пропущен вызов"; -"modal_call_missed_tips_explanation" = "Вызов от '%@' пропущен, вам необходимо включить разрешение 'Голосовые и видео вызовы' в настройках Конфиденциальности."; -"media_saved" = "%@ сохранил(а) медиафайл. "; -"screenshot_taken" = "%@ сделал(а) снимок экрана."; -"SEARCH_SECTION_CONTACTS" = "Контакты и группы"; -"SEARCH_SECTION_MESSAGES" = "Сообщения"; -"MESSAGE_REQUESTS_TITLE" = "Запросы Сообщений"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Нет ожидающих запросов"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Очистить всё"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Очистить"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Вы уверены, что хотите удалить это сообщение?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Вы уверены, что хотите заблокировать контакт?"; -"MESSAGE_REQUESTS_INFO" = "Отправив сообщение этому пользователю, вы автоматически примете его запрос на сообщение и отобразите свой идентификатор сеанса."; -"MESSAGE_REQUESTS_ACCEPTED" = "Ваш запрос на переписку был принят."; -"MESSAGE_REQUESTS_NOTIFICATION" = "У вас новый запрос на переписку"; -"TXT_HIDE_TITLE" = "Скрыть"; -"TXT_DELETE_ACCEPT" = "Да"; -"TXT_BLOCK_USER_TITLE" = "Заблокировать пользователя"; -"ALERT_ERROR_TITLE" = "Ошибка"; -"modal_call_permission_request_title" = "Требуется разрешение для вызова"; -"modal_call_permission_request_explanation" = "Вы можете включить разрешение 'Звонки и Видеозвонки' в настройках приватности."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Упс, произошла ошибка"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Пожалуйста, попробуйте позже"; -"LOADING_CONVERSATIONS" = "Загрузка переписок..."; -"DATABASE_MIGRATION_FAILED" = "Произошла ошибка при оптимизации базы данных\n\nВы можете экспортировать журналы приложений, чтобы иметь возможность поделиться для устранения неполадок или вы можете восстановить ваше устройство\n\nПредупреждение: Восстановление вашего устройства приведет к потере данных старше двух недель"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Что-то пошло не так. Пожалуйста, проверьте вашу секретную фразу для восстановления и попробуйте снова."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Похоже, вы не ввели достаточное количество слов. Пожалуйста, проверьте вашу секретную фразу для восстановления и повторите попытку."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Кажется, вы пропустили последнее слово вашей секретной фразе для восстановления. Пожалуйста, проверьте, что вы ввели и повторите попытку."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "В вашей секретной фразе для восстановления обнаружено неправильное слово. Пожалуйста, проверьте введенные вами слова и повторите попытку."; -"RECOVERY_PHASE_ERROR_FAILED" = "Ваша секретная фраза для восстановления не может быть проверена. Пожалуйста, проверьте, что вы ввели и повторите попытку."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Не удалось получить доступ к аутентификации."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Ошибка аутентификации."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Слишком много неудачных попыток аутентификации. Пожалуйста, повторите попытку позже."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Вы должны включить код доступа в настройках iOS, чтобы использовать блокировку экрана."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Вы должны включить код доступа в настройках iOS, чтобы использовать блокировку экрана."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Вы должны включить код доступа в настройках iOS, чтобы использовать блокировку экрана."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Отправить"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Повторить"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Показать чат"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Ваше сообщение не было отправлено."; -"INVALID_SESSION_ID_MESSAGE" = "Пожалуйста, проверьте Session ID или ONS имя и попробуйте снова."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Пожалуйста, проверьте секретную фразу для восстановления и повторите попытку."; -"MEDIA_TAB_TITLE" = "Медиа"; -"DOCUMENT_TAB_TITLE" = "Документы"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "В этом разговоре нет документов."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Загрузка нового документа…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Загрузка старого документа…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Активности"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Животные и природа"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Флаги"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Еда и напитки"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Объекты"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Недавние"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Улыбки и люди"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Символы"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Путешествия и места"; -"EMOJI_REACTS_NOTIFICATION" = "%@ отправил сообщение: %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "И еще 1 человек отправил %@ этому сообщению."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "И %@ других ответили %@ на это сообщение."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Помедленнее! Вы отправили слишком много эмодзи-реакций. Попробуйте еще раз в ближайшее время."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Новая беседа"; -"CREATE_GROUP_BUTTON_TITLE" = "Создать"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Присоединиться"; -"PRIVACY_TITLE" = "Конфиденциальность"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Защита экрана"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Заблокировать Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Требовать Touch ID, Face ID или ваш пароль для разблокировки Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Уведомления о прочтении"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Уведомления о прочтении"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Отправлять уведомления о прочтении в личных беседах."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Индикаторы ввода текста"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Индикаторы ввода текста"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Просмотр и передача индикатора о наборе в личных беседах."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Предпросмотры ссылок"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Отправлять предпросмотр ссылки"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Генерировать предпросмотр ссылок для поддерживаемых URL."; -"PRIVACY_SECTION_CALLS" = "Вызовы (бета)"; -"PRIVACY_CALLS_TITLE" = "Голосовые и видео вызовы"; -"PRIVACY_CALLS_DESCRIPTION" = "Позволяет осуществлять голосовые и видеовызовы другим пользователям."; -"PRIVACY_CALLS_WARNING_TITLE" = "Голосовые и видео вызовы (бета)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "IP-адрес виден вашему собеседнику и серверу Oxen Foundation во время бета-вызовов. Вы уверены, что хотите включить голосовые и видео вызовы?"; -"NOTIFICATIONS_TITLE" = "Уведомления"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Метод уведомлений"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Использовать быстрый режим"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Вы будете получать уведомления о новых сообщениях надежно и немедленно с помощью серверов уведомлений Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Перейти в системные настройки уведомлений"; -"NOTIFICATIONS_SECTION_STYLE" = "Стиль уведомлений"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Звук"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Звук, когда приложение открыто"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Содержание уведомления"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Информация, отображаемая в уведомлениях."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Имя и содержимое"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Только имя"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Ни имени, ни содержимого"; -"CONVERSATION_SETTINGS_TITLE" = "Беседы"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Обрезка сообщений"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Обрезать Сообщества"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Удалять сообщения старше 6 месяцев из сообществ, у которых более 2000 сообщений."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Аудиосообщения"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Автовоспроизведение аудиосообщений"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Автовоспроизведение последовательных аудиосообщений."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Заблокированные контакты"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "У вас нет заблокированных контактов."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Разблокировать"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Вы уверены, что хотите разблокировать %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "этот контакт"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Вы уверены, что хотите разблокировать %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "и %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "и еще %d?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Разблокировать"; -"APPEARANCE_TITLE" = "Внешний вид"; -"APPEARANCE_THEMES_TITLE" = "Темы оформления"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Основной цвет"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Как дела?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Я в порядке, спасибо, а ты?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "У меня все отлично, спасибо."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Автоматический ночной режим"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Использовать настройку системы"; -"HELP_TITLE" = "Помощь"; -"HELP_REPORT_BUG_TITLE" = "Сообщить об ошибке"; -"HELP_REPORT_BUG_DESCRIPTION" = "Экспортируйте свои логи, затем загрузите файл через службу поддержки Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Экспортировать логи"; -"HELP_TRANSLATE_TITLE" = "Перевод Session"; -"HELP_FEEDBACK_TITLE" = "Мы будем рады вашим отзывам"; -"HELP_FAQ_TITLE" = "Часто задаваемые вопросы"; -"HELP_SUPPORT_TITLE" = "Поддержка"; -"modal_clear_all_data_title" = "Очистить все данные"; -"modal_clear_all_data_explanation" = "Это приведет к окончательному удалению сообщений и контактов. Вы хотите очистить только это устройство или также удалить данные из сети?"; -"modal_clear_all_data_explanation_2" = "Вы уверены, что хотите удалить свои данные из сети? Если вы продолжите, вы не сможете восстановить свои сообщения или контакты."; -"modal_clear_all_data_device_only_button_title" = "Очистить только устройство"; -"modal_clear_all_data_entire_account_button_title" = "Очистить устройство и сеть"; -"dialog_clear_all_data_deletion_failed_1" = "Данные не удалены 1 узлом сервиса. Номер узла: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Данные не удалены %@ узлами сервиса. Номера узлов: %@."; -"modal_clear_all_data_confirm" = "Очистить"; -"modal_seed_title" = "Ваша секретная фраза"; -"modal_seed_explanation" = "Вы можете использовать вашу секретную фразу для восстановления вашей учетной записи или привязки устройства."; -"modal_permission_explanation" = "Session необходим доступ к %@ для продолжения. Вы можете включить доступ в настройках iOS."; -"modal_permission_settings_title" = "Настройки"; -"modal_permission_camera" = "камера"; -"modal_permission_microphone" = "микрофон"; -"modal_permission_library" = "библиотека"; -"DISAPPEARING_MESSAGES_OFF" = "Выключено"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Выключено"; -"COPY_GROUP_URL" = "Скопировать URL-адрес группы"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Контакты"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Пожалуйста, выберите как минимум 1 участника группы"; -"GROUP_CREATION_PLEASE_WAIT" = "Пожалуйста, подождите, пока группа будет создана..."; -"GROUP_CREATION_ERROR_TITLE" = "Не удалось создать группу"; -"GROUP_CREATION_ERROR_MESSAGE" = "Пожалуйста, проверьте подключение к интернету и повторите попытку."; -"GROUP_UPDATE_ERROR_TITLE" = "Не удалось обновить группу"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Нельзя покинуть, пока добавляются или удаляются другие участники."; -"GROUP_ACTION_REMOVE" = "Удалить"; -"GROUP_TITLE_MEMBERS" = "Участники"; -"GROUP_TITLE_FALLBACK" = "Группа"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Вы можете отправлять сообщения только тем скрытым идентификаторам, которые находятся внутри сообщества"; -"DM_ERROR_INVALID" = "Пожалуйста, проверьте Session ID или ONS имя и попробуйте снова"; -"COMMUNITY_ERROR_INVALID_URL" = "Пожалуйста, проверьте введенный URL и повторите попытку."; -"COMMUNITY_ERROR_GENERIC" = "Не удалось подключиться"; -"DISAPPERING_MESSAGES_TITLE" = "Исчезающие сообщения"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Тип удаления"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Исчезают после прочтения"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Сообщения удаляются после их прочтения."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Исчезают после отправки"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Сообщения удаляются после их отправки."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Таймер"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Задать"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Эта настройка применяется ко всем участникам беседы."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Этот параметр применим ко всем в этой беседе. Только администраторы групп могут изменить этот параметр."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ поставил сообщения на удаление %@ после того, как они были %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ изменил сообщения, чтобы они удалялись %@ после того, как они были %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ отключил удаление сообщений"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/si-LK.lproj/Localizable.strings b/Session/Meta/Translations/si-LK.lproj/Localizable.strings deleted file mode 100644 index b4ba32b5c7..0000000000 --- a/Session/Meta/Translations/si-LK.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "ඇමුණුම"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "ශීර්ෂ පාඨය"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "ගොනුවේ වර්ගය: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "ප්‍රමාණය: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "පණිවිඩ සීමාව ළඟා විය"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "යවන්න"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "ඇමුණුම"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "ඇමුණුම යැවීමේ දෝෂයකි"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "රූපය පරිවර්තනය කළ නොහැක."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "වීඩියෝව සැකසීමට නොහැකිය."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "රූපය විග්‍රහ කළ නොහැක."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "රූපයෙන් පාරදත්ත ඉවත් කළ නොහැක."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "රූපය ප්‍රතිප්‍රමාණ කිරීමට නොහැක."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "ඇමුණුම ඉතා විශාලයි."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "ඇමුණුමෙහි වලංගු නොවන අන්තර්ගතය ඇතුළත් වේ."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "ඇමුණුමෙහි වලංගු නොවන ගොනු ආකෘතියක් ඇත."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "ඇමුණුම හිස් ය."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "ලේඛනය තේරීමට අසමත් විය."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "කරුණාකර මෙම ගොනුවේ හෝ නාමාවලියේ සම්පීඩිත සංරක්ෂිතයක් සාදා ඒ වෙනුවට එය යැවීමට උත්සාහ කරන්න."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "සහාය නොදක්වන ගොනුවකි"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "හඬ පණිවිඩය"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "අවහිර"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@අවහිර කරන්නද?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "%@අවහිර කිරීම ඉවත් කරන්නද?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "අවහිර කිරීම ඉවත් කරන්න"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ අවහිර කර ඇත."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "පරිශීලක අවහිර කර ඇත"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ අවහිර කිරීම ඉවත් කර ඇත."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "අවහිර කළ පරිශීලකයින්ට ඔබට ඇමතීමට හෝ ඔබට පණිවිඩ යැවීමට නොහැකි වනු ඇත."; -/* Label for generic done button. */ -"BUTTON_DONE" = "කළා"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "තෝරන්න"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "ගැලපීම් නැත"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 තරගය"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "තරඟ %d කින් %d ක්"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "මෙම පරිශීලකයා අවහිර කරන්න"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "නිහඬ කරන්න"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "සංවාදය සොයන්න"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "චලනය සහ පරිමාණය"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "මෙය විනාඩි කිහිපයක් ගත විය හැක."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "දත්ත සමුදාය ප්‍රශස්ත කිරීම"; -/* The present; the current time. */ -"DATE_NOW" = "දැන්"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "අතුරුදහන් වන පණිවිඩ"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "සමූහය සංස්කරණය"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "ඔබට මෙම සංවාදයේ කිසිදු මාධ්‍යයක් නොමැත."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "නව මාධ්‍ය…පූරණය වෙමින්"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "පැරණි මාධ්‍ය…පූරණය වෙමින්"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "ඉල්ලූ GIF ලබා ගැනීමට අසමත් විය. කරුණාකර ඔබ සබැඳි බව තහවුරු කරන්න."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "නොදන්නා දෝෂයක් සිදු විය."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF තේරීමට නොහැක"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "කරුණාකර ඔබගේ සෙවුම ඇතුලත් කරන්න."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "දෝෂයකි. නැවත උත්සහ කිරීම සඳහා තට්ටු කරන්න."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "ප්‍රත්‍ය නැත."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "කණ්ඩායම නිර්මාණය කරන ලදී"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "මාතෘකාව දැන් '%@' වේ. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "සමූහය යාවත්කාලීන කරන ලදී."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "ඔබ කණ්ඩායම හැර ගොස් ඇත."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " ඔබව සමූහයෙන් ඉවත් කරන ලදී. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "ඔබට අයිතම %@ කට වඩා බෙදා ගත නොහැක."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "ඇමුණුම තේරීමට අසමත් විය."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "වලංගු නොවන ශ්‍රව්‍ය ගොනුව."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "හැරයන්න"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "සමූහය හැරයන්න"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "සියලු මාධ්යය"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "පණිවිඩ %d ක් මකන්න"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "පණිවිඩය මකන්න"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ මත %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "ඔබ"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "මෙම මාසය"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "යැවීම අසාර්ථක විය."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "කියවන්න"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "…යැවීම"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "යවා ඇත"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "උඩුගත කිරීම…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ සිට %@දක්වා"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "ස්වයං සටහන්"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "ඔබගේ %@ නැවත ආරම්භ කරන අතරතුර ඔබට පණිවිඩ ලැබී තිබිය හැක."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "හරි"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ අබල කළ අතුරුදහන් වන පණිවිඩ."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ අතුරුදහන් පණිවිඩ කාලය %@ලෙස සකසන්න"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "රූපය ග්‍රහණය කර ගැනීමට නොහැක."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "රූපය ග්‍රහණය කර ගැනීමට නොහැක."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "කැමරාව වින්‍යාස කිරීමට අසමත් විය."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "නම් නොකළ ඇල්බමය"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "කියවූ බවට සලකුණු කරන්න"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "පිළිතුරු"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "සැසිය විවෘත කිරීමට සත්‍යාපනය කරන්න."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "සත්‍යාපනය අසාර්ථක විය"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "මාධ්‍ය ඉවත දමන්නද?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "මාධ්‍ය ඉවතලන්න"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (පෙරනිමි)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "පණිවිඩ ශබ්දය"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "කිසිවක් නැත"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "දවස් %@"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "පැය %@"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "පැය %@"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "විනාඩි %@"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "මීටර් %@"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "තත්පර %@"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@තත්"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "දවස් %@"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "පැය %@"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "විනාඩි %@"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "සති %@"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "සති %@"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "වගේ"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "මකන්න"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "හඬ පණිවිඩය"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "හඬ පණිවිඩයක් පටිගත කිරීමට තට්ටු කර අල්ලාගෙන සිටින්න."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "හඬ පණිවිඩය"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "ඔබ අතුරුදහන් වන පණිවිඩ අක්‍රිය කර ඇත."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "ඔබ අතුරුදහන් වන පණිවිඩ කාලය %@ලෙස සකසා ඇත"; -// MARK: - Session -"continue_2" = "ඉදිරියට"; -"copy" = "පිටපත්"; -"invalid_url" = "ඒ.ස.නි. වලංගු නොවේ"; -"next" = "සඳහා"; -"share" = "බෙදාගන්න"; -"invalid_session_id" = "වලංගු නොවන සැසි හැඳුනුම්පතක්"; -"cancel" = "වගේ"; -"your_session_id" = "ඔබගේ සැසි හැඳුනුම්පත"; -"vc_landing_title_2" = "ඔබේ සැසිය මෙතැනින් ආරම්භ වේ..."; -"vc_landing_register_button_title" = "සැසි හැඳුනුම්පත සාදන්න"; -"vc_landing_restore_button_title" = "ඔබේ සැසිය දිගටම කරගෙන යන්න"; -"vc_landing_link_button_title" = "උපාංගයක් සම්බන්ධ කරන්න"; -"view_fake_chat_bubble_1" = "සෙෂන් යනු කුමක්ද?"; -"view_fake_chat_bubble_2" = "එය විමධ්‍යගත, සංකේතාත්මක පණිවිඩ යැවීමේ යෙදුමකි"; -"view_fake_chat_bubble_3" = "එබැවින් එය මගේ පුද්ගලික තොරතුරු හෝ මගේ සංවාද පාරදත්ත රැස් නොකරයිද? එය ක්රියා කරන්නේ කෙසේද?"; -"view_fake_chat_bubble_4" = "උසස් නිර්නාමික රවුටිං සහ අන්තයේ සිට අගට සංකේතාංකන තාක්‍ෂණයන්ගේ එකතුවක් භාවිතා කිරීම."; -"view_fake_chat_bubble_5" = "සම්මුතියට පත් පණිවිඩකරුවන් භාවිතා කිරීමට මිතුරන් මිතුරන්ට ඉඩ නොදේ. ඔයාව සාදරයෙන් පිළිගන්නවා."; -"vc_register_title" = "ඔබගේ සෙෂන් හැඳු. ආයුබෝවන් කියන්න"; -"vc_register_explanation" = "ඔබගේ සැසි හැඳුනුම මිනිසුන්ට සැසියේදී ඔබව සම්බන්ධ කර ගැනීමට භාවිතා කළ හැකි අද්විතීය ලිපිනයයි. ඔබගේ සැබෑ අනන්‍යතාවයට කිසිදු සම්බන්ධයක් නොමැතිව, ඔබගේ සැසි හැඳුනුම්පත සම්පූර්ණයෙන්ම නිර්නාමික වන අතර සැලසුම අනුව පුද්ගලික වේ."; -"vc_restore_title" = "ඔබගේ ගිණුම ප්‍රතිසාධනය කරන්න"; -"vc_restore_explanation" = "ඔබ ඔබේ ගිණුම ප්‍රතිසාධනය කිරීමට ලියාපදිංචි වූ විට ඔබට ලබා දුන් ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ඇතුළු කරන්න."; -"vc_restore_seed_text_field_hint" = "ඔබගේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ඇතුලත් කරන්න"; -"vc_link_device_title" = "උපාංගයක් සම්බන්ධ කරන්න"; -"vc_link_device_scan_qr_code_tab_title" = "QR කේතය පරිලෝකනය කරන්න"; -"vc_display_name_title_2" = "ඔබගේ සංදර්ශක නම තෝරන්න"; -"vc_display_name_explanation" = "ඔබ Session භාවිතා කරන විට මෙය ඔබගේ නම වනු ඇත. එය ඔබගේ සැබෑ නම, අන්වර්ථ නාමයක් හෝ ඔබ කැමති වෙනත් ඕනෑම දෙයක් විය හැක."; -"vc_display_name_text_field_hint" = "සංදර්ශක නාමයක් ඇතුළත් කරන්න"; -"vc_display_name_display_name_missing_error" = "කරුණාකර සංදර්ශක නමක් තෝරන්න"; -"vc_display_name_display_name_too_long_error" = "කරුණාකර කෙටි සංදර්ශක නමක් තෝරන්න"; -"vc_pn_mode_recommended_option_tag" = "නිර්දේශිතයි"; -"vc_pn_mode_no_option_picked_modal_title" = "කරුණාකර විකල්පයක් තෝරන්න"; -"vc_home_empty_state_message" = "ඔබට තවම සම්බන්ධතා කිසිවක් නැත"; -"vc_home_empty_state_button_title" = "සැසියක් ආරම්භ කරන්න"; -"vc_seed_title" = "ඔබේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"vc_seed_title_2" = "ඔබේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය හමුවන්න"; -"vc_seed_explanation" = "ඔබේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ඔබේ සැසි හැඳුනුම්පතේ ප්‍රධාන යතුරයි — ඔබට ඔබේ උපාංගයට ප්‍රවේශය අහිමි වුවහොත් ඔබේ සැසි හැඳුනුම්පත ප්‍රතිසාධනය කිරීමට ඔබට එය භාවිත කළ හැක. ඔබගේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ආරක්‍ෂිත ස්ථානයක ගබඩා කරන්න, එය කිසිවෙකුට ලබා නොදෙන්න."; -"vc_seed_reveal_button_title" = "හෙළි කිරීමට රැඳී සිටින්න"; -"view_seed_reminder_subtitle_1" = "ඔබගේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය සුරැකීමෙන් ඔබගේ ගිණුම සුරක්ෂිත කරන්න"; -"view_seed_reminder_subtitle_2" = "ඔබේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය හෙළි කිරීමට නැවත සකස් කළ වචන තට්ටු කර අල්ලාගෙන සිටින්න, ඉන්පසු ඔබේ සැසි හැඳුනුම්පත සුරක්ෂිත කිරීමට එය සුරක්ෂිතව ගබඩා කරන්න."; -"view_seed_reminder_subtitle_3" = "ඔබගේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ආරක්ෂිත ස්ථානයක ගබඩා කිරීමට වග බලා ගන්න"; -"vc_path_title" = "මාර්ගය"; -"vc_path_explanation" = "සැසියේ විමධ්‍යගත ජාලයේ බහුවිධ සේවා නෝඩ් හරහා ඔබේ පණිවිඩ යොමු කිරීමෙන් සැසිය ඔබේ IP සඟවයි. ඔබගේ සම්බන්ධතාවය දැනට යොමු කෙරෙන රටවල් මේවාය:"; -"vc_path_device_row_title" = "ඔබ"; -"vc_path_guard_node_row_title" = "ඇතුල්වීමේ නෝඩය"; -"vc_path_service_node_row_title" = "සේවා නෝඩය"; -"vc_path_destination_row_title" = "ගමනාන්තය"; -"vc_path_learn_more_button_title" = "තවත් හදාරන්න"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "සැසි හැඳුනුම්පත ඇතුළත් කරන්න"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR කේතය පරිලෝකනය කරන්න"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "QR කේත පරිලෝකනය කිරීමට සැසියට කැමරා ප්‍රවේශය අවශ්‍යයි"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "කණ්ඩායම් නමක් ඇතුළත් කරන්න"; -"vc_create_closed_group_empty_state_message" = "ඔබට තවම සම්බන්ධතා කිසිවක් නැත"; -"vc_create_closed_group_group_name_missing_error" = "කරුණාකර කණ්ඩායම් නමක් ඇතුළත් කරන්න"; -"vc_create_closed_group_group_name_too_long_error" = "කරුණාකර කෙටි කණ්ඩායම් නමක් ඇතුළත් කරන්න"; -"vc_create_closed_group_too_many_group_members_error" = "සංවෘත කණ්ඩායමකට සාමාජිකයින් 100 කට වඩා සිටිය නොහැක"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR කේතය පරිලෝකනය කරන්න"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "සැකසුම්"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "කරුණාකර සංදර්ශක නමක් තෝරන්න"; -"vc_settings_display_name_too_long_error" = "කරුණාකර කෙටි සංදර්ශක නමක් තෝරන්න"; -"vc_settings_privacy_button_title" = "පෞද්ගලිකත්වය"; -"vc_settings_notifications_button_title" = "දැනුම්දීම්"; -"vc_settings_recovery_phrase_button_title" = "ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"vc_settings_clear_all_data_button_title" = "දත්ත හිස් කරන්න"; -"vc_qr_code_title" = "QR කේතය"; -"vc_qr_code_view_my_qr_code_tab_title" = "මගේ QR කේතය බලන්න"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR කේතය පරිලෝකනය කරන්න"; -"vc_qr_code_view_scan_qr_code_explanation" = "ඔවුන් සමඟ සංවාදයක් ආරම්භ කිරීමට යමෙකුගේ QR කේතය පරිලෝකනය කරන්න"; -"vc_view_my_qr_code_explanation" = "මෙය ඔබගේ QR කේතයයි. ඔබ සමඟ සැසියක් ආරම්භ කිරීමට වෙනත් පරිශීලකයින්ට එය ස්කෑන් කළ හැක."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Apple හි දැනුම්දීම් සේවාදායකයන් භාවිතයෙන් ඔබට විශ්වාසවන්තව සහ වහාම නව පණිවිඩ ගැන දැනුම් දෙනු ඇත."; -"fast_mode" = "වේගවත් මාදිලිය"; -"slow_mode_explanation" = "සැසිය විටින් විට පසුබිමේ නව පණිවිඩ සඳහා පරීක්ෂා කරනු ඇත."; -"slow_mode" = "මන්දගාමී මාදිලිය"; -"vc_pn_mode_title" = "පණිවිඩ දැනුම්දීම්"; -"vc_link_device_recovery_phrase_tab_title" = "ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"vc_link_device_scan_qr_code_explanation" = "ඔබගේ QR කේතය පෙන්වීමට ඔබගේ අනෙක් උපාංගයේ සිටුවම් → Recovery Phase වෙත සංචාලනය කරන්න."; -"vc_enter_recovery_phrase_title" = "ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"vc_enter_recovery_phrase_explanation" = "ඔබගේ උපාංගය සම්බන්ධ කිරීමට, ඔබ ලියාපදිංචි වූ විට ඔබට ලබා දුන් ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය ඇතුළු කරන්න."; -"vc_enter_public_key_text_field_hint" = "Session ID හෝ ONS නම ඇතුලත් කරන්න"; -"admin_group_leave_warning" = "ඔබ මෙම සමූහයේ නිර්මාතෘ වන බැවින් එය සෑම කෙනෙකුටම මකා දැමෙනු ඇත. මෙය ආපසු හැරවිය නොහැක."; -"vc_join_open_group_suggestions_title" = "නැත්නම් මේ එකකට එකතු වෙන්න..."; -"vc_settings_invite_a_friend_button_title" = "මිතුරෙකුට ආරාධනා කරන්න"; -"copied" = "පිටපත් විය"; -"vc_conversation_settings_copy_session_id_button_title" = "සැසි හැඳුනුම්පත පිටපත් කරන්න"; -"vc_conversation_input_prompt" = "පණිවිඩය"; -"vc_conversation_voice_message_cancel_message" = "අවලංගු කිරීමට ස්ලයිඩ් කරන්න"; -"modal_download_attachment_title" = "%@ විශ්වාස ද?"; -"modal_download_attachment_explanation" = "ඔබට %@මගින් එවන ලද මාධ්‍ය බාගැනීමට අවශ්‍ය බව විශ්වාසද?"; -"modal_download_button_title" = "බාගන්න"; -"modal_open_url_title" = "ඒ.ස.නි. විවෘත කරනවාද?"; -"modal_open_url_explanation" = "ඔබට %@විවෘත කිරීමට අවශ්‍ය බව විශ්වාසද?"; -"modal_open_url_button_title" = "විවෘත"; -"modal_copy_url_button_title" = "සබැඳිය පිටපත"; -"modal_blocked_title" = "%@ අනවහිර?"; -"modal_blocked_explanation" = "ඔබට %@අවහිර කිරීම ඉවත් කිරීමට අවශ්‍ය බව විශ්වාසද?"; -"modal_blocked_button_title" = "අනවහිර"; -"modal_link_previews_title" = "සබැඳි පෙරදසුන් සබල කරන්නද?"; -"modal_link_previews_explanation" = "සබැඳි පෙරදසුන් සබල කිරීමෙන් ඔබ යවන සහ ලබන URL සඳහා පෙරදසුන් පෙන්වනු ඇත. මෙය ප්‍රයෝජනවත් විය හැකි නමුත්, පෙරදසුන් උත්පාදනය කිරීමට සැසියට සම්බන්ධිත වෙබ් අඩවි සම්බන්ධ කර ගැනීමට අවශ්‍ය වනු ඇත. ඔබට සැම විටම සැසියේ සැකසීම් තුළ සබැඳි පෙරදසුන් අබල කළ හැක."; -"modal_link_previews_button_title" = "සබල කරන්න"; -"vc_share_title" = "සෙෂන් වෙත බෙදාගන්න"; -"vc_share_loading_message" = "ඇමුණුම් සූදානම් කරමින්..."; -"vc_share_sending_message" = "යමින්..."; -"vc_share_link_previews_unsecure" = "අනාරක්ෂිත සබැඳිය සඳහා පෙරදසුන පූරණය නොවේ"; -"vc_share_link_previews_error" = "පෙරදසුන පූරණය කළ නොහැක"; -"vc_share_link_previews_disabled_title" = "සබැඳි පෙරදසුන් අබල කර ඇත"; -"vc_share_link_previews_disabled_explanation" = "සබැඳි පෙරදසුන් සබල කිරීමෙන් ඔබ බෙදා ගන්නා URL සඳහා පෙරදසුන් පෙන්වනු ඇත. මෙය ප්‍රයෝජනවත් විය හැකි නමුත්, පෙරදසුන් උත්පාදනය කිරීමට සැසියට සම්බන්ධිත වෙබ් අඩවි සම්බන්ධ කර ගැනීමට අවශ්‍ය වනු ඇත.\n\nඔබට සැසියේ සැකසුම් තුළ සබැඳි පෙරදසුන් සබල කළ හැක."; -"view_open_group_invitation_description" = "කණ්ඩායම් ආරාධනාව විවෘත කරන්න"; -"vc_conversation_settings_invite_button_title" = "කටයුතු එක්කරන්න"; -"modal_send_seed_title" = "අවවාදයයි"; -"modal_send_seed_explanation" = "මෙය ඔබගේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩයයි. ඔබ එය යමෙකුට යැවුවහොත් ඔවුන්ට ඔබේ ගිණුමට සම්පූර්ණ ප්‍රවේශය ඇත."; -"modal_send_seed_send_button_title" = "යවන්න"; -"vc_conversation_settings_notify_for_mentions_only_title" = "සඳහන් කිරීම් සඳහා පමණක් දැනුම් දෙන්න"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "සබල කළ විට, ඔබ සඳහන් කරන පණිවිඩ සඳහා පමණක් ඔබට දැනුම් දෙනු ලැබේ."; -"view_conversation_title_notify_for_mentions_only" = "සඳහන් කිරීම් සඳහා පමණක් දැනුම් දීම"; -"message_deleted" = "මෙම පණිවිඩය මකා ඇත"; -"delete_message_for_me" = "මට විතරක් මකන්න"; -"delete_message_for_everyone" = "සියලු දෙනා සඳහා මකන්න"; -"delete_message_for_me_and_recipient" = "මට සහ %@සඳහා මකන්න"; -"context_menu_reply" = "පිළිතුරු"; -"context_menu_save" = "සුරකින්න"; -"context_menu_ban_user" = "පරිශීලක තහනම් කරන්න"; -"context_menu_ban_and_delete_all" = "සියල්ල තහනම් කර මකන්න"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "ඇමුණුම් එක්කරන්න"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "ලේඛනය"; -"accessibility_library_button" = "ඡායාරූප පුස්තකාලය"; -"accessibility_camera_button" = "කැමරා"; -"accessibility_main_button_collapse" = "ඇමුණුම් විකල්ප හකුළන්න"; -"invalid_recovery_phrase" = "අවලංගු ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"DISMISS_BUTTON_TEXT" = "අස් කරන්න"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "සැකසුම්"; -"call_outgoing" = "ඔබ %@ඇමතුවා"; -"call_incoming" = "%@ ඔබව ඇමතුවා"; -"call_missed" = "%@සිට මඟ හැරුණු ඇමතුම"; -"APN_Message" = "ඔබට නව පණිවිඩයක් ලැබී ඇත."; -"APN_Collapsed_Messages" = "ඔබට නව පණිවිඩ %@ ක් ඇත."; -"PIN_BUTTON_TEXT" = "පින් කරන්න"; -"UNPIN_BUTTON_TEXT" = "ඇමුණුම ඉවත් කරන්න"; -"modal_call_missed_tips_title" = "ඇමතුම මග හැරුණි"; -"modal_call_missed_tips_explanation" = "ඔබට රහස්‍යතා සැකසීම් තුළ 'හඬ සහ වීඩියෝ ඇමතුම්' අවසරය සබල කිරීමට අවශ්‍ය වූ නිසා '%@' වෙතින් ඇමතුම මඟ හැරී ඇත."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ තිර රුවක් ගත්තා."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "පණිවිඩ"; -"MESSAGE_REQUESTS_TITLE" = "පණිවිඩ ඉල්ලීම්"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "පොරොත්තු පණිවිඩ ඉල්ලීම් නැත"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "සියල්ල හිස් කරන්න"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "පැහැදිලිව"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "ඔබට මෙම පණිවිඩ ඉල්ලීම මැකීමට අවශ්‍ය බව විශ්වාසද?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "ඔබගේ පණිවිඩ ඉල්ලීම පිළිගෙන ඇත."; -"MESSAGE_REQUESTS_NOTIFICATION" = "ඔබට නව පණිවිඩ ඉල්ලීමක් ඇත"; -"TXT_HIDE_TITLE" = "සඟවන්න"; -"TXT_DELETE_ACCEPT" = "පිළිගන්න"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "ඇමතුම් අවසර අවශ්‍යයි"; -"modal_call_permission_request_explanation" = "ඔබට රහස්‍යතා සැකසීම් තුළ 'හඬ සහ වීඩියෝ ඇමතුම්' අවසරය සබල කළ හැක."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "අපොයි, දෝෂයක් සිදු විය"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "කරුණාකර පසුව නැවත උත්සාහ කරන්න"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "සියලුම දත්ත හිස් කරන්න"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "1 සේවා නෝඩයකින් දත්ත මකා නැත. සේවා නෝඩ් ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "සේවා නෝඩ් %@ කින් දත්ත මකා නැත. සේවා නෝඩ් ID: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "ඔබේ ප්‍රතිසාධන වාක්‍ය ඛණ්ඩය"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/sk.lproj/Localizable.strings b/Session/Meta/Translations/sk.lproj/Localizable.strings deleted file mode 100644 index 11b1e402d1..0000000000 --- a/Session/Meta/Translations/sk.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Príloha"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Titulok"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Typ súboru: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Veľkosť: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Dosiahnutý limit správy"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Poslať"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Príloha"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Chyba pri posielaní prílohy"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Obrázok nie je možné konvertovať."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Video nie je možné spracovať."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Obrázok nie je možné spracovať."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Nie je možné odstrániť metadáta z obrázku."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Nie je možné zmeniť rozmer obrázku."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Príloha je príliš veľká."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Príloha obsahuje neplatné prvky."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Príloha má neplatný typ súboru."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Príloha je prázdna."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Nepodarilo sa vybrať dokument."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Please create a compressed archive of this file or directory and try sending that instead."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nepodporovaný súbor"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Hlasová správa"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokovať"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Zablokovať %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Odblokovať %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Odblokovať"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ bol/a zablokovaný/á."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Používateľ Zablokovaný"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ bol/a odblokovaný/á."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Zablokovaný používatelia vám nebudú môcť zavolať ani posielať správy."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Hotovo"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Vybrať"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Hľadá sa..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Žiadne zhody"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 zhoda"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "nájdených %d z %d"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokovať tohto používateľa"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Stíšiť"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Hľadať v konverzácii"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Presun a zmena veľkosti"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Môže to trvať zopár minút."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimalizácia databázy"; -/* The present; the current time. */ -"DATE_NOW" = "Teraz"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Miznúce správy"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Upraviť skupinu"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "V tejto konverzácii nemáte žiadne médiá."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Načítavajú sa novšie médiá…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Načítavajú sa staršie médiá…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Nepodarilo sa stiahnuť požadovaný GIF. Uistite sa prosím, že ste online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Vyskytla sa neznáma chyba."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Nepodarilo sa vybrať GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Zadajte prosím čo hľadáte."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Chyba. Stlačte tlačidlo a skúste to znova."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Žiadne výsledky."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Skupina vytvorená"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ sa pripojil/a k skupine. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ opustil/a skupinu. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ bol/a odstránený/á zo skupiny. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ boli odstránení zo skupiny. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Názov je teraz '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Skupina bola aktualizovaná."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Opustili ste skupinu."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Boli ste odstránení zo skupiny. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Nemôžete zdieľať viac ako %@ položiek."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Nepodarilo sa vybrať prílohu."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Chybný audio súbor."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Opustiť"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Opustiť skupinu"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Všetky média"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Zmazať %d správ"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Odstrániť správu"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Vy"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Tento mesiac"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Odosielanie zlyhalo."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Prečítané"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Odosiela sa…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Odoslané"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Nahráva sa…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ do %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Poznámka pre seba"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Je možné, že ste dostali správy kým sa váš %@ reštartoval."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ zakázal miznutie správ."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ nastavil čas zmiznutia správy na %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Nepodarilo sa zachytiť obrázok."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Nepodarilo sa zachytiť obrázok."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Nepodarilo sa nakonfigurovať fotoaparát."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Nepomenovaný album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Označiť ako prečítané"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Odpovedať"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Pre otvorenie %1$s potvrďte svoju totožnosť."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Overenie zlyhalo"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Zahodiť médiá?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Zahodiť médiá"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (predvolené)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Zvuk správy"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Žiaden"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dní"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hodín"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minút"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekúnd"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ deň"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hodina"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minúta"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ týždeň"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ týždňov"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@t"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Zrušiť"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Zmazať"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Hlasová správa"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Ťuknutím a podržaním nahráte hlasovú správu."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Hlasová správa"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Vypli ste miznúce správy."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Nastavili ste časovač miznúcich správ na %@"; -// MARK: - Session -"continue_2" = "Pokračovať"; -"copy" = "Kopírovať"; -"invalid_url" = "Neplatná URL adresa"; -"next" = "Ďalej"; -"share" = "Zdieľať"; -"invalid_session_id" = "Neplatné Session ID"; -"cancel" = "Zrušiť"; -"your_session_id" = "Vaše Session ID"; -"vc_landing_title_2" = "Váš Session sa začína tu..."; -"vc_landing_register_button_title" = "Vytvoriť Session ID"; -"vc_landing_restore_button_title" = "Pokračovať v Session"; -"vc_landing_link_button_title" = "Pripojiť zariadenie"; -"view_fake_chat_bubble_1" = "Čo je Session?"; -"view_fake_chat_bubble_2" = "Je to decentralizovaná, šifrovaná apka na posielanie správ"; -"view_fake_chat_bubble_3" = "Takže nezbiera moje osobné informácie alebo metadáta mojich konverzácií? Ako to funguje?"; -"view_fake_chat_bubble_4" = "Použitím kombinácie pokročilých technológií anonymného smerovania a end-to-end šifrovania."; -"view_fake_chat_bubble_5" = "Priatelia nedovoľujú priateľom používať kompromitované messengery. Nemáte za čo."; -"vc_register_title" = "Povedzte ahoj svojmu Session ID"; -"vc_register_explanation" = "Vaše Session ID je jedinečná adresa, ktorú môžu ľudia použiť aby sa s vami skontaktovali v Session. Pretože Session ID nemá žiadne spojenie s vašou skutočnou identitou, je Session ID úplne anonymné a súkromé."; -"vc_restore_title" = "Obnoviť účet"; -"vc_restore_explanation" = "Zadajte frázu na obnovenie, ktorá vám bola poskytnutá pri registrácii, aby ste obnovili svoje konto."; -"vc_restore_seed_text_field_hint" = "Zadajte vašu obnovovaciu frázu"; -"vc_link_device_title" = "Pripojiť zariadenie"; -"vc_link_device_scan_qr_code_tab_title" = "Skenovať QR kód"; -"vc_display_name_title_2" = "Vyberte svoje zobrazované meno"; -"vc_display_name_explanation" = "Toto bude vaše meno pri používaní Session. Môže to byť vaše skutočné meno, prezývka alebo čokoľvek čo chcete."; -"vc_display_name_text_field_hint" = "Zadajte zobrazované meno"; -"vc_display_name_display_name_missing_error" = "Zvoľte prosím zobrazované meno"; -"vc_display_name_display_name_too_long_error" = "Zvoľte prosím kratšie zobrazované meno"; -"vc_pn_mode_recommended_option_tag" = "Odporúčané"; -"vc_pn_mode_no_option_picked_modal_title" = "Prosím, zvoľte možnosť"; -"vc_home_empty_state_message" = "Zatiaľ nemáte žiadne kontakty"; -"vc_home_empty_state_button_title" = "Začať stretnutie"; -"vc_seed_title" = "Vaša fráza pre obnovenie"; -"vc_seed_title_2" = "Toto je vaša fráza pre obnovenie"; -"vc_seed_explanation" = "Vaša fráza na obnovenie je hlavným kľúčom k vášmu Session ID - môžete ju použiť na obnovenie svojho Session ID ak stratíte prístup k zariadeniu. Uložte frázu na obnovenie na bezpečnom mieste a nikomu ju nedávajte."; -"vc_seed_reveal_button_title" = "Podržaním odhaľte"; -"view_seed_reminder_subtitle_1" = "Zabezpečte svoje konto uložením frázy na obnovenie"; -"view_seed_reminder_subtitle_2" = "Ťuknutím a podržaním upravených slov odhaľte frázu na obnovenie a potom ju bezpečne uložte, aby ste zabezpečili svoje Session ID."; -"view_seed_reminder_subtitle_3" = "Uistite sa, že frázu na obnovenie máte uloženú na bezpečnom mieste"; -"vc_path_title" = "Cesta"; -"vc_path_explanation" = "Session skrýva vašu IP smerovaním vašich správ cez viacero servisných uzlov v decentralizovanej Session siete. Toto sú krajiny cez ktoré je momentálne smerované vaše spojenie:"; -"vc_path_device_row_title" = "Vy"; -"vc_path_guard_node_row_title" = "Vstupný uzol"; -"vc_path_service_node_row_title" = "Servisný uzol"; -"vc_path_destination_row_title" = "Cieľ"; -"vc_path_learn_more_button_title" = "Viac informácií"; -"vc_create_private_chat_title" = "Nová správa"; -"vc_create_private_chat_enter_session_id_tab_title" = "Zadajte Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skenovať QR kód"; -"vc_enter_public_key_explanation" = "Začnite novú konverzáciu zadaním niekoho Session ID alebo zdieľajte s nimi svoje Session ID."; -"vc_scan_qr_code_camera_access_explanation" = "Session potrebuje prístup ku kamere na skenovanie QR kódov"; -"vc_create_closed_group_title" = "Vytvoriť skupinu"; -"vc_create_closed_group_text_field_hint" = "Zadajte názov skupiny"; -"vc_create_closed_group_empty_state_message" = "Zatiaľ nemáte žiadne kontakty"; -"vc_create_closed_group_group_name_missing_error" = "Zadajte prosím názov skupiny"; -"vc_create_closed_group_group_name_too_long_error" = "Zadajte prosím kratší názov skupiny"; -"vc_create_closed_group_too_many_group_members_error" = "Uzatvorená skupina nemôže mať viac ako 100 členov"; -"vc_join_public_chat_title" = "Pripojiť sa ku komunite"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL adresa komunity"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skenovať QR kód"; -"vc_enter_chat_url_text_field_hint" = "Zadajte URL adresu komunity"; -"vc_settings_title" = "Nastavenia"; -"vc_group_settings_title" = "Nastavenia skupiny"; -"vc_settings_display_name_missing_error" = "Zvoľte prosím zobrazované meno"; -"vc_settings_display_name_too_long_error" = "Zvoľte prosím kratšie zobrazované meno"; -"vc_settings_privacy_button_title" = "Súkromie"; -"vc_settings_notifications_button_title" = "Hlásenia"; -"vc_settings_recovery_phrase_button_title" = "Fráza pre obnovenie"; -"vc_settings_clear_all_data_button_title" = "Odstrániť dáta"; -"vc_qr_code_title" = "QR kód"; -"vc_qr_code_view_my_qr_code_tab_title" = "Zobraziť môj QR kód"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skenovať QR kód"; -"vc_qr_code_view_scan_qr_code_explanation" = "Oskenujte niečí QR kód a začnite konverzáciu s danou osobou"; -"vc_view_my_qr_code_explanation" = "Toto je váš QR kód. Ostatní používatelia ho môžu oskenovať a začať tak stretnutie s vami."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Budete upozornený/á na nové správy spoľahlivo a okamžite použitím serverov Apple."; -"fast_mode" = "Rýchly režim"; -"slow_mode_explanation" = "Session občas na pozadí skontroluje nové správy."; -"slow_mode" = "Pomalý režim"; -"vc_pn_mode_title" = "Upozornenia na správy"; -"vc_link_device_recovery_phrase_tab_title" = "Fráza pre obnovenie"; -"vc_link_device_scan_qr_code_explanation" = "Prejdite do Nastavenia → Fráza pre Obnovenie na inom Vašom zariadení pre zobrazenie QR kódu."; -"vc_enter_recovery_phrase_title" = "Fráza pre obnovenie"; -"vc_enter_recovery_phrase_explanation" = "Pre prepojenie Vášho zariadenia, zadajte Frázu pre Obnovenie, ktorá Vám bola poskytnutá pri registrácii."; -"vc_enter_public_key_text_field_hint" = "Vložte Session ID alebo ONS meno"; -"admin_group_leave_warning" = "Pretože tvorcom skupiny ste vy, skupina bude vymazaná pre každého. Táto akcia sa nedá vrátiť."; -"vc_join_open_group_suggestions_title" = "Alebo sa pripojte k jednej z týchto..."; -"vc_settings_invite_a_friend_button_title" = "Pozvať priateľa"; -"copied" = "Skopírované"; -"vc_conversation_settings_copy_session_id_button_title" = "Kopírovať Session ID"; -"vc_conversation_input_prompt" = "Správa"; -"vc_conversation_voice_message_cancel_message" = "Potiahnite pre zrušenie"; -"modal_download_attachment_title" = "Dôverovať %@?"; -"modal_download_attachment_explanation" = "Ste si istý/á, že chcete stiahnuť médium poslané %@?"; -"modal_download_button_title" = "Stiahnuť"; -"modal_open_url_title" = "Otvoriť URL?"; -"modal_open_url_explanation" = "Ste si istý, že chcete otvoriť %@?"; -"modal_open_url_button_title" = "Otvoriť"; -"modal_copy_url_button_title" = "Skopírovať Odkaz"; -"modal_blocked_title" = "Odblokovať %@?"; -"modal_blocked_explanation" = "Ste si istý/á, že chcete odblokovať %@?"; -"modal_blocked_button_title" = "Odblokovať"; -"modal_link_previews_title" = "Povoliť náhľad odkazov?"; -"modal_link_previews_explanation" = "Zapnutie ukážok linkov ukáže ukážky pre URL, ktoré vy pošlete a príjmete. Toto môže byť užitočné, ale Session bude potrebovať navštíviť dané webstránky pre vygenerovanie ukážok. Kedykoľvek môžete vypnúť ukážky linkov v nastaveniach Session."; -"modal_link_previews_button_title" = "Povoliť"; -"vc_share_title" = "Zdieľať do Session"; -"vc_share_loading_message" = "Pripravujú sa prílohy..."; -"vc_share_sending_message" = "Odosiela sa..."; -"vc_share_link_previews_unsecure" = "Ukážka nebola načítaná pre nezabezpečený odkaz"; -"vc_share_link_previews_error" = "Nepodarilo sa načítať ukážku"; -"vc_share_link_previews_disabled_title" = "Ukážky odkazov sú vypnuté"; -"vc_share_link_previews_disabled_explanation" = "Zapnutie ukážok linkov ukáže ukážky pre URL, ktoré vy pošlete a príjmete. Toto môže byť užitočné, ale Session bude potrebovať navštíviť dané webstránky pre vygenerovanie ukážok.\n\nKedykoľvek môžete vypnúť ukážky linkov v nastaveniach Session."; -"view_open_group_invitation_description" = "Otvoriť skupinovú pozvánku"; -"vc_conversation_settings_invite_button_title" = "Pridať členov"; -"modal_send_seed_title" = "Varovanie"; -"modal_send_seed_explanation" = "Toto je Vaša Fáza pre Obnovenie. Ak ju niekomu poskytnete, dotýčný má plný prístup do Vášho účtu."; -"modal_send_seed_send_button_title" = "Odoslať"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Upozorniť Len ak Spomenutý"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Ak povolené, budete upozornený iba na správy, kde Vás niekto spomenul."; -"view_conversation_title_notify_for_mentions_only" = "Upozorniť Iba ak Spomenutý"; -"message_deleted" = "Táto správa už bola odstránená"; -"delete_message_for_me" = "Vymazať len u mňa"; -"delete_message_for_everyone" = "Vymazať u všetkých"; -"delete_message_for_me_and_recipient" = "Vymazať pre mňa a %@"; -"context_menu_reply" = "Odpovedať"; -"context_menu_save" = "Uložiť"; -"context_menu_ban_user" = "Zakázať používateľa"; -"context_menu_ban_and_delete_all" = "Zakázať a vymazať všetko"; -"context_menu_ban_user_error_alert_message" = "Nie je možné zakázať používateľa"; -"accessibility_expanding_attachments_button" = "Pridať Prílohy"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Knižnica Fotografií"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Zbaliť možnosti príloh"; -"invalid_recovery_phrase" = "Neplatná fráza na obnovenie"; -"DISMISS_BUTTON_TEXT" = "Zrušiť"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Nastavenia"; -"call_outgoing" = "Volali ste %@"; -"call_incoming" = "%@ vám volal/a"; -"call_missed" = "Zmeškaný hovor od %@"; -"APN_Message" = "Máte novú správu"; -"APN_Collapsed_Messages" = "Máte %@ nových správ."; -"PIN_BUTTON_TEXT" = "Pripnúť"; -"UNPIN_BUTTON_TEXT" = "Zrušiť pripnutie"; -"modal_call_missed_tips_title" = "Zmeškaný hovor"; -"modal_call_missed_tips_explanation" = "Zmeškaný hovor od %@, pretože ste potrebujete mať zapnuté povolenie pre 'Hlasové a video hovory' v Nastaveniach Súkromia."; -"media_saved" = "Médiá uložené používateľom %@."; -"screenshot_taken" = "%@ urobil/a snímku obrazovky."; -"SEARCH_SECTION_CONTACTS" = "Kontakty a skupiny"; -"SEARCH_SECTION_MESSAGES" = "Správy"; -"MESSAGE_REQUESTS_TITLE" = "Žiadosti o správu"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Žiadne prebiehajúce žiadosti o správu"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Vymazať Všetko"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Vymazať"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Naozaj chcete vymazať túto žiadosť o správu?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Ste si istí, že chcete tento kontakt zablokovať?"; -"MESSAGE_REQUESTS_INFO" = "Odoslaním správy tomuto používateľovi automaticky prijmete jeho žiadosť o správu a odhalíte svoje Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Vaša žiadosť o správu bola prijatá."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Máte novú žiadosť o správu"; -"TXT_HIDE_TITLE" = "Skryť"; -"TXT_DELETE_ACCEPT" = "Prijať"; -"TXT_BLOCK_USER_TITLE" = "Zablokovať používateľa"; -"ALERT_ERROR_TITLE" = "Chyba"; -"modal_call_permission_request_title" = "Vyžaduje sa oprávnenie na uskutočňovanie hovorov"; -"modal_call_permission_request_explanation" = "Môžete zapnúť \"Hlasové a videohovory\" v nastaveniach súkromia."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Hops, vyskytla sa chyba"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Prosím, skúste to znovu neskôr"; -"LOADING_CONVERSATIONS" = "Načítavanie konverzácií..."; -"DATABASE_MIGRATION_FAILED" = "Pri optimalizácii databázy došlo k chybe\n\nMôžete exportovať záznamy aplikácie, aby ste ich mohli zdieľať pri riešení problémov alebo môžete obnoviť zariadenie\n\nUpozornenie: Obnovenie zariadenia bude mať za následok stratu všetkých údajov starších ako dva týždne"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Niečo sa pokazilo. Skontrolujte prosím svoju frázu na obnovenie a skúste to znova."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Zdá sa, že ste nezadali dostatočný počet slov. Skontrolujte prosím svoju frázu na obnovenie a skúste to znova."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Zdá sa, že vám chýba posledné slovo vašej frázy na obnovu. Skontrolujte, čo ste zadali, a skúste to znova."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Zdá sa, že vo vašej fráze pre obnovenie je neplatné slovo. Skontrolujte, čo ste zadali, a skúste to znova."; -"RECOVERY_PHASE_ERROR_FAILED" = "Vašu frázu na obnovenie nebolo možné overiť. Skontrolujte, čo ste zadali, a skúste to znova."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "K overeniu nebolo možné získať prístup."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Overenie zlyhalo."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Príliš veľa neúspešných pokusov o overenie. Skúste to prosím neskôr."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Ak chcete používať zámok obrazovky, musíte v nastaveniach iOS povoliť prístupový kód."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Ak chcete používať zámok obrazovky, musíte v nastaveniach iOS povoliť prístupový kód."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Ak chcete používať zámok obrazovky, musíte v nastaveniach iOS povoliť prístupový kód."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Odoslať"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Znova"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Zobraziť rozhovor"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Vašu správu sa nepodarilo odoslať."; -"INVALID_SESSION_ID_MESSAGE" = "Skontrolujte prosím Session ID a skúste to znova."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Skontrolujte prosím frázu na obnovenie a skúste to znova."; -"MEDIA_TAB_TITLE" = "Médiá"; -"DOCUMENT_TAB_TITLE" = "Dokumenty"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "V tejto konverzácii nemáte žiadny dokument."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Načítanie novšieho dokumentu…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Načítanie staršieho dokumentu…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktivity"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Zvieratá a príroda"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Vlajky"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Jedlá a nápoje"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objekty"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Naposledy použité"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smajlíky a ľudia"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symboly"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Cestovanie a miesta"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reaguje na správu s %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "A 1 ďalší reagoval %@ na túto správu."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "A %@ ďalší reagovali %@ na túto správu."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Spomaľte! Poslali ste príliš veľa emoji reakcií. Skúste to čoskoro znova."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Nová konverzácia"; -"CREATE_GROUP_BUTTON_TITLE" = "Vytvoriť"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Pripojiť sa"; -"PRIVACY_TITLE" = "Súkromie"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Zabezpečenie obrazovky"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Zamknúť Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Na odomknutie aplikácie Session je potrebné Touch ID, Face ID alebo prístupový kód."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Potvrdenia o prečítaní"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Potvrdenia o prečítaní"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Odosielať potvrdenia o prečítaní v individuálnych konverzáciách."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Indikátory písania"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Indikátory písania"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Zobraziť a zdieľať indikátory písania v individuálnych konverzáciách."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Náhľady odkazov"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Posielať náhľady odkazov"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generovať náhľady odkazov pre podporované adresy URL."; -"PRIVACY_SECTION_CALLS" = "Hovory (Beta)"; -"PRIVACY_CALLS_TITLE" = "Hlasové a video hovory"; -"PRIVACY_CALLS_DESCRIPTION" = "Umožňuje hlasové a video hovory s inými používateľmi a od nich."; -"PRIVACY_CALLS_WARNING_TITLE" = "Hlasové a video hovory (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Vaša IP adresa je počas používania beta hovorov viditeľná pre vášho partnera a pre server Oxen Foundation. Ste si istí, že chcete povoliť hlasové a videohovory?"; -"NOTIFICATIONS_TITLE" = "Upozornenia"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Stratégia upozornení"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Použiť rýchly režim"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Na nové správy budete spoľahlivo a okamžite upozornení pomocou notifikačných serverov spoločnosti Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Prejsť na nastavenia oznámení zariadenia"; -"NOTIFICATIONS_SECTION_STYLE" = "Štýl upozornenia"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Zvuk"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Zvuk pri otvorení aplikácie"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Obsah upozornenia"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Informácie zobrazené v upozorneniach."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Meno a obsah"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Iba meno"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Ani meno ani obsah"; -"CONVERSATION_SETTINGS_TITLE" = "Konverzácie"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Prečistenie správ"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Prečistiť komunity"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Odstrániť správy staršie ako 6 mesiacov zo komunít, ktoré majú viac ako 2 000 správ."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Hlasové správy"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Automaticky prehrať zvukové správy"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Automaticky prehrať po sebe idúce zvukové správy."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Zablokované kontakty"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Nemáte žiadne zablokované kontakty."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Odblokovať"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Ste si istý/á, že chcete odblokovať %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "tento kontakt"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Ste si istý/á, že chcete odblokovať %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "a %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "a %d ďalších?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Odblokovať"; -"APPEARANCE_TITLE" = "Vzhľad"; -"APPEARANCE_THEMES_TITLE" = "Motívy"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Hlavná farba"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Ako sa máš?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "Som v pohode, vďaka, a ty?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "Mám sa skvele, vďaka."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Automatický nočný režim"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Rovnaké ako nastavenia systému"; -"HELP_TITLE" = "Pomoc"; -"HELP_REPORT_BUG_TITLE" = "Nahlásiť chybu"; -"HELP_REPORT_BUG_DESCRIPTION" = "Exportujte vaše záznamy a potom súbor odošlite prostredníctvom služby Session Pomocník."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportovať záznamy"; -"HELP_TRANSLATE_TITLE" = "Preložiť Session"; -"HELP_FEEDBACK_TITLE" = "Radi by sme získali vašu spätnú väzbu"; -"HELP_FAQ_TITLE" = "Časté otázky"; -"HELP_SUPPORT_TITLE" = "Podpora"; -"modal_clear_all_data_title" = "Vyčistiť všetky údaje"; -"modal_clear_all_data_explanation" = "Tým sa natrvalo vymažú vaše správy a kontakty. Chcete vyčistiť iba toto zariadenie, alebo vymazať aj údaje zo siete?"; -"modal_clear_all_data_explanation_2" = "Ste si istí, že chcete odstrániť svoje údaje zo siete? Ak budete pokračovať, nebudete môcť obnoviť svoje správy alebo kontakty."; -"modal_clear_all_data_device_only_button_title" = "Vyčistiť iba zariadenie"; -"modal_clear_all_data_entire_account_button_title" = "Vyčistiť zariadenie aj sieť"; -"dialog_clear_all_data_deletion_failed_1" = "Údaje neboli vymazané 1 servisným uzlom. ID servisného uzla: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Údaje neboli odstránené %@ uzlami služby. ID uzlov služieb: %@."; -"modal_clear_all_data_confirm" = "Vyčistiť"; -"modal_seed_title" = "Vaša fráza pre obnovenie"; -"modal_seed_explanation" = "Na obnovenie konta alebo prepojenie zariadenia môžete použiť frázu na obnovenie."; -"modal_permission_explanation" = "Aplikácia Session potrebuje prístup %@, aby mohla pokračovať. Prístup môžete povoliť v nastaveniach systému iOS."; -"modal_permission_settings_title" = "Nastavenia"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofón"; -"modal_permission_library" = "knižnica"; -"DISAPPEARING_MESSAGES_OFF" = "Vypnuté"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Vypnuté"; -"COPY_GROUP_URL" = "Kopírovať URL skupiny"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontakty"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Prosím vyberte aspoň 1 člena skupiny"; -"GROUP_CREATION_PLEASE_WAIT" = "Počkajte prosím, kým sa vytvorí skupina..."; -"GROUP_CREATION_ERROR_TITLE" = "Vytvorenie skupiny zlyhalo"; -"GROUP_CREATION_ERROR_MESSAGE" = "Skontrolujte svoje internetové pripojenie a skúste to znova."; -"GROUP_UPDATE_ERROR_TITLE" = "Nepodarilo sa aktualizovať skupinu"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Nemôžete odísť počas pridávania alebo odstraňovania iných členov."; -"GROUP_ACTION_REMOVE" = "Odstrániť"; -"GROUP_TITLE_MEMBERS" = "Členovia"; -"GROUP_TITLE_FALLBACK" = "Skupina"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Správy môžete posielať na zaslepené ID iba v rámci komunity"; -"DM_ERROR_INVALID" = "Skontrolujte prosím Session ID alebo názov ONS a skúste to znova"; -"COMMUNITY_ERROR_INVALID_URL" = "Skontrolujte zadanú adresu URL a skúste to znova."; -"COMMUNITY_ERROR_GENERIC" = "Nie je možné sa pripojiť"; -"DISAPPERING_MESSAGES_TITLE" = "Miznúce správy"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Typ vymazania"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Zmiznutie po prečítaní"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Správy sa po prečítaní vymažú."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Zmiznutie po odoslaní"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Správy sa po odoslaní vymažú."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Časovač"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Nastaviť"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Toto nastavenie sa týka všetkých účastníkov v tejto konverzácii."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Toto nastavenie sa týka všetkých účastníkov v tejto konverzácii. Toto nastavenie môžu zmeniť iba správcovia skupiny."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ nastavil/a správy tak, aby zmizli %@ po ich %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ zmenil/a správy tak, aby zmizli %@ po tom, čo boli %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ vypol/a miznúce správy"; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Pri otváraní databázy došlo k chybe\n\nMôžete exportovať záznamy aplikácie na zdieľanie na účely riešenia problémov alebo sa môžete pokúsiť obnoviť zariadenie\n\nUpozornenie: Obnovenie zariadenia bude mať za následok stratu všetkých údajov starších ako dva týždne"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "Spustenie aplikácie trvá dlho\n\nMôžete pokračovať v čakaní na spustenie aplikácie, exportovať záznamy aplikácie na zdieľanie na účely riešenia problémov alebo môžete skúsiť otvoriť aplikáciu znova"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Ukončiť"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Pri otváraní obnovenej databázy došlo k chybe\n\nMôžete exportovať záznamy aplikácie na zdieľanie na účely riešenia problémov, ale ak chcete pokračovať v používaní relácie Session, možno ju budete musieť znova preinštalovať"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Pôvodná správa sa nenašla."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Zobraziť menej"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Žiadosti o správu"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Komunitné žiadosti o správu"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Povoliť žiadosti o správy z konverzácií v rámci komunity."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Budete môcť posielať hlasové správy a prílohy, keď príjemca schváli túto žiadosť o správu"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Odosiela sa"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Odoslané"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Prečítané"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Odosielanie zlyhalo"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Odoslané"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Prijaté"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Od"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID súboru"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Typ súboru"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Veľkosť súboru"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Rozlíšenie"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Trvanie"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Synchronizácia zlyhala"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Synchronizácia"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Nepodarilo sa odoslať správu"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Nepodarilo sa synchronizovať správu s vašimi ďalšími zariadeniami"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Odstrániť zo všetkých mojich zariadení"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Znovu odoslať"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Znova synchronizovať"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Vyhľadávať GIFy?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session sa pripojí k službe Giphy a poskytne výsledky vyhľadávania. Pri odosielaní GIFov nebudete mať úplnú ochranu metadát."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Informácie o správe"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Stlmiť"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Zrušiť stlmenie"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Označiť ako prečítané"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Označiť ako neprečítané"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Opustiť skupinu"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Opustiť komunitu"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Ste si istý, že chcete opustiť %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Opúšťanie..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Nepodarilo sa opustiť skupinu!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Nie je možné opustiť skupinu, skúste to prosím znova"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Vymazať skupinu"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Určite chcete vymazať %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Vymazať konverzáciu"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Určite chcete vymazať svoju konverzáciu s %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Skryť poznámku pre seba"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Určite chcete skryť %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Nastaviť profilový obrázok"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Uložiť"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Odstrániť"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Nie je možné odstrániť profilový obrázok"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Prekročená maximálna veľkosť súboru"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Vyberte prosím menšiu fotografiu a skúste to znova"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Nepodarilo sa aktualizovať profil"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Skontrolujte svoje internetové pripojenie a skúste to znova"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Zadajte meno"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Neprečítané správy"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "Nemáte žiadne správy od %@. Pošlite správu a začnite konverzáciu!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "V %@ nie sú žiadne správy."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "V %@ nemáte žiadne správy."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ má vypnuté požiadavky na správy z konverzácií komunity, takže mu nemôžete poslať správu."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Niektoré vaše zariadenia používajú zastarané verzie. Synchronizácia môže byť nespoľahlivá, kým nebudú aktualizované."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Pri pokuse o načítanie hesla na obnovenie došlo k chybe.\n\nProsím, exportujte svoje protokoly a potom súbor odošlite prostredníctvom asistenčnej služby Session, aby vám pomohli vyriešiť tento problém."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Pri pokuse o uloženie odchádzajúcej správy došlo k chybe, možno budete musieť reštartovať aplikáciu, aby ste mohli odosielať správy."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Nastal problém s otvorením databázy. Reštartujte aplikáciu a skúste to znova."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Toto nastavenie sa týka všetkých účastníkov v tejto konverzácii."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Správy sa po odoslaní vymažú."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Správy ste nastavili tak, aby zmizli %@ po tom, čo boli %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Zmenili ste správy tak, aby zmizli %@ po ich %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Vypli ste miznúce správy"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Zastarané"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Pôvodná verzia miznúcich správ."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ používa zastaraného klienta. Miznúce správy nemusia fungovať podľa očakávania."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Pokúšate sa aktualizovať z verzie, ktorá už nepodporuje aktualizáciu\n\nAby ste mohli Session naďalej používať, musíte obnoviť zariadenie\n\nUpozornenie: Obnovenie zariadenia bude mať za následok stratu všetkých údajov starších ako dva týždne"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "prečítané"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "odoslané"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Zmiznutie po - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Zmiznutie po prečítaní - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Zmiznutie po odoslaní - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Zmiznutie po: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Zmiznutie po prečítaní: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Zmiznutie po odoslaní: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Názov skupiny je teraz %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Názov skupiny bol aktualizovaný."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Obrázok skupiny bol aktualizovaný."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ bol/a odstránený/á zo skupiny."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ a %@ boli odstránení zo skupiny."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ a %@ ďalší boli odstránení zo skupiny."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ opustil/a skupinu."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ bol/a povýšený/á na správcu."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ a %@ boli povýšení na správcov."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ a %@ ďalší boli povýšení na správcov."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Boli ste odstránení zo skupiny %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/sl.lproj/Localizable.strings b/Session/Meta/Translations/sl.lproj/Localizable.strings deleted file mode 100644 index adbd65a622..0000000000 --- a/Session/Meta/Translations/sl.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Priloga"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Naziv"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Tip datoteke: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Velikost: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Dosežena največja velikost sporočila"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Pošlji"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Priloga"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Napaka pri pošiljanju priloge"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Napaka pri pretvorbi slike."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Napaka pri obdelavi videa."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Napaka pri razčlenitvi slike."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Napaka pri odstranjevanju metapodatkov iz slike."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Velikosti slike ni bilo moče spremeniti."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Pripeta datoteka je prevelika."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Pripeta datoteka vsebuje neustrezno vsebino."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Pripeta datoteka je v neustreznem zapisu."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Pripeta datoteka je prazna."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Napaka pri izbiri dokumenta."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Prosimo ustvarite arhiv iz izbrane datoteke ali mape in poskusite ponovno."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Nepodprta datoteka"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Glasovno sporočilo"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blokiraj"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blokiram %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Odblokiraj %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Odblokiraj"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ je blokiran."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Uporabnik blokiran"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ je odblokiran/-a."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blokirani uporabniki vas ne bodo mogli poklicati ali vam poslati sporočilo."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Končano"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Izberi"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Ni zadetkov"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 zadetek"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d od %d se ujemajo"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blokiraj uporabnika"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Utišaj"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Iskanje pogovora"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Premakni in povečaj"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "To lahko traja nekaj minut."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizacija podatkovne baze"; -/* The present; the current time. */ -"DATE_NOW" = "zdaj"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Izginjajoča sporočila"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Uredi skupino"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "V tem pogovoru nimate medijskih vsebin."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Nalaganje novejših vsebin…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Nalaganje starejših vsebin…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Zahtevanega GIF ni bilo mogoče razčleniti. Preverite spletno povezavo."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Prišlo je do neznane napake."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF ni bilo mogoče izbrati"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Vnesite iskalni pogoj."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Napaka. Tapnite za ponovni poskus."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Ni rezultatov."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Group created"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "You have left the group."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " You were removed from the group. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Leave"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Leave Group"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "All Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Delete Message"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ on %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "You"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "This Month"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sending failed."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Read"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Sending…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Sent"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Uploading…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ to %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Note to Self"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "You may have received messages while your %@ was restarting."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ disabled disappearing messages."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Slike ni bilo mogoče zajeti."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Kamere ni bilo mogoče nastaviti."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Neimenovan album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Označi kot prebrano"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Odgovori"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Overite, da odprete Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Preverjanje spodletelo"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Zavržem vsebino?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Zavržba vsebine"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (privzeto)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Zvok sporočila"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "brez"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Continue"; -"copy" = "Copy"; -"invalid_url" = "Invalid URL"; -"next" = "Next"; -"share" = "Share"; -"invalid_session_id" = "Invalid Session ID"; -"cancel" = "Cancel"; -"your_session_id" = "Your Session ID"; -"vc_landing_title_2" = "Your Session begins here..."; -"vc_landing_register_button_title" = "Create Session ID"; -"vc_landing_restore_button_title" = "Continue Your Session"; -"vc_landing_link_button_title" = "Link a Device"; -"view_fake_chat_bubble_1" = "What's Session?"; -"view_fake_chat_bubble_2" = "It's a decentralized, encrypted messaging app"; -"view_fake_chat_bubble_3" = "So it doesn't collect my personal information or my conversation metadata? How does it work?"; -"view_fake_chat_bubble_4" = "Using a combination of advanced anonymous routing and end-to-end encryption technologies."; -"view_fake_chat_bubble_5" = "Friends don't let friends use compromised messengers. You're welcome."; -"vc_register_title" = "Say hello to your Session ID"; -"vc_register_explanation" = "Your Session ID is the unique address people can use to contact you on Session. With no connection to your real identity, your Session ID is totally anonymous and private by design."; -"vc_restore_title" = "Restore your account"; -"vc_restore_explanation" = "Enter the recovery phrase that was given to you when you signed up to restore your account."; -"vc_restore_seed_text_field_hint" = "Enter your recovery phrase"; -"vc_link_device_title" = "Link a Device"; -"vc_link_device_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_display_name_title_2" = "Pick your display name"; -"vc_display_name_explanation" = "This will be your name when you use Session. It can be your real name, an alias, or anything else you like."; -"vc_display_name_text_field_hint" = "Enter a display name"; -"vc_display_name_display_name_missing_error" = "Please enter a display name."; -"vc_display_name_display_name_too_long_error" = "Please enter a shorter display name."; -"vc_pn_mode_recommended_option_tag" = "Priporočeno"; -"vc_pn_mode_no_option_picked_modal_title" = "Izberite opcijo"; -"vc_home_empty_state_message" = "Nimate stikov"; -"vc_home_empty_state_button_title" = "Začnite sejo"; -"vc_seed_title" = "Obnovitvena fraza"; -"vc_seed_title_2" = "Spoznajte obnovitveno frazo"; -"vc_seed_explanation" = "Obnovitvena fraza je glavni ključ do vašega Session ID - lahko ga uporabite za obnovitev Session ID ob izgubi dostopa do naprave. Obnovitveno frazo shranite na varno mesto in je ne dajte nikomur."; -"vc_seed_reveal_button_title" = "Zadrži za razkritje"; -"view_seed_reminder_subtitle_1" = "Zavarujte račun, tako da shranite obnovitveno frazo"; -"view_seed_reminder_subtitle_2" = "Tapnite in držite izbrane besede, da razkrijete obnovitveno frazo, mato pa jo vrano shranite, da zavarujete svoj Session ID."; -"view_seed_reminder_subtitle_3" = "Shranite obnovitveno frazo na varno mesto"; -"vc_path_title" = "Pot"; -"vc_path_explanation" = "Session skrije IP z usmerjanjem sporočil preko številnih vozlišč storitve v decentraliziranem Session omrežju. To so države preko katerih se vaša povezava trenutno pošilja:"; -"vc_path_device_row_title" = "Vi"; -"vc_path_guard_node_row_title" = "Vstopno vozlišče"; -"vc_path_service_node_row_title" = "Vozlišče storitve"; -"vc_path_destination_row_title" = "Cilj"; -"vc_path_learn_more_button_title" = "Več o tem"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Vnesite ID seje"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Skeniraj QR kodo"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session needs camera access to scan QR codes"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Enter a group name"; -"vc_create_closed_group_empty_state_message" = "You don't have any contacts yet"; -"vc_create_closed_group_group_name_missing_error" = "Please enter a group name"; -"vc_create_closed_group_group_name_too_long_error" = "Please enter a shorter group name"; -"vc_create_closed_group_too_many_group_members_error" = "A closed group cannot have more than 100 members"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Settings"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Please pick a display name"; -"vc_settings_display_name_too_long_error" = "Please pick a shorter display name"; -"vc_settings_privacy_button_title" = "Privacy"; -"vc_settings_notifications_button_title" = "Notifications"; -"vc_settings_recovery_phrase_button_title" = "Recovery Phrase"; -"vc_settings_clear_all_data_button_title" = "Clear Data"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "View My QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Scan QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "Scan someone's QR code to start a conversation with them"; -"vc_view_my_qr_code_explanation" = "This is your QR code. Other users can scan it to start a session with you."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Clear All Data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Your Recovery Phrase"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/sv-SE.lproj/Localizable.strings b/Session/Meta/Translations/sv-SE.lproj/Localizable.strings deleted file mode 100644 index 385ee9694d..0000000000 --- a/Session/Meta/Translations/sv-SE.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Bilaga"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Bildtext"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Filtyp: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Storlek: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Meddelandegränsen har uppnåtts"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Skicka"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Bilaga"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Fel vid sändning av bilaga"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Kunde inte konvertera bilden."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Kunde inte bearbeta videon."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Kunde inte bearbeta bilden."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Kunde inte ta bort bildens metadata."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Kunde inte ändra bildens storlek."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Bilagan är för stor."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Bilagan innehåller otillåtet material."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Bilagan har ett otillåtet filformat."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Bilagan är tom."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Det gick inte att välja dokument."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Skapa ett komprimerat arkiv för denna fil eller katalog och försök att skicka den istället."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Filen stöds ej"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Röstmeddelande"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Blockera"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Blockera %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Avblockera %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Avblockera"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ har blockerats."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Användare blockerad"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ har blockerats."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Blockerade användare kommer inte att kunna ringa dig eller skicka meddelanden."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Klart"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Välj"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Söker..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Inga träffar"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 träff"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d av %d matchningar"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Blockera denna Användare"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Tysta"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Sök i konversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Flytta och skala"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Detta kan dröja några minuter."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimerar databas"; -/* The present; the current time. */ -"DATE_NOW" = "Nu"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Försvinnande meddelanden"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Redigera grupp"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Du har ingen media i den här konversationen."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Laddar nyare media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Laddar äldre media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Det gick inte att hämta den begärda GIF. Vänligen verifiera att du är online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Ett okänt fel har uppstått."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Det gick inte att välja GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Vänligen ange sökord."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Fel. Klicka för att försöka igen."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Inga resultat."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grupp skapad"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ har gått med i gruppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ lämnade gruppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ togs bort från gruppen. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ har tagits bort från gruppen. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Titeln är nu '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grupp uppdaterad."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Du har lämnat gruppen."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Du togs bort från gruppen. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Du kan inte dela mer än %@ objekt."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Det gick inte att lägga till bifogad fil."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Ogiltig ljudfil."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Lämna"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Lämna grupp"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Alla media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Radera %d meddelanden"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Radera meddelande"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ den %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Du"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Denna månad"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Sändningen misslyckades."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Läst"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Skickar…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Skickat"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Laddar upp…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ till %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Egna Anteckningar"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Du kan ha fått meddelanden medan din %@ startades om."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ok"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ inaktiverade försvinnande meddelanden."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ har satt tid för försvunna meddelanden till %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Det går inte att fånga bild."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Det går inte att fånga bild."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Kunde inte konfigurera kameran."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Namnlöst Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Markera som läst"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Svara"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Autentisera för att öppna Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Autentisering misslyckades"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Släng media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Släng Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (standard)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Meddelandeljud"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Inga"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ dagar"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ timmar"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minuter"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ sekunder"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ dag"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ timme"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minut"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ vecka"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ veckor"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Avbryt"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Radera"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Röstmeddelande"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tryck och håll ned för att spela in ett röstmeddelande."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Röstmeddelande"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du inaktiverade försvinnande meddelanden."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Du satte tid för försvunna meddelanden till %@"; -// MARK: - Session -"continue_2" = "Fortsätt"; -"copy" = "Kopiera"; -"invalid_url" = "Ogiltig URL"; -"next" = "Nästa"; -"share" = "Dela"; -"invalid_session_id" = "Ogiltigt Sessions-ID"; -"cancel" = "Avbryt"; -"your_session_id" = "Ditt Session ID"; -"vc_landing_title_2" = "Din session börjar här..."; -"vc_landing_register_button_title" = "Skapa Sessions-ID"; -"vc_landing_restore_button_title" = "Fortsätt din Session"; -"vc_landing_link_button_title" = "Länka ny enhet"; -"view_fake_chat_bubble_1" = "Vad är Session?"; -"view_fake_chat_bubble_2" = "Det är en decentraliserad, krypterad meddelandeapp"; -"view_fake_chat_bubble_3" = "Så det samlar inte in mina personuppgifter eller mina konversationers metadata? Hur fungerar det?"; -"view_fake_chat_bubble_4" = "Med hjälp av en kombination av avancerad anonym routing och end-to-end-krypteringsteknik."; -"view_fake_chat_bubble_5" = "Vänner låter inte vänner använda komprometterade meddelandeappar. Varsågod."; -"vc_register_title" = "Säg hej till ditt Sessions-ID"; -"vc_register_explanation" = "Ditt sessions-ID är den unika adress folk kan använda för att kontakta dig på Session. Ditt Sessions-ID är helt anonymt och privat rakt igenom, helt utan koppling till din riktiga identitet."; -"vc_restore_title" = "Återställ konto"; -"vc_restore_explanation" = "Ange den återställningsfras du fick för att kunna återställa ditt konto."; -"vc_restore_seed_text_field_hint" = "Ange din hemliga återställningsfras"; -"vc_link_device_title" = "Länka ny enhet"; -"vc_link_device_scan_qr_code_tab_title" = "Skanna QR-kod"; -"vc_display_name_title_2" = "Välj visningsnamn"; -"vc_display_name_explanation" = "Detta blir ditt namn när du använder Session. Det kan vara ditt riktiga namn, ett alias eller något annat du gillar."; -"vc_display_name_text_field_hint" = "Ange ett visningsnamn"; -"vc_display_name_display_name_missing_error" = "Vänligen välj ett visningsnamn"; -"vc_display_name_display_name_too_long_error" = "Vänligen välj ett kortare visningsnamn"; -"vc_pn_mode_recommended_option_tag" = "Rekommenderat"; -"vc_pn_mode_no_option_picked_modal_title" = "Välj ett alternativ"; -"vc_home_empty_state_message" = "Du har inga kontakter"; -"vc_home_empty_state_button_title" = "Starta en Session"; -"vc_seed_title" = "Din Återställningsfras"; -"vc_seed_title_2" = "Möt din återställningsfras"; -"vc_seed_explanation" = "Din återställningsfras är huvudnyckeln till ditt Sessions-ID – du kan använda den för att återställa ditt Sessions-ID om du förlorar åtkomst till enheten. Förvara din återställningsfras på en säker plats, och ge den inte till någon."; -"vc_seed_reveal_button_title" = "Håll ned för att visa"; -"view_seed_reminder_subtitle_1" = "Säkra ditt konto genom att spara din återställningsfras"; -"view_seed_reminder_subtitle_2" = "Tryck på och håll ned de dolda orden för att avslöja din återställningsfras och lagra dem på ett säkert sätt för att säkra ditt Sessions-ID."; -"view_seed_reminder_subtitle_3" = "Se till att lagra din återställningsfras på en säker plats"; -"vc_path_title" = "Sökväg"; -"vc_path_explanation" = "Sessionen döljer din IP-adress genom att dirigera dina meddelanden genom flera Tjänstnoder i Sessionens decentraliserade nätverk. Detta är de länder som din anslutning för närvarande går igenom:"; -"vc_path_device_row_title" = "Du"; -"vc_path_guard_node_row_title" = "Entrénod"; -"vc_path_service_node_row_title" = "Tjänstnoden"; -"vc_path_destination_row_title" = "Mål"; -"vc_path_learn_more_button_title" = "Mer info"; -"vc_create_private_chat_title" = "Nytt meddelande"; -"vc_create_private_chat_enter_session_id_tab_title" = "Ange Sessions-ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Scanna QR-kod"; -"vc_enter_public_key_explanation" = "Starta en ny konversation genom att ange någons Sessions-ID eller dela ditt Sessions-ID med dem."; -"vc_scan_qr_code_camera_access_explanation" = "Sessionen behöver kameraåtkomst för att skanna QR-koder"; -"vc_create_closed_group_title" = "Skapa grupp"; -"vc_create_closed_group_text_field_hint" = "Ange ett gruppnamn"; -"vc_create_closed_group_empty_state_message" = "Du har inga kontakter"; -"vc_create_closed_group_group_name_missing_error" = "Vänligen ange ett gruppnamn"; -"vc_create_closed_group_group_name_too_long_error" = "Vänligen ange ett kortare namn för gruppen"; -"vc_create_closed_group_too_many_group_members_error" = "En sluten grupp kan inte ha fler än 100 medlemmar"; -"vc_join_public_chat_title" = "Gå med i Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Skanna QR-kod"; -"vc_enter_chat_url_text_field_hint" = "Ange Community URL"; -"vc_settings_title" = "Inställningar"; -"vc_group_settings_title" = "Gruppinställningar"; -"vc_settings_display_name_missing_error" = "Vänligen välj ett visningsnamn"; -"vc_settings_display_name_too_long_error" = "Vänligen välj ett kortare visningsnamn"; -"vc_settings_privacy_button_title" = "Integritet"; -"vc_settings_notifications_button_title" = "Aviseringar"; -"vc_settings_recovery_phrase_button_title" = "Återställningsfras"; -"vc_settings_clear_all_data_button_title" = "Rensa data"; -"vc_qr_code_title" = "QR-kod"; -"vc_qr_code_view_my_qr_code_tab_title" = "Visa min QR-kod"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Skanna QR-kod"; -"vc_qr_code_view_scan_qr_code_explanation" = "Skanna någons QR-kod för att starta en konversation med dem"; -"vc_view_my_qr_code_explanation" = "Detta är din QR-kod. Andra användare kan skanna den för att starta en Session med dig."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Du kommer att meddelas om nya meddelanden på ett tillförlitligt sätt och omedelbart använda Apples meddelandeservrar."; -"fast_mode" = "Snabbläge"; -"slow_mode_explanation" = "Sessionen kommer då och då att leta efter nya meddelanden i bakgrunden."; -"slow_mode" = "Långsamt läge"; -"vc_pn_mode_title" = "Meddelandeaviseringar"; -"vc_link_device_recovery_phrase_tab_title" = "Återställningsfras"; -"vc_link_device_scan_qr_code_explanation" = "Navigera till Inställningar → Återställningsfras på din andra enhet för att visa din QR-kod."; -"vc_enter_recovery_phrase_title" = "Återställningsfras"; -"vc_enter_recovery_phrase_explanation" = "För att länka din enhet, ange den återställningsfrasen du fick när du registrerade dig."; -"vc_enter_public_key_text_field_hint" = "Ange sessions-ID eller ONS-namn"; -"admin_group_leave_warning" = "Eftersom du skapade denna grupp kommer den att raderas för alla. Detta kan inte ångras."; -"vc_join_open_group_suggestions_title" = "Eller gå med i en av dessa..."; -"vc_settings_invite_a_friend_button_title" = "Bjud in en vän"; -"copied" = "Kopierad!"; -"vc_conversation_settings_copy_session_id_button_title" = "Skapa Sessions-ID"; -"vc_conversation_input_prompt" = "Meddelande"; -"vc_conversation_voice_message_cancel_message" = "Svep för att avbryta"; -"modal_download_attachment_title" = "Lita på %@?"; -"modal_download_attachment_explanation" = "Är du säker du vill hämta media skickat av %@?"; -"modal_download_button_title" = "Hämta"; -"modal_open_url_title" = "Öppna URL?"; -"modal_open_url_explanation" = "Är du säker på att du vill öppna %@?"; -"modal_open_url_button_title" = "Öppna"; -"modal_copy_url_button_title" = "Kopiera länk"; -"modal_blocked_title" = "Avblockera %@?"; -"modal_blocked_explanation" = "Är du säker på att du vill avblockera %@?"; -"modal_blocked_button_title" = "Avblockera"; -"modal_link_previews_title" = "Aktivera förhandsgranskningar av länkar?"; -"modal_link_previews_explanation" = "Om du aktiverar länkförhandsvisningar visas förhandsvisningar för URL: er du skickar och tar emot. Detta kan vara användbart, men sessionen måste kontakta länkade webbplatser för att generera förhandsvisningar. Du kan alltid inaktivera länkförhandsvisningar i sessionsinställningarna."; -"modal_link_previews_button_title" = "Aktivera"; -"vc_share_title" = "Dela i Session"; -"vc_share_loading_message" = "Förbereder bilagor..."; -"vc_share_sending_message" = "Skickar..."; -"vc_share_link_previews_unsecure" = "Förhandsgranskningen laddas ej för osäkra länkar"; -"vc_share_link_previews_error" = "Kunde inte ladda en förhandsgranskning"; -"vc_share_link_previews_disabled_title" = "Länkförhandsgranskningar är inaktiverade"; -"vc_share_link_previews_disabled_explanation" = "Aktivering av länkförhandsvisningar kommer att visa förhandsvisningar för URL:er du delar. Detta kan vara användbart, men Session måste kontakta länkade webbplatser för att generera förhandsvisningar.\n\nDu kan aktivera länkförhandsvisningar i Sessions inställningar."; -"view_open_group_invitation_description" = "Öppen gruppinbjudan"; -"vc_conversation_settings_invite_button_title" = "Lägg till medlemmar"; -"modal_send_seed_title" = "Varning"; -"modal_send_seed_explanation" = "Detta är din återställningsfras. Om du skickar den till någon kommer de att ha full tillgång till ditt konto."; -"modal_send_seed_send_button_title" = "Skicka"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notifiera endast för omnämnanden"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "När detta är aktiverat kommer du bara att meddelas för meddelanden som nämner dig."; -"view_conversation_title_notify_for_mentions_only" = "Notifierar endast för omnämnanden"; -"message_deleted" = "Detta meddelande har raderats"; -"delete_message_for_me" = "Radera bara för mig"; -"delete_message_for_everyone" = "Radera för alla"; -"delete_message_for_me_and_recipient" = "Radera för mig och %@"; -"context_menu_reply" = "Svara"; -"context_menu_save" = "Spara"; -"context_menu_ban_user" = "Bannlys användare"; -"context_menu_ban_and_delete_all" = "Bannlys och radera alla"; -"context_menu_ban_user_error_alert_message" = "Kan inte bannlysa användaren"; -"accessibility_expanding_attachments_button" = "Bifoga filer"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Dokument"; -"accessibility_library_button" = "Bildbibliotek"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Minimera bilagoalternativ"; -"invalid_recovery_phrase" = "Ogiltig återställningsfras"; -"DISMISS_BUTTON_TEXT" = "Avfärda"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Inställningar"; -"call_outgoing" = "Du ringde %@"; -"call_incoming" = "%@ ringde dig"; -"call_missed" = "Missat samtal från %@"; -"APN_Message" = "Du har ett nytt meddelande."; -"APN_Collapsed_Messages" = "Du har %@ nya meddelanden."; -"PIN_BUTTON_TEXT" = "Fäst"; -"UNPIN_BUTTON_TEXT" = "Lossa"; -"modal_call_missed_tips_title" = "Missat samtal"; -"modal_call_missed_tips_explanation" = "Missade ett samtal från \"%@\" eftersom du måste aktivera \"Röst- och videosamtal\" i sekretessinställningarna."; -"media_saved" = "Media sparat av %@."; -"screenshot_taken" = "%@ tog en skärmbild."; -"SEARCH_SECTION_CONTACTS" = "Kontakter & Grupper"; -"SEARCH_SECTION_MESSAGES" = "Meddelanden"; -"MESSAGE_REQUESTS_TITLE" = "Meddelandeförfrågningar"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Inga väntande meddelandeförfrågningar"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Rensa alla"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Rensa"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Är du säker på att du vill radera denna meddelandeförfrågan?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Är du säker på att du vill blockera denna kontakt?"; -"MESSAGE_REQUESTS_INFO" = "Att skicka ett meddelande till den här användaren godkänner automatiskt deras meddelandebegäran och avslöjar ditt Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Din meddelandeförfrågan har accepterats."; -"MESSAGE_REQUESTS_NOTIFICATION" = "Du har en ny meddelandeförfrågan"; -"TXT_HIDE_TITLE" = "Dölj"; -"TXT_DELETE_ACCEPT" = "Acceptera"; -"TXT_BLOCK_USER_TITLE" = "Blockera användare"; -"ALERT_ERROR_TITLE" = "Fel"; -"modal_call_permission_request_title" = "Samtalsbehörigheter krävs"; -"modal_call_permission_request_explanation" = "Du kan aktivera behörigheten \"Röst- och videosamtal\" i Sekretessinställningarna."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Hoppsan, ett fel inträffade"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Försök igen senare"; -"LOADING_CONVERSATIONS" = "Laddar konversationer..."; -"DATABASE_MIGRATION_FAILED" = "Ett fel uppstod vid optimering av databasen\n\nDu kan exportera dina programloggar för att kunna dela för felsökning eller så kan du återställa din enhet\n\nVarning: Återställning av enheten kommer att leda till förlust av data äldre än två veckor"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Något gick fel. Kontrollera din återställningsfras och försök igen."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Skicka"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Försök igen"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Dokument"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Aktiviteter"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flaggor"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symboler"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Ny konversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Skapa"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Samtal (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Ljud"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Konversationer"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Du har inga blockerade kontakter."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Avblockera"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Avblockera"; -"APPEARANCE_TITLE" = "Utseende"; -"APPEARANCE_THEMES_TITLE" = "Teman"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Hur mår du?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Hjälp"; -"HELP_REPORT_BUG_TITLE" = "Rapportera en bugg"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Exportera loggar"; -"HELP_TRANSLATE_TITLE" = "Översätt Session"; -"HELP_FEEDBACK_TITLE" = "Vi vill gärna höra din åsikt"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Rensa all data"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data raderades inte av 1 tjänstnod. Tjänstnodsid: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data raderades inte av %@ tjänstnoder. Tjänstnodernas id: %@."; -"modal_clear_all_data_confirm" = "Rensa"; -"modal_seed_title" = "Din återställningsfras"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Inställningar"; -"modal_permission_camera" = "kamera"; -"modal_permission_microphone" = "mikrofon"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Kopiera gruppens URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Kontakter"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Välj minst 1 gruppmedlem"; -"GROUP_CREATION_PLEASE_WAIT" = "Vänta medan gruppen skapas..."; -"GROUP_CREATION_ERROR_TITLE" = "Det gick inte att skapa grupp"; -"GROUP_CREATION_ERROR_MESSAGE" = "Kontrollera din internetanslutning och försök igen."; -"GROUP_UPDATE_ERROR_TITLE" = "Det gick inte att uppdatera gruppen"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Medlemmar"; -"GROUP_TITLE_FALLBACK" = "Grupp"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Försvinnande meddelanden"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/th.lproj/Localizable.strings b/Session/Meta/Translations/th.lproj/Localizable.strings deleted file mode 100644 index c1e52e81e3..0000000000 --- a/Session/Meta/Translations/th.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "ไฟล์แนบ"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "รายละเอียด"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "ประเภทไฟล์: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "ขนาดไฟล์: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "ถึงขีดจำกัดการข้อความแล้ว"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "ส่ง"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "ไฟล์แนบ"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "ส่งไฟล์แนบโดนผิดพลาด"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "เลือกไฟล์ไม่ได้สำเร็จ"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "ส่งโฟลเดอร์ไม่ได้"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "ไฟล์ชนิดนี้ส่งไม่ได้"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "ข้อความเสียง"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "บล็อก"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "บล็อก %@ ไหม"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "เลิกบล็อก"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ บล็อกแล้ว"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "คนบล็อกแล้ว"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "คนที่บล็อกแล้วส่งข้อความและโทรมาหาไม่ได้"; -/* Label for generic done button. */ -"BUTTON_DONE" = "เสร็จ"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "เลือก"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "ไม่​มี​รายการ​ตรง​กัน"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "หนึ่งผลลัพธ์"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "ผลลัพธ์ %d จาก %d รายการ"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "บล็อกคนนี้"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "ปิดแจ้งเตือน"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "ค้นหาอะไรในการสนทนา"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "เลื่อนและย่อขยาย"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "นี่อาจใช้เวลาสักไม่กี่นาที"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "การเพิ่มประสิทธิภาพฐานข้อมูล"; -/* The present; the current time. */ -"DATE_NOW" = "ตอนนี้"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "ข้อความที่ลบตัวเอง"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "แก้ไขกลุ่ม"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "คุณไม่มีรูปในการสนทนานี้"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "กำลังโหลดข้อความใหม่..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "กำลังโหลดข้อความเก่า..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "ไม่สามารถดาวน์โหลดรูปภาพ ขอยืนยันว่าอุปกรณ์ออนไลน์อยู่"; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "เกิดข้อผิดพลาดไม่ทราบสาเหตุ"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "เลือกไม่ได้"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "เขียนที่ค้นหา"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "ผิดพลาด. กดที่ลองใหม่"; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "ไม่มีผลลัพธ์"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "สร้างกลุ่มแล้ว"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "ชื่อเรื่องเปลี่ยนเป็น %@ แล้ว "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "อัพเดตกลุ่มแล้ว"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "คุณได้ออกจากกลุ่ม"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " คุณได้ถูกลบออกจากกลุ่ม "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "เชอร์มากกว่า %@ ไฟล์ไม่ได้"; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "ไม่สามารถเรียกดูไฟล์แนบ ผิดพลาด"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "ใช้ไฟล์เสียงนี้ไม่ได้"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "ออก"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "ออกจากกลุ่ม"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "ไฟล์ทั้งหมด"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "ลบข้อความ %d อน"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "ลบข้อความ"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ ตอน %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "คุณ"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "เดือนนี้"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "ส่งไม่สำเร็จ"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "อ่านแล้ว"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "กำลังส่ง..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "ส่งแล้ว"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "กำลังอัปโหลด..."; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ ถึง %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "ข้อความให้ตังเองจำไว้"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "อาจจะได้รับข้อความตอน %@ รีสตาร์ทมา"; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ได้ปิดใช้งานข้อความที่ลบตัวเองแล้ว"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ ตั้งเวลาข้อความที่ลบตัวเองไว้ที่ %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "ถ่ายรูปไม่ได้"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "ถ่ายรูปไม่ได้"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "ตั้งกล้องไม่ได้"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "อัลบั้มที่ไม่มีชื่อ"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "ยืนยันตัวตนเพื่อเปิด Session"; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "การตรวจสอบสิทธิ์ล้มเหลว"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "ทิ้งข้อความไหม"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "ทิ้งข้อความ"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (ค่าเริ่มต้น)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "เสียงข้อความ"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "ไม่มี"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ วัน"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@วั"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ ชั่วโมง"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@ ชม."; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ นาที"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@น"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ วินาที"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@วิ"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ วัน"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ ชั่วโมง"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ นาที"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ สัปดาห์"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ สัปดาห์"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@ส"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "ยกเลิก"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "ลบ"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "ข้อความเสียง"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "กดเลยที่จะอัดเสยง"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "ข้อความเสียง"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "คุณได้ปิดใช้งานข้อความที่ลบตัวเองแล้ว"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "คุณได้ตั้งเวลาข้อความที่ลบตัวเองไว้ที่ %@"; -// MARK: - Session -"continue_2" = "ไปต่อ"; -"copy" = "คัดลอก"; -"invalid_url" = "URL ลิงค์ไม่ถูกต้อง"; -"next" = "ถัดไป"; -"share" = "แชร์"; -"invalid_session_id" = "ไอดีเซสชั่นไม่ถูกต้อง"; -"cancel" = "ยกเลิก"; -"your_session_id" = "Session ไอดีของคุณ"; -"vc_landing_title_2" = "ยินดีต้อนรับ Session..."; -"vc_landing_register_button_title" = "สร้างไอดี"; -"vc_landing_restore_button_title" = "กู้คืนไอดี"; -"vc_landing_link_button_title" = "เชื่อมโยงอุปกรณ์"; -"view_fake_chat_bubble_1" = "Session เซสชั่น คือว่าอะไร"; -"view_fake_chat_bubble_2" = "เป็นแอปส่งข้อความที่เข้ารหัสแบบกระจายอำนาจ"; -"view_fake_chat_bubble_3" = "จึงไม่รวบรวมข้อมูลส่วนบุคคลของฉันหรือข้อมูลเมตาการสนทนาของฉัน มันทำงานอย่างไร?"; -"view_fake_chat_bubble_4" = "มันใช้เทคโนโลยีการกำหนดเส้นทางและการเข้ารหัสแบบไม่ระบุชื่อขั้นสูง"; -"view_fake_chat_bubble_5" = "เพื่อนไม่ให้เพื่อนใช้ผู้ส่งสารที่ถูกบุกรุกนะ"; -"vc_register_title" = "ยินดีที่ได้รับไอดีใหม่ใน Session"; -"vc_register_explanation" = "ไอดีของคุณคือที่อยู่เฉพาะที่ผู้คนสามารถใช้เพื่อติดต่อคุณในเซสชัน Session โดยไม่ต้องมีการเชื่อมต่อกับตัวตนที่แท้จริงของคุณ ไอดีของคุณจะไม่เปิดเผยตัวตนและเป็นส่วนตัวโดยการออกแบบ"; -"vc_restore_title" = "กู้คืนค่าบัญชีของคุณ"; -"vc_restore_explanation" = "ป้อนวลีการกู้คืนที่ได้รับเมื่อคุณลงทะเบียนเพื่อกู้คืนบัญชีของคุณ"; -"vc_restore_seed_text_field_hint" = "ป้อนวลีกู้คืนของคุณ"; -"vc_link_device_title" = "เชื่อมโยงอุปกรณ์"; -"vc_link_device_scan_qr_code_tab_title" = "สแกน QR โค้ด"; -"vc_display_name_title_2" = "เลือกชื่อที่ใช้แสดง"; -"vc_display_name_explanation" = "ชื่อนี้จะเป็นชื่อของคุณเมื่อคุณใช้เซสชั่น Session เพื่อนทุกคนจะเห็นชื่อนี้ใน Session"; -"vc_display_name_text_field_hint" = "เลือกชื่อที่ใช้แสดง"; -"vc_display_name_display_name_missing_error" = "ขอเลือกชื่อที่ใช้แสดง"; -"vc_display_name_display_name_too_long_error" = "ขอเลือกชื่อสั้นกว่า"; -"vc_pn_mode_recommended_option_tag" = "แนะนำ"; -"vc_pn_mode_no_option_picked_modal_title" = "โปรดเลือกแผน"; -"vc_home_empty_state_message" = "คุณยังไม่มีผู้ติดต่อ"; -"vc_home_empty_state_button_title" = "ติดต่อใครสักคน"; -"vc_seed_title" = "วลีกู้คืนของคุณ"; -"vc_seed_title_2" = "คุณได้วลีกู้คืนแล้ว"; -"vc_seed_explanation" = "วลีกู้คืนของคุณคือคีย์หลักสำหรับไอดีของคุณ คุณสามารถใช้เพื่อกู้คืนไอดีของคุณ หากคุณไม่สามารถเข้าถึงอุปกรณ์ของคุณได้ เก็บวลีกู้คืนของคุณไว้ในที่ปลอดภัยและอย่าให้ใครเลย"; -"vc_seed_reveal_button_title" = "กดเพื่อเปิดเผย"; -"view_seed_reminder_subtitle_1" = "ปกป้องบัญชีของคุณด้วยการบันทึกวลีกู้คืน"; -"view_seed_reminder_subtitle_2" = "แตะคำที่ปกปิดไว้ค้างไว้เพื่อแสดงวลีกู้คืน จากนั้นจัดเก็บไว้อย่างปลอดภัยเพื่อรักษาความปลอดภัยไอดีของคุณ"; -"view_seed_reminder_subtitle_3" = "เก็บวลีการกู้คืนของคุณในที่ปลอดภัย"; -"vc_path_title" = "ทาง"; -"vc_path_explanation" = "Sessionซ่อนอินเตอร์เน็ต IP ของคุณโดยกำหนดเส้นทางข้อความของคุณผ่านโหนดบริการหลายโหนดในเครือข่ายการกระจายอำนาจของ Session. ประเทศเหล่านี้คือประเทศที่การเชื่อมต่อของคุณกำหนดเส้นทางผ่าน:"; -"vc_path_device_row_title" = "คุณ"; -"vc_path_guard_node_row_title" = "โหนดเข้า"; -"vc_path_service_node_row_title" = "โหนดบริการ"; -"vc_path_destination_row_title" = "ปลายทาง"; -"vc_path_learn_more_button_title" = "เรียน​รู้​เพิ่ม​เติม"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "ป้อนไอดี Session"; -"vc_create_private_chat_scan_qr_code_tab_title" = "สแกน QR โค้ด"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "เปิดใช้กล้องเพื่อสแกนรหัส QR โค้ด"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "ป้อนชื่อกลุ่ม"; -"vc_create_closed_group_empty_state_message" = "คุณยังไม่มีผู้ติดต่อ"; -"vc_create_closed_group_group_name_missing_error" = "ขอระบุชื่อกลุ่ม"; -"vc_create_closed_group_group_name_too_long_error" = "ขอระบุชื่อกลุ่มสั้นกว่า"; -"vc_create_closed_group_too_many_group_members_error" = "กลุ่มส่วนตัวจำกัดสมาชิกไม่เกิน100คน"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "สแกน QR โค้ด"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "ตั้งค่า"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "ขอเลือกชื่อที่ใช้แสดง"; -"vc_settings_display_name_too_long_error" = "ขอเลือกชื่อสั้นกว่า"; -"vc_settings_privacy_button_title" = "ความเป็นส่วนตัว"; -"vc_settings_notifications_button_title" = "การแจ้งเตือน"; -"vc_settings_recovery_phrase_button_title" = "วลี"; -"vc_settings_clear_all_data_button_title" = "ลบข้อมูล"; -"vc_qr_code_title" = "QR โค้ด"; -"vc_qr_code_view_my_qr_code_tab_title" = "แสดง QR โค้ดของคุน"; -"vc_qr_code_view_scan_qr_code_tab_title" = "สแกน QR โค้ด"; -"vc_qr_code_view_scan_qr_code_explanation" = "สแกนรหัส QR ของใครสักคนเพื่อเริ่มการสนทนากับเขา"; -"vc_view_my_qr_code_explanation" = "นี่คือ QR โค้ดของคุณ ผู้ใช้รายอื่นสามารถสแกนเพื่อเริ่มการสนทนากับคุณได้"; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "คุณจะได้รับการแจ้งเตือนเมื่อมีข้อความใหม่ที่เชื่อถือได้และทันทีโดยใช้เซิร์ฟเวอร์การแจ้งเตือนของ Apple"; -"fast_mode" = "โหมดเร็ว"; -"slow_mode_explanation" = "ตรวจสอบข้อความใหม่ในเบื้องหลังเป็นครั้งคราว"; -"slow_mode" = "โหมดล่าช้า"; -"vc_pn_mode_title" = "แจ้งเตือนข้อความ"; -"vc_link_device_recovery_phrase_tab_title" = "วลี"; -"vc_link_device_scan_qr_code_explanation" = "ไปที่การตั้งค่า → วลีกู้คืนบนอุปกรณ์อื่นของคุณเพื่อแสดงรหัส QR ของคุณ"; -"vc_enter_recovery_phrase_title" = "วลี"; -"vc_enter_recovery_phrase_explanation" = "หากต้องการเชื่อมโยงอุปกรณ์ของคุณ ให้ป้อนวลีการกู้คืนที่ได้รับเมื่อคุณลงชื่อสมัครใช้"; -"vc_enter_public_key_text_field_hint" = "ป้อนไอดีเซสชั่น Session หรือชื่อ ONS"; -"admin_group_leave_warning" = "เนื่องจากคุณเป็นผู้สร้างกลุ่มนี้จึงจะถูกลบสำหรับทุกคน การดำเนินการนี้ไม่สามารถยกเลิกได้"; -"vc_join_open_group_suggestions_title" = "หรือเข้าร่วมอย่างใดอย่างหนึ่งเหล่านี้..."; -"vc_settings_invite_a_friend_button_title" = "เชิญเพื่อน"; -"copied" = "คัดลอกแล้ว"; -"vc_conversation_settings_copy_session_id_button_title" = "คัดลอกไอดี"; -"vc_conversation_input_prompt" = "ข้อความ"; -"vc_conversation_voice_message_cancel_message" = "เลื่อนเพื่อยกเลิก"; -"modal_download_attachment_title" = "ไว้ใจ %@ ไหม"; -"modal_download_attachment_explanation" = "ดาวน์โหลดไฟล์นี้จาก %@ ไหม"; -"modal_download_button_title" = "ดาวน์โหลด"; -"modal_open_url_title" = "เปิดลิงค์ URL ไหม"; -"modal_open_url_explanation" = "แน่ใจไหมว่าคุณต้องกาเปิดดู %@"; -"modal_open_url_button_title" = "เปิด"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "เลิกบล็อก %@ ไหม"; -"modal_blocked_explanation" = "แน่ใจไหมว่าคุณต้องการเลิกบล็อก %@"; -"modal_blocked_button_title" = "เลิกบล็อก"; -"modal_link_previews_title" = "เปิดใช้งานการแสดงตัวอย่างลิงค์"; -"modal_link_previews_explanation" = "การเปิดใช้งานการแสดงตัวอย่างลิงค์จะแสดงตัวอย่างสำหรับ URL ที่คุณส่งและรับ สิ่งนี้มีประโยชน์ แต่Sessionจะต้องติดต่อเว็บไซต์ที่เชื่อมโยงเพื่อสร้างตัวอย่าง คุณสามารถปิดการแสดงตัวอย่างลิงก์ได้ตลอดเวลาในการตั้งค่าของSession"; -"modal_link_previews_button_title" = "เปิดใช้งาน"; -"vc_share_title" = "เชิญมาใช้ Session"; -"vc_share_loading_message" = "รวบรวมสิ่งแนบ..."; -"vc_share_sending_message" = "กำลังส่ง..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "การเชิญเข้าร่วมกลุ่ม"; -"vc_conversation_settings_invite_button_title" = "เพิ่มสมาชิก"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "ลบข้อมูลไปหมด"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "วลีกู้คืนของคุณ"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/tr.lproj/Localizable.strings b/Session/Meta/Translations/tr.lproj/Localizable.strings deleted file mode 100644 index 0c03499e45..0000000000 --- a/Session/Meta/Translations/tr.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Ek"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Başlık"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Dosya türü: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Boyut: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Mesaj sınırı aşıldı"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Gönder"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Ek"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Ek gönderilirken hata oluştu"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Belge seçilemedi"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Lütfen bu dosyanın veya dizinin sıkıştırılmış bir arşivini oluşturun ve bunun yerine bunu göndermeyi deneyin."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Desteklenmeyen dosya"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Sesli mesaj"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Engelle"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "%@ Kullanıcıyı Engelle?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Engeli Kaldır"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ adlı kullanıcı engellendi."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Kullanıcı Engellendi"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Engellenen kullanıcılar sizi arayamayacak veya mesaj gönderemeyecektir."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Tamamlandı"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Seç"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Eşleşme yok"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 eşleşme"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d oranından %d oranında eşleşme yapıldı"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Bu Kullanıcıyı Engelle"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Sustur"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Sohbet Ara"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Taşı ve Ölçekle"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Bu işlem birkaç dakika sürebilir."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Veritabanı En İyi Duruma Getiriliyor"; -/* The present; the current time. */ -"DATE_NOW" = "Şimdi"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Kaybolan Mesajlar"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Grubu Düzenle"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "Bu konuşmada hiç medya yok."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Daha Yeni Medya Yükleniyor…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Eski Medya Yükleniyor…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "İstenen GIF getirilemedi. Lütfen çevrimiçi olduğunuzu doğrulayın."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Bilinmeyen bir hata oluştu."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "GIF Seçilemiyor"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Lütfen aramanızı girin."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Hata. Tekrar denemek için dokunun."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Sonuç yok."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Grup oluşturuldu"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Başlık artık '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Grup güncellendi."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Gruptan ayrıldınız."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Gruptan çıkarıldınız. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "%@'den fazla öğe paylaşamazsınız."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Ek seçilemedi."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Geçersiz ses dosyası."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Ayrıl"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Gruptan Ayrıl"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Tüm Medya"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "%d Mesajları Sil"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Mesajı Sil"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ üzerinde %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Siz"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Bu Ay"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Gönderme başarısız."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Okundu"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Gönderiliyor…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Gönderildi"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Karşıya yükleniyor…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ ile %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Kendime Not"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "%@ yeniden başlatılırken mesajlar almış olabilirsiniz."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ kaybolan mesajları devre dışı bırak."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ kaybolan mesaj zamanını %@ olarak ayarla"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Görüntü yakalanamıyor."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Görüntü yakalanamıyor."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Kamera yapılandırılamadı."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Adsız Albüm"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Okundu olarak işaretle"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Yanıtla"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Session’ı açmak için kimlik doğrulaması yapın."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Kimlik Doğrulama Başarısız"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Medya Silinsin mi?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Medyayı At"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (varsayılan)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Mesaj Sesi"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Hiçbiri"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ Gün"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@g"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ saat"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@s"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ dakika"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@d"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ saniye"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ gün"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ saat"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ dakika"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ hafta"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ haftalar"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@h"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "İptal"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Sil"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Sesli Mesaj"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Sesli mesaj kaydetmek için dokunun ve basılı tutun."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Sesli Mesaj"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Kaybolan mesajları devre dışı bıraktınız."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Kaybolan mesaj zamanını %@ olarak ayarladınız"; -// MARK: - Session -"continue_2" = "Devam et"; -"copy" = "Kopyala"; -"invalid_url" = "Geçersiz URL"; -"next" = "Sonraki"; -"share" = "Paylaş"; -"invalid_session_id" = "Geçersiz Session Kimliği"; -"cancel" = "İptal"; -"your_session_id" = "Session Kimliğiniz"; -"vc_landing_title_2" = "Sesion dünyanız burada başlıyor..."; -"vc_landing_register_button_title" = "Session Kimliği Oluştur"; -"vc_landing_restore_button_title" = "Session Dünyanıza Devam Edin"; -"vc_landing_link_button_title" = "Bir Cihazı Bağla"; -"view_fake_chat_bubble_1" = "Session Nedir?"; -"view_fake_chat_bubble_2" = "Merkezi olmayan, şifreli bir mesajlaşma uygulaması"; -"view_fake_chat_bubble_3" = "Yani kişisel bilgilerimi veya konuşma meta verilerimi toplamıyor mu? Nasıl çalışıyor?"; -"view_fake_chat_bubble_4" = "Gelişmiş anonim yönlendirme ve uçtan uca şifreleme teknolojilerinin bir kombinasyonunu kullanıyor."; -"view_fake_chat_bubble_5" = "Arkadaşlar, arkadaşlarının güvenliği ihlal edilmiş mesajlaşma programlarını kullanmasına izin vermez. Rica ederim."; -"vc_register_title" = "Session kimliğinize merhaba deyin"; -"vc_register_explanation" = "Session Kimliğiniz, kişilerin Session'da sizinle iletişim kurmak için kullanabileceği benzersiz adrestir. Gerçek kimliğinizle hiçbir bağlantısı olmadan, Session Kimliğiniz tasarım gereği tamamen anonim ve özeldir."; -"vc_restore_title" = "Hesabınızı geri yükleyin"; -"vc_restore_explanation" = "Hesabınızı geri yüklemek için kaydolduğunuzda size verilen \"kurtarma metni\"ni girin."; -"vc_restore_seed_text_field_hint" = "Kurtarma metninizi girin"; -"vc_link_device_title" = "Bir Cihazı Bağla"; -"vc_link_device_scan_qr_code_tab_title" = "QR Kodunu Tara"; -"vc_display_name_title_2" = "Görünen adınızı seçin"; -"vc_display_name_explanation" = "Session'ı kullandığınızda bu sizin adınız olacaktır. Gerçek adınız, takma adınız veya istediğiniz herhangi bir şey olabilir."; -"vc_display_name_text_field_hint" = "Bir görünen ad girin"; -"vc_display_name_display_name_missing_error" = "Lütfen bir görünen ad seçin"; -"vc_display_name_display_name_too_long_error" = "Lütfen daha kısa bir görünen ad seçin"; -"vc_pn_mode_recommended_option_tag" = "Tavsiye edilen"; -"vc_pn_mode_no_option_picked_modal_title" = "Lütfen Bir Seçenek Seçin"; -"vc_home_empty_state_message" = "Henüz herhangi bir bağlantınız yok"; -"vc_home_empty_state_button_title" = "Bir Session Başlatın"; -"vc_seed_title" = "Kurtarma metniniz"; -"vc_seed_title_2" = "Kurtarma metninizle tanışın"; -"vc_seed_explanation" = "Kurtarma ifadeniz Session Kimliğinizin ana anahtarıdır; cihazınıza erişiminizi kaybederseniz Session Kimliğinizi geri yüklemek için bunu kullanabilirsiniz. Kurtarma metninizi güvenli bir yerde saklayın ve kimseye vermeyin."; -"vc_seed_reveal_button_title" = "Açığa çıkarmak için basılı tutun"; -"view_seed_reminder_subtitle_1" = "Kurtarma metninizi kaydederek hesabınızı güvenceye alın"; -"view_seed_reminder_subtitle_2" = "Kurtarma ifadenizi ortaya çıkarmak için düzeltilen kelimelere dokunun ve basılı tutun, ardından Session Kimliğinizi güvenceye almak için güvenli bir şekilde saklayın."; -"view_seed_reminder_subtitle_3" = "Kurtarma metninizi güvenli bir yerde sakladığınızdan emin olun"; -"vc_path_title" = "Yol"; -"vc_path_explanation" = "Session, mesajlarınızı Session'ın merkezi olmayan ağındaki birden çok Hizmet Düğümü aracılığıyla yönlendirerek IP'nizi gizler. Şu anda bağlantınızın yönlendirildiği ülkeler şunlardır:"; -"vc_path_device_row_title" = "Siz"; -"vc_path_guard_node_row_title" = "Giriş Noktası"; -"vc_path_service_node_row_title" = "Hizmet Noktası"; -"vc_path_destination_row_title" = "İstikamet"; -"vc_path_learn_more_button_title" = "Daha fazla bilgi edinin"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Session Kimliğinizi Girin"; -"vc_create_private_chat_scan_qr_code_tab_title" = "QR Kodunu Tara"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session uygulamasının QR kodlarını taramak için kamera erişiminize ihtiyacı var"; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Bir grup adı girin"; -"vc_create_closed_group_empty_state_message" = "Henüz herhangi bir bağlantınız yok"; -"vc_create_closed_group_group_name_missing_error" = "Lütfen bir grup adı girin"; -"vc_create_closed_group_group_name_too_long_error" = "Lütfen daha kısa bir grup adı girin"; -"vc_create_closed_group_too_many_group_members_error" = "Kapalı bir grubun 100'den fazla üyesi olamaz"; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "QR Kodunu Tara"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Ayarlar"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Lütfen bir görünen ad seçin"; -"vc_settings_display_name_too_long_error" = "Lütfen daha kısa bir görünen ad seçin"; -"vc_settings_privacy_button_title" = "Gizlilik"; -"vc_settings_notifications_button_title" = "Bildirimler"; -"vc_settings_recovery_phrase_button_title" = "Kurtarma Sözcük Grubu"; -"vc_settings_clear_all_data_button_title" = "Verileri Temizle"; -"vc_qr_code_title" = "QR kod"; -"vc_qr_code_view_my_qr_code_tab_title" = "QR Kodumu Görüntüle"; -"vc_qr_code_view_scan_qr_code_tab_title" = "QR Kodunu Tara"; -"vc_qr_code_view_scan_qr_code_explanation" = "Onlarla sohbet başlatmak için birinin QR kodunu tarayın"; -"vc_view_my_qr_code_explanation" = "Bu sizin QR kodunuz. Diğer kullanıcılar, sizinle bir oturum başlatmak için tarayabilir."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Apple'ın bildirim sunucularını kullanarak yeni iletilerden güvenilir ve anında haberdar olacaksınız."; -"fast_mode" = "Hızlı Mod"; -"slow_mode_explanation" = "Session ara sıra arka planda yeni mesajları kontrol eder."; -"slow_mode" = "Yavaş Mod"; -"vc_pn_mode_title" = "Mesaj Bildirimleri"; -"vc_link_device_recovery_phrase_tab_title" = "Kurtarma Sözcük Grubu"; -"vc_link_device_scan_qr_code_explanation" = "QR kodunuzu göstermek için diğer cihazınızda Ayarlar → Kurtarma Metni'nize gidin."; -"vc_enter_recovery_phrase_title" = "Kurtarma Sözcük Grubu"; -"vc_enter_recovery_phrase_explanation" = "Cihazınızı bağlamak için, kaydolduğunuzda size verilen kurtarma metninizi girin."; -"vc_enter_public_key_text_field_hint" = "Session Kimliğini veya ONS adını girin"; -"admin_group_leave_warning" = "Bu grubun yaratıcısı olduğunuz için herkes için silinecek. Bu geri alınamaz."; -"vc_join_open_group_suggestions_title" = "Ya da bunlardan birine katılın..."; -"vc_settings_invite_a_friend_button_title" = "Bir arkadaş davet et"; -"copied" = "Kopyalandı"; -"vc_conversation_settings_copy_session_id_button_title" = "Session Kimliğini Kopyala"; -"vc_conversation_input_prompt" = "Mesaj"; -"vc_conversation_voice_message_cancel_message" = "İptal etmek için kaydırın"; -"modal_download_attachment_title" = "%@ Kullanıcısına Güven?"; -"modal_download_attachment_explanation" = "%@ kullanıcısı tarafından gönderilen medyayı indirmek istediğinizden emin misiniz?"; -"modal_download_button_title" = "İndir"; -"modal_open_url_title" = "URL açılsın mı?"; -"modal_open_url_explanation" = "%@ açmak istediğinizden emin misiniz?"; -"modal_open_url_button_title" = "Aç"; -"modal_copy_url_button_title" = "Bağlantıyı Kopyala"; -"modal_blocked_title" = "%@ engeli kaldırılsın mı?"; -"modal_blocked_explanation" = "%@ kişisine ait engeli kaldırmak istediğinizden emin misiniz?"; -"modal_blocked_button_title" = "Engeli kaldır"; -"modal_link_previews_title" = "Bağlantı Önizlemeleri Etkinleştirilsin mi?"; -"modal_link_previews_explanation" = "Bağlantı önizlemelerini etkinleştirmek, gönderdiğiniz ve aldığınız URL'lerin önizlemelerini gösterir. Bu yararlı olabilir, ancak Session'ın önizleme oluşturmak için bağlantılı web siteleriyle iletişim kurması gerekir. Bağlantı önizlemelerini her zaman Session ayarlarında devre dışı bırakabilirsiniz."; -"modal_link_previews_button_title" = "İzin ver"; -"vc_share_title" = "Session'e davet et"; -"vc_share_loading_message" = "Ekler hazırlanıyor..."; -"vc_share_sending_message" = "Gönderiliyor..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Grup davetini aç"; -"vc_conversation_settings_invite_button_title" = "Kullanıcıları Bul"; -"modal_send_seed_title" = "Uyarı"; -"modal_send_seed_explanation" = "Bu sizin kurtarma ifadenizdir. Birine gönderirseniz, hesabınızda tam erişime sahip olurlar."; -"modal_send_seed_send_button_title" = "Gönder"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Yalnızca Bahsedildiğinde Bildir"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Etkinleştirildiğinde, yalnızca sizden bahseden mesajlar için bilgilendirileceksiniz."; -"view_conversation_title_notify_for_mentions_only" = "Yalnızca Bahsedildiğinde Bildirir"; -"message_deleted" = "Bu mesaj silindi"; -"delete_message_for_me" = "Sadece benim için sil"; -"delete_message_for_everyone" = "Herkesten sil"; -"delete_message_for_me_and_recipient" = "Ben ve %@ için sil"; -"context_menu_reply" = "Cevapla"; -"context_menu_save" = "Kaydet"; -"context_menu_ban_user" = "Kullanıcıyı engelle"; -"context_menu_ban_and_delete_all" = "Tümünü Engelle ve Sil"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Dosya Ekle"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Doküman"; -"accessibility_library_button" = "Fotoğraf Arşivi"; -"accessibility_camera_button" = "Kamera"; -"accessibility_main_button_collapse" = "Ek seçeneklerini daralt"; -"invalid_recovery_phrase" = "Geçersiz Kurtarma İfadesi"; -"DISMISS_BUTTON_TEXT" = "Reddet"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Ayarlar"; -"call_outgoing" = "\"%@\" Kişisini Aradınız"; -"call_incoming" = "\"%@\" Kişisi Sizi Aradı"; -"call_missed" = "\"%@\" Kişisinden Cevapsız Arama"; -"APN_Message" = "Yeni bir mesajın var"; -"APN_Collapsed_Messages" = "%@ Adet Yeni Mesajınız Var."; -"PIN_BUTTON_TEXT" = "Sabitle"; -"UNPIN_BUTTON_TEXT" = "Sabitlemeyi Kaldır"; -"modal_call_missed_tips_title" = "Cevapsız Çağrı"; -"modal_call_missed_tips_explanation" = "Gizlilik Ayarlarında 'Sesli ve görüntülü aramalar' iznini etkinleştirmeniz gerektiği için '%@' tarafından cevaplanmayan çağrınız var."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "\"%@\" Kişisi Ekran Görüntüsü aldı."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Tüm Verileri Temizle"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Veriler 1 Hizmet Noktası tarafından silinemedi. Hizmet Noktası Kimliği: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Veriler %@ Hizmet Noktaları tarafından silinemedi. Hizmet Noktası Kimlikleri: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Kurtarma İfadeniz"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/uk.lproj/Localizable.strings b/Session/Meta/Translations/uk.lproj/Localizable.strings deleted file mode 100644 index dc0cd60c70..0000000000 --- a/Session/Meta/Translations/uk.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Вкладення"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Заголовок"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Тип файлу: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Розмір: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Досягнуто ліміту повідомлення"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Надіслати"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Вкладення"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Помилка надсилання вкладення"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Не вдалося конвертувати зображення."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Не вдається відтворити відео."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Не вдалося проаналізувати зображення."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Не вдалося вилучити метадані %d знімків"; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Неможливо змінити розмір зображення."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Вкладення завелике"; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Вкладення містить неприпустимий вміст."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Вкладення має невірний формат файлу."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Вкладення порожнє"; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Невдала спроба вибору документу."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Будь ласка, створіть архів цього файлу або директорії та спробуйте надіслати саме його."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Файл не підтримується"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Голосове повідомлення"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Заблокувати"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Заблокувати %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Розблокувати %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Розблокувати"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "%@ розблоковано."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Користувача заблоковано"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ розблоковано."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Заблоковані користувачі не зможуть телефонувати тобі або надсилати повідомлення."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Готово"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Обрати"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Поиск..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Збігів не знайдено"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 збіг"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d з %d збігів"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Заблокувати користувача"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Вимкнути звук"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Пошук в бесідах"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Переміщати і масштабувати"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "Це може зайняти кілька хвилин."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Оптимізація бази даних"; -/* The present; the current time. */ -"DATE_NOW" = "Зараз"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Зникаючі повідомлення"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Редагувати групу"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "У вашій розмові немає жодного медіа."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Завантаження новішої медіа…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Завантаження старих медіа…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Не вдалося отримати запит на GIF. Будь ласка, перевірте, що ви онлайн."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "Невідома помилка"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Не вдалося вибрати GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Будь ласка, введіть текст для пошуку"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Помилка. Натисніть для повтор."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "Нічого не знайдено"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Група створена."; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ приєдналися до групи. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ покинули групу. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ було вилучено із групи. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ були вилучені із групи. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Заголовок%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Групу оновлено."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "Ви покинули групу"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " Вас вилучили з групи. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "Ви не можете надсилати більше, ніж %@ файлів."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Не вдалося обрати вкладення."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Недійсний формат аудіо"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Покинути"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Вийти з групи"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "Всі медіа"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Видалити %d повідомлень"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Видалити повідомлення"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ в %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "ти"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Цього місяця"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Помилка надсилання"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Прочитано"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Надсилання…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Надіслано"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "завантаження…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ в %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Нотатка для себе"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Можливо, під час перезавантаження вашого %@ ви отримали повідомлення."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "Ок"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ вимкнув зникаючі повідомлення."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ встановив/ла таймер зникаючих повіомлень на %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Не вдається зробити знімок."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Не вдається зробити знімок."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Не вдалося налаштувати камеру."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Альбом без імені"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Позначити прочитаним"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Відповісти"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Автентифікуйтесь для відкриття Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Помилка автентифікації"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Відхилити медіа?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Відхилити медіа"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (за замовчуванням)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Звук повідомлення"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "Жодного"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ днів"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@д"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ годин"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@г"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ хвилин"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@хв"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ секунд"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@с"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ день"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ година"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ хвилина"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ тиждень"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ тижнів"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@т"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Скасувати"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Видалити"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Голосове повідомлення"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Торкніться та утримуйте, щоб записати голосове повідомлення."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Голосове повідомлення"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ви вимкнули зникаючі повідомлення."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "Ви встановили таймер зникаючих повідомлень на %@"; -// MARK: - Session -"continue_2" = "Продовжити"; -"copy" = "Скопіювати"; -"invalid_url" = "Недійсне URL-посилання"; -"next" = "Далі"; -"share" = "Поділитися"; -"invalid_session_id" = "Невірний Session ID"; -"cancel" = "Скасувати"; -"your_session_id" = "Ваш Session ID"; -"vc_landing_title_2" = "Ваша сесія починається тут..."; -"vc_landing_register_button_title" = "Створити Session ID"; -"vc_landing_restore_button_title" = "Увійти в акаунт"; -"vc_landing_link_button_title" = "Прив'язати пристрій"; -"view_fake_chat_bubble_1" = "Що таке Session?"; -"view_fake_chat_bubble_2" = "Це децентралізований, шифрований месенджер"; -"view_fake_chat_bubble_3" = "Тобто він не збирає мою особисту інформацію чи метадані моєї розмови? Як це працює?"; -"view_fake_chat_bubble_4" = "Він використовує комбінацію вдосконаленої анонімної мережі та технологій наскрізного шифрування."; -"view_fake_chat_bubble_5" = "Друзі не дозволять друзям користуватися месенджерами з сумнівною безпекою. Ласкаво прошу."; -"vc_register_title" = "Привітайтесь з вашим Session ID"; -"vc_register_explanation" = "Ваш Session ID є унікальною адресою, використовуючи яку люди зможуть зв’язатися з вами в Session. Зважаючи на те, що зв'язок з вашою реальною особистістю відсутній, Session ID задуманий та реалізований абсолютно анонімним та приватним."; -"vc_restore_title" = "Відновити обліковий запис"; -"vc_restore_explanation" = "Введіть фразу відновлення, яку вам було надано під час реєстрації, для відновлення облікового запису."; -"vc_restore_seed_text_field_hint" = "Введіть свою фразу відновлення"; -"vc_link_device_title" = "Прив'язати пристрій"; -"vc_link_device_scan_qr_code_tab_title" = "Сканувати QR-код"; -"vc_display_name_title_2" = "Виберіть ваш псевдонім для показу"; -"vc_display_name_explanation" = "Це буде ваше ім’я під час використання Session. Це може бути ваше справжнє ім’я, псевдонім або будь-що інше, що вам подобається."; -"vc_display_name_text_field_hint" = "Введіть ім'я для показу"; -"vc_display_name_display_name_missing_error" = "Будь ласка, виберіть псевдонім для показу"; -"vc_display_name_display_name_too_long_error" = "Будь ласка, виберіть коротший псевдонім для показу"; -"vc_pn_mode_recommended_option_tag" = "Рекомендовано"; -"vc_pn_mode_no_option_picked_modal_title" = "Будь ласка, виберіть варіант"; -"vc_home_empty_state_message" = "У вас ще немає жодних контактів"; -"vc_home_empty_state_button_title" = "Почати розмову"; -"vc_seed_title" = "Ваша фраза відновлення"; -"vc_seed_title_2" = "Знайомтесь з вашою фразою відновлення"; -"vc_seed_explanation" = "Ваша фраза відновлення — це головний ключ до вашого Session ID. Ви можете використовувати її для відновлення вашого Session ID якщо ви втратите доступ до пристрою. Зберігайте вашу фразу відновлення у безпечному місці та не надавайте її нікому."; -"vc_seed_reveal_button_title" = "Натисніть, щоб відкрити"; -"view_seed_reminder_subtitle_1" = "Захистіть свій обліковий запис, зберігши відновлювальну фразу"; -"view_seed_reminder_subtitle_2" = "Натисніть і утримуйте приховані слова, щоб відкрити фразу для відновлення, а потім збережіть її в безпечному місці, щоб захистити свій Session ID."; -"view_seed_reminder_subtitle_3" = "Переконайтеся, що ви зберегли свою фразу відновлення в безпечному місці"; -"vc_path_title" = "Шлях"; -"vc_path_explanation" = "Session приховує вашу IP-адресу, перенаправляючи ваші повідомлення через декілька сервісних вузлів в децентралізованій мережі Session. Це країни, через які зараз перенаправляється ваше з'єднання:"; -"vc_path_device_row_title" = "Ви"; -"vc_path_guard_node_row_title" = "Вхідний вузол"; -"vc_path_service_node_row_title" = "Сервісний вузол"; -"vc_path_destination_row_title" = "Місце призначення"; -"vc_path_learn_more_button_title" = "Дізнатися більше"; -"vc_create_private_chat_title" = "Нове повідомлення"; -"vc_create_private_chat_enter_session_id_tab_title" = "Введіть Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Сканувати QR-код"; -"vc_enter_public_key_explanation" = "Почніть нову розмову, ввівши чийсь Session ID або поділіться з ним своїм Session ID."; -"vc_scan_qr_code_camera_access_explanation" = "Session потрібен дозвіл до камери, щоб сканувати QR-код"; -"vc_create_closed_group_title" = "Створити групу"; -"vc_create_closed_group_text_field_hint" = "Введіть назву групи"; -"vc_create_closed_group_empty_state_message" = "У вас ще немає жодних контактів"; -"vc_create_closed_group_group_name_missing_error" = "Будь ласка, введіть назву групи"; -"vc_create_closed_group_group_name_too_long_error" = "Будь ласка, введіть коротшу назву групи"; -"vc_create_closed_group_too_many_group_members_error" = "Закрита група не може мати більше 100 учасників"; -"vc_join_public_chat_title" = "Приєднатися до спільноти"; -"vc_join_public_chat_enter_group_url_tab_title" = "URL-адреса спільноти"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Сканувати QR-код"; -"vc_enter_chat_url_text_field_hint" = "Введіть URL-адресу спільноти"; -"vc_settings_title" = "Налаштування"; -"vc_group_settings_title" = "Налаштування групи"; -"vc_settings_display_name_missing_error" = "Будь ласка, виберіть псевдонім для показу"; -"vc_settings_display_name_too_long_error" = "Будь ласка, виберіть коротший псевдонім для показу"; -"vc_settings_privacy_button_title" = "Конфіденційність"; -"vc_settings_notifications_button_title" = "Сповіщення"; -"vc_settings_recovery_phrase_button_title" = "Фраза відновлення"; -"vc_settings_clear_all_data_button_title" = "Очистити дані"; -"vc_qr_code_title" = "QR-код"; -"vc_qr_code_view_my_qr_code_tab_title" = "Переглянути мій QR-код"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Сканувати QR-код"; -"vc_qr_code_view_scan_qr_code_explanation" = "Проскануйте чийсь QR-код, щоб почати розмову з ними"; -"vc_view_my_qr_code_explanation" = "Це ваш QR-код. Інші користувачі можуть просканувати його, щоб почати розмову з вами."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "Ви отримуватимете сповіщення про нові повідомлення надійно та одразу за допомогою серверів сповіщень Apple."; -"fast_mode" = "Швидкий режим"; -"slow_mode_explanation" = "Session буде періодично перевіряти наявність нових повідомлень у фоновому режимі."; -"slow_mode" = "Повільний режим"; -"vc_pn_mode_title" = "Сповіщення про повідомлення"; -"vc_link_device_recovery_phrase_tab_title" = "Фраза відновлення"; -"vc_link_device_scan_qr_code_explanation" = "Перейдіть до Налаштувань → Фраза відновлення на вашому іншому пристрої, щоб показати ваш QR-код."; -"vc_enter_recovery_phrase_title" = "Фраза відновлення"; -"vc_enter_recovery_phrase_explanation" = "Для прив'язки пристрою ведіть фразу відновлення, яка була надана вам під час реєстрації."; -"vc_enter_public_key_text_field_hint" = "Введіть Session ID або ім'я ONS"; -"admin_group_leave_warning" = "Оскільки ви створили цю групу, вона буде видалена для всіх. Це не можна буде скасувати."; -"vc_join_open_group_suggestions_title" = "Або приєднуйтесь до однієї з цих..."; -"vc_settings_invite_a_friend_button_title" = "Запросити друга"; -"copied" = "Скопійовано"; -"vc_conversation_settings_copy_session_id_button_title" = "Скопіювати Session ID"; -"vc_conversation_input_prompt" = "Написати"; -"vc_conversation_voice_message_cancel_message" = "Проведіть, щоб скасувати"; -"modal_download_attachment_title" = "Довіряти %@?"; -"modal_download_attachment_explanation" = "Чи дійсно ви хочете звантажити медіафайл, відправлений %@?"; -"modal_download_button_title" = "Завантажити"; -"modal_open_url_title" = "Відкрити URL-адресу?"; -"modal_open_url_explanation" = "Ви впевнені, що хочете відкрити %@?"; -"modal_open_url_button_title" = "Відкрити"; -"modal_copy_url_button_title" = "Копіювати посилання"; -"modal_blocked_title" = "Розблокувати %@?"; -"modal_blocked_explanation" = "Ви впевнені, що бажаєте розблокувати %@?"; -"modal_blocked_button_title" = "Розблокувати"; -"modal_link_previews_title" = "Генерувати попередній перегляд посилань?"; -"modal_link_previews_explanation" = "Увімкнення попереднього перегляду посилань призведе до показу попереднього перегляду тих посилань, які ви надсилаєте та отримуєте. Це може бути корисним, але Session потрібно буде зв'язуватися з веб-сайтами для створення попереднього перегляду. Ви завжди зможете вимкнути попередній перегляд посилань в налаштуваннях Session."; -"modal_link_previews_button_title" = "Увімкнути"; -"vc_share_title" = "Поділитися в Session"; -"vc_share_loading_message" = "Підготовка вкладень..."; -"vc_share_sending_message" = "Надсилання..."; -"vc_share_link_previews_unsecure" = "Попередній перегляд не завантажений для незахищеного посилання"; -"vc_share_link_previews_error" = "Неможливо завантажити попередній перегляд"; -"vc_share_link_previews_disabled_title" = "Попередній перегляд посилань вимкнено"; -"vc_share_link_previews_disabled_explanation" = "Увімкнення попереднього перегляду посилань призведе до показу попереднього перегляду тих посилань, якими ви ділитесь. Це може бути корисним, але Session потрібно буде зв'язуватися з веб-сайтами для створення попереднього перегляду.\n\nВи зможете ввімкнути попередній перегляд посилань в налаштуваннях Session."; -"view_open_group_invitation_description" = "Запрошення до відкритої групи"; -"vc_conversation_settings_invite_button_title" = "Додати учасників"; -"modal_send_seed_title" = "Попередження"; -"modal_send_seed_explanation" = "Це ваша фраза відновлення. Якщо ви надішлете її комусь, він матиме повний доступ до вашого облікового запису."; -"modal_send_seed_send_button_title" = "Надіслати"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Сповіщати лише про згадки"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "Коли увімкнено, ви будете отримувати сповіщення лише про повідомлення, в яких згадують вас."; -"view_conversation_title_notify_for_mentions_only" = "Сповіщення лише про згадки"; -"message_deleted" = "Це повідомлення було видалено"; -"delete_message_for_me" = "Видалити лише для мене"; -"delete_message_for_everyone" = "Видалити для всіх"; -"delete_message_for_me_and_recipient" = "Видалити для мене та %@"; -"context_menu_reply" = "Відповісти"; -"context_menu_save" = "Зберегти"; -"context_menu_ban_user" = "Додати користувача до чорного списку"; -"context_menu_ban_and_delete_all" = "Додати до чорного списку та видалити всіх"; -"context_menu_ban_user_error_alert_message" = "Неможливо заблокувати користувача"; -"accessibility_expanding_attachments_button" = "Додати вкладення"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Документ"; -"accessibility_library_button" = "Галерея фотографій"; -"accessibility_camera_button" = "Камера"; -"accessibility_main_button_collapse" = "Згорнути параметри вкладень"; -"invalid_recovery_phrase" = "Невірна фраза відновлення"; -"DISMISS_BUTTON_TEXT" = "Відхилити"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Налаштування"; -"call_outgoing" = "Ви дзвонили %@"; -"call_incoming" = "%@ дзвонив вам"; -"call_missed" = "Пропущений дзвінок від %@"; -"APN_Message" = "Ви отримали нове повідомлення."; -"APN_Collapsed_Messages" = "Ви отримали %@ нових повідомлень."; -"PIN_BUTTON_TEXT" = "Закріпити"; -"UNPIN_BUTTON_TEXT" = "Відкріпити"; -"modal_call_missed_tips_title" = "Дзвінок пропущено"; -"modal_call_missed_tips_explanation" = "Ви пропустили дзвінок від %@, оскільки вам потрібно ввімкнути дозвіл «Голосові та відеодзвінки» в налаштуваннях конфіденційності."; -"media_saved" = "%@ зберіг медіафайл."; -"screenshot_taken" = "%@ зробив знімок екрану."; -"SEARCH_SECTION_CONTACTS" = "Контакти та Групи"; -"SEARCH_SECTION_MESSAGES" = "Повідомлення"; -"MESSAGE_REQUESTS_TITLE" = "Запити на повідомлення"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "Немає незавершених запитів на повідомлення"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Очистити всі"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Очистити"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Ви дійсно бажаєте видалити цей запит?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Ви дійсно хочете заблокувати цей контакт?"; -"MESSAGE_REQUESTS_INFO" = "Надсилання повідомлення цьому користувачеві автоматично прийме його запит на повідомлення та розкриє ваш Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Ваш запит на повідомлення прийнято."; -"MESSAGE_REQUESTS_NOTIFICATION" = "У вас є новий запит на повідомлення"; -"TXT_HIDE_TITLE" = "Приховати"; -"TXT_DELETE_ACCEPT" = "Прийняти"; -"TXT_BLOCK_USER_TITLE" = "Заблокувати користувача"; -"ALERT_ERROR_TITLE" = "Помилка"; -"modal_call_permission_request_title" = "Необхідний дозвіл"; -"modal_call_permission_request_explanation" = "Ви можете увімкнути дозвіл «Голосові та відеодзвінки» в налаштуваннях конфіденційності."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Йой, сталася помилка"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Будь ласка, спробуйте ще раз пізніше"; -"LOADING_CONVERSATIONS" = "Завантаження бесід..."; -"DATABASE_MIGRATION_FAILED" = "Сталася помилка під час оптимізації бази даних\n\nВи можете експортувати журнали програми, щоб мати можливість поділитися ними для усунення несправностей, або ви можете відновити свій пристрій\n\nПопередження: відновлення вашого пристрою призведе до втрати будь-яких даних, старіших за два тижні"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Щось пішло не так. Будь ласка, перевірте вашу фразу відновлення і повторіть спробу."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Схоже, ви не ввели достатню кількість слів. Будь ласка, перевірте вашу фразу відновлення і повторіть спробу."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "Здається, у вас немає останнього слова вашої фрази відновлення. Будь ласка, перевірте те, що ви ввели та повторіть спробу."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "Схоже, що у вашій фразі відновлення є неправильне слово. Будь ласка, перевірте введене вами слово і спробуйте ще раз."; -"RECOVERY_PHASE_ERROR_FAILED" = "Не вдалося перевірити вашу фразу відновлення. Будь ласка, перевірте, що ви ввели і повторіть спробу."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Немає доступу до автентифікації."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Помилка автентифікації."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Занадто багато невдалих спроб автентифікації. Будь ласка, спробуйте ще раз пізніше."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "Ви повинні увімкнути пароль в налаштуваннях iOS, щоб використовувати блокування екрана."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "Ви повинні увімкнути пароль в налаштуваннях iOS, щоб використовувати блокування екрана."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "Ви повинні увімкнути пароль в налаштуваннях iOS, щоб використовувати блокування екрана."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Надіслати"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Спробувати знову"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Показати чат"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Не вдалося відправити ваше повідомлення."; -"INVALID_SESSION_ID_MESSAGE" = "Будь ласка, перевірте Session ID або та спробуйте ще раз."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Будь ласка, перевірте фразу відновлення і повторіть спробу."; -"MEDIA_TAB_TITLE" = "Медіафайли"; -"DOCUMENT_TAB_TITLE" = "Документи"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "У вас немає жодного документа в цій розмові."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Завантаження новішого документа…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Завантаження старішого документа…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Дії"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Тварини та природа"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Прапорці"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Їжа та напої"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Об'єкти"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Нещодавно використані"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Смайлики та люди"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Символи"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Подорожі та місця"; -"EMOJI_REACTS_NOTIFICATION" = "%@ відреагував на повідомлення за допомогою %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "Та ще 1 користувач відреагував за допомогою %@ на це повідомлення."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "Та ще %@ інших користувачів відреагували за допомогою %@ на це повідомлення."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Повільніше! Ви надіслали занадто багато реакцій емодзі. Спробуйте ще раз пізніше."; -/* New conversation screen*/ -"vc_new_conversation_title" = "Нова бесіда"; -"CREATE_GROUP_BUTTON_TITLE" = "Створити"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Приєднатися"; -"PRIVACY_TITLE" = "Конфіденційність"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Безпека екрана"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Заблокувати Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Вимагати Touch ID, Face ID або код доступу для розблокування Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Звіти про перегляд"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Звіти про перегляд"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Відправляти звіти про прочитання в особистих бесідах."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Індикатор набору тексту"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Індикатор набору тексту"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "Бачити та передавати індикатор про набір в особистих бесідах."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Попередній перегляд посилань"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Надсилати попередній перегляд посилань"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Активувати попередній перегляд для підтримуваних URL."; -"PRIVACY_SECTION_CALLS" = "Дзвінки (Beta)"; -"PRIVACY_CALLS_TITLE" = "Голосові та відеодзвінки"; -"PRIVACY_CALLS_DESCRIPTION" = "Вмикає можливість здійснювати голосові та відеодзвінки іншим користувачам."; -"PRIVACY_CALLS_WARNING_TITLE" = "Голосові та відеодзвінки (бета-версія)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Ваша IP-адреса є видимою співрозмовнику і серверу Oxen Foundation під час використання бета-дзвінків. Ви дійсно хочете увімкнути голосові та відеодзвінки?"; -"NOTIFICATIONS_TITLE" = "Сповіщення"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Стратегія сповіщення"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Використ. швидкий режим"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "Ви отримуватимете сповіщення про нове повідомлення надійно та одразу за допомогою серверів сповіщень Apple."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Перейти до налаштувань сповіщень пристрою"; -"NOTIFICATIONS_SECTION_STYLE" = "Стиль сповіщень"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Звук"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Звук, коли додаток відкрито"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Вміст сповіщення"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "Інформація, що показується в сповіщеннях."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Ім'я та вміст"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Тільки ім'я"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "Нічого"; -"CONVERSATION_SETTINGS_TITLE" = "Розмови"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Обрізка повідомлень"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Обрізати спільноти"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Видаляти повідомлення старші за 6 місяців зі спільнот, в яких налічується понад 2 000 повідомлень."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Аудіоповідомлення"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Автовідтворення аудіоповідомлень"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Автовідтворення послідовних аудіоповідомлень."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Заблоковані контакти"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "Ви не маєте заблокованих контактів."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Розблокувати"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Ви впевнені, що бажаєте розблокувати %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "цей контакт"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Ви впевнені, що бажаєте розблокувати %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "та %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "та ще %d інших?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Розблокувати"; -"APPEARANCE_TITLE" = "Зовнішній вигляд"; -"APPEARANCE_THEMES_TITLE" = "Теми"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Основний колір"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "Як справи?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "У мене все гаразд, дякую. А в тебе?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "У мене все чудово, дякую."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Автоматичний нічний режим"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Використовувати системні налаштування"; -"HELP_TITLE" = "Допомога"; -"HELP_REPORT_BUG_TITLE" = "Повідомити про помилку"; -"HELP_REPORT_BUG_DESCRIPTION" = "Експортуйте свої журнали, а потім вивантажте файл через службу підтримки Session."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Експортувати журнали"; -"HELP_TRANSLATE_TITLE" = "Перекласти Session"; -"HELP_FEEDBACK_TITLE" = "Будемо раді, якщо залишите нам відгук"; -"HELP_FAQ_TITLE" = "Часті питання"; -"HELP_SUPPORT_TITLE" = "Служба підтримки"; -"modal_clear_all_data_title" = "Очистити всі дані"; -"modal_clear_all_data_explanation" = "Це остаточно видалить ваші повідомлення та контакти. Ви хочете очистити лише цей пристрій, або також видалити свої дані з мережі?"; -"modal_clear_all_data_explanation_2" = "Ви впевнені, що хочете видалити дані з мережі? Якщо ви продовжите, то не зможете відновити ваші повідомлення або контакти."; -"modal_clear_all_data_device_only_button_title" = "Очистити лише пристрій"; -"modal_clear_all_data_entire_account_button_title" = "Очистити пристрій та мережу"; -"dialog_clear_all_data_deletion_failed_1" = "Дані не видалено одним сервісним вузлом. Ідентифікатор сервісного вузла: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Дані не видалено %@ сервісними вузлами. Ідентифікатори сервісних вузлів: %@."; -"modal_clear_all_data_confirm" = "Очистити"; -"modal_seed_title" = "Ваша фраза відновлення"; -"modal_seed_explanation" = "Ви можете використовувати вашу фразу відновлення для відновлення облікового запису або пов’язування з пристроєм."; -"modal_permission_explanation" = "Щоб продовжити, Session потребує доступу до %@. Ви можете дозволити доступ в параметрах iOS."; -"modal_permission_settings_title" = "Налаштування"; -"modal_permission_camera" = "камери"; -"modal_permission_microphone" = "мікрофона"; -"modal_permission_library" = "бібліотеки"; -"DISAPPEARING_MESSAGES_OFF" = "Вимк."; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Вимк."; -"COPY_GROUP_URL" = "Скопіювати URL групи"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Контакти"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Будь ласка, виберіть принаймні 1 учасника групи"; -"GROUP_CREATION_PLEASE_WAIT" = "Будь ласка, зачекайте поки створюється група..."; -"GROUP_CREATION_ERROR_TITLE" = "Не вдалося створити групу"; -"GROUP_CREATION_ERROR_MESSAGE" = "Будь ласка, перевірте підключення до Інтернету та спробуйте ще раз."; -"GROUP_UPDATE_ERROR_TITLE" = "Не вдалося оновити групу"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Не можна залишити під час додавання або видалення інших учасників."; -"GROUP_ACTION_REMOVE" = "Видалити"; -"GROUP_TITLE_MEMBERS" = "Учасники"; -"GROUP_TITLE_FALLBACK" = "Група"; -"DM_ERROR_DIRECT_BLINDED_ID" = "Ви можете відправляти повідомлення користувачам з прихованими ID тільки в межах спільноти"; -"DM_ERROR_INVALID" = "Будь ласка, перевірте Session ID або ім'я ONS та спробуйте ще раз"; -"COMMUNITY_ERROR_INVALID_URL" = "Будь ласка, перевірте введену вами URL-адресу та спробуйте ще раз."; -"COMMUNITY_ERROR_GENERIC" = "Не вдалося приєднатися"; -"DISAPPERING_MESSAGES_TITLE" = "Зникаючі повідомлення"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Видалити тип"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Зникнення після прочитання"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Повідомлення видаляються, після того, як вони були прочитані."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Зникнення після відправлення"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Повідомлення видаляються, після того, як вони були відправлені."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Таймер"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Встановити"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "Цей параметр застосовується до всіх в цій розмові."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "Це налаштування застосовується до всіх в цій розмові. Тільки адміністратори групи можуть змінити це налаштування."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ встановив, що повідомлення зникатимуть через %@ після того, як вони були %@"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ змінив строк зникнення повідомлень, тепер повідомлення зникатимуть через %@ після того, як вони були %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ вимкнув зникнення повідомлень"; - -/* context_menu_info */ -"context_menu_info" = "Інформація"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "Сталася помилка під час відкриття бази даних\n\nВи можете експортувати журнали програми, щоб поділитися ними для усунення несправностей, або ви можете спробувати відновити свій пристрій\n\nПопередження: відновлення вашого пристрою призведе до втрати будь-яких даних, старіших за два тижні"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "Програма довго запускається\n\nВи можете продовжувати чекати, поки програма запуститься, експортувати журнали програми, щоб поділитися ними для розв'язання проблем, або спробувати відкрити програму знову"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Вийти"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "Сталася помилка під час відкриття відновленої бази даних\n\nВи можете експортувати журнали програми, щоб поділитися ними для усунення несправностей, але для продовження використання Session вам, можливо, доведеться перевстановити"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Оригінальне повідомлення не знайдено."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Згорнути"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Запити на повідомлення"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Запит на повідомлення зі спільноти"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Дозволити запити на повідомлення зі спільнот."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "Ви зможете надсилати голосові повідомлення і вкладення, після того, як одержувач схвалить цей запит на повідомлення"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Надсилання"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Надіслано"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Прочитано"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Не вдалося надіслати"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Надіслано"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Отримано"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "Від"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "ID файлу"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "Тип файлу"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "Розмір файлу"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Роздільна здатність"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Тривалість"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Не вдалося синхронізувати"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Синхронізація"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Не вдалося надіслати повідомлення"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Не вдалося синхронізувати повідомлення з іншими вашими пристроями"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Видалити з усіх моїх пристроїв"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Надіслати повторно"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Синхронізувати повторно"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Шукати GIF?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session під'єднається до Giphy для надання результатів пошуку. У вас не буде повний захист від метаданих при відправленні GIF-файлів."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Інформація про повідомлення"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Вимкнути звук"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Увімкнути звук"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Позначити як прочитане"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Позначити як непрочитане"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Вийти з групи"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Вийти зі спільноти"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Чи дійсно ви бажаєте вийти з %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Покидання..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Не вдалося вийти з групи!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Неможливо вийти з групи, будь ласка, спробуйте ще раз"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Видалити групу"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Ви дійсно хочете видалити «%@»?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Видалити розмову"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Ви дійсно хочете видалити розмову з %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Приховати нотатку для себе"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Ви справді бажаєте приховати %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Встановити зображення для показу"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Зберегти"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Видалити"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Не вдалося видалити зображення користувача"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Перевищено максимальний розмір файлу"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Будь ласка, виберіть фото меншого розміру і спробуйте ще раз"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Не вдалося оновити профіль"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Будь ласка, перевірте підключення до Інтернету та спробуйте ще раз"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Введіть ім'я"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Непрочитані повідомлення"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "У вас немає повідомлень від %@. Надішліть повідомлення, щоб розпочати розмову!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "Немає повідомлень в %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "У вас відсутні повідомлення в %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ заборонив запити на повідомлення зі спільнот, тому ви не можете надіслати йому повідомлення."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Деякі з ваших пристроїв використовують застарілу версію. Синхронізація може бути ненадійною, доки вони не будуть оновлені."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "Під час завантаження паролю для відновлення сталася помилка.\n\nБудь ласка, експортуйте ваші журнали, а потім вивантажте файл, через службу підтримки Session для розв'язання цієї проблеми."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "Сталася помилка при спробі збереження вихідного повідомлення для відправлення, Вам може знадобитися перезапустити програму для того, щоб мати можливість відправити повідомлення."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "Виникла проблема при відкритті бази даних. Будь ласка, перезапустіть програму і повторіть спробу."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "Цей параметр застосовується до всіх в цій розмові."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Повідомлення видаляються, після того, як вони були відправлені."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "Ви встановили, що повідомлення зникатимуть через %@ після того, як вони були %@"; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "Ви змінили строк зникнення повідомлень, тепер повідомлення зникатимуть через %@ після того, як вони були %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "Ви вимкнули зникнення повідомлень"; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Застарілий"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Оригінальна версія реалізації зникнення повідомлень."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ використовує застарілий клієнт. Зникнення повідомлень може працювати не належним чином."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "Ви намагаєтеся оновитися з версії, з якої більше не підтримується оновлення\n\nДля того, щоб продовжувати використовувати Session, вам потрібно відновити пристрій\n\nУвага: Відновлення пристрою призведе до втрати даних, старших за два тижні"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "прочитано"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "надіслано"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Зникне через %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Зникне після прочитання через %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Зникне після відправлення через %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Зникне через %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Зникне після прочитання через %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Зникне після відправлення через %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Група тепер має назву «%@»."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Назву групи оновлено."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Зображення групи для показу оновлено."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ було вилучено із групи."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ та %@ були вилучені із групи."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ та ще %@ інших були вилучені із групи."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ покинув групу."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ було підвищено до адміністратора."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ та %@ було підвищено до адміністраторів."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ та ще %@ інших було підвищено до адміністраторів."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "Ви були видалені з %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/vi.lproj/Localizable.strings b/Session/Meta/Translations/vi.lproj/Localizable.strings deleted file mode 100644 index d1965e2ca8..0000000000 --- a/Session/Meta/Translations/vi.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "Tệp đính kèm"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "Mô tả"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "Loại tệp tin: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "Dung lượng: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "Đã đạt đến mức giới hạn ký tự"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "Gửi"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "Tệp đính kèm"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "Lỗi khi gửi tệp"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "Unable to convert image."; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "Unable to process video."; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "Unable to parse image."; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "Unable to remove metadata from image."; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "Unable to resize image."; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "Attachment is too large."; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "Attachment includes invalid content."; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "Attachment has an invalid file format."; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "Attachment is empty."; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "Không thể chọn tệp tin."; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "Không thể gửi thư mục. Hãy nén thư mục và gửi đi bằng tập tin nén đó."; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "Tập tin không được hỗ trợ"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "Tin nhắn thoại"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "Chặn"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "Chặn %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "Unblock %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "Bỏ chặn"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "Đã bỏ chặn %@."; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "Người dùng bị chặn"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ has been unblocked."; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "Người dùng bị chặn sẽ không thể gọi hoặc gửi tin nhắn cho bạn."; -/* Label for generic done button. */ -"BUTTON_DONE" = "Xong"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "Chọn"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "Searching..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "Không trùng khớp"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "Trùng khớp"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d trên %d phù hợp"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "Chặn Người dùng này"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "Mute"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "Search Conversation"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "Move and Scale"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "This can take a few minutes."; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "Optimizing Database"; -/* The present; the current time. */ -"DATE_NOW" = "Now"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "Disappearing Messages"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "Edit Group"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "You don't have any media in this conversation."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Media…"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "Loading Older Media…"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "Failed to fetch the requested GIF. Please verify you are online."; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "An unknown error occurred."; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "Unable to Choose GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "Please enter your search."; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "Error. Tap to Retry."; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "No Results."; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "Group created"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ joined the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ left the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ was removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ were removed from the group. "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "Title is now '%@'. "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "Group updated."; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "You have left the group."; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " You were removed from the group. "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "You can't share more than %@ items."; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "Failed to select attachment."; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "Invalid audio file."; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "Leave"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "Leave Group"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "All Media"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "Delete %d Messages"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "Xóa tin nhắn"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ lúc %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "Bạn"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "Tháng này"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "Gửi thất bại."; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "Đã đọc"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "Đang gửi…"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "Đã gửi"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "Đang tải lên…"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ đến %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "Gửi lời nhắc cho chính mình"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "Bạn có thể nhận được tin nhắn trong khi %@ của bạn đang được khởi động lại."; -/* No comment provided by engineer. */ -"BUTTON_OK" = "OK"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ đã vô hiệu hóa tin nhắn tự huỷ."; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ set disappearing message time to %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "Unable to capture image."; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "Failed to configure camera."; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "Unnamed Album"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "Mark as Read"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "Reply"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "Authenticate to open Session."; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "Authentication Failed"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "Discard Media?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "Discard Media"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (default)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "Message Sound"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "None"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ days"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@d"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ hours"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@h"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ minutes"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@m"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ seconds"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@s"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ day"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ hour"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ minute"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ week"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ weeks"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@w"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "Cancel"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "Delete"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "Voice Message"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "Tap and hold to record a voice message."; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "Voice Message"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You disabled disappearing messages."; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "You set disappearing message time to %@"; -// MARK: - Session -"continue_2" = "Tiếp tục"; -"copy" = "Sao chép"; -"invalid_url" = "URL không hợp lệ"; -"next" = "Tiếp"; -"share" = "Chia sẻ"; -"invalid_session_id" = "Session ID không hợp lệ"; -"cancel" = "Huỷ"; -"your_session_id" = "Session ID của bạn"; -"vc_landing_title_2" = "Session của bạn bắt đầu từ đây..."; -"vc_landing_register_button_title" = "Tạo Session ID"; -"vc_landing_restore_button_title" = "Tiếp tục Session của bạn"; -"vc_landing_link_button_title" = "Liên kết với một tài khoản đã tồn tại"; -"view_fake_chat_bubble_1" = "Session là gì?"; -"view_fake_chat_bubble_2" = "Đây là một ứng dụng nhắn tin phân cấp và mã hoá"; -"view_fake_chat_bubble_3" = "Vậy ứng dụng có thu thập dữ liệu cá nhân của tôi hoặc siêu dữ liệu về cuộc hội thoại của tôi không? Ứng dụng hoạt động như thế nào?"; -"view_fake_chat_bubble_4" = "Sử dụng kết hợp công nghệ định tuyến ẩn danh nâng cao và công nghệ mã hoá đầu cuối."; -"view_fake_chat_bubble_5" = "Đừng để bạn bè sử dụng những ứng dụng nhắn tin dễ bị tấn công."; -"vc_register_title" = "Bắt đầu với Session ID của bạn"; -"vc_register_explanation" = "Session ID của bạn là địa chỉ duy nhất mà mọi người có thể dùng để liên lạc với bạn trên ứng dụng Session. Session ID của bạn được thiết kế đảm bảo tuyệt đối ẩn danh và riêng tư vì nó không liên kết với danh tính thật của bạn."; -"vc_restore_title" = "Khôi phục lại tài khoản của bạn"; -"vc_restore_explanation" = "Nhập cụm từ khôi phục mà bạn nhận được khi đăng ký khôi phục tài khoản."; -"vc_restore_seed_text_field_hint" = "Nhập cụm từ khôi phục của bạn."; -"vc_link_device_title" = "Liên kết Thiết bị"; -"vc_link_device_scan_qr_code_tab_title" = "Quét mã QR"; -"vc_display_name_title_2" = "Chọn tên hiển thị của bạn"; -"vc_display_name_explanation" = "Đây là tên của bạn khi sử dụng Session. Nó có thể là tên thật, tên gọi khác của bạn hoặc bất kì tên nào bạn thích."; -"vc_display_name_text_field_hint" = "Nhập một tên hiển thị"; -"vc_display_name_display_name_missing_error" = "Vui lòng chọn một tên hiển thị"; -"vc_display_name_display_name_too_long_error" = "Vui lòng chọn tên hiển thị ngắn hơn"; -"vc_pn_mode_recommended_option_tag" = "Khuyến nghị"; -"vc_pn_mode_no_option_picked_modal_title" = "Vui lòng lựa chọn "; -"vc_home_empty_state_message" = "Bạn chưa có danh bạ "; -"vc_home_empty_state_button_title" = "Bắt đầu một Session"; -"vc_seed_title" = "Cụm từ khôi phục của bạn"; -"vc_seed_title_2" = "Làm quen với cụm từ khôi phục của bạn"; -"vc_seed_explanation" = "Cụm từ khôi phục của bạn là chìa khoá chủ cho Session ID của bạn — bạn có thể sử dụng nó để khôi phục Session ID khi bị mất tiếp cận với thiết bị của bạn. Hãy lưu cụm từ khôi phục của bạn ở một nơi an toàn và không cung cấp cho bất kì ai."; -"vc_seed_reveal_button_title" = "Giữ để hiển thị."; -"view_seed_reminder_subtitle_1" = "Bảo vệ tài khoản của bạn bằng việc bảo vệ cụm từ khôi phục của bạn"; -"view_seed_reminder_subtitle_2" = "Chạm và giữ cụm từ bị che để hiển thị cụm từ khôi phục của bạn, sau đó lưu nó cẩn thận để bảo vệ Session ID của bạn."; -"view_seed_reminder_subtitle_3" = "Hãy lưu cụm từ khôi phục của bạn ở một nơi an toàn"; -"vc_path_title" = "Đường đi"; -"vc_path_explanation" = "Session ẩn IP của bạn bằng cách luân chuyển tin nhắn của bạn qua một số Nút Dịch vụ trong mạng lưới phân cấp của Session. Đây là các nước mà kết nối của bạn đang được luân chuyển: "; -"vc_path_device_row_title" = "Bạn"; -"vc_path_guard_node_row_title" = "Nút khởi đầu"; -"vc_path_service_node_row_title" = "Nút Dịch vụ"; -"vc_path_destination_row_title" = "Điểm đến"; -"vc_path_learn_more_button_title" = "Tìm hiểu thêm"; -"vc_create_private_chat_title" = "New Message"; -"vc_create_private_chat_enter_session_id_tab_title" = "Nhập Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "Quét mã QR"; -"vc_enter_public_key_explanation" = "Start a new conversation by entering someone's Session ID or share your Session ID with them."; -"vc_scan_qr_code_camera_access_explanation" = "Session cần truy cập máy ảnh để quét mã QR "; -"vc_create_closed_group_title" = "Create Group"; -"vc_create_closed_group_text_field_hint" = "Nhập tên nhóm"; -"vc_create_closed_group_empty_state_message" = "Bạn chưa có danh bạ nào "; -"vc_create_closed_group_group_name_missing_error" = "Vui lòng nhập tên nhóm"; -"vc_create_closed_group_group_name_too_long_error" = "Vui lòng nhập một tên nhóm ngắn hơn "; -"vc_create_closed_group_too_many_group_members_error" = "Một nhóm kín không thể có nhiều hơn 100 thành viên "; -"vc_join_public_chat_title" = "Join Community"; -"vc_join_public_chat_enter_group_url_tab_title" = "Community URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "Quét mã QR"; -"vc_enter_chat_url_text_field_hint" = "Enter Community URL"; -"vc_settings_title" = "Cài đặt"; -"vc_group_settings_title" = "Group Settings"; -"vc_settings_display_name_missing_error" = "Vui lòng chọn một tên hiển thị "; -"vc_settings_display_name_too_long_error" = "Vui lòng chọn một tên hiển thị ngắn hơn "; -"vc_settings_privacy_button_title" = "Riêng tư"; -"vc_settings_notifications_button_title" = "Thông báo"; -"vc_settings_recovery_phrase_button_title" = "Cụm từ khôi phục"; -"vc_settings_clear_all_data_button_title" = "Xóa dữ liệu"; -"vc_qr_code_title" = "Mã QR"; -"vc_qr_code_view_my_qr_code_tab_title" = "Xem mã QR của tôi"; -"vc_qr_code_view_scan_qr_code_tab_title" = "Quét mã QR"; -"vc_qr_code_view_scan_qr_code_explanation" = "Quét mã QR của ai đó để bắt đầu trò chuyện với họ"; -"vc_view_my_qr_code_explanation" = "Đây là mã QR của bạn. Những người dùng khác có thể quét mã này và bắt đầu session với bạn."; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "You’ll be notified of new messages reliably and immediately using Apple’s notification servers."; -"fast_mode" = "Fast Mode"; -"slow_mode_explanation" = "Session will occasionally check for new messages in the background."; -"slow_mode" = "Slow Mode"; -"vc_pn_mode_title" = "Message notifications"; -"vc_link_device_recovery_phrase_tab_title" = "Recovery Phrase"; -"vc_link_device_scan_qr_code_explanation" = "Navigate to Settings → Recovery Phrase on your other device to show your QR code."; -"vc_enter_recovery_phrase_title" = "Recovery Phrase"; -"vc_enter_recovery_phrase_explanation" = "To link your device, enter the recovery phrase that was given to you when you signed up."; -"vc_enter_public_key_text_field_hint" = "Enter Session ID or ONS name"; -"admin_group_leave_warning" = "Because you are the creator of this group it will be deleted for everyone. This cannot be undone."; -"vc_join_open_group_suggestions_title" = "Or join one of these..."; -"vc_settings_invite_a_friend_button_title" = "Invite a Friend"; -"copied" = "Copied"; -"vc_conversation_settings_copy_session_id_button_title" = "Copy Session ID"; -"vc_conversation_input_prompt" = "Message"; -"vc_conversation_voice_message_cancel_message" = "Slide to Cancel"; -"modal_download_attachment_title" = "Trust %@?"; -"modal_download_attachment_explanation" = "Are you sure you want to download media sent by %@?"; -"modal_download_button_title" = "Download"; -"modal_open_url_title" = "Open URL?"; -"modal_open_url_explanation" = "Are you sure you want to open %@?"; -"modal_open_url_button_title" = "Open"; -"modal_copy_url_button_title" = "Copy Link"; -"modal_blocked_title" = "Unblock %@?"; -"modal_blocked_explanation" = "Are you sure you want to unblock %@?"; -"modal_blocked_button_title" = "Unblock"; -"modal_link_previews_title" = "Enable Link Previews?"; -"modal_link_previews_explanation" = "Enabling link previews will show previews for URLs you send and receive. This can be useful, but Session will need to contact linked websites to generate previews. You can always disable link previews in Session's settings."; -"modal_link_previews_button_title" = "Enable"; -"vc_share_title" = "Share to Session"; -"vc_share_loading_message" = "Preparing attachments..."; -"vc_share_sending_message" = "Sending..."; -"vc_share_link_previews_unsecure" = "Preview not loaded for unsecure link"; -"vc_share_link_previews_error" = "Unable to load preview"; -"vc_share_link_previews_disabled_title" = "Link Previews Disabled"; -"vc_share_link_previews_disabled_explanation" = "Enabling link previews will show previews for URLs you share. This can be useful, but Session will need to contact linked websites to generate previews.\n\nYou can enable link previews in Session's settings."; -"view_open_group_invitation_description" = "Open group invitation"; -"vc_conversation_settings_invite_button_title" = "Add Members"; -"modal_send_seed_title" = "Warning"; -"modal_send_seed_explanation" = "This is your recovery phrase. If you send it to someone they'll have full access to your account."; -"modal_send_seed_send_button_title" = "Send"; -"vc_conversation_settings_notify_for_mentions_only_title" = "Notify for Mentions Only"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "When enabled, you'll only be notified for messages mentioning you."; -"view_conversation_title_notify_for_mentions_only" = "Notifying for Mentions Only"; -"message_deleted" = "This message has been deleted"; -"delete_message_for_me" = "Delete just for me"; -"delete_message_for_everyone" = "Delete for everyone"; -"delete_message_for_me_and_recipient" = "Delete for me and %@"; -"context_menu_reply" = "Reply"; -"context_menu_save" = "Save"; -"context_menu_ban_user" = "Ban User"; -"context_menu_ban_and_delete_all" = "Ban and Delete All"; -"context_menu_ban_user_error_alert_message" = "Unable to ban user"; -"accessibility_expanding_attachments_button" = "Add attachments"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "Document"; -"accessibility_library_button" = "Photo library"; -"accessibility_camera_button" = "Camera"; -"accessibility_main_button_collapse" = "Collapse attachment options"; -"invalid_recovery_phrase" = "Invalid Recovery Phrase"; -"DISMISS_BUTTON_TEXT" = "Dismiss"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "Settings"; -"call_outgoing" = "You called %@"; -"call_incoming" = "%@ called you"; -"call_missed" = "Missed Call from %@"; -"APN_Message" = "You've got a new message."; -"APN_Collapsed_Messages" = "You've got %@ new messages."; -"PIN_BUTTON_TEXT" = "Pin"; -"UNPIN_BUTTON_TEXT" = "Unpin"; -"modal_call_missed_tips_title" = "Call missed"; -"modal_call_missed_tips_explanation" = "Call missed from '%@' because you needed to enable the 'Voice and video calls' permission in the Privacy Settings."; -"media_saved" = "Media saved by %@."; -"screenshot_taken" = "%@ took a screenshot."; -"SEARCH_SECTION_CONTACTS" = "Contacts & Groups"; -"SEARCH_SECTION_MESSAGES" = "Messages"; -"MESSAGE_REQUESTS_TITLE" = "Message Requests"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "No pending message requests"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "Clear All"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "Clear"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this message request?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block this contact?"; -"MESSAGE_REQUESTS_INFO" = "Sending a message to this user will automatically accept their message request and reveal your Session ID."; -"MESSAGE_REQUESTS_ACCEPTED" = "Your message request has been accepted."; -"MESSAGE_REQUESTS_NOTIFICATION" = "You have a new message request"; -"TXT_HIDE_TITLE" = "Hide"; -"TXT_DELETE_ACCEPT" = "Accept"; -"TXT_BLOCK_USER_TITLE" = "Block User"; -"ALERT_ERROR_TITLE" = "Error"; -"modal_call_permission_request_title" = "Call Permissions Required"; -"modal_call_permission_request_explanation" = "You can enable the 'Voice and video calls' permission in the Privacy Settings."; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "Oops, an error occurred"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "Please try again later"; -"LOADING_CONVERSATIONS" = "Loading Conversations..."; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "Something went wrong. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "Send"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "Retry"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "Show Chat"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "Your message failed to send."; -"INVALID_SESSION_ID_MESSAGE" = "Please check the Session ID and try again."; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "Please check the Recovery Phrase and try again."; -"MEDIA_TAB_TITLE" = "Media"; -"DOCUMENT_TAB_TITLE" = "Documents"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "Activities"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "Animals & Nature"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "Flags"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "Food & Drink"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "Objects"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "Recently Used"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "Create"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "Join"; -"PRIVACY_TITLE" = "Privacy"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "Screen Security"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "Lock Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "Notification Style"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "Sound"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "Sound When App is Open"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "Notification Content"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "Conversations"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "Message Trimming"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "Autoplay Audio Messages"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "Blocked Contacts"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "You have no blocked contacts."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "Unblock"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "Are you sure you want to unblock %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "this contact"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "Are you sure you want to unblock %@"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "and %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "and %d others?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "Unblock"; -"APPEARANCE_TITLE" = "Appearance"; -"APPEARANCE_THEMES_TITLE" = "Themes"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "Primary colour"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "How are you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "Auto night-mode"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "Help"; -"HELP_REPORT_BUG_TITLE" = "Report a Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "Export Logs"; -"HELP_TRANSLATE_TITLE" = "Translate Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "FAQ"; -"HELP_SUPPORT_TITLE" = "Support"; -"modal_clear_all_data_title" = "Xóa tất cả dữ liệu"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "Data not deleted by 1 Service Node. Service Node ID: %@."; -"dialog_clear_all_data_deletion_failed_2" = "Data not deleted by %@ Service Nodes. Service Node IDs: %@."; -"modal_clear_all_data_confirm" = "Clear"; -"modal_seed_title" = "Cụm từ khôi phục của bạn"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "Settings"; -"modal_permission_camera" = "camera"; -"modal_permission_microphone" = "microphone"; -"modal_permission_library" = "library"; -"DISAPPEARING_MESSAGES_OFF" = "Off"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "Off"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "Contacts"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "Couldn't Create Group"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "Couldn't Update Group"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "Remove"; -"GROUP_TITLE_MEMBERS" = "Members"; -"GROUP_TITLE_FALLBACK" = "Group"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "Couldn't Join"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "Delete Type"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "Disappear After Read"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "Timer"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "Set"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/zh-CN.lproj/Localizable.strings b/Session/Meta/Translations/zh-CN.lproj/Localizable.strings deleted file mode 100644 index 909510272f..0000000000 --- a/Session/Meta/Translations/zh-CN.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "附件"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "注释"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "文件类型: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "大小: %@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "消息字数已满。"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "发送"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "附件"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "发送附件时出错"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "无法转码该图片。"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "无法解析该视频。"; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "无法识别图片。"; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "无法清除图片元数据。"; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "无法调整图像大小。"; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "附件过大。"; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "附件中存在无效内容。"; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "附件的文件格式无效。"; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "无附件。"; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "文件选取失败。"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "请将此文件或目录压缩后再发送。"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "不支持的文件"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "语音消息"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "加入黑名单"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "屏蔽 %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "取消屏蔽 %@吗?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "从黑名单中移除"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "已屏蔽 %@。"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "用户已屏蔽"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "已取消屏蔽 %@。"; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "被屏蔽的用户将无法向您发起通话,或发送消息。"; -/* Label for generic done button. */ -"BUTTON_DONE" = "完成"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "选择"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "正在搜索..."; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "没有结果"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1个结果"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d条结果(共%d条)"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "屏蔽该用户"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "静音"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "搜索对话"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "移动与缩放"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "这需要几分钟的时间。"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "正在优化数据库"; -/* The present; the current time. */ -"DATE_NOW" = "现在"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "阅后即焚"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "编辑群组"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "此对话中没有媒体。"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "正在加载新媒体..."; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "正在加载较早媒体..."; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "无法读取所请求的 GIF。请确认您是否处于在线状态。"; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "发生了未知错误。"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "无法选择 GIF"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "请输入您的搜索词。"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "错误。点击重试。"; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "无结果。"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "组群已成功创建。"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ 加入了群组。 "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@已退出群组。 "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ 已被移出群组。 "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ 已被移出群组。 "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "群组名称已改为 '%@'。"; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "群组更新完成。"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "您退出了这个群。"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " 您已被移出群组 "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "您最多分享%@项。"; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "选择附件失败。"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "语音文件无效"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "离开群组"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "离开群组"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "所有媒体"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "删除%d条消息"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "删除消息"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ 于 %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "您"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "这个月"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "发送失败。"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "已读"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "发送中..."; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "已发送"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "上传中..."; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@至%@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "备忘录"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "您可能在%@重启时收到了新消息。"; -/* No comment provided by engineer. */ -"BUTTON_OK" = "好"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ 取消了阅后即焚。"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ 将阅后即焚时长设为 %@。"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "无法拍摄图片。"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "无法拍摄图片。"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "配置摄像头失败。"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "未命名的相册"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "标记为已读"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "回复"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "验证以打开 Session。"; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "认证失败"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "丢弃媒体?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "丢弃媒体"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@(默认)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "消息提示音"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "无"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@天"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@天"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@小时"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@时"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@分钟"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@分"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@秒"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@秒"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@天"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@小时"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@分钟"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@个星期"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@个星期"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@周"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "取消"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "删除"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "语音消息"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "长按来录制语音消息。"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "语音消息"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "您取消了阅后即焚。"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "您将阅后即焚时长设置为%@。"; -// MARK: - Session -"continue_2" = "继续"; -"copy" = "拷贝"; -"invalid_url" = "无效链接"; -"next" = "下一步"; -"share" = "共享"; -"invalid_session_id" = "无效的Session ID"; -"cancel" = "取消"; -"your_session_id" = "您的Session ID"; -"vc_landing_title_2" = "您的Session从这里开始..."; -"vc_landing_register_button_title" = "创建Session ID"; -"vc_landing_restore_button_title" = "继续使用您的Session ID"; -"vc_landing_link_button_title" = "关联现有帐号"; -"view_fake_chat_bubble_1" = "什么是Session?"; -"view_fake_chat_bubble_2" = "Session是一个去中心化的加密消息应用。"; -"view_fake_chat_bubble_3" = "所以Session不会收集我的个人信息或者对话元数据?怎么做到的?"; -"view_fake_chat_bubble_4" = "通过结合高效的匿名路由和端到端的加密技术。"; -"view_fake_chat_bubble_5" = "好朋友之间就要使用能够保证信息安全的聊天工具,不用谢啦!"; -"vc_register_title" = "向您的Session ID打个招呼吧"; -"vc_register_explanation" = "您的Session ID是其他用户在与您聊天时使用的独一无二的地址。Session ID与您的真实身份无关,它在设计上完全是匿名且私密的。"; -"vc_restore_title" = "恢复您的帐号"; -"vc_restore_explanation" = "在您重新登陆并需要恢复账户时,请输入您注册帐号时的恢复口令。"; -"vc_restore_seed_text_field_hint" = "输入您的恢复口令"; -"vc_link_device_title" = "关联设备"; -"vc_link_device_scan_qr_code_tab_title" = "扫描二维码"; -"vc_display_name_title_2" = "选择您的昵称"; -"vc_display_name_explanation" = "这就是您在使用Session时的名字。它可以是您的真实姓名,别名或您喜欢的其他任何名称。"; -"vc_display_name_text_field_hint" = "输入昵称"; -"vc_display_name_display_name_missing_error" = "请设定一个昵称"; -"vc_display_name_display_name_too_long_error" = "请选择一个更短的昵称"; -"vc_pn_mode_recommended_option_tag" = "推荐选项"; -"vc_pn_mode_no_option_picked_modal_title" = "请选择一个选项"; -"vc_home_empty_state_message" = "您还没有任何联系人"; -"vc_home_empty_state_button_title" = "开始对话"; -"vc_seed_title" = "您的恢复口令"; -"vc_seed_title_2" = "这里是您的恢复口令"; -"vc_seed_explanation" = "您的恢复口令是Session ID的主密钥 - 如果您无法访问您的现有设备,则可以使用它在其他设备上恢复您的Session ID。请将您的恢复口令存储在安全的地方,不要将其提供给任何人。"; -"vc_seed_reveal_button_title" = "长按显示内容"; -"view_seed_reminder_subtitle_1" = "保存恢复口令以保护您的帐号安全"; -"view_seed_reminder_subtitle_2" = "点击并按住遮盖住的单词以显示您的恢复口令,请将它安全地存储以保护您的Session ID。"; -"view_seed_reminder_subtitle_3" = "请确保将恢复口令存储在安全的地方"; -"vc_path_title" = "路径"; -"vc_path_explanation" = "Session会通过其去中心化网络中的多个服务节点跳转消息以隐藏IP。以下国家是您目前的消息连接跳转服务节点所在地:"; -"vc_path_device_row_title" = "您"; -"vc_path_guard_node_row_title" = "入口节点"; -"vc_path_service_node_row_title" = "服务节点"; -"vc_path_destination_row_title" = "目的地"; -"vc_path_learn_more_button_title" = "用于显示更详细的洋葱请求信息的按钮的标题。"; -"vc_create_private_chat_title" = "新消息"; -"vc_create_private_chat_enter_session_id_tab_title" = "输入Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "扫描二维码"; -"vc_enter_public_key_explanation" = "通过某人的 Session ID 或与他人分享你自己的 Session ID 来开始新的会话."; -"vc_scan_qr_code_camera_access_explanation" = "Session需要摄像头访问权限才能扫描二维码"; -"vc_create_closed_group_title" = "创建群组"; -"vc_create_closed_group_text_field_hint" = "输入群组名称"; -"vc_create_closed_group_empty_state_message" = "您还没有任何联系人"; -"vc_create_closed_group_group_name_missing_error" = "请输入群组名称"; -"vc_create_closed_group_group_name_too_long_error" = "请输入较短的群组名称"; -"vc_create_closed_group_too_many_group_members_error" = "私密群组成员不得超过100个"; -"vc_join_public_chat_title" = "加入社区"; -"vc_join_public_chat_enter_group_url_tab_title" = "社区 URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "扫描二维码"; -"vc_enter_chat_url_text_field_hint" = "输入社区 URL"; -"vc_settings_title" = "设置"; -"vc_group_settings_title" = "群组设置"; -"vc_settings_display_name_missing_error" = "请设定一个名称"; -"vc_settings_display_name_too_long_error" = "请设定一个较短的名称"; -"vc_settings_privacy_button_title" = "隐私"; -"vc_settings_notifications_button_title" = "通知"; -"vc_settings_recovery_phrase_button_title" = "恢复口令"; -"vc_settings_clear_all_data_button_title" = "清除数据"; -"vc_qr_code_title" = "二维码"; -"vc_qr_code_view_my_qr_code_tab_title" = "查看我的二维码"; -"vc_qr_code_view_scan_qr_code_tab_title" = "扫描二维码"; -"vc_qr_code_view_scan_qr_code_explanation" = "扫描对方的二维码以发起对话"; -"vc_view_my_qr_code_explanation" = "这是您的二维码。其他用户可以对其进行扫描以发起与您的对话。"; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "新消息将快捷可靠地通过Apple通知服务发送。"; -"fast_mode" = "高速模式"; -"slow_mode_explanation" = "Session将不时在后台获取新消息。"; -"slow_mode" = "慢速模式"; -"vc_pn_mode_title" = "消息通知"; -"vc_link_device_recovery_phrase_tab_title" = "恢复口令"; -"vc_link_device_scan_qr_code_explanation" = "在您的其他设备上导航到设置 -> 恢复短语以显示您的 QR 代码。"; -"vc_enter_recovery_phrase_title" = "恢复口令"; -"vc_enter_recovery_phrase_explanation" = "输入您注册时获得的恢复口令以连接你的设备"; -"vc_enter_public_key_text_field_hint" = "输入Session ID或ONS名称"; -"admin_group_leave_warning" = "因为您是这个组的创建者,该组将被解散。该操作无法恢复。"; -"vc_join_open_group_suggestions_title" = "也可以加入这些…"; -"vc_settings_invite_a_friend_button_title" = "邀请朋友"; -"copied" = "已复制"; -"vc_conversation_settings_copy_session_id_button_title" = "复制Session ID"; -"vc_conversation_input_prompt" = "消息"; -"vc_conversation_voice_message_cancel_message" = "滑动以取消"; -"modal_download_attachment_title" = "是否信任 %@?"; -"modal_download_attachment_explanation" = "您确定要下载%@发送的媒体消息吗?"; -"modal_download_button_title" = "下载"; -"modal_open_url_title" = "打开链接?"; -"modal_open_url_explanation" = "确定要打开 %@ 吗?"; -"modal_open_url_button_title" = "打开"; -"modal_copy_url_button_title" = "复制链接"; -"modal_blocked_title" = "从黑名单中移除 %@ 吗?"; -"modal_blocked_explanation" = "确定解除屏蔽%@吗?"; -"modal_blocked_button_title" = "解除屏蔽"; -"modal_link_previews_title" = "是否启用链接预览?"; -"modal_link_previews_explanation" = "链接预览将为您发送或收到的URL生成预览内容。 该功能非常实用,但Session需要访问该链接指向的网站以生成预览。您可以随后在会话设置中禁用该功能。"; -"modal_link_previews_button_title" = "启用"; -"vc_share_title" = "分享到 Session"; -"vc_share_loading_message" = "正在准备附件......"; -"vc_share_sending_message" = "正在发送…"; -"vc_share_link_previews_unsecure" = "未加载非安全链接预览"; -"vc_share_link_previews_error" = "未能加载预览"; -"vc_share_link_previews_disabled_title" = "链接预览已禁用"; -"vc_share_link_previews_disabled_explanation" = "开启链接预览将为您发送或收到的URL生成预览内容。 该功能非常实用,但Session需要访问该链接指向的网站以生成预览。\n\n您可以随后在会话设置中禁用该功能。"; -"view_open_group_invitation_description" = "打开群组邀请"; -"vc_conversation_settings_invite_button_title" = "添加成员"; -"modal_send_seed_title" = "警告"; -"modal_send_seed_explanation" = "这是您的恢复口令。如果您将其发送给某人,他们将完全有权访问您的帐户。"; -"modal_send_seed_send_button_title" = "发送"; -"vc_conversation_settings_notify_for_mentions_only_title" = "仅在提及时通知"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "启用后,您只会收到提及您的消息通知。"; -"view_conversation_title_notify_for_mentions_only" = "仅在提及时通知"; -"message_deleted" = "此消息已被删除"; -"delete_message_for_me" = "仅为我删除"; -"delete_message_for_everyone" = "为所有人删除"; -"delete_message_for_me_and_recipient" = "为我和 %@ 删除"; -"context_menu_reply" = "回复"; -"context_menu_save" = "保存"; -"context_menu_ban_user" = "封禁用户"; -"context_menu_ban_and_delete_all" = "封禁并删除全部"; -"context_menu_ban_user_error_alert_message" = "无法封禁此用户。"; -"accessibility_expanding_attachments_button" = "添加附件"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "文件"; -"accessibility_library_button" = "照片库"; -"accessibility_camera_button" = "相机"; -"accessibility_main_button_collapse" = "收起附件选项"; -"invalid_recovery_phrase" = "恢复口令无效"; -"DISMISS_BUTTON_TEXT" = "取消"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "设置"; -"call_outgoing" = "您呼叫了 %@"; -"call_incoming" = "%@ 来电"; -"call_missed" = "来自 %@ 的未接来电"; -"APN_Message" = "您有一条新消息。"; -"APN_Collapsed_Messages" = "你有 %@ 条新消息。"; -"PIN_BUTTON_TEXT" = "置顶"; -"UNPIN_BUTTON_TEXT" = "取消置顶"; -"modal_call_missed_tips_title" = "未接来电"; -"modal_call_missed_tips_explanation" = "未接听 '%@',因为您需要在隐私设置中启用“语音和视频通话”权限。"; -"media_saved" = "%@ 保存了媒体内容。"; -"screenshot_taken" = "%@ 进行了截图。"; -"SEARCH_SECTION_CONTACTS" = "联系人和群组"; -"SEARCH_SECTION_MESSAGES" = "消息"; -"MESSAGE_REQUESTS_TITLE" = "消息请求"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "没有待处理的消息请求"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "清除所有"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "您确定要清除所有消息请求和群组邀请吗?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "清除"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "您确定要删除此消息请求吗?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "您确定要屏蔽该联系人吗?"; -"MESSAGE_REQUESTS_INFO" = "发送消息给此用户将自动接受他们的消息请求并显示您的 Session ID。"; -"MESSAGE_REQUESTS_ACCEPTED" = "您的消息请求已被接受。"; -"MESSAGE_REQUESTS_NOTIFICATION" = "您有一个新的消息请求"; -"TXT_HIDE_TITLE" = "隐藏"; -"TXT_DELETE_ACCEPT" = "接受"; -"TXT_BLOCK_USER_TITLE" = "屏蔽用户"; -"ALERT_ERROR_TITLE" = "错误"; -"modal_call_permission_request_title" = "请授予通话权限"; -"modal_call_permission_request_explanation" = "您可以在隐私设置中启用“语音和视频通话”权限。"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "啊呀!出错了。"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "请稍后再试"; -"LOADING_CONVERSATIONS" = "载入对话中..."; -"DATABASE_MIGRATION_FAILED" = "优化数据库\n时发生错误\n您可以导出并分享您的应用程序日志来帮助我们排除故障,或者您也可以还原您的设备\n\n警告:还原您的设备将导致丢失两周前的所有数据。"; -"RECOVERY_PHASE_ERROR_GENERIC" = "出现了一些问题,请检查您的恢复短语,然后重试。"; -"RECOVERY_PHASE_ERROR_LENGTH" = "看起来您没有输入足够多的单词。请检查您的恢复短语,然后重试。"; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "您似乎缺少您恢复短语的最后一个词。请检查您输入的内容,然后重试。"; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "恢复短语中似乎有一个无效的单词。请检查您输入的内容,然后重试。"; -"RECOVERY_PHASE_ERROR_FAILED" = "无法验证您的恢复短语。请检查您输入的内容,然后重试。"; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "无法访问身份验证。"; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "验证失败"; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "认证失败次数太多,请稍后再试。"; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "您必须在您的 iOS 设置中启用密码才能使用屏幕锁定。"; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "您必须在您的 iOS 设置中启用密码才能使用屏幕锁定。"; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "您必须在您的 iOS 设置中启用密码才能使用屏幕锁定。"; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "发送"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "重试"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "显示聊天"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "消息发送失败"; -"INVALID_SESSION_ID_MESSAGE" = "请检查 Session ID,然后重试。"; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "请检查恢复短语,然后重试。"; -"MEDIA_TAB_TITLE" = "媒体"; -"DOCUMENT_TAB_TITLE" = "文档"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "您在此对话中没有任何文档。"; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "正在加载较新的文档…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "正在加载旧文档…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "活动"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "动物和自然"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "旗帜"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "食物和饮料"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "物体"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "最近使用过的"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "表情和人物"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "符号"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "旅行和地点"; -"EMOJI_REACTS_NOTIFICATION" = "%@用 %@ 对一条消息作出表态。"; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "和另一个人对此消息作出%@表态。"; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "还有 %@ 个其他人对此消息作出了 %@ 表态。"; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "慢点!您已经发送了太多的表情回应。请稍后再试。"; -/* New conversation screen*/ -"vc_new_conversation_title" = "新的会话"; -"CREATE_GROUP_BUTTON_TITLE" = "创建"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "加入"; -"PRIVACY_TITLE" = "隐私"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "屏幕安全"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "锁定 Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "需要Touch ID、Face ID或您的密码解锁 Session。"; -"PRIVACY_SECTION_READ_RECEIPTS" = "已读回执"; -"PRIVACY_READ_RECEIPTS_TITLE" = "已读回执"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "在一对一的聊天中发送已读回执"; -"PRIVACY_SECTION_TYPING_INDICATORS" = "输入状态展示"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "输入状态展示"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "在一对一聊天中查看并展示输入状态。"; -"PRIVACY_SECTION_LINK_PREVIEWS" = "链接预览"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "发送链接预览"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "为支持的 URL 生成链接预览。"; -"PRIVACY_SECTION_CALLS" = "呼叫(Beta功能)"; -"PRIVACY_CALLS_TITLE" = "语音和视频通话"; -"PRIVACY_CALLS_DESCRIPTION" = "允许与其它用户进行语音和视频通话。"; -"PRIVACY_CALLS_WARNING_TITLE" = "语音和视频通话(Beta功能)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "当使用测试中的呼叫功能时,您的 IP 地址对您的通话伙伴和一个 Oxen 基金会服务器可见。 您确定要启用语音和视频通话吗?"; -"NOTIFICATIONS_TITLE" = "通知"; -"NOTIFICATIONS_SECTION_STRATEGY" = "通知选项"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "使用快速模式"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "您将会收到通过Apple 的通知服务器发出的可靠即时的新消息通知。"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "转到系统通知设置"; -"NOTIFICATIONS_SECTION_STYLE" = "通知样式"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "声音"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "打开应用程序时的声音"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "通知内容"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "在通知中显示的信息。"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "发件人名称和信息内容"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "仅显示发送者"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "不显示发送者和信息内容"; -"CONVERSATION_SETTINGS_TITLE" = "对话"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "信息整理"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "整理社区"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "删除在超过2,000条消息的社区中的6个月之前的消息。"; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "音频消息"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "自动播放音频消息"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "自动播放连续音频消息。"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "已屏蔽的联系人"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "您没有屏蔽任何联系人。"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "取消屏蔽"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "确定解除对%@的屏蔽吗?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "此联系人"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "确定解除对%@的屏蔽吗"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "和 %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "和另外 %d 个人?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "取消屏蔽"; -"APPEARANCE_TITLE" = "外观"; -"APPEARANCE_THEMES_TITLE" = "主题"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "主色调"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "你好吗?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "我很好,谢谢,你呢?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "我做得很好,谢谢。"; -"APPEARANCE_NIGHT_MODE_TITLE" = "自动开启夜间模式"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "匹配系统设置"; -"HELP_TITLE" = "帮助"; -"HELP_REPORT_BUG_TITLE" = "报告 Bug"; -"HELP_REPORT_BUG_DESCRIPTION" = "导出您的日志,然后通过Session帮助服务台上传日志。"; -"HELP_REPORT_BUG_ACTION_TITLE" = "导出日志"; -"HELP_TRANSLATE_TITLE" = "翻译 Session"; -"HELP_FEEDBACK_TITLE" = "感谢您的反馈。"; -"HELP_FAQ_TITLE" = "常见问题(FAQ)"; -"HELP_SUPPORT_TITLE" = "帮助"; -"modal_clear_all_data_title" = "清除所有数据"; -"modal_clear_all_data_explanation" = "这将永久删除您的消息和联系人。您想仅清除此设备,还是同时从网络中删除您的数据?"; -"modal_clear_all_data_explanation_2" = "您确定要从网络中删除您的数据吗? 如果您继续,您将无法恢复您的消息或联系人。"; -"modal_clear_all_data_device_only_button_title" = "仅清除设备"; -"modal_clear_all_data_entire_account_button_title" = "清除设备和网络数据"; -"dialog_clear_all_data_deletion_failed_1" = "数据未被一个服务节点删除。服务节点ID: %@"; -"dialog_clear_all_data_deletion_failed_2" = "数据未被 %@ 服务节点删除。服务节点ID: %@"; -"modal_clear_all_data_confirm" = "清除"; -"modal_seed_title" = "您的恢复口令"; -"modal_seed_explanation" = "您可以使用恢复短语来恢复您的帐户或链接一个设备。"; -"modal_permission_explanation" = "Session 需要 %@ 访问权限才能继续。您可以在 iOS 设置中启用访问。"; -"modal_permission_settings_title" = "设置"; -"modal_permission_camera" = "相机"; -"modal_permission_microphone" = "麦克风"; -"modal_permission_library" = "媒体库"; -"DISAPPEARING_MESSAGES_OFF" = "关闭"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "关闭"; -"COPY_GROUP_URL" = "复制群组链接"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "联系人"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "请至少选择一名群组成员"; -"GROUP_CREATION_PLEASE_WAIT" = "正在创建群组,请稍候..."; -"GROUP_CREATION_ERROR_TITLE" = "无法创建群组"; -"GROUP_CREATION_ERROR_MESSAGE" = "请检查您的网络连接,然后重试。"; -"GROUP_UPDATE_ERROR_TITLE" = "无法更新群组"; -"GROUP_UPDATE_ERROR_MESSAGE" = "添加或移除其他成员时无法离开。"; -"GROUP_ACTION_REMOVE" = "移除"; -"GROUP_TITLE_MEMBERS" = "成员"; -"GROUP_TITLE_FALLBACK" = "群组"; -"DM_ERROR_DIRECT_BLINDED_ID" = "您只能从社区内发送消息到 Blinded ID"; -"DM_ERROR_INVALID" = "请检查 Session ID 或 ONS 名称,然后重试。"; -"COMMUNITY_ERROR_INVALID_URL" = "请检查你输入的链接是否正确,然后重试。"; -"COMMUNITY_ERROR_GENERIC" = "无法加入"; -"DISAPPERING_MESSAGES_TITLE" = "阅后即焚消息"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "删除类别"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "阅读后消失"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "被读取后消息将被删除"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "发送后消失。"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "消息发送后删除消息"; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "定时器"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "会话设置"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "此设置适用于此对话中的所有人。"; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "此设置适用于此对话中的所有人。只有群组管理员可以更改此设置。"; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@已设置%@消息在被%@后消失"; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@已改变消息%@在被%@后消失"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ 关闭了阅后即焚消息"; - -/* context_menu_info */ -"context_menu_info" = "信息"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "退出"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "未找到原消息"; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "隐藏细节"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "消息请求"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "群组消息请求"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "允许来自群组会话内成员的消息请求"; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "对方同意消息请求后,您将可以发送语音信息及附件"; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "发送中"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "已发送"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "已读"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "发送失败"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "已发送"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "已接收"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "来自"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "文件ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "文件类型"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "文件大小"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "同步失败"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "正在同步"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "消息发送失败"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "未能将消息同步至其他设备"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "从我的所有设备删除"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "重新发送"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "重新同步"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "在查找GIF动态图片吗?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session将会连接到Giphy以提供搜索结果。当您发送GIF动图时,您的元数据无法受到完整保护。"; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "会话信息"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "静音"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "解除静音"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "标记为已读"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "标记为未读"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "离开群组"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "离开社区"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "确定要退出%@吗?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "退出中..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "退出群组失败!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "未能退出群组,请重试"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "删除群组"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "您确定要删除%@吗?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "删除会话"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "隐藏备忘录"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "您确定要隐藏%@吗?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = " 设置展示图片"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "保存"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@和%@被设置为管理员"; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "您被从%@中移除"; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "您确定要屏蔽%@吗?被屏蔽的用户将无法向您发送消息请求、群聊邀请或者语音通话。"; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@邀请您加入%@"; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "未能删除群组,请重试"; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "向此群组发送消息将会自动接收群聊邀请"; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "群成员"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "发送邀请中"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "邀请已发送"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "邀请失败"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Meta/Translations/zh-TW.lproj/Localizable.strings b/Session/Meta/Translations/zh-TW.lproj/Localizable.strings deleted file mode 100644 index caba8c4532..0000000000 --- a/Session/Meta/Translations/zh-TW.lproj/Localizable.strings +++ /dev/null @@ -1,1132 +0,0 @@ -/* No comment provided by engineer. */ -"ATTACHMENT" = "附件"; -/* Title for 'caption' mode of the attachment approval view. */ -"ATTACHMENT_APPROVAL_CAPTION_TITLE" = "標題"; -/* Format string for file extension label in call interstitial view */ -"ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT" = "檔案類型: %@"; -/* Format string for file size label in call interstitial view. Embeds: {{file size as 'N mb' or 'N kb'}}. */ -"ATTACHMENT_APPROVAL_FILE_SIZE_FORMAT" = "大小:%@"; -/* One-line label indicating the user can add no more text to the media message field. */ -"ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED" = "訊息長度已達限制"; -/* Label for 'send' button in the 'attachment approval' dialog. */ -"ATTACHMENT_APPROVAL_SEND_BUTTON" = "發送"; -/* Generic filename for an attachment with no known name */ -"ATTACHMENT_DEFAULT_FILENAME" = "附件"; -/* The title of the 'attachment error' alert. */ -"ATTACHMENT_ERROR_ALERT_TITLE" = "寄送附件時發生錯誤"; -/* Attachment error message for image attachments which could not be converted to JPEG */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG" = "無法讀取圖片。"; -/* Attachment error message for video attachments which could not be converted to MP4 */ -"ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4" = "無法處理影片"; -/* Attachment error message for image attachments which cannot be parsed */ -"ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE" = "無法解析圖片"; -/* Attachment error message for image attachments in which metadata could not be removed */ -"ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA" = "無法移除圖片資訊"; -/* Attachment error message for image attachments which could not be resized */ -"ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE" = "無法修改圖片大小"; -/* Attachment error message for attachments whose data exceed file size limits */ -"ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE" = "附件過大"; -/* Attachment error message for attachments with invalid data */ -"ATTACHMENT_ERROR_INVALID_DATA" = "附件包含無效內容"; -/* Attachment error message for attachments with an invalid file format */ -"ATTACHMENT_ERROR_INVALID_FILE_FORMAT" = "附件有無效檔案格式"; -/* Attachment error message for attachments without any data */ -"ATTACHMENT_ERROR_MISSING_DATA" = "附件不存在"; -/* Alert title when picking a document fails for an unknown reason */ -"ATTACHMENT_PICKER_DOCUMENTS_FAILED_ALERT_TITLE" = "選取檔案時發生錯誤"; -/* Alert body when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_BODY" = "請嘗試將其轉換為壓縮檔或者再嘗試重新發送一次"; -/* Alert title when picking a document fails because user picked a directory/bundle */ -"ATTACHMENT_PICKER_DOCUMENTS_PICKED_DIRECTORY_FAILED_ALERT_TITLE" = "不支援的檔案類型"; -/* Short text label for a voice message attachment, used for thread preview and on the lock screen */ -"ATTACHMENT_TYPE_VOICE_MESSAGE" = "語音訊息"; -/* Button label for the 'block' button */ -"BLOCK_LIST_BLOCK_BUTTON" = "封鎖"; -/* A format for the 'block user' action sheet title. Embeds {{the blocked user's name or phone number}}. */ -"BLOCK_LIST_BLOCK_USER_TITLE_FORMAT" = "封鎖 %@?"; -/* A format for the 'unblock user' action sheet title. Embeds {{the unblocked user's name or phone number}}. */ -"BLOCK_LIST_UNBLOCK_TITLE_FORMAT" = "取消封鎖 %@?"; -/* Button label for the 'unblock' button */ -"BLOCK_LIST_UNBLOCK_BUTTON" = "解除封鎖"; -/* The message format of the 'conversation blocked' alert. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_MESSAGE_FORMAT" = "已封鎖 %@。"; -/* The title of the 'user blocked' alert. */ -"BLOCK_LIST_VIEW_BLOCKED_ALERT_TITLE" = "使用者已封鎖"; -/* Alert title after unblocking a group or 1:1 chat. Embeds the {{conversation title}}. */ -"BLOCK_LIST_VIEW_UNBLOCKED_ALERT_TITLE_FORMAT" = "%@ 已被封鎖"; -/* An explanation of the consequences of blocking another user. */ -"BLOCK_USER_BEHAVIOR_EXPLANATION" = "被您封鎖的使用者將無法傳送訊息與撥打電話給您"; -/* Label for generic done button. */ -"BUTTON_DONE" = "完成"; -/* Button text to enable batch selection mode */ -"BUTTON_SELECT" = "選擇"; -/* keyboard toolbar label when starting to search with no current results */ -"CONVERSATION_SEARCH_SEARCHING" = "搜尋中…"; -/* keyboard toolbar label when no messages match the search string */ -"CONVERSATION_SEARCH_NO_RESULTS" = "沒有相符項目"; -/* keyboard toolbar label when exactly 1 message matches the search string */ -"CONVERSATION_SEARCH_ONE_RESULT" = "1 個相符項目"; -/* keyboard toolbar label when more than 1 message matches the search string. Embeds {{number/position of the 'currently viewed' result}} and the {{total number of results}} */ -"CONVERSATION_SEARCH_RESULTS_FORMAT" = "%d 中的 %d 個項目相符"; -/* table cell label in conversation settings */ -"CONVERSATION_SETTINGS_BLOCK_THIS_USER" = "封鎖此用戶"; -/* label for 'mute thread' cell in conversation settings */ -"CONVERSATION_SETTINGS_MUTE_LABEL" = "靜音"; -/* Table cell label in conversation settings which returns the user to the conversation with 'search mode' activated */ -"CONVERSATION_SETTINGS_SEARCH" = "搜尋對話"; -/* Title for the 'crop/scale image' dialog. */ -"CROP_SCALE_IMAGE_VIEW_TITLE" = "移動與裁切"; -/* Subtitle shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_SUBTITLE" = "這可能需要幾分鐘的時間。"; -/* Title shown while the app is updating its database. */ -"DATABASE_VIEW_OVERLAY_TITLE" = "最佳化資料庫中"; -/* The present; the current time. */ -"DATE_NOW" = "現在"; -/* table cell label in conversation settings */ -"DISAPPEARING_MESSAGES" = "自動銷毀訊息"; -/* table cell label in conversation settings */ -"EDIT_GROUP_ACTION" = "編輯群組"; -/* Label indicating media gallery is empty */ -"GALLERY_TILES_EMPTY_GALLERY" = "此對話中沒有媒體。"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_MORE_RECENT_LABEL" = "讀取新媒體中⋯"; -/* Label indicating loading is in progress */ -"GALLERY_TILES_LOADING_OLDER_LABEL" = "讀取舊媒體中⋯"; -/* Error displayed when there is a failure fetching a GIF from the remote service. */ -"GIF_PICKER_ERROR_FETCH_FAILURE" = "無法讀取此 GIF。請確認您是否已連接到網路。"; -/* Generic error displayed when picking a GIF */ -"GIF_PICKER_ERROR_GENERIC" = "發生不明錯誤。"; -/* Shown when selected GIF couldn't be fetched */ -"GIF_PICKER_FAILURE_ALERT_TITLE" = "無法選取此 GIF。"; -/* Alert message shown when user tries to search for GIFs without entering any search terms. */ -"GIF_PICKER_VIEW_MISSING_QUERY" = "請輸入搜尋內容"; -/* Indicates that an error occurred while searching. */ -"GIF_VIEW_SEARCH_ERROR" = "錯誤。請輕點重試。"; -/* Indicates that the user's search had no results. */ -"GIF_VIEW_SEARCH_NO_RESULTS" = "沒有結果"; -/* No comment provided by engineer. */ -"GROUP_CREATED" = "已建立群組"; -/* No comment provided by engineer. */ -"GROUP_MEMBER_JOINED" = "%@ 已加入群組 "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_LEFT" = "%@ 已離開群組 "; -/* No comment provided by engineer. */ -"GROUP_MEMBER_REMOVED" = "%@ 已從群組中移除 "; -/* No comment provided by engineer. */ -"GROUP_MEMBERS_REMOVED" = "%@ 已從群組中移除 "; -/* No comment provided by engineer. */ -"GROUP_TITLE_CHANGED" = "標題已更改為「%@」 "; -/* No comment provided by engineer. */ -"GROUP_UPDATED" = "群組已更新"; -/* No comment provided by engineer. */ -"GROUP_YOU_LEFT" = "您已離開群組"; -/* No comment provided by engineer. */ -"YOU_WERE_REMOVED" = " 你已從群組中移除。 "; -/* Momentarily shown to the user when attempting to select more images than is allowed. Embeds {{max number of items}} that can be shared. */ -"IMAGE_PICKER_CAN_SELECT_NO_MORE_TOAST_FORMAT" = "無法分享超過 %@ 個項目。"; -/* alert title */ -"IMAGE_PICKER_FAILED_TO_PROCESS_ATTACHMENTS" = "無法選取此附件。"; -/* Message for the alert indicating that an audio file is invalid. */ -"INVALID_AUDIO_FILE_ALERT_ERROR_MESSAGE" = "無效的聲音檔案。"; -/* Confirmation button within contextual alert */ -"LEAVE_BUTTON_TITLE" = "離開"; -/* table cell label in conversation settings */ -"LEAVE_GROUP_ACTION" = "離開群組"; -/* nav bar button item */ -"MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON" = "全部媒體"; -/* Confirmation button text to delete selected media from the gallery, embeds {{number of messages}} */ -"MEDIA_GALLERY_DELETE_MULTIPLE_MESSAGES_FORMAT" = "刪除 %d 訊息"; -/* Confirmation button text to delete selected media message from the gallery */ -"MEDIA_GALLERY_DELETE_SINGLE_MESSAGE" = "刪除訊息"; -/* embeds {{sender name}} and {{sent datetime}}, e.g. 'Sarah on 10/30/18, 3:29' */ -"MEDIA_GALLERY_LANDSCAPE_TITLE_FORMAT" = "%@ 於 %@"; -/* Format for the 'more items' indicator for media galleries. Embeds {{the number of additional items}}. */ -"MEDIA_GALLERY_MORE_ITEMS_FORMAT" = "+%@"; -/* Short sender label for media sent by you */ -"MEDIA_GALLERY_SENDER_NAME_YOU" = "您"; -/* Section header in media gallery collection view */ -"MEDIA_GALLERY_THIS_MONTH_HEADER" = "這個月"; -/* status message for failed messages */ -"MESSAGE_STATUS_FAILED" = "傳送失敗"; -/* status message for read messages */ -"MESSAGE_STATUS_READ" = "已讀"; -/* message status while message is sending. */ -"MESSAGE_STATUS_SENDING" = "傳送中⋯"; -/* status message for sent messages */ -"MESSAGE_STATUS_SENT" = "已傳送"; -/* status message while attachment is uploading */ -"MESSAGE_STATUS_UPLOADING" = "上傳中⋯"; -/* notification title. Embeds {{author name}} and {{group name}} */ -"NEW_GROUP_MESSAGE_NOTIFICATION_TITLE" = "%@ 傳送到 %@"; -/* Label for 1:1 conversation with yourself. */ -"NOTE_TO_SELF" = "小筆記"; -/* Lock screen notification text presented after user powers on their device without unlocking. Embeds {{device model}} (either 'iPad' or 'iPhone') */ -"NOTIFICATION_BODY_PHONE_LOCKED_FORMAT" = "在您的設備 ‘%@’ 重新啟動時接收到訊息。"; -/* No comment provided by engineer. */ -"BUTTON_OK" = "好"; -/* Info Message when {{other user}} disables or doesn't support disappearing messages */ -"OTHER_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ 取消了閱後即焚模式"; -/* Info Message when {{other user}} updates message expiration to {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"OTHER_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "%@ 設定閱後即焚模式時間至 %@"; -/* alert title, generic error preventing user from capturing a photo */ -"PHOTO_CAPTURE_GENERIC_ERROR" = "無法讀取圖片。"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_CAPTURE_IMAGE" = "無法讀取圖片。"; -/* alert title */ -"PHOTO_CAPTURE_UNABLE_TO_INITIALIZE_CAMERA" = "無法打開相機。"; -/* label for system photo collections which have no name. */ -"PHOTO_PICKER_UNNAMED_COLLECTION" = "未命名相簿"; -/* Notification action button title */ -"PUSH_MANAGER_MARKREAD" = "標記為已讀"; -/* Notification action button title */ -"PUSH_MANAGER_REPLY" = "回覆"; -/* Description of how and why Session iOS uses Touch ID/Face ID/Phone Passcode to unlock 'screen lock'. */ -"SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK" = "驗證您的身分以打開 Session。"; -/* Title for alert indicating that screen lock could not be unlocked. */ -"SCREEN_LOCK_UNLOCK_FAILED" = "驗證失敗"; -/* alert title when user attempts to leave the send media flow when they have an in-progress album */ -"SEND_MEDIA_ABANDON_TITLE" = "放棄媒體?"; -/* alert action, confirming the user wants to exit the media flow and abandon any photos they've taken */ -"SEND_MEDIA_CONFIRM_ABANDON_ALBUM" = "放棄媒體"; -/* Format string for the default 'Note' sound. Embeds the system {{sound name}}. */ -"SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT" = "%@ (預設)"; -/* Label for settings view that allows user to change the notification sound. */ -"SETTINGS_ITEM_NOTIFICATION_SOUND" = "訊息通知"; -/* Label for the 'no sound' option that allows users to disable sounds for notifications, etc. */ -"SOUNDS_NONE" = "無"; -/* {{number of days}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 days}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS" = "%@ 天"; -/* Label text below navbar button, embeds {{number of days}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5d' not '5 d'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_DAYS_SHORT_FORMAT" = "%@天"; -/* {{number of hours}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 hours}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS" = "%@ 小時"; -/* Label text below navbar button, embeds {{number of hours}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5h' not '5 h'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_HOURS_SHORT_FORMAT" = "%@小時"; -/* {{number of minutes}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 minutes}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES" = "%@ 分鐘"; -/* Label text below navbar button, embeds {{number of minutes}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5m' not '5 m'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_MINUTES_SHORT_FORMAT" = "%@分鐘"; -/* {{number of seconds}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 seconds}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS" = "%@ 秒"; -/* Label text below navbar button, embeds {{number of seconds}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5s' not '5 s'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SECONDS_SHORT_FORMAT" = "%@秒"; -/* {{1 day}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 day}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_DAY" = "%@ 天"; -/* {{1 hour}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 hour}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_HOUR" = "%@ 小時"; -/* {{1 minute}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 minute}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_MINUTE" = "%@ 分鐘"; -/* {{1 week}} embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{1 week}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_SINGLE_WEEK" = "%@ 週"; -/* {{number of weeks}}, embedded in strings, e.g. 'Alice updated disappearing messages expiration to {{5 weeks}}'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS" = "%@ 週"; -/* Label text below navbar button, embeds {{number of weeks}}. Must be very short, like 1 or 2 characters, The space is intentionally omitted between the text and the embedded duration so that we get, e.g. '5w' not '5 w'. See other *_TIME_AMOUNT strings */ -"TIME_AMOUNT_WEEKS_SHORT_FORMAT" = "%@週"; -/* Label for the cancel button in an alert or action sheet. */ -"TXT_CANCEL_TITLE" = "關閉"; -/* No comment provided by engineer. */ -"TXT_DELETE_TITLE" = "刪除"; -/* Filename for voice messages. */ -"VOICE_MESSAGE_FILE_NAME" = "語音訊息"; -/* Message for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_MESSAGE" = "點擊並長按來錄製語音訊息。"; -/* Title for the alert indicating the 'voice message' needs to be held to be held down to record. */ -"VOICE_MESSAGE_TOO_SHORT_ALERT_TITLE" = "語音訊息"; -/* Info Message when you disable disappearing messages */ -"YOU_DISABLED_DISAPPEARING_MESSAGES_CONFIGURATION" = "您取消了閱後即焚模式。"; -/* Info message embedding a {{time amount}}, see the *_TIME_AMOUNT strings for context. */ -"YOU_UPDATED_DISAPPEARING_MESSAGES_CONFIGURATION" = "您將閱後即焚模式時間調整為 %@"; -// MARK: - Session -"continue_2" = "繼續"; -"copy" = "複製"; -"invalid_url" = "無效的網址"; -"next" = "下一個"; -"share" = "分享"; -"invalid_session_id" = "無效的 Session ID"; -"cancel" = "取消"; -"your_session_id" = "您的 Session ID"; -"vc_landing_title_2" = "您的 Session 將從此開始⋯"; -"vc_landing_register_button_title" = "註冊 Session ID"; -"vc_landing_restore_button_title" = "繼續使用 Session"; -"vc_landing_link_button_title" = "連結設備"; -"view_fake_chat_bubble_1" = "什麼是 Session?"; -"view_fake_chat_bubble_2" = "這是一個去中心化並且加密的訊息 app"; -"view_fake_chat_bubble_3" = "所以 Session 不會搜集我的個人資料以及對話中與我連結的資料? 這究竟是怎麼辦到的?"; -"view_fake_chat_bubble_4" = "我們結合了進階匿名連線與端對端加密技術。"; -"view_fake_chat_bubble_5" = "我們不會讓自己的朋友使用不夠好的聊天 app,不客氣。"; -"vc_register_title" = "跟您的 Session ID 說 Hi"; -"vc_register_explanation" = "您的 Session ID 是一個獨特的位址讓您的朋友可以透過它來與您聯繫,且其將不會與您的個人身分連結,透過這樣的設計,Session ID 是完全匿名與隱私的。"; -"vc_restore_title" = "回復您的帳號"; -"vc_restore_explanation" = "請輸入註冊時的復原片語來回復中您的帳號。"; -"vc_restore_seed_text_field_hint" = "輸入您的復原片語"; -"vc_link_device_title" = "連結設備"; -"vc_link_device_scan_qr_code_tab_title" = "掃描 QR Code"; -"vc_display_name_title_2" = "請輸入您的名稱"; -"vc_display_name_explanation" = "這將會成為您 Session 的名稱,它可以是您的真名、別名或任何您喜歡的名字。"; -"vc_display_name_text_field_hint" = "輸入您的名稱"; -"vc_display_name_display_name_missing_error" = "請選擇一個名稱"; -"vc_display_name_display_name_too_long_error" = "請使用一個較短的名稱"; -"vc_pn_mode_recommended_option_tag" = "建議"; -"vc_pn_mode_no_option_picked_modal_title" = "請選擇其中一項選項"; -"vc_home_empty_state_message" = "您尚未添加聯絡人"; -"vc_home_empty_state_button_title" = "開始一個 Session"; -"vc_seed_title" = "您的復原片語"; -"vc_seed_title_2" = "查看您的復原片語"; -"vc_seed_explanation" = "您的復原片語是您的 Session ID 的金鑰—如果您無法使用您的裝置,您可以使用它來回復您的帳號。請妥善保管您的復原片語,請不要將其分享給任何人。"; -"vc_seed_reveal_button_title" = "按住以解除隱藏"; -"view_seed_reminder_subtitle_1" = "儲存您的復原片語以確保您的帳號安全"; -"view_seed_reminder_subtitle_2" = "點擊與長按已編輯文字來解除隱藏您的復原片語,然後將其妥善保管以確保您的帳號安全。"; -"view_seed_reminder_subtitle_3" = "請確定您會將復原片語儲存在一個安全的地方"; -"vc_path_title" = "路徑"; -"vc_path_explanation" = "Session 將您傳送的訊息經由 Session 的去中心化網絡做多重的路徑與節點傳輸以隱藏您的 IP,這些是您現在傳送訊息將經過的節點服務所設立之國家。"; -"vc_path_device_row_title" = "您"; -"vc_path_guard_node_row_title" = "入口節點"; -"vc_path_service_node_row_title" = "服務節點"; -"vc_path_destination_row_title" = "目的地"; -"vc_path_learn_more_button_title" = "更多"; -"vc_create_private_chat_title" = "新訊息"; -"vc_create_private_chat_enter_session_id_tab_title" = "輸入 Session ID"; -"vc_create_private_chat_scan_qr_code_tab_title" = "掃描 QR Code"; -"vc_enter_public_key_explanation" = "輸入他人的 Session ID 或分享您的 Session ID 以開始新會話。"; -"vc_scan_qr_code_camera_access_explanation" = "Session 需要使用相機來掃描 QR Codes"; -"vc_create_closed_group_title" = "建立群組"; -"vc_create_closed_group_text_field_hint" = "請輸入群組名稱"; -"vc_create_closed_group_empty_state_message" = "您尚未加入聯絡人"; -"vc_create_closed_group_group_name_missing_error" = "請輸入群組名稱"; -"vc_create_closed_group_group_name_too_long_error" = "請輸入一個較短的群組名稱"; -"vc_create_closed_group_too_many_group_members_error" = "私密群組的使用者上限不能超過100人"; -"vc_join_public_chat_title" = "加入社群"; -"vc_join_public_chat_enter_group_url_tab_title" = "社群 URL"; -"vc_join_public_chat_scan_qr_code_tab_title" = "掃描 QR Code"; -"vc_enter_chat_url_text_field_hint" = "輸入社群 URL"; -"vc_settings_title" = "設定"; -"vc_group_settings_title" = "群組設定"; -"vc_settings_display_name_missing_error" = "請選擇一個名稱"; -"vc_settings_display_name_too_long_error" = "請選擇一個較短的名稱"; -"vc_settings_privacy_button_title" = "隱私權條款"; -"vc_settings_notifications_button_title" = "通知"; -"vc_settings_recovery_phrase_button_title" = "復原片語"; -"vc_settings_clear_all_data_button_title" = "清除資料"; -"vc_qr_code_title" = "QR Code"; -"vc_qr_code_view_my_qr_code_tab_title" = "查看我的 QR Code"; -"vc_qr_code_view_scan_qr_code_tab_title" = "掃描 QR Code"; -"vc_qr_code_view_scan_qr_code_explanation" = "掃描朋友的 QR Code 來開始對話。"; -"vc_view_my_qr_code_explanation" = "這是您的 QR Code,其他使用者可以掃描來與您對話。"; -// MARK: - Not Yet Translated -"fast_mode_explanation" = "您將會透過 Apple 的通知服務可靠且迅速的收到通知。"; -"fast_mode" = "性能模式"; -"slow_mode_explanation" = "Session 會偶爾在背景執行時檢查新訊息。"; -"slow_mode" = "慢速模式"; -"vc_pn_mode_title" = "訊息通知"; -"vc_link_device_recovery_phrase_tab_title" = "復原片語"; -"vc_link_device_scan_qr_code_explanation" = "請使用您其他的裝置並前往 設定 → 復原片語 來顯示您的QR Code。"; -"vc_enter_recovery_phrase_title" = "復原片語"; -"vc_enter_recovery_phrase_explanation" = "如您需要連結您的裝置,請輸入申請帳號時您的復原片語。"; -"vc_enter_public_key_text_field_hint" = "請輸入您的 ID 或 ONS 的名稱"; -"admin_group_leave_warning" = "因為您是此群組的創立人所以將會刪除所有人的群組,此動作將不能被撤銷。"; -"vc_join_open_group_suggestions_title" = "或加入這些群組⋯"; -"vc_settings_invite_a_friend_button_title" = "邀請好友"; -"copied" = "已複製"; -"vc_conversation_settings_copy_session_id_button_title" = "複製 Session ID"; -"vc_conversation_input_prompt" = "訊息"; -"vc_conversation_voice_message_cancel_message" = "滑動以取消"; -"modal_download_attachment_title" = "是否信任 %@?"; -"modal_download_attachment_explanation" = "您確定要下載 %@ 傳送的媒體嗎?"; -"modal_download_button_title" = "下載"; -"modal_open_url_title" = "打開連結?"; -"modal_open_url_explanation" = "您確定要打開 %@ 嗎?"; -"modal_open_url_button_title" = "打開"; -"modal_copy_url_button_title" = "複製鏈結"; -"modal_blocked_title" = "解除封鎖 %@ 嗎?"; -"modal_blocked_explanation" = "您確定要解除封鎖 %@ 嗎?"; -"modal_blocked_button_title" = "解除封鎖"; -"modal_link_previews_title" = "是否要啟用連結預覽?"; -"modal_link_previews_explanation" = "啟用連結預覽將會讓您送出與接收的 URLs 啟用預覽,這是一項好用的功能,但是 Session 會需要連結這些網站來產生預覽,您可以隨時關閉連結預覽功能。"; -"modal_link_previews_button_title" = "啟用"; -"vc_share_title" = "分享至 Session"; -"vc_share_loading_message" = "準備附件中⋯"; -"vc_share_sending_message" = "傳送中⋯"; -"vc_share_link_previews_unsecure" = "無法載入不安全連結的預覽"; -"vc_share_link_previews_error" = "無法載入預覽"; -"vc_share_link_previews_disabled_title" = "已停用預覽連結"; -"vc_share_link_previews_disabled_explanation" = "啟用連結預覽將會讓您分享的 URLs 啟用預覽,這是一項好用的功能,但是 Session 會需要連結這些網站來產生預覽。\n\n您可以隨時啟用連結預覽功能。"; -"view_open_group_invitation_description" = "打開群組邀請"; -"vc_conversation_settings_invite_button_title" = "新增成員"; -"modal_send_seed_title" = "警告"; -"modal_send_seed_explanation" = "這是你的復原片語。獲得這段復原片語的任何人都可以全權存取你的帳戶。"; -"modal_send_seed_send_button_title" = "發送"; -"vc_conversation_settings_notify_for_mentions_only_title" = "提及我時才通知"; -"vc_conversation_settings_notify_for_mentions_only_explanation" = "啟用後,你將只會收到提及你的訊息之通知。"; -"view_conversation_title_notify_for_mentions_only" = "目前啟用提及我時才通知"; -"message_deleted" = "此段訊息經已刪除"; -"delete_message_for_me" = "只為我自己刪除"; -"delete_message_for_everyone" = "從所有人的裝置上刪除"; -"delete_message_for_me_and_recipient" = "為我和 %@ 刪除"; -"context_menu_reply" = "回覆"; -"context_menu_save" = "儲存"; -"context_menu_ban_user" = "封鎖用戶"; -"context_menu_ban_and_delete_all" = "封鎖並刪除所有"; -"context_menu_ban_user_error_alert_message" = "無法封鎖使用者"; -"accessibility_expanding_attachments_button" = "增加附件檔案"; -"accessibility_gif_button" = "Gif"; -"accessibility_document_button" = "文件"; -"accessibility_library_button" = "前往照片圖庫"; -"accessibility_camera_button" = "相機"; -"accessibility_main_button_collapse" = "摺疊附件選項"; -"invalid_recovery_phrase" = "無效的復原片語"; -"DISMISS_BUTTON_TEXT" = "關閉"; -/* Button text which opens the settings app */ -"OPEN_SETTINGS_BUTTON" = "設定"; -"call_outgoing" = "您撥打給 %@"; -"call_incoming" = "%@ 來電"; -"call_missed" = "錯過 %@ 的來電"; -"APN_Message" = "你有一條新訊息。"; -"APN_Collapsed_Messages" = "你有 %@ 條新訊息。"; -"PIN_BUTTON_TEXT" = "置頂"; -"UNPIN_BUTTON_TEXT" = "取消置頂"; -"modal_call_missed_tips_title" = "未接來電"; -"modal_call_missed_tips_explanation" = "來自 %@ 的未接來電,您必須從隱私權設定開啟語音和視訊通話的權限。"; -"media_saved" = "%@ 儲存了媒體"; -"screenshot_taken" = "%@ 擷取了螢幕畫面"; -"SEARCH_SECTION_CONTACTS" = "聯絡人和群組"; -"SEARCH_SECTION_MESSAGES" = "訊息"; -"MESSAGE_REQUESTS_TITLE" = "訊息要求"; -"MESSAGE_REQUESTS_EMPTY_TEXT" = "沒有擱置中的訊息要求"; -"MESSAGE_REQUESTS_CLEAR_ALL" = "全部清除"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_TITLE" = "Are you sure you want to clear all message requests and group invites?"; -"MESSAGE_REQUESTS_CLEAR_ALL_CONFIRMATION_ACTON" = "清除"; -"MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON" = "您確定要刪除這則訊息要求嗎?"; -"MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON" = "您確定要封鎖此聯絡人?"; -"MESSAGE_REQUESTS_INFO" = "傳送訊息給這位使用者將自動接受他們的訊息要求並顯示您的 Session ID"; -"MESSAGE_REQUESTS_ACCEPTED" = "您的訊息要求已被接受。"; -"MESSAGE_REQUESTS_NOTIFICATION" = "您有一個新的訊息要求"; -"TXT_HIDE_TITLE" = "隱藏"; -"TXT_DELETE_ACCEPT" = "接受"; -"TXT_BLOCK_USER_TITLE" = "封鎖使用者"; -"ALERT_ERROR_TITLE" = "錯誤"; -"modal_call_permission_request_title" = "需要通話權限"; -"modal_call_permission_request_explanation" = "您可以從隱私權設定中開啟語音和視訊通話的權限。"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE" = "糟糕,發生錯誤!"; -"DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE" = "请稍后再试"; -"LOADING_CONVERSATIONS" = "正在載入對話…"; -"DATABASE_MIGRATION_FAILED" = "An error occurred when optimising the database\n\nYou can export your application logs to be able to share for troubleshooting or you can restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; -"RECOVERY_PHASE_ERROR_GENERIC" = "出現錯誤,請檢查您的復原片語並再試一次。"; -"RECOVERY_PHASE_ERROR_LENGTH" = "Looks like you didn't enter enough words. Please check your recovery phrase and try again."; -"RECOVERY_PHASE_ERROR_LAST_WORD" = "You seem to be missing the last word of your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_INVALID_WORD" = "There appears to be an invalid word in your recovery phrase. Please check what you entered and try again."; -"RECOVERY_PHASE_ERROR_FAILED" = "Your recovery phrase couldn't be verified. Please check what you entered and try again."; -/* Indicates that an unknown error occurred while using Touch ID/Face ID/Phone Passcode. */ -"SCREEN_LOCK_ENABLE_UNKNOWN_ERROR" = "Authentication could not be accessed."; -/* Indicates that Touch ID/Face ID/Phone Passcode authentication failed. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED" = "Authentication failed."; -/* Indicates that Touch ID/Face ID/Phone Passcode is 'locked out' on this device due to authentication failures. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT" = "Too many failed authentication attempts. Please try again later."; -/* Indicates that Touch ID/Face ID/Phone Passcode are not available on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode is not configured on this device. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Indicates that Touch ID/Face ID/Phone Passcode passcode is not set. */ -"SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET" = "You must enable a passcode in your iOS Settings in order to use Screen Lock."; -/* Label for the button to send a message */ -"SEND_BUTTON_TITLE" = "傳送"; -/* Generic text for button that retries whatever the last action was. */ -"RETRY_BUTTON_TEXT" = "重試"; -/* notification action */ -"SHOW_THREAD_BUTTON_TITLE" = "顯示聊天"; -/* notification body */ -"SEND_FAILED_NOTIFICATION_BODY" = "訊息傳送失敗"; -"INVALID_SESSION_ID_MESSAGE" = "請檢查 Session ID,然後再試一次。"; -"INVALID_RECOVERY_PHRASE_MESSAGE" = "請檢查復原片語,然後再試一次。"; -"MEDIA_TAB_TITLE" = "媒體"; -"DOCUMENT_TAB_TITLE" = "文件"; -"DOCUMENT_TILES_EMPTY_DOCUMENT" = "You don't have any document in this conversation."; -"DOCUMENT_TILES_LOADING_MORE_RECENT_LABEL" = "Loading Newer Document…"; -"DOCUMENT_TILES_LOADING_OLDER_LABEL" = "Loading Older Document…"; -/* The name for the emoji category 'Activities' */ -"EMOJI_CATEGORY_ACTIVITIES_NAME" = "活動"; -/* The name for the emoji category 'Animals & Nature' */ -"EMOJI_CATEGORY_ANIMALS_NAME" = "動物與自然"; -/* The name for the emoji category 'Flags' */ -"EMOJI_CATEGORY_FLAGS_NAME" = "旗幟"; -/* The name for the emoji category 'Food & Drink' */ -"EMOJI_CATEGORY_FOOD_NAME" = "食物和飲料"; -/* The name for the emoji category 'Objects' */ -"EMOJI_CATEGORY_OBJECTS_NAME" = "物件"; -/* The name for the emoji category 'Recents' */ -"EMOJI_CATEGORY_RECENTS_NAME" = "最近使用"; -/* The name for the emoji category 'Smileys & People' */ -"EMOJI_CATEGORY_SMILEYSANDPEOPLE_NAME" = "Smileys & People"; -/* The name for the emoji category 'Symbols' */ -"EMOJI_CATEGORY_SYMBOLS_NAME" = "Symbols"; -/* The name for the emoji category 'Travel & Places' */ -"EMOJI_CATEGORY_TRAVEL_NAME" = "Travel & Places"; -"EMOJI_REACTS_NOTIFICATION" = "%@ reacts to a message with %@."; -"EMOJI_REACTS_MORE_REACTORS_ONE" = "And 1 other has reacted %@ to this message."; -"EMOJI_REACTS_MORE_REACTORS_MUTIPLE" = "And %@ others have reacted %@ to this message."; -"EMOJI_REACTS_RATE_LIMIT_TOAST" = "Slow down! You've sent too many emoji reacts. Try again soon."; -/* New conversation screen*/ -"vc_new_conversation_title" = "New Conversation"; -"CREATE_GROUP_BUTTON_TITLE" = "建立"; -"JOIN_COMMUNITY_BUTTON_TITLE" = "加入"; -"PRIVACY_TITLE" = "隱私權"; -"PRIVACY_SECTION_SCREEN_SECURITY" = "螢幕安全性"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_TITLE" = "鎖定 Session"; -"PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION" = "Require Touch ID, Face ID or your passcode to unlock Session."; -"PRIVACY_SECTION_READ_RECEIPTS" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_TITLE" = "Read Receipts"; -"PRIVACY_READ_RECEIPTS_DESCRIPTION" = "Send read receipts in one-to-one chats."; -"PRIVACY_SECTION_TYPING_INDICATORS" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_TITLE" = "Typing Indicators"; -"PRIVACY_TYPING_INDICATORS_DESCRIPTION" = "See and share typing indicators in one-to-one conversations."; -"PRIVACY_SECTION_LINK_PREVIEWS" = "Link Previews"; -"PRIVACY_LINK_PREVIEWS_TITLE" = "Send Link Previews"; -"PRIVACY_LINK_PREVIEWS_DESCRIPTION" = "Generate link previews for supported URLs."; -"PRIVACY_SECTION_CALLS" = "Calls (Beta)"; -"PRIVACY_CALLS_TITLE" = "Voice and Video Calls"; -"PRIVACY_CALLS_DESCRIPTION" = "Enables voice and video calls to and from other users."; -"PRIVACY_CALLS_WARNING_TITLE" = "Voice and Video Calls (Beta)"; -"PRIVACY_CALLS_WARNING_DESCRIPTION" = "Your IP address is visible to your call partner and an Oxen Foundation server while using beta calls. Are you sure you want to enable Voice and Video Calls?"; -"NOTIFICATIONS_TITLE" = "Notifications"; -"NOTIFICATIONS_SECTION_STRATEGY" = "Notification Strategy"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE" = "Use Fast Mode"; -"NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION" = "You'll be notified of new message reliably and immediately using Apple's notification servers."; -"NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION" = "Go to device notification settings"; -"NOTIFICATIONS_SECTION_STYLE" = "通知樣式"; -"NOTIFICATIONS_STYLE_SOUND_TITLE" = "音效"; -"NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE" = "App 開啟時播放音效"; -"NOTIFICATIONS_STYLE_CONTENT_TITLE" = "通知內容"; -"NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION" = "The information shown in notifications."; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT" = "Name & Content"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY" = "Name Only"; -"NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT" = "No Name or Content"; -"CONVERSATION_SETTINGS_TITLE" = "對話"; -"CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING" = "訊息整理"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE" = "Trim Communities"; -"CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION" = "Delete messages older than 6 months from Communities that have over 2,000 messages."; -"CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES" = "語音訊息"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE" = "自動播放語音訊息"; -"CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION" = "Autoplay consecutive audio messages."; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE" = "已封鎖的聯絡人"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE" = "您沒有已封鎖的聯絡人"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK" = "解除封鎖"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE" = "您確定要解除封鎖 %@ 嗎?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK" = "這位聯絡人"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1" = "您確定要解除封鎖 %@ 嗎?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE" = "和 %@?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3" = "和 %d 位其他人?"; -"CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON" = "解除封鎖"; -"APPEARANCE_TITLE" = "外觀"; -"APPEARANCE_THEMES_TITLE" = "主題"; -"APPEARANCE_PRIMARY_COLOR_TITLE" = "主要色彩"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE" = "你好嗎?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE" = "I'm good thanks, you?"; -"APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE" = "I'm doing great, thanks."; -"APPEARANCE_NIGHT_MODE_TITLE" = "自動夜間模式"; -"APPEARANCE_NIGHT_MODE_TOGGLE" = "Match system settings"; -"HELP_TITLE" = "說明"; -"HELP_REPORT_BUG_TITLE" = "回報錯誤"; -"HELP_REPORT_BUG_DESCRIPTION" = "Export your logs, then upload the file though Session's Help Desk."; -"HELP_REPORT_BUG_ACTION_TITLE" = "匯出記錄"; -"HELP_TRANSLATE_TITLE" = "翻譯 Session"; -"HELP_FEEDBACK_TITLE" = "We'd love your Feedback"; -"HELP_FAQ_TITLE" = "常見問題"; -"HELP_SUPPORT_TITLE" = "支援"; -"modal_clear_all_data_title" = "清除所有資料"; -"modal_clear_all_data_explanation" = "This will permanently delete your messages and contacts. Would you like to clear this device only, or delete your data from the network as well?"; -"modal_clear_all_data_explanation_2" = "Are you sure you want to delete your data from the network? If you continue, you will not be able to restore your messages or contacts."; -"modal_clear_all_data_device_only_button_title" = "Clear Device Only"; -"modal_clear_all_data_entire_account_button_title" = "Clear Device and Network"; -"dialog_clear_all_data_deletion_failed_1" = "數據已被1個服務節點刪除。節點ID: %@"; -"dialog_clear_all_data_deletion_failed_2" = "數據沒有被%@個服務節點刪除。節點ID: %@"; -"modal_clear_all_data_confirm" = "清除"; -"modal_seed_title" = "您的復原片語"; -"modal_seed_explanation" = "You can use your recovery phrase to restore your account or link a device."; -"modal_permission_explanation" = "Session needs %@ access to continue. You can enable access in the iOS settings."; -"modal_permission_settings_title" = "設定"; -"modal_permission_camera" = "相機"; -"modal_permission_microphone" = "麥克風"; -"modal_permission_library" = "資料庫"; -"DISAPPEARING_MESSAGES_OFF" = "關閉"; -"DISAPPEARING_MESSAGES_SUBTITLE_OFF" = "關閉"; -"COPY_GROUP_URL" = "Copy Group URL"; -"NEW_CONVERSATION_CONTACTS_SECTION_TITLE" = "聯絡人"; -"GROUP_ERROR_NO_MEMBER_SELECTION" = "Please pick at least 1 group member"; -"GROUP_CREATION_PLEASE_WAIT" = "Please wait while the group is created..."; -"GROUP_CREATION_ERROR_TITLE" = "無法建立群組"; -"GROUP_CREATION_ERROR_MESSAGE" = "Please check your internet connection and try again."; -"GROUP_UPDATE_ERROR_TITLE" = "無法更新群組"; -"GROUP_UPDATE_ERROR_MESSAGE" = "Can't leave while adding or removing other members."; -"GROUP_ACTION_REMOVE" = "移除"; -"GROUP_TITLE_MEMBERS" = "成員"; -"GROUP_TITLE_FALLBACK" = "群組"; -"DM_ERROR_DIRECT_BLINDED_ID" = "You can only send messages to Blinded IDs from within a Community"; -"DM_ERROR_INVALID" = "Please check the Session ID or ONS name and try again"; -"COMMUNITY_ERROR_INVALID_URL" = "Please check the URL you entered and try again."; -"COMMUNITY_ERROR_GENERIC" = "無法加入"; -"DISAPPERING_MESSAGES_TITLE" = "Disappearing Messages"; -"DISAPPERING_MESSAGES_TYPE_TITLE" = "刪除類型"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_TITLE" = "閱後即焚"; -"DISAPPERING_MESSAGES_TYPE_AFTER_READ_DESCRIPTION" = "Messages delete after they have been read."; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE" = "Disappear After Send"; -"DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION" = "Messages delete after they have been sent."; -"DISAPPERING_MESSAGES_TIMER_TITLE" = "計時器"; -"DISAPPERING_MESSAGES_SAVE_TITLE" = "設定"; -"DISAPPERING_MESSAGES_GROUP_WARNING" = "This setting applies to everyone in this conversation."; -"DISAPPERING_MESSAGES_GROUP_WARNING_ADMIN_ONLY" = "This setting applies to everyone in this conversation.\nOnly group admins can change this setting."; -/* Informational message shown when a conversation participant enables disappearing messages. The first '%@' will be the participants name, the second '%@' will be the duration and the third '%@' will indicate whether the countdown should start after the messages are sent or after they are read. */ -"DISAPPERING_MESSAGES_INFO_ENABLE" = "%@ has set their messages to disappear %@ after they have been %@."; -"DISAPPERING_MESSAGES_INFO_UPDATE" = "%@ has changed messages to disappear %@ after they have been %@"; -/* Informational message shown when a conversation participant enables disappearing messages. The '%@' will be the participants name. */ -"DISAPPERING_MESSAGES_INFO_DISABLE" = "%@ has turned off disappearing messages. Messages they send will no longer disappear."; - -/* context_menu_info */ -"context_menu_info" = "Info"; - -/* An error that is displayed when the application fails for create it's initial connection to the database */ -"DATABASE_STARTUP_FAILED" = "An error occurred when opening the database\n\nYou can export your application logs to share for troubleshooting or you can try to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* A warning displayed to the user when the application takes too long to launch */ -"APP_STARTUP_TIMEOUT" = "The app is taking a long time to start\n\nYou can continue to wait for the app to start, export your application logs to share for troubleshooting or you can try to open the app again"; - -/* The title of a button on a modal shown when the application fails to start, pressing the button closes the application */ -"APP_STARTUP_EXIT" = "Exit"; - -/* An error which occurs if the user tries to restore the database after an initial failure and it fails to restore */ -"DATABASE_RESTORE_FAILED" = "An error occurred when opening the restored database\n\nYou can export your application logs to share for troubleshooting but to continue to use Session you may need to reinstall"; - -/* Text displayed in place of a quoted message when the original message is not on the device */ -"QUOTED_MESSAGE_NOT_FOUND" = "Original message not found."; - -/* EMOJI_REACTS_SHOW_LESS */ -"EMOJI_REACTS_SHOW_LESS" = "Show less"; - -/* PRIVACY_SECTION_MESSAGE_REQUESTS */ -"PRIVACY_SECTION_MESSAGE_REQUESTS" = "Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE" = "Community Message Requests"; - -/* PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION */ -"PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION" = "Allow message requests from Community conversations."; - -/* Information displayed above the input when sending a message to a new user for the first time explaining limitations around the types of messages which can be sent before being approved */ -"MESSAGE_REQUEST_PENDING_APPROVAL_INFO" = "You will be able to send voice messages and attachments once the recipient has approved this message request."; - -/* State of a message while it's still in the process of being sent */ -"MESSAGE_DELIVERY_STATUS_SENDING" = "Sending"; - -/* State of a message once it has been sent */ -"MESSAGE_DELIVERY_STATUS_SENT" = "Sent"; - -/* State of a message after the recipient has read the message */ -"MESSAGE_DELIVERY_STATUS_READ" = "Read"; - -/* State of a message if it failed to be sent */ -"MESSAGE_DELIVERY_STATUS_FAILED" = "Failed to send"; - -/* Title of the message information screen describing the date/time a message was sent */ -"MESSAGE_INFO_SENT" = "Sent"; - -/* Title of the message information screen describing the date/time a message was received on a specific device */ -"MESSAGE_INFO_RECEIVED" = "Received"; - -/* Title of the message information screen describing the sender of the message */ -"MESSAGE_INFO_FROM" = "From"; - -/* Title of the message information screen describing the identifier of the attachment */ -"ATTACHMENT_INFO_FILE_ID" = "File ID"; - -/* Title of the message information screen describing the file type of the attachment */ -"ATTACHMENT_INFO_FILE_TYPE" = "File Type"; - -/* Title of the message information screen describing the size of the attachment */ -"ATTACHMENT_INFO_FILE_SIZE" = "File Size"; - -/* Title on the message information screen describing the resolution of a media attachment */ -"ATTACHMENT_INFO_RESOLUTION" = "Resolution"; - -/* Title on the message information screen describing the duration of a media attachment */ -"ATTACHMENT_INFO_DURATION" = "Duration"; - -/* State of a message after it failed to sync to the current users other devices */ -"MESSAGE_DELIVERY_STATUS_FAILED_SYNC" = "Failed to sync"; - -/* State of a message while it's in the process of being synced to the users other devices */ -"MESSAGE_DELIVERY_STATUS_SYNCING" = "Syncing"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to send */ -"MESSAGE_DELIVERY_FAILED_TITLE" = "Failed to send message"; - -/* Title of the modal that appears after a user taps on the state of a message which failed to sync to the users other devices */ -"MESSAGE_DELIVERY_FAILED_SYNC_TITLE" = "Failed to sync message to your other devices"; - -/* Action for the modal shown when asking the user whether they want to delete from all of their devices */ -"delete_message_for_me_and_my_devices" = "Delete from all of my devices"; - -/* Action in the long-press menu to trigger a message to be sent again after it has failed */ -"context_menu_resend" = "Resend"; - -/* Action in the long-press menu to trigger a message to be synced again after it has failed */ -"context_menu_resync" = "Resync"; - -/* Title of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_TITLE" = "Search GIFs?"; - -/* Message of a modal show the first time a user tries to search for GIFs */ -"GIPHY_PERMISSION_MESSAGE" = "Session will connect to Giphy to provide search results. You will not have full metadata protection when sending GIFs."; - -/* Action in the long-press menu to view more information about a specific message */ -"message_info_title" = "Message Info"; - -/* Action to mute a conversation in the swipe menu */ -"mute_button_text" = "Mute"; - -/* Action in the swipe menu to unmute a conversation */ -"unmute_button_text" = "Unmute"; - -/* Action in the swipe menu to mark a conversation as read */ -"MARK_AS_READ" = "Mark read"; - -/* Action in the swipe menu to mark a conversation as unread */ -"MARK_AS_UNREAD" = "Mark unread"; - -/* Title of the confirmation modal show when attempting to leave a group conversation */ -"leave_group_confirmation_alert_title" = "Leave Group"; - -/* Title of the confirmation modal show when attempting to leave a community conversation */ -"leave_community_confirmation_alert_title" = "Leave Community"; - -/* Message in the confirmation modal when leaving a community conversation */ -"leave_community_confirmation_alert_message" = "Are you sure you want to leave %@?"; - -/* Conversation subtitle while the user in the process of leaving */ -"group_you_leaving" = "Leaving..."; - -/* Conversation subtitle if the user in the failed to leave */ -"group_leave_error" = "Failed to leave Group!"; - -/* Message within a conversation indicating the device was unable to leave a group conversation */ -"group_unable_to_leave" = "Unable to leave the Group, please try again"; - -/* Title in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_title" = "Delete Group"; - -/* Message in the confirmation modal to delete a group */ -"delete_group_confirmation_alert_message" = "Are you sure you want to delete %@?"; - -/* Title in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_title" = "Delete Conversation"; - -/* Message in the confirmation modal when the user tries to delete a one-to-one conversation */ -"delete_conversation_confirmation_alert_message" = "Are you sure you want to delete your conversation with %@?"; - -/* Title in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_title" = "Hide Note to Self"; - -/* Message in the confirmation modal when the user tries to hide the 'Note to Self' conversation */ -"hide_note_to_self_confirmation_alert_message" = "Are you sure you want to hide %@?"; - -/* Title in the modal for updating the users profile display picture */ -"update_profile_modal_title" = "Set Display Picture"; - -/* Save action in the modal for updating the users profile display picture */ -"update_profile_modal_save" = "Save"; - -/* Remove action in the modal for updating the users profile display picture */ -"update_profile_modal_remove" = "Remove"; - -/* Title for the error when failing to remove the users profile display picture */ -"update_profile_modal_remove_error_title" = "Unable to remove avatar image"; - -/* Title for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_title" = "Maximum File Size Exceeded"; - -/* Message for the error when the user selects a profile display picture that is too large */ -"update_profile_modal_max_size_error_message" = "Please select a smaller photo and try again"; - -/* Title for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_title" = "Couldn't Update Profile"; - -/* Message for the error when the user fails to update their profile display picture */ -"update_profile_modal_error_message" = "Please check your internet connection and try again"; - -/* Placeholder when entering a nickname for a contact */ -"CONTACT_NICKNAME_PLACEHOLDER" = "Enter a name"; - -/* The separator within a conversation indicating that following messages are unread */ -"UNREAD_MESSAGES" = "Unread Messages"; - -/* Empty state for a conversation */ -"CONVERSATION_EMPTY_STATE" = "You have no messages from %@. Send a message to start the conversation!"; - -/* Empty state for a read-only conversation */ -"CONVERSATION_EMPTY_STATE_READ_ONLY" = "There are no messages in %@."; - -/* Empty state for the 'Note to Self' conversation */ -"CONVERSATION_EMPTY_STATE_NOTE_TO_SELF" = "You have no messages in %@."; - -/* Message to indicate a user has Community Message Requests disabled */ -"COMMUNITY_MESSAGE_REQUEST_DISABLED_EMPTY_STATE" = "%@ has message requests from Community conversations turned off, so you cannot send them a message."; - -/* Warning to indicate one of the users devices is running an old version of Session */ -"USER_CONFIG_OUTDATED_WARNING" = "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated."; - -/* Ann error displayed if the device is unable to retrieve the users recovery password */ -"LOAD_RECOVERY_PASSWORD_ERROR" = "An error occurred when trying to load your recovery password.\n\nPlease export your logs, then upload the file though Session's Help Desk to help resolve this issue."; - -/* An error displayed when trying to send a message if the device is unable to save it to the database */ -"FAILED_TO_STORE_OUTGOING_MESSAGE" = "An error occurred when trying to store the outgoing message for sending, you may need to restart the app before you can send messages."; - -/* An error indicating that the device was unable to access the database for some reason */ -"database_inaccessible_error" = "There is an issue opening the database. Please restart the app and try again."; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_CONTACTS" = "This setting applies to messages you send in this conversation."; - -/* A message indicating how the disappearing messages setting applies in a group conversation */ -"DISAPPERING_MESSAGES_SUBTITLE_GROUPS" = "Messages disappear after they have been sent."; - -/* A record that appears within the message history to indicate that the current user turned on disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_ENABLE" = "You set your messages to disappear %@ after they have been %@."; - -/* A record that appears within the message history to indicate that the current user update the disappearing messages setting */ -"YOU_DISAPPEARING_MESSAGES_INFO_UPDATE" = "You have changed messages to disappear %@ after they have been %@"; - -/* A record that appears within the message history to indicate that the current user has disabled disappearing messages */ -"YOU_DISAPPEARING_MESSAGES_INFO_DISABLE" = "You turned off disappearing messages. Messages you send will no longer disappear."; - -/* The title for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_TITLE" = "Legacy"; - -/* The description for the legacy type of disappearing messages on the disappearing messages configuration screen */ -"DISAPPEARING_MESSAGES_TYPE_LEGACY_DESCRIPTION" = "Original version of disappearing messages."; - -/* A warning shown at the top of a conversation to indicate a participant is using an old version of Session which may not support the updated disappearing messages functionality */ -"DISAPPEARING_MESSAGES_OUTDATED_CLIENT_BANNER" = "%@ is using an outdated client. Disappearing messages may not work as expected."; - -/* An error which can occur when a user tries to update from a version that Session no longer supports updating from */ -"DATABASE_UNSUPPORTED_MIGRATION" = "You are trying to updated from a version which no longer supports upgrading\n\nIn order to continue to use session you need to restore your device\n\nWarning: Restoring your device will result in loss of any data older than two weeks"; - -/* DISAPPEARING_MESSAGE_STATE_READ -The point that a message will disappear in a disappearing message update message for disappear after read */ -"DISAPPEARING_MESSAGE_STATE_READ" = "read"; - -/* The point that a message will disappear in a disappearing message update message for disappear after send */ -"DISAPPEARING_MESSAGE_STATE_SENT" = "sent"; - -/* The current state for the legacy disappearing messages setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_LEGACY" = "Disappear After - %@"; - -/* The current state for the disappear after read setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_READ" = "Disappear After Read - %@"; - -/* The current state for the disappear after send setting, the '%@' will be replaced by a short-form duration */ -"DISAPPERING_MESSAGES_SUMMARY_SEND" = "Disappear After Send - %@"; - -/* The subtitle describing the current legacy disappearing messages setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_LEGACY" = "Disappear After: %@"; - -/* The subtitle describing the current disappear after read setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_READ" = "Disappear After Read: %@"; - -/* The subtitle describing the current disappear after send setting, the '%@' will be replaced by a duration */ -"DISAPPEARING_MESSAGES_SUBTITLE_DISAPPEAR_AFTER_SEND" = "Disappear After Send: %@"; - -/* An informational message displayed when the name of a group is changed, the '%@' will be the updated name. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED_TO" = "Group name is now %@."; - -/* An informational message displayed when the name of a group is changed. */ -"GROUP_MESSAGE_INFO_NAME_UPDATED" = "Group name updated."; - -/* An informational message displayed when the display picture of a group is changed. */ -"GROUP_MESSAGE_INFO_PICTURE_UPDATED" = "Group display picture updated."; - -/* An informational message displayed when a single member joined the group, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED" = "%@ was invited to join the group."; - -/* An informational message displayed when two members joined the group, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when multiple members joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when a single member was removed from the group, the '%@' will be the members. */ -"GROUP_MESSAGE_INFO_MEMBER_REMOVED" = "%@ was removed from the group."; - -/* An informational message displayed when two members were removed from the group, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_REMOVED" = "%@ and %@ were removed from the group."; - -/* An informational message displayed when multiple members were removed from the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members removed. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_REMOVED" = "%@ and %@ others were removed from the group."; - -/* An informational message displayed when a member leaves the group. */ -"GROUP_MESSAGE_INFO_MEMBER_LEFT" = "%@ left the group."; - -/* An informational message displayed when a member of the group was promoted to admin, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_PROMOTED" = "%@ was promoted to Admin."; - -/* An informational message displayed when two members of the group were promoted to admin, the '%@' will be the members names. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_PROMOTED" = "%@ and %@ were promoted to Admin."; - -/* An informational message displayed when multiple members of the group were promoted to admin, the first '%@' will be the first members name and the second '%@' will be the number of additional members promoted. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_PROMOTED" = "%@ and %@ others were promoted to Admin."; - -/* An informational message displayed the current user was removed from a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_REMOVED" = "You were removed from %@."; - -/* Description of a warning prompt when deleting an invitation to join a group conversation. */ -"MESSAGE_REQUESTS_GROUP_DELETE_CONFIRMATION_ACTON" = "Are you sure you want to delete this group invite?"; - -/* Description of a confirmation prompt when blocking an invitation to join a group conversation. The '%@' will be replaced with the name of the user that sent the invitation. */ -"MESSAGE_REQUESTS_GROUP_BLOCK_CONFIRMATION_ACTON" = "Are you sure you want to block %@? Blocked users cannot send you message requests, group invites or call you."; - -/* An informational message displayed when the user has been invited to join a group, the first '%@' will be the name of the user that sent the invitation and the second '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED" = "%@ invited you to join %@."; - -/* Message within a conversation indicating the device was unable to delete a group conversation */ -"group_unable_to_delete" = "Unable to delete the Group, please try again."; - -/* Information displayed above the input when opening an invitation to join a group. */ -"GROUP_MESSAGE_REQUEST_INFO" = "Sending a message to this group will automatically accept the group invite."; - -/* An error indicating we were unable to retrieve the required data for some reason. */ -"ERROR_UNABLE_TO_FIND_DATA" = "There is an issue retrieving the required data. Please try again later."; - -/* A title for the list of group members. */ -"GROUP_MEMBERS" = "Group Members"; - -/* The status for a group member while their invite is being sent. */ -"GROUP_MEMBER_STATUS_SENDING" = "Sending invite"; - -/* The status for a group member while their invite is pending. */ -"GROUP_MEMBER_STATUS_SENT" = "Invite sent"; - -/* The status for a group member if their invitation failed to send. */ -"GROUP_MEMBER_STATUS_FAILED" = "Invite failed"; - -/* The status for a group admin while their invite is being sent. */ -"GROUP_ADMIN_STATUS_SENDING" = "Sending admin promotion"; - -/* The status for a group admin while their invite is pending. */ -"GROUP_ADMIN_STATUS_SENT" = "Admin promotion sent"; - -/* The status for a group admin if their invitation failed to send. */ -"GROUP_ADMIN_STATUS_FAILED" = "Admin promotion failed"; - -/* A title for the modal to edit the group display picture. */ -"EDIT_GROUP_DISPLAY_PICTURE" = "Set Group Display Picture"; - -/* Error message when trying to update the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR" = "Couldn't update display picture."; - -/* Error message when trying to remove the display picture. */ -"EDIT_DISPLAY_PICTURE_ERROR_REMOVE" = "Unable to remove display picture."; - -/* Placeholder text for editing the name of a group. */ -"EDIT_GROUP_NAME_PLACEHOLDER" = "Enter group name"; - -/* Error message when the edited name of a group is empty. */ -"EDIT_GROUP_NAME_ERROR_MISSING" = "Please pick a group name."; - -/* Error message when the edited name of a group is too long. */ -"EDIT_GROUP_NAME_ERROR_LONG" = "Please pick a shorter group name."; - -/* Placeholder text for editing the description of a group. */ -"EDIT_GROUP_DESCRIPTION_PLACEHOLDER" = "Enter group description"; - -/* Error message when the edited description of a group is too long. */ -"EDIT_GROUP_DESCRIPTION_ERROR_LONG" = "Please pick a shorter group description."; - -/* Error message when the user attempts to remove an admin from a group. */ -"EDIT_GROUP_MEMBERS_ERROR_REMOVE_ADMIN" = "Admins cannot be removed"; - -/* A title for the button to send invites for members to join groups. */ -"GROUP_ACTION_INVITE" = "Invite"; - -/* A title for the button to send invites to contacts to join groups. */ -"GROUP_ACTION_INVITE_CONTACTS" = "Invite Contacts"; - -/* Text which appears when all of the users contacts are already part of the group they want to invite contacts to. */ -"GROUP_ACTION_INVITE_EMPTY_STATE" = "You don't have any more contacts."; - -/* A toast which indicates that a single invitation to join the group is being sent. */ -"GROUP_ACTION_INVITE_SENDING" = "Sending invite"; - -/* A toast which indicates that multiple invitations to join the group are being sent. */ -"GROUP_ACTION_INVITE_SENDING_MULTIPLE" = "Sending invites"; - -/* A toast which indicates that a single invitation to join a group failed to send, the first '%@' will be the name of the member that couldn't be invited and the second '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_ONE" = "Failed to invite %@ to %@"; - -/* A toast which indicates that two invitation to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the name of the second member that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_TWO" = "Failed to invite %@ and %@ to %@"; - -/* A toast which indicates multiple invitations to join a group failed to send, the first '%@' will be the name of the first member that couldn't be invited, the second '%@' will be the number of other members that couldn't be invited, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_INVITE_FAILED_MULTIPLE" = "Failed to invite %@ and %@ others to %@"; - -/* A title for the screen to select which group members should receive promotions to admin. */ -"GROUP_ACTION_PROMOTE_ADMINS" = "Promote Admins"; - -/* A title for the button to send promotions to members of a group. */ -"GROUP_ACTION_PROMOTE" = "Promote"; - -/* Text which appears when all of the members of a group are already admins. */ -"GROUP_ACTION_PROMOTE_EMPTY_STATE" = "There are no more members in this group."; - -/* A toast which indicates that a single promotion to admin within a group is being sent. */ -"GROUP_ACTION_PROMOTE_SENDING" = "Sending promotion"; - -/* A toast which indicates that multiple promotions to admin within a group are being sent. */ -"GROUP_ACTION_PROMOTE_SENDING_MULTIPLE" = "Sending promotions"; - -/* A toast which indicates that a single promotion to admin within a group failed to send, the first '%@' will be the name of the member that couldn't be promoted and the second '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_ONE" = "Failed to promote %@ in %@"; - -/* A toast which indicates that two promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the name of the second member that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_TWO" = "Failed to promote %@ and %@ in %@"; - -/* A toast which indicates multiple promotions to admin within a group failed to send, the first '%@' will be the name of the first member that couldn't be promoted, the second '%@' will be the number of other members that couldn't be promoted, and the third '%@' will be the name of the group. */ -"GROUP_ACTION_PROMOTE_FAILED_MULTIPLE" = "Failed to promote %@ and %@ others in %@"; - -/* A warning shown at the top of a conversation to indicate that the conversation is a legacy group conversation which will stop functioning correctly on a certain date, the '%@' will be replaced with the date it will stop working. */ -"LEGACY_GROUPS_DEPRECATED_BANNER" = "Groups have been upgraded, create a new group to upgrade. Old group functionality will be degraded from %@."; - -/* Title for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_TITLE" = "Update Group Information"; - -/* Message for the prompt which appears when editing the group name and description. */ -"EDIT_GROUP_INFO_MESSAGE" = "Group name and description is visible to all group members."; - -/* Title for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_TITLE" = "Update Group Name"; - -/* Message for the prompt which appears when editing a legacy group name. */ -"EDIT_LEGACY_GROUP_INFO_MESSAGE" = "Group name is visible to all group members."; - -/* An informational message displayed when the user has been invited to join a group, the '%@' will be the name of the group. */ -"GROUP_MESSAGE_INFO_INVITED_FALLBACK" = "You were invited to join %@."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU" = "%@ were invited to join the group."; - -/* An informational message displayed when a single member joined the group with access to chat history, the '%@' will be the members name. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_WITH_HISTORY" = "%@ was invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user joined the group, the '%@' will be replaced with 'You'. */ -"GROUP_MESSAGE_INFO_MEMBER_ADDED_YOU_WITH_HISTORY" = "%@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when two members joined the group with access to chat history, the '%@' will be the names of both members. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and one other user joined the group, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU" = "%@ and %@ were invited to join the group."; - -/* An informational message displayed when the current user and one other user joined the group with access to chat history, the first '%@' will be 'You' and the second will be the name of the other member. */ -"GROUP_MESSAGE_INFO_TWO_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when multiple members joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_WITH_HISTORY" = "%@ and %@ were invited to join the group. Chat history was shared."; - -/* An informational message displayed when the current user and multiple other users joined the group, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU" = "%@ and %@ others were invited to join the group."; - -/* An informational message displayed when the current user and multiple other users joined the group with access to chat history, the first '%@' will be the first members name and the second '%@' will be the number of additional members added. */ -"GROUP_MESSAGE_INFO_MULTIPLE_MEMBERS_ADDED_YOU_WITH_HISTORY" = "%@ and %@ others were invited to join the group. Chat history was shared."; - -/* Message for the error modal shown when a voice message fails to start recording. */ -"VOICE_MESSAGE_FAILED_TO_START_MESSAGE" = "An error occurred when trying to start recording for the voice message."; - -/* Shortcut to copy the disappearing messages setting from another conversation participant. */ -"FOLLOW_SETTING_TITLE" = "Follow Setting"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages on. The first '%@' will be the duration messages will remain and the second '%@' will be whether the countdown starts after the messages are sent or after they are read. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_ON" = "Set your messages to disappear %@ after they have been %@?"; - -/* Explanation when following the disappearing messages setting from another conversation participant will turn disappearing messages off. */ -"FOLLOW_SETTING_EXPLAINATION_TURNING_OFF" = "Messages you send will no longer disappear. Are you sure you want to turn off disappearing messages?"; - -/* Title for button on a modal which confirms a change. */ -"CONFIRM_BUTTON_TITLE" = "Confirm"; - -/* The subtitle of delete action in long press menu screen indicating the time that a message will disappear */ -"DISAPPEARING_MESSAGES_AUTO_DELETES_COUNT_DOWN" = "Auto-deletes in %@"; - -/* A message indicating how the disappearing messages setting applies in a one-to-one conversation for legacy mode */ -"DISAPPERING_MESSAGES_SUBTITLE_LEGACY" = "This setting applies to everyone in this conversation."; - -//Onboarding -"onboardingBubbleWelcomeToSession" = "Welcome to Session"; -"onboardingBubbleSessionIsEngineered" = "Session is engineered to protect your privacy."; -"onboardingBubbleNoPhoneNumber" = "You don't even need a phone number to sign up."; -"onboardingBubbleCreatingAnAccountIsEasy" = "Creating an account is instant, free, and anonymous"; -"onboardingBubblePrivacyInYourPocket" = "Privacy in your pocket."; -"onboardingAccountCreate" = "Create account"; -"onboardingAccountExists" = "I have an account"; -"onboardingTosPrivacy" = "By using this service, you agree to our %@ and %@"; -"terms_of_service" = "Terms of Service"; -"privacy_policy" = "Privacy Policy"; -"displayNameDescription" = "It can be your real name, an alias, or anything else you like — and you can change it any time."; -"displayNameEnter" = "Enter a display name"; -"displayNameNew" = "Pick a new display name"; -"displayNameErrorNew" = "We were unable to load your display name. Please enter a new display name to continue."; -"onboarding_recovery_password_title" = "Save your recovery password"; -"onboarding_recovery_password_subtitle" = "Save your recovery password to make sure you don't lose access to your account."; -"onboarding_recovery_password_explanation" = "Use your password to load your account on new devices. Make sure it is stored in a safe place — and don't share it with anyone."; -"onboardingAccountCreated" = "Account Created"; -"conversationsNone" = "You don't have any conversations yet"; -"onboardingHitThePlusButton" = "Hit the plus button to start a chat, create a group, or join an official community!"; -"onboarding_recovery_password_tab_explanation" = "Enter your recovery password to load your account. If you haven't saved it, you can find it in your app settings."; -"recoveryPasswordEnter" = "Enter your recovery password"; -"onboarding_load_account_title" = "Load Account"; -"waitOneMoment" = "One moment please.."; -"loadAccountProgressMessage" = "Loading your account"; -"recoveryPasswordErrorMessageShort" = "The Recovery Password you entered is not long enough. Please check and try again."; -"recoveryPasswordErrorMessageIncorrect" = "Some of the words in your Recovery Password are incorrect. Please check and try again."; -"recoveryPasswordErrorMessageGeneric" = "Please check your Recovery Password and try again."; -"urlOpen" = "Open URL"; -"urlOpenBrowswer" = "This will open in your browser."; -"onboardingMessageNotificationExplaination" = "There are two ways Session can notify you of new messages."; -"sessionRecoveryPassword" = "Recovery Password"; -"recovery_password_explanation_1" = "Use your recovery password to load your account on new devices."; -"recovery_password_explanation_2" = "Your account cannot be recovered without your recovery password. Make sure it's stored somewhere safe and secure — and don't share it with anyone."; -"recoveryPasswordHideRecoveryPassword" = "Hide Recovery Password"; -"recoveryPasswordHideRecoveryPasswordDescription" = "Permanently hide your recovery password on this device."; -"hide" = "Hide"; -"recoveryPasswordHidePermanently" = "Hide Recovery Password Permanently"; -"hide_recovery_password_modal_warning_1" = "Without your recovery password, you cannot load your account on new devices."; -"hide_recovery_password_modal_warning_2" = "We strongly recommend you save your recovery password in a safe and secure place before continuing."; -"recoveryPasswordHidePermanentlyDescription2" = "Are you sure you want to permanently hide your recovery password on this device? This cannot be undone."; -"qrView" = "View QR"; -"recoveryPasswordView" = "View Password"; -"yes" = "Yes"; -"qrNotRecoveryPassword" = "This QR code does not contain a Recovery Password"; -"warning" = "Warning"; -"quitButton" = "Quit"; -"onboardingBackLoadAccount" = "You cannot go back further. In order to stop loading your account, Session needs to quit."; -"onboardingBackAccountCreation" = "You cannot go back further. In order to cancel your account creation, Session needs to quit."; - -//Settings -"view" = "View"; -"settings_scan_qr_code_tab_title" = "Scan"; -"settings_view_my_qr_code_explanation" = "This is your Account ID. Other users can scan it to start a conversation with you."; -"qrNotAccountId" = "This QR code does not contain an Account ID."; -"lockApp" = "Lock App"; -"accountIdYours" = "Your Account ID"; -"accountIDCopy" = "Copy Account ID"; - -//Start Conversation -"qrYoursDescription" = "Friends can message you by scanning your QR code."; -"start_conversation_screen_title" = "Start Conversation"; -"invite_a_friend_explanation" = "Invite your friend to chat with you on Session by sharing your Account ID with them."; -"accountIdEnter" = "Enter Account ID"; -"accountIdOrOnsEnter" = "Enter Account ID or ONS"; -"new_message_screen_enter_account_id_explanation" = "Start a new conversation by entering your friend's Account ID, ONS or scanning their QR code."; -"accountIdErrorInvalid" = "This Account ID is invalid. Please check and try again."; -"new_message_screen_error_msg_unrecognized_ons" = "We couldn’t recognize this ONS. Please check and try again."; -"onsErrorUnableToSearch" = "We were unable to search for this ONS. Please try again later."; - -//General -"attachmentsNa" = "N/A"; -"search" = "Search"; -"messageRequestsAcceptDescription" = "Sending a message to this user will automatically accept their message request and reveal your Account ID."; -"sessionConversations" = "Conversations"; diff --git a/Session/Notifications/AppNotifications.swift b/Session/Notifications/AppNotifications.swift index 3e6fec49a0..7d20c55283 100644 --- a/Session/Notifications/AppNotifications.swift +++ b/Session/Notifications/AppNotifications.swift @@ -136,31 +136,32 @@ public class NotificationPresenter: NotificationsProtocol { switch previewType { case .noNameNoPreview: - notificationTitle = "Session" + notificationTitle = Constants.app_name case .nameNoPreview, .nameAndPreview: switch thread.variant { case .contact: - notificationTitle = (isMessageRequest ? "Session" : senderName) + notificationTitle = (isMessageRequest ? Constants.app_name : senderName) case .legacyGroup, .group, .community: - notificationTitle = String( - format: NotificationStrings.incomingGroupMessageTitleFormat, - senderName, - groupName - ) + notificationTitle = "notificationsIosGroup" + .put(key: "name", value: senderName) + .put(key: "conversation_name", value: groupName) + .localized() } } switch previewType { - case .noNameNoPreview, .nameNoPreview: notificationBody = NotificationStrings.incomingMessageBody + case .noNameNoPreview, .nameNoPreview: notificationBody = "messageNewYouveGot" + .putNumber(1) + .localized() case .nameAndPreview: notificationBody = messageText } // If it's a message request then overwrite the body to be something generic (only show a notification // when receiving a new message request if there aren't any others or the user had hidden them) if isMessageRequest { - notificationBody = "MESSAGE_REQUESTS_NOTIFICATION".localized() + notificationBody = "messageRequestsNew".localized() } guard notificationBody != nil || notificationTitle != nil else { @@ -258,25 +259,18 @@ public class NotificationPresenter: NotificationsProtocol { AppNotificationUserInfoKey.threadVariantRaw: thread.variant.rawValue ] - let notificationTitle: String = "Session" + let notificationTitle: String = Constants.app_name let senderName: String = Profile.displayName(db, id: interaction.authorId, threadVariant: thread.variant) let notificationBody: String? = { switch messageInfo.state { case .permissionDenied: - return String( - format: "modal_call_missed_tips_explanation".localized(), - senderName - ) - case .permissionDeniedMicrophone: - return String( - format: "call_missed".localized(), - senderName - ) - case .missed: - return String( - format: "call_missed".localized(), - senderName - ) + return "callsYouMissedCallPermissions" + .put(key: "name", value: senderName) + .localizedDeformatted() + case .permissionDeniedMicrophone, .missed: + return "callsMissedCallFrom" + .put(key: "name", value: senderName) + .localized() default: return nil } @@ -321,9 +315,10 @@ public class NotificationPresenter: NotificationsProtocol { else { return } guard !isMessageRequest else { return } - let senderName: String = Profile.displayName(db, id: reaction.authorId, threadVariant: thread.variant) - let notificationTitle = "Session" - var notificationBody = String(format: "EMOJI_REACTS_NOTIFICATION".localized(), senderName, reaction.emoji) + let notificationTitle = Profile.displayName(db, id: reaction.authorId, threadVariant: thread.variant) + var notificationBody = "emojiReactsNotification" + .put(key: "emoji", value: reaction.emoji) + .localized() // Title & body let previewType: Preferences.NotificationPreviewType = db[.preferencesNotificationPreviewType] @@ -331,7 +326,9 @@ public class NotificationPresenter: NotificationsProtocol { switch previewType { case .nameAndPreview: break - default: notificationBody = NotificationStrings.incomingMessageBody + default: notificationBody = "messageNewYouveGot" + .putNumber(1) + .localized() } let category = AppNotificationCategory.incomingMessage @@ -397,7 +394,7 @@ public class NotificationPresenter: NotificationsProtocol { case .nameNoPreview, .nameAndPreview: notificationTitle = threadName } - let notificationBody = NotificationStrings.failedToSendBody + let notificationBody = "messageErrorDelivery".localized() let userInfo: [AnyHashable: Any] = [ AppNotificationUserInfoKey.threadId: thread.id, diff --git a/Session/Notifications/PushRegistrationManager.swift b/Session/Notifications/PushRegistrationManager.swift index a5cf5b0906..476e3ee99a 100644 --- a/Session/Notifications/PushRegistrationManager.swift +++ b/Session/Notifications/PushRegistrationManager.swift @@ -181,7 +181,7 @@ public enum PushRegistrationError: Error { // so the user doesn't remain indefinitely hung for no good reason. return Fail( error: PushRegistrationError.pushNotSupported( - description: "Device configuration disallows push notifications" + description: "Device configuration disallows push notifications" // stringlint:disable ) ).eraseToAnyPublisher() @@ -286,7 +286,7 @@ public enum PushRegistrationError: Error { let caller: String = payload["caller"] as? String, let timestampMs: Int64 = payload["timestamp"] as? Int64 else { - SessionCallManager.reportFakeCall(info: "Missing payload data") + SessionCallManager.reportFakeCall(info: "Missing payload data") // stringlint:disable return } @@ -308,7 +308,9 @@ public enum PushRegistrationError: Error { if let messageInfoData: Data = try? JSONEncoder().encode(messageInfo) { return String(data: messageInfoData, encoding: .utf8) } else { - return "Incoming call." // TODO: We can do better here. + return "callsIncoming" + .put(key: "name", value: caller) + .localized() } }() @@ -334,7 +336,7 @@ public enum PushRegistrationError: Error { } guard let call: SessionCall = maybeCall else { - SessionCallManager.reportFakeCall(info: "Could not retrieve call from database") + SessionCallManager.reportFakeCall(info: "Could not retrieve call from database") // stringlint:disable return } @@ -352,6 +354,6 @@ public enum PushRegistrationError: Error { // We transmit pushToken data as hex encoded string to the server fileprivate extension Data { var hexEncodedString: String { - return map { String(format: "%02hhx", $0) }.joined() + return map { String(format: "%02hhx", $0) }.joined() // stringlint:disable } } diff --git a/Session/Notifications/Types/AppNotificationAction.swift b/Session/Notifications/Types/AppNotificationAction.swift index 90c4e3bced..5bf32db8c0 100644 --- a/Session/Notifications/Types/AppNotificationAction.swift +++ b/Session/Notifications/Types/AppNotificationAction.swift @@ -7,7 +7,6 @@ import Foundation enum AppNotificationAction: CaseIterable { case markAsRead case reply - case showThread } extension AppNotificationAction { @@ -15,7 +14,6 @@ extension AppNotificationAction { switch self { case .markAsRead: return "Signal.AppNotifications.Action.markAsRead" case .reply: return "Signal.AppNotifications.Action.reply" - case .showThread: return "Signal.AppNotifications.Action.showThread" } } } diff --git a/Session/Notifications/Types/AppNotificationCategory.swift b/Session/Notifications/Types/AppNotificationCategory.swift index 5325271c06..4e9ca02046 100644 --- a/Session/Notifications/Types/AppNotificationCategory.swift +++ b/Session/Notifications/Types/AppNotificationCategory.swift @@ -6,7 +6,6 @@ import Foundation enum AppNotificationCategory: CaseIterable { case incomingMessage - case incomingMessageFromNoLongerVerifiedIdentity case errorMessage case threadlessErrorMessage } @@ -15,9 +14,6 @@ extension AppNotificationCategory { var identifier: String { switch self { case .incomingMessage: return "Signal.AppNotificationCategory.incomingMessage" - case .incomingMessageFromNoLongerVerifiedIdentity: - return "Signal.AppNotificationCategory.incomingMessageFromNoLongerVerifiedIdentity" - case .errorMessage: return "Signal.AppNotificationCategory.errorMessage" case .threadlessErrorMessage: return "Signal.AppNotificationCategory.threadlessErrorMessage" } @@ -26,8 +22,7 @@ extension AppNotificationCategory { var actions: [AppNotificationAction] { switch self { case .incomingMessage: return [.markAsRead, .reply] - case .incomingMessageFromNoLongerVerifiedIdentity: return [.markAsRead, .showThread] - case .errorMessage: return [.showThread] + case .errorMessage: return [] case .threadlessErrorMessage: return [] } } diff --git a/Session/Notifications/UserNotificationsAdaptee.swift b/Session/Notifications/UserNotificationsAdaptee.swift index fb7e56f431..b70c33acf1 100644 --- a/Session/Notifications/UserNotificationsAdaptee.swift +++ b/Session/Notifications/UserNotificationsAdaptee.swift @@ -32,25 +32,18 @@ class UserNotificationConfig { case .markAsRead: return UNNotificationAction( identifier: action.identifier, - title: MessageStrings.markAsReadNotificationAction, + title: "messageMarkRead".localized(), options: [] ) case .reply: return UNTextInputNotificationAction( identifier: action.identifier, - title: MessageStrings.replyNotificationAction, + title: "reply".localized(), options: [], - textInputButtonTitle: MessageStrings.sendButton, + textInputButtonTitle: "send".localized(), textInputPlaceholder: "" ) - - case .showThread: - return UNNotificationAction( - identifier: action.identifier, - title: CallStrings.showThreadButtonTitle, - options: [.foreground] - ) } } @@ -158,10 +151,9 @@ extension UserNotificationPresenterAdaptee: NotificationPresenterAdaptee { content.title : threadName ) - content.body = String( - format: NotificationStrings.incomingCollapsedMessagesBody, - "\(numberOfNotifications)" - ) + content.body = "messageNewYouveGot" + .putNumber(numberOfNotifications) + .localized() } content.userInfo[AppNotificationUserInfoKey.threadNotificationCounter] = numberOfNotifications @@ -311,11 +303,6 @@ public class UserNotificationActionHandler: NSObject { } return actionHandler.reply(userInfo: userInfo, replyText: textInputResponse.userText, applicationState: applicationState) - - case .showThread: - return actionHandler.showThread(userInfo: userInfo, using: dependencies) - .setFailureType(to: Error.self) - .eraseToAnyPublisher() } } } diff --git a/Session/Onboarding/DisplayNameScreen.swift b/Session/Onboarding/DisplayNameScreen.swift index cd3392887e..1551f67433 100644 --- a/Session/Onboarding/DisplayNameScreen.swift +++ b/Session/Onboarding/DisplayNameScreen.swift @@ -22,11 +22,7 @@ struct DisplayNameScreen: View { var body: some View { ZStack(alignment: .center) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } + ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() VStack( alignment: .leading, @@ -34,7 +30,7 @@ struct DisplayNameScreen: View { ) { Spacer(minLength: 0) - let title: String = (self.flow == .register) ? "vc_display_name_title_2".localized() : "displayNameNew".localized() + let title: String = (self.flow == .register) ? "displayNamePick".localized() : "displayNameNew".localized() Text(title) .bold() .font(.system(size: Values.veryLargeFontSize)) @@ -76,7 +72,7 @@ struct DisplayNameScreen: View { Button { register() } label: { - Text("continue_2".localized()) + Text("theContinue".localized()) .bold() .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .sessionButton_text) @@ -105,11 +101,11 @@ struct DisplayNameScreen: View { private func register() { let displayName = self.displayName.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines) guard !displayName.isEmpty else { - error = "vc_display_name_display_name_missing_error".localized() + error = "displayNameErrorDescription".localized() return } guard !ProfileManager.isTooLong(profileName: displayName) else { - error = "vc_display_name_display_name_too_long_error".localized() + error = "displayNameErrorDescriptionShorter".localized() return } diff --git a/Session/Onboarding/LandingScreen.swift b/Session/Onboarding/LandingScreen.swift index 60cd47f615..c4b340e981 100644 --- a/Session/Onboarding/LandingScreen.swift +++ b/Session/Onboarding/LandingScreen.swift @@ -15,11 +15,7 @@ struct LandingScreen: View { var body: some View { ZStack(alignment: .center) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } + ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() VStack( alignment: .center, @@ -102,18 +98,11 @@ struct LandingScreen: View { Button { openLegalUrl() } label: { - let attributedText: NSAttributedString = { - let text = String(format: "onboardingTosPrivacy".localized(), "terms_of_service".localized(), "privacy_policy".localized()) - let result = NSMutableAttributedString( - string: text, - attributes: [ .font : UIFont.systemFont(ofSize: Values.verySmallFontSize)] - ) - result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "terms_of_service".localized())) - result.addAttribute(.font, value: UIFont.boldSystemFont(ofSize: Values.verySmallFontSize), range: (text as NSString).range(of: "privacy_policy".localized())) - - return result - }() + let attributedText: NSAttributedString = "onboardingTosPrivacy" + .localized() + .formatted(baseFont: .systemFont(ofSize: Values.verySmallFontSize)) AttributedText(attributedText) + .font(.system(size: Values.verySmallFontSize)) .foregroundColor(themeColor: .textPrimary) } .accessibility( @@ -151,7 +140,7 @@ struct LandingScreen: View { let viewController: SessionHostingViewController = SessionHostingViewController( rootView: LoadAccountScreen(using: dependencies) ) - viewController.setNavBarTitle("onboarding_load_account_title".localized()) + viewController.setNavBarTitle("loadAccount".localized()) self.host.controller?.navigationController?.pushViewController(viewController, animated: true) } @@ -159,14 +148,14 @@ struct LandingScreen: View { let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( title: "urlOpen".localized(), - body: .text("urlOpenBrowswer".localized()), - confirmTitle: "terms_of_service".localized(), + body: .text("urlOpenBrowser".localized()), + confirmTitle: "onboardingTos".localized(), confirmAccessibility: Accessibility( identifier: "Terms of service button", label: "Terms of service button" ), confirmStyle: .textPrimary, - cancelTitle: "privacy_policy".localized(), + cancelTitle: "onboardingPrivacy".localized(), cancelAccessibility: Accessibility( identifier: "Privacy policy button", label: "Privacy policy button" @@ -212,10 +201,29 @@ struct FakeChat: View { @State var numberOfBubblesShown: Int = 0 let chatBubbles: [ChatBubble] = [ - ChatBubble(text: "onboardingBubbleWelcomeToSession".localized() + " 👋", outgoing: false), - ChatBubble(text: "onboardingBubbleSessionIsEngineered".localized(), outgoing: true), - ChatBubble(text: "onboardingBubbleNoPhoneNumber".localized(), outgoing: false), - ChatBubble(text: "onboardingBubbleCreatingAnAccountIsEasy".localized() + " 👇", outgoing: true), + ChatBubble( + text: "onboardingBubbleWelcomeToSession" + .put(key: "app_name", value: Constants.app_name) + .put(key: "emoji", value: "👋") + .localized(), + outgoing: false + ), + ChatBubble( + text: "onboardingBubbleSessionIsEngineered" + .put(key: "app_name", value: Constants.app_name) + .localized(), + outgoing: true + ), + ChatBubble( + text: "onboardingBubbleNoPhoneNumber".localized(), + outgoing: false + ), + ChatBubble( + text: "onboardingBubbleCreatingAnAccountIsEasy" + .put(key: "emoji", value: "👇") + .localized(), + outgoing: true + ) ] var body: some View { diff --git a/Session/Onboarding/LoadAccountScreen.swift b/Session/Onboarding/LoadAccountScreen.swift index c3e7aa8b85..c1e0a1a820 100644 --- a/Session/Onboarding/LoadAccountScreen.swift +++ b/Session/Onboarding/LoadAccountScreen.swift @@ -22,11 +22,8 @@ struct LoadAccountScreen: View { var body: some View { ZStack(alignment: .topLeading) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } + ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() + VStack( spacing: 0 ){ @@ -34,7 +31,7 @@ struct LoadAccountScreen: View { tabIndex: $tabIndex, tabTitles: [ "sessionRecoveryPassword".localized(), - "vc_qr_code_view_scan_qr_code_tab_title".localized() + "qrScan".localized() ] ).frame(maxWidth: .infinity) @@ -165,7 +162,7 @@ struct EnterRecoveryPasswordScreen: View{ Spacer(minLength: 0) .frame(maxHeight: 2 * Values.mediumSpacing) - Text("onboarding_recovery_password_tab_explanation".localized()) + Text("recoveryPasswordRestoreDescription".localized()) .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .textPrimary) .fixedSize(horizontal: false, vertical: true) @@ -194,7 +191,7 @@ struct EnterRecoveryPasswordScreen: View{ Button { continueWithMnemonic?() } label: { - Text("continue_2".localized()) + Text("theContinue".localized()) .bold() .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .sessionButton_text) diff --git a/Session/Onboarding/LoadingScreen.swift b/Session/Onboarding/LoadingScreen.swift index c4e922daba..9010591d82 100644 --- a/Session/Onboarding/LoadingScreen.swift +++ b/Session/Onboarding/LoadingScreen.swift @@ -24,11 +24,7 @@ struct LoadingScreen: View { var body: some View { ZStack(alignment: .center) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } + ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() VStack( alignment: .center, diff --git a/Session/Onboarding/PNModeScreen.swift b/Session/Onboarding/PNModeScreen.swift index de84699ec5..703499ef52 100644 --- a/Session/Onboarding/PNModeScreen.swift +++ b/Session/Onboarding/PNModeScreen.swift @@ -28,8 +28,8 @@ struct PNModeScreen: View { let options: [PNOptionView.Info] = [ PNOptionView.Info( mode: .fast, - title: "fast_mode".localized(), - explanation: "fast_mode_explanation".localized(), + title: "notificationsFastMode".localized(), + explanation: "notificationsFastModeDescriptionIos".localized(), isRecommended: true, accessibility: Accessibility( identifier: "Fast mode notifications button", @@ -38,8 +38,10 @@ struct PNModeScreen: View { ), PNOptionView.Info( mode: .slow, - title: "slow_mode".localized(), - explanation: "slow_mode_explanation".localized(), + title: "notificationsSlowMode".localized(), + explanation: "notificationsSlowModeDescription" + .put(key: "app_name", value: Constants.app_name) + .localized(), isRecommended: false, accessibility: Accessibility( identifier: "Slow mode notifications button", @@ -50,11 +52,7 @@ struct PNModeScreen: View { var body: some View { ZStack(alignment: .center) { - if #available(iOS 14.0, *) { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() - } else { - ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary) - } + ThemeManager.currentTheme.colorSwiftUI(for: .backgroundPrimary).ignoresSafeArea() VStack( alignment: .leading, @@ -62,15 +60,19 @@ struct PNModeScreen: View { ) { Spacer() - Text("vc_pn_mode_title".localized()) + Text("notificationsMessage".localized()) .bold() .font(.system(size: Values.veryLargeFontSize)) .foregroundColor(themeColor: .textPrimary) - Text("onboardingMessageNotificationExplaination".localized()) - .font(.system(size: Values.smallFontSize)) - .foregroundColor(themeColor: .textPrimary) - .padding(.vertical, Values.mediumSpacing) + Text( + "onboardingMessageNotificationExplanation" + .put(key: "app_name", value: Constants.app_name) + .localized() + ) + .font(.system(size: Values.smallFontSize)) + .foregroundColor(themeColor: .textPrimary) + .padding(.vertical, Values.mediumSpacing) VStack( alignment: .leading, @@ -99,7 +101,7 @@ struct PNModeScreen: View { Button { register() } label: { - Text("continue_2".localized()) + Text("theContinue".localized()) .bold() .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .sessionButton_text) @@ -206,7 +208,7 @@ struct PNOptionView: View { ) if info.isRecommended { - Text("vc_pn_mode_recommended_option_tag".localized()) + Text("recommended".localized()) .bold() .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .primary) diff --git a/Session/Onboarding/PNOptionView.swift b/Session/Onboarding/PNOptionView.swift new file mode 100644 index 0000000000..a68241054e --- /dev/null +++ b/Session/Onboarding/PNOptionView.swift @@ -0,0 +1,122 @@ +// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. + +import UIKit +import SessionUIKit + +final class OptionView: UIView { + private let title: String + private let explanation: String + private let delegate: OptionViewDelegate + private let isRecommended: Bool + + var isSelected = false { didSet { handleIsSelectedChanged() } } + + private static let cornerRadius: CGFloat = 8 + + init(title: String, explanation: String, delegate: OptionViewDelegate, isRecommended: Bool = false) { + self.title = title + self.explanation = explanation + self.delegate = delegate + self.isRecommended = isRecommended + + super.init(frame: CGRect.zero) + + setUpViewHierarchy() + } + + override init(frame: CGRect) { + preconditionFailure("Use init(string:explanation:) instead.") + } + + required init?(coder: NSCoder) { + preconditionFailure("Use init(string:explanation:) instead.") + } + + private func setUpViewHierarchy() { + themeBackgroundColor = .backgroundSecondary + + // Round corners + layer.cornerRadius = OptionView.cornerRadius + + // Set up border + themeBorderColor = .borderSeparator + layer.borderWidth = 1 + + // Set up shadow + themeShadowColor = .black + layer.shadowOffset = CGSize(width: 0, height: 0.8) + + ThemeManager.onThemeChange(observer: self) { [weak self] theme, _ in + switch theme.interfaceStyle { + case .light: + self?.layer.shadowOpacity = 0.16 + self?.layer.shadowRadius = 4 + + default: + self?.layer.shadowOpacity = 1 + self?.layer.shadowRadius = 6 + } + } + + // Set up title label + let titleLabel: UILabel = UILabel() + titleLabel.font = .boldSystemFont(ofSize: Values.mediumFontSize) + titleLabel.text = title + titleLabel.themeTextColor = .textPrimary + titleLabel.lineBreakMode = .byWordWrapping + titleLabel.numberOfLines = 0 + + // Set up explanation label + let explanationLabel: UILabel = UILabel() + explanationLabel.font = .systemFont(ofSize: Values.verySmallFontSize) + explanationLabel.text = explanation + explanationLabel.themeTextColor = .textPrimary + explanationLabel.lineBreakMode = .byWordWrapping + explanationLabel.numberOfLines = 0 + + // Set up stack view + let stackView = UIStackView(arrangedSubviews: [ titleLabel, explanationLabel ]) + stackView.axis = .vertical + stackView.spacing = 4 + stackView.alignment = .fill + addSubview(stackView) + + stackView.pin(.leading, to: .leading, of: self, withInset: 12) + stackView.pin(.top, to: .top, of: self, withInset: 12) + self.pin(.trailing, to: .trailing, of: stackView, withInset: 12) + self.pin(.bottom, to: .bottom, of: stackView, withInset: 12) + + // Set up recommended label if needed + if isRecommended { + let recommendedLabel: UILabel = UILabel() + recommendedLabel.font = .boldSystemFont(ofSize: Values.smallFontSize) + recommendedLabel.text = "recommended".localized() + recommendedLabel.themeTextColor = .primary + stackView.addArrangedSubview(recommendedLabel) + } + + // Set up tap gesture recognizer + let tapGestureRecognizer = UITapGestureRecognizer(target: self, action: #selector(handleTap)) + addGestureRecognizer(tapGestureRecognizer) + } + + @objc private func handleTap() { + isSelected = !isSelected + } + + private func handleIsSelectedChanged() { + UIView.animate(withDuration: 0.3) { [weak self] in + self?.themeBorderColor = (self?.isSelected == true ? .primary : .borderSeparator) + self?.themeShadowColor = (self?.isSelected == true ? .primary : .black) + } + + // Notify delegate + if isSelected { delegate.optionViewDidActivate(self) } + } +} + +// MARK: - Option View Delegate + +protocol OptionViewDelegate { + func optionViewDidActivate(_ optionView: OptionView) +} diff --git a/Session/Onboarding/SeedReminderView.swift b/Session/Onboarding/SeedReminderView.swift index a46b0a3cc6..b94a72e6e9 100644 --- a/Session/Onboarding/SeedReminderView.swift +++ b/Session/Onboarding/SeedReminderView.swift @@ -92,7 +92,7 @@ final class SeedReminderView: UIView { button.accessibilityIdentifier = "Reveal recovery phrase button" button.accessibilityLabel = "Reveal recovery phrase button" button.isAccessibilityElement = true - button.setTitle("continue_2".localized(), for: UIControl.State.normal) + button.setTitle("theContinue".localized(), for: UIControl.State.normal) button.set(.width, greaterThanOrEqualTo: 80) button.addTarget(self, action: #selector(handleContinueButtonTapped), for: UIControl.Event.touchUpInside) diff --git a/Session/Open Groups/JoinOpenGroupVC.swift b/Session/Open Groups/JoinOpenGroupVC.swift index b8fa0f292d..09b71135d1 100644 --- a/Session/Open Groups/JoinOpenGroupVC.swift +++ b/Session/Open Groups/JoinOpenGroupVC.swift @@ -9,7 +9,10 @@ import SessionMessagingKit import SessionUtilitiesKit import SignalUtilitiesKit -final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewControllerDelegate, QRScannerDelegate { +final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewControllerDelegate, QRScannerDelegate, NavigatableStateHolder { + public let navigatableState: NavigatableState = NavigatableState() + private var disposables: Set = Set() + private let pageVC = UIPageViewController(transitionStyle: .scroll, navigationOrientation: .horizontal, options: nil) private var pages: [UIViewController] = [] private var isJoining = false @@ -19,11 +22,11 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC private lazy var tabBar: TabBar = { let tabs: [TabBar.Tab] = [ - TabBar.Tab(title: "vc_join_public_chat_enter_group_url_tab_title".localized()) { [weak self] in + TabBar.Tab(title: "communityUrl".localized()) { [weak self] in guard let self = self else { return } self.pageVC.setViewControllers([ self.pages[0] ], direction: .forward, animated: false, completion: nil) }, - TabBar.Tab(title: "vc_join_public_chat_scan_qr_code_tab_title".localized()) { [weak self] in + TabBar.Tab(title: "qrScan".localized()) { [weak self] in guard let self = self else { return } self.pageVC.setViewControllers([ self.pages[1] ], direction: .forward, animated: false, completion: nil) } @@ -47,7 +50,7 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC }() private lazy var scanQRCodeWrapperVC: ScanQRCodeWrapperVC = { - let result: ScanQRCodeWrapperVC = ScanQRCodeWrapperVC(message: nil) + let result: ScanQRCodeWrapperVC = ScanQRCodeWrapperVC() result.delegate = self return result @@ -58,8 +61,9 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC override func viewDidLoad() { super.viewDidLoad() - setNavBarTitle("vc_join_public_chat_title".localized()) + setNavBarTitle("communityJoin".localized()) view.themeBackgroundColor = .newConversation_background + let navBarHeight: CGFloat = (navigationController?.navigationBar.frame.size.height ?? 0) let closeButton = UIBarButtonItem(image: #imageLiteral(resourceName: "X"), style: .plain, target: self, action: #selector(close)) closeButton.themeTintColor = .textPrimary @@ -75,7 +79,7 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC // Tab bar view.addSubview(tabBar) tabBar.pin(.leading, to: .leading, of: view) - tabBar.pin(.top, to: .top, of: view) + tabBar.pin(.top, to: .top, of: view, withInset: navBarHeight) tabBar.pin(.trailing, to: .trailing, of: view) // Page VC constraints @@ -86,12 +90,13 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC pageVCView.pin(.trailing, to: .trailing, of: view) pageVCView.pin(.bottom, to: .bottom, of: view) - let navBarHeight: CGFloat = (navigationController?.navigationBar.frame.size.height ?? 0) let statusBarHeight: CGFloat = UIApplication.shared.statusBarFrame.size.height let height: CGFloat = ((navigationController?.view.bounds.height ?? 0) - navBarHeight - TabBar.snHeight - statusBarHeight) let size: CGSize = CGSize(width: UIScreen.main.bounds.width, height: height) enterURLVC.constrainSize(to: size) scanQRCodePlaceholderVC.constrainSize(to: size) + + navigatableState.setupBindings(viewController: self, disposables: &disposables) } override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) { @@ -153,8 +158,8 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC // The host doesn't parse if no explicit scheme is provided guard let (room, server, publicKey) = LibSession.parseCommunity(url: urlString) else { showError( - title: "invalid_url".localized(), - message: "COMMUNITY_ERROR_INVALID_URL".localized(), + title: "communityEnterUrlErrorInvalid".localized(), + message: "communityEnterUrlErrorInvalidDescription".localized(), onError: onError ) return @@ -166,6 +171,18 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC fileprivate func joinOpenGroup(roomToken: String, server: String, publicKey: String, shouldOpenCommunity: Bool, onError: (() -> ())?) { guard !isJoining, let navigationController: UINavigationController = navigationController else { return } + guard OpenGroupManager.shared.hasExistingOpenGroup( + roomToken: roomToken, + server: server, + publicKey: publicKey + ) != true else { + self.showToast( + text: "communityJoinedAlready".localized(), + backgroundColor: .backgroundSecondary + ) + return + } + isJoining = true ModalActivityIndicatorViewController.present(fromViewController: navigationController, canCancel: false) { [weak self] _ in @@ -209,7 +226,7 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC self?.isJoining = false self?.dismiss(animated: true) { // Dismiss the loader self?.showError( - title: "COMMUNITY_ERROR_GENERIC".localized(), + title: "communityJoinError".localized(), message: "\(error)", onError: onError ) @@ -239,7 +256,7 @@ final class JoinOpenGroupVC: BaseVC, UIPageViewControllerDataSource, UIPageViewC info: ConfirmationModal.Info( title: title, body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text, afterClosed: onError ) @@ -263,7 +280,7 @@ private final class EnterURLVC: UIViewController, UIGestureRecognizerDelegate, O private var keyboardTransitionSnapshot2: UIView? private lazy var urlTextView: TextView = { - let result: TextView = TextView(placeholder: "vc_enter_chat_url_text_field_hint".localized()) + let result: TextView = TextView(placeholder: "communityEnterUrl".localized()) result.keyboardType = .URL result.autocapitalizationType = .none result.autocorrectionType = .no @@ -275,7 +292,7 @@ private final class EnterURLVC: UIViewController, UIGestureRecognizerDelegate, O let result: UILabel = UILabel() result.setContentHuggingPriority(.required, for: .vertical) result.font = .boldSystemFont(ofSize: Values.largeFontSize) - result.text = "vc_join_open_group_suggestions_title".localized() + result.text = "communityJoinOfficial".localized() result.themeTextColor = .textPrimary result.lineBreakMode = .byWordWrapping result.numberOfLines = 0 @@ -302,7 +319,7 @@ private final class EnterURLVC: UIViewController, UIGestureRecognizerDelegate, O // Next button let joinButton = SessionButton(style: .bordered, size: .large) - joinButton.setTitle("JOIN_COMMUNITY_BUTTON_TITLE".localized(), for: UIControl.State.normal) + joinButton.setTitle("join".localized(), for: UIControl.State.normal) joinButton.addTarget(self, action: #selector(joinOpenGroup), for: UIControl.Event.touchUpInside) let joinButtonContainer = UIView( @@ -504,7 +521,9 @@ private final class ScanQRCodePlaceholderVC: UIViewController { // Explanation label let explanationLabel = UILabel() explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) - explanationLabel.text = "vc_scan_qr_code_camera_access_explanation".localized() + explanationLabel.text = "cameraGrantAccessQr" + .put(key: "app_name", value: Constants.app_name) + .localized() explanationLabel.themeTextColor = .textPrimary explanationLabel.textAlignment = .center explanationLabel.lineBreakMode = .byWordWrapping @@ -513,7 +532,7 @@ private final class ScanQRCodePlaceholderVC: UIViewController { // Call to action button let callToActionButton = UIButton() callToActionButton.titleLabel?.font = .boldSystemFont(ofSize: Values.mediumFontSize) - callToActionButton.setTitle("continue_2".localized(), for: .normal) + callToActionButton.setTitle("theContinue".localized(), for: .normal) callToActionButton.setThemeTitleColor(.primary, for: .normal) callToActionButton.addTarget(self, action: #selector(requestCameraAccess), for: .touchUpInside) diff --git a/Session/Open Groups/OpenGroupSuggestionGrid.swift b/Session/Open Groups/OpenGroupSuggestionGrid.swift index f7037bc557..873ee85b91 100644 --- a/Session/Open Groups/OpenGroupSuggestionGrid.swift +++ b/Session/Open Groups/OpenGroupSuggestionGrid.swift @@ -75,7 +75,7 @@ final class OpenGroupSuggestionGrid: UIView, UICollectionViewDataSource, UIColle private lazy var errorTitleLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.mediumFontSize, weight: .medium) - result.text = "DEFAULT_OPEN_GROUP_LOAD_ERROR_TITLE".localized() + result.text = "communityError".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.numberOfLines = 0 @@ -86,7 +86,7 @@ final class OpenGroupSuggestionGrid: UIView, UICollectionViewDataSource, UIColle private lazy var errorSubtitleLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize, weight: .medium) - result.text = "DEFAULT_OPEN_GROUP_LOAD_ERROR_SUBTITLE".localized() + result.text = "communityErrorDescription".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.numberOfLines = 0 @@ -212,6 +212,7 @@ final class OpenGroupSuggestionGrid: UIView, UICollectionViewDataSource, UIColle func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { let room = data[indexPath.section * itemsPerSection + indexPath.item].room delegate?.join(room) + collectionView.deselectItem(at: indexPath, animated: true) } } diff --git a/Session/Path/PathVC.swift b/Session/Path/PathVC.swift index be7b7ec7ab..faff67e781 100644 --- a/Session/Path/PathVC.swift +++ b/Session/Path/PathVC.swift @@ -47,7 +47,7 @@ final class PathVC: BaseVC { private lazy var learnMoreButton: SessionButton = { let result = SessionButton(style: .bordered, size: .large) - result.setTitle("vc_path_learn_more_button_title".localized(), for: UIControl.State.normal) + result.setTitle("learnMore".localized(), for: UIControl.State.normal) result.addTarget(self, action: #selector(learnMore), for: UIControl.Event.touchUpInside) return result @@ -67,14 +67,16 @@ final class PathVC: BaseVC { } private func setUpNavBar() { - setNavBarTitle("vc_path_title".localized()) + setNavBarTitle("onionRoutingPath".localized()) } private func setUpViewHierarchy() { // Set up explanation label let explanationLabel = UILabel() explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) - explanationLabel.text = "vc_path_explanation".localized() + explanationLabel.text = "onionRoutingPathDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() explanationLabel.themeTextColor = .textSecondary explanationLabel.textAlignment = .center explanationLabel.lineBreakMode = .byWordWrapping @@ -170,14 +172,14 @@ final class PathVC: BaseVC { } let youRow = getPathRow( - title: "vc_path_device_row_title".localized(), + title: "you".localized(), subtitle: nil, location: .top, dotAnimationStartDelay: 1, dotAnimationRepeatInterval: dotAnimationRepeatInterval ) let destinationRow = getPathRow( - title: "vc_path_destination_row_title".localized(), + title: "onionRoutingPathDestination".localized(), subtitle: nil, location: .bottom, dotAnimationStartDelay: Double(pathToDisplay.count) + 2, @@ -232,8 +234,8 @@ final class PathVC: BaseVC { private func getPathRow(snode: LibSession.Snode, location: LineView.Location, dotAnimationStartDelay: Double, dotAnimationRepeatInterval: Double, isGuardSnode: Bool) -> UIStackView { return getPathRow( title: (isGuardSnode ? - "vc_path_guard_node_row_title".localized() : - "vc_path_service_node_row_title".localized() + "onionRoutingPathEntryNode".localized() : + "onionRoutingPathServiceNode".localized() ), subtitle: IP2Country.country(for: snode.ip), location: location, diff --git a/Session/Settings/AppearanceViewController.swift b/Session/Settings/AppearanceViewController.swift index 9c1b4d64d9..397bb8f0ed 100644 --- a/Session/Settings/AppearanceViewController.swift +++ b/Session/Settings/AppearanceViewController.swift @@ -30,7 +30,7 @@ final class AppearanceViewController: BaseVC { result.translatesAutoresizingMaskIntoConstraints = false result.font = UIFont.systemFont(ofSize: Values.mediumFontSize, weight: .regular) result.themeTextColor = .textSecondary - result.text = "APPEARANCE_THEMES_TITLE".localized() + result.text = "appearanceThemes".localized() return result }() @@ -60,7 +60,7 @@ final class AppearanceViewController: BaseVC { result.translatesAutoresizingMaskIntoConstraints = false result.font = UIFont.systemFont(ofSize: Values.mediumFontSize, weight: .regular) result.themeTextColor = .textSecondary - result.text = "APPEARANCE_PRIMARY_COLOR_TITLE".localized() + result.text = "appearancePrimaryColor".localized() return result }() @@ -126,7 +126,7 @@ final class AppearanceViewController: BaseVC { result.translatesAutoresizingMaskIntoConstraints = false result.font = UIFont.systemFont(ofSize: Values.mediumFontSize, weight: .regular) result.themeTextColor = .textSecondary - result.text = "APPEARANCE_NIGHT_MODE_TITLE".localized() + result.text = "appearanceAutoDarkMode".localized() return result }() @@ -154,7 +154,7 @@ final class AppearanceViewController: BaseVC { result.translatesAutoresizingMaskIntoConstraints = false result.font = UIFont.systemFont(ofSize: Values.mediumFontSize, weight: .regular) result.themeTextColor = .textPrimary - result.text = "APPEARANCE_NIGHT_MODE_TOGGLE".localized() + result.text = "followSystemSettings".localized() return result }() @@ -176,7 +176,7 @@ final class AppearanceViewController: BaseVC { ViewControllerUtilities.setUpDefaultSessionStyle( for: self, - title: "APPEARANCE_TITLE".localized(), + title: "sessionAppearance".localized(), hasCustomBackButton: false ) diff --git a/Session/Settings/BlockedContactsViewModel.swift b/Session/Settings/BlockedContactsViewModel.swift index a9f9e1516e..764b55cc8f 100644 --- a/Session/Settings/BlockedContactsViewModel.swift +++ b/Session/Settings/BlockedContactsViewModel.swift @@ -94,8 +94,8 @@ public class BlockedContactsViewModel: SessionTableViewModel, NavigatableStateHo // MARK: - Content - let title: String = "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE".localized() - let emptyStateTextPublisher: AnyPublisher = Just("CONVERSATION_SETTINGS_BLOCKED_CONTACTS_EMPTY_STATE".localized()) + let title: String = "conversationsBlockedContacts".localized() + let emptyStateTextPublisher: AnyPublisher = Just("blockBlockedNone".localized()) .eraseToAnyPublisher() lazy var footerButtonInfo: AnyPublisher = selectedContactIdsSubject @@ -103,7 +103,7 @@ public class BlockedContactsViewModel: SessionTableViewModel, NavigatableStateHo .map { selectedContactIds in SessionButton.Info( style: .destructive, - title: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK".localized(), + title: "blockUnblock".localized(), isEnabled: !selectedContactIds.isEmpty, onTap: { [weak self] in self?.unblockTapped() } ) @@ -174,62 +174,35 @@ public class BlockedContactsViewModel: SessionTableViewModel, NavigatableStateHo .first(where: { section in section.model == .contacts }), let info: SessionCell.Info = section.elements .first(where: { info in info.id.id == contactId }) - else { return contactId } + else { + return Profile.truncated(id: contactId, truncating: .middle) + } return info.title?.text } - let confirmationTitle: String = { - guard contactNames.count > 1 else { - // Show a single users name - return String( - format: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_SINGLE".localized(), - ( - contactNames.first ?? - "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_FALLBACK".localized() - ) - ) - } - guard contactNames.count > 3 else { - // Show up to three users names - let initialNames: [String] = Array(contactNames.prefix(upTo: (contactNames.count - 1))) - let lastName: String = contactNames[contactNames.count - 1] - - return [ - String( - format: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1".localized(), - initialNames.joined(separator: ", ") - ), - String( - format: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_2_SINGLE".localized(), - lastName - ) - ] - .reversed(if: Singleton.hasAppContext && Singleton.appContext.isRTL) - .joined(separator: " ") + let confirmationBody: NSAttributedString = { + let name: String = contactNames.first ?? "" + switch contactNames.count { + case 1: + return "blockUnblockName" + .put(key: "name", value: name) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) + case 2: + return "blockUnblockNameTwo" + .put(key: "name", value: name) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) + default: + return "blockUnblockNameMultiple" + .put(key: "name", value: name) + .put(key: "count", value: contactNames.count - 1) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) } - - // If we have exactly 4 users, show the first two names followed by 'and X others', for - // more than 4 users, show the first 3 names followed by 'and X others' - let numNamesToShow: Int = (contactNames.count == 4 ? 2 : 3) - let initialNames: [String] = Array(contactNames.prefix(upTo: numNamesToShow)) - - return [ - String( - format: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_1".localized(), - initialNames.joined(separator: ", ") - ), - String( - format: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_TITLE_MULTIPLE_3".localized(), - (contactNames.count - numNamesToShow) - ) - ] - .reversed(if: Singleton.hasAppContext && Singleton.appContext.isRTL) - .joined(separator: " ") }() let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: confirmationTitle, - confirmTitle: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_UNBLOCK_CONFIRMATION_ACTON".localized(), + title: "blockUnblock".localized(), + body: .attributedText(confirmationBody), + confirmTitle: "blockUnblock".localized(), confirmStyle: .danger, cancelStyle: .alert_text ) { [weak self] _ in diff --git a/Session/Settings/ConversationSettingsViewModel.swift b/Session/Settings/ConversationSettingsViewModel.swift index 784dc672ba..c190effd9e 100644 --- a/Session/Settings/ConversationSettingsViewModel.swift +++ b/Session/Settings/ConversationSettingsViewModel.swift @@ -30,8 +30,8 @@ class ConversationSettingsViewModel: SessionTableViewModel, NavigatableStateHold var title: String? { switch self { - case .messageTrimming: return "CONVERSATION_SETTINGS_SECTION_MESSAGE_TRIMMING".localized() - case .audioMessages: return "CONVERSATION_SETTINGS_SECTION_AUDIO_MESSAGES".localized() + case .messageTrimming: return "conversationsMessageTrimming".localized() + case .audioMessages: return "conversationsAudioMessages".localized() case .blockedContacts: return nil } } @@ -51,7 +51,7 @@ class ConversationSettingsViewModel: SessionTableViewModel, NavigatableStateHold let shouldAutoPlayConsecutiveAudioMessages: Bool } - let title: String = "CONVERSATION_SETTINGS_TITLE".localized() + let title: String = "sessionConversations".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { [weak self] db -> State in @@ -67,13 +67,16 @@ class ConversationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .messageTrimming, - title: "CONVERSATION_SETTINGS_MESSAGE_TRIMMING_TITLE".localized(), - subtitle: "CONVERSATION_SETTINGS_MESSAGE_TRIMMING_DESCRIPTION".localized(), + title: "conversationsMessageTrimmingTrimCommunities".localized(), + subtitle: "conversationsMessageTrimmingTrimCommunitiesDescription".localized(), rightAccessory: .toggle( .boolValue( key: .trimOpenGroupMessagesOlderThanSixMonths, value: current.trimOpenGroupMessagesOlderThanSixMonths, oldValue: (previous ?? current).trimOpenGroupMessagesOlderThanSixMonths + ), + accessibility: Accessibility( + identifier: "Trim Communities - Switch" ) ), onTap: { @@ -89,13 +92,16 @@ class ConversationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .audioMessages, - title: "CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_TITLE".localized(), - subtitle: "CONVERSATION_SETTINGS_AUDIO_MESSAGES_AUTOPLAY_DESCRIPTION".localized(), + title: "conversationsAutoplayAudioMessage".localized(), + subtitle: "conversationsAutoplayAudioMessageDescription".localized(), rightAccessory: .toggle( .boolValue( key: .shouldAutoPlayConsecutiveAudioMessages, value: current.shouldAutoPlayConsecutiveAudioMessages, oldValue: (previous ?? current).shouldAutoPlayConsecutiveAudioMessages + ), + accessibility: Accessibility( + identifier: "Autoplay Audio Messages - Switch" ) ), onTap: { @@ -111,7 +117,7 @@ class ConversationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .blockedContacts, - title: "CONVERSATION_SETTINGS_BLOCKED_CONTACTS_TITLE".localized(), + title: "conversationsBlockedContacts".localized(), styling: SessionCell.StyleInfo( tintColor: .danger, backgroundStyle: .noBackground diff --git a/Session/Settings/HelpViewModel.swift b/Session/Settings/HelpViewModel.swift index 8fccc42a04..10a60c2215 100644 --- a/Session/Settings/HelpViewModel.swift +++ b/Session/Settings/HelpViewModel.swift @@ -43,7 +43,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa // MARK: - Content - let title: String = "HELP_TITLE".localized() + let title: String = "sessionHelp".localized() lazy var observation: TargetObservation = [ SectionModel( @@ -51,10 +51,12 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .report, - title: "HELP_REPORT_BUG_TITLE".localized(), - subtitle: "HELP_REPORT_BUG_DESCRIPTION".localized(), + title: "helpReportABug".localized(), + subtitle: "helpReportABugExportLogsDescription" + .put(key: "app_name", value: Constants.app_name) + .localized(), rightAccessory: .highlightingBackgroundLabel( - title: "HELP_REPORT_BUG_ACTION_TITLE".localized() + title: "helpReportABugExportLogs".localized() ), onTapView: { HelpViewModel.shareLogs(targetView: $0) } ) @@ -65,7 +67,9 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .translate, - title: "HELP_TRANSLATE_TITLE".localized(), + title: "helpHelpUsTranslateSession" + .put(key: "app_name", value: Constants.app_name) + .localized(), rightAccessory: .icon( UIImage(systemName: "arrow.up.forward.app")? .withRenderingMode(.alwaysTemplate), @@ -86,7 +90,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .feedback, - title: "HELP_FEEDBACK_TITLE".localized(), + title: "helpWedLoveYourFeedback".localized(), rightAccessory: .icon( UIImage(systemName: "arrow.up.forward.app")? .withRenderingMode(.alwaysTemplate), @@ -107,7 +111,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .faq, - title: "HELP_FAQ_TITLE".localized(), + title: "helpFAQ".localized(), rightAccessory: .icon( UIImage(systemName: "arrow.up.forward.app")? .withRenderingMode(.alwaysTemplate), @@ -128,7 +132,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .support, - title: "HELP_SUPPORT_TITLE".localized(), + title: "helpSupport".localized(), rightAccessory: .icon( UIImage(systemName: "arrow.up.forward.app")? .withRenderingMode(.alwaysTemplate), @@ -153,7 +157,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa elements: [ SessionCell.Info( id: .support, - title: "Export Database", + title: "Export Database", // stringlint:disable rightAccessory: .icon( UIImage(systemName: "square.and.arrow.up.trianglebadge.exclamationmark")? .withRenderingMode(.alwaysTemplate), @@ -265,7 +269,7 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa self.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "Export Database", + title: "Export Database", // stringlint:disable body: .input( explanation: NSAttributedString( string: """ @@ -276,12 +280,12 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa This password will be used to encrypt the database decryption key and will be exported alongside the database """ ), - placeholder: "Enter a password", + placeholder: "Enter a password", // stringlint:disable initialValue: generatedPassword, clearButton: true, onChange: { [weak self] value in self?.databaseKeyEncryptionPassword = value } ), - confirmTitle: "Export", + confirmTitle: "Export", // stringlint:disable dismissOnConfirm: false, onConfirm: { [weak self] modal in modal.dismiss(animated: true) { @@ -289,8 +293,8 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "Error", - body: .text("Password must be at least 6 characters") + title: "Error", // stringlint:disable + body: .text("Password must be at least 6 characters") // stringlint:disable ) ), transitionType: .present @@ -316,14 +320,14 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "Password", + title: "Password", // stringlint:disable body: .text(""" The generated password was: \(generatedPassword) Avoid sending this via the same means as the database """), - confirmTitle: "Share", + confirmTitle: "Share", // stringlint:disable dismissOnConfirm: false, onConfirm: { [weak self] modal in modal.dismiss(animated: true) { @@ -360,16 +364,16 @@ class HelpViewModel: SessionTableViewModel, NavigatableStateHolder, ObservableTa let message: String = { switch error { case CryptoKitError.incorrectKeySize: - return "The password must be between 6 and 32 characters (padded to 32 bytes)" + return "The password must be between 6 and 32 characters (padded to 32 bytes)" // stringlint:disable - default: return "Failed to export database" + default: return "Failed to export database" // stringlint:disable } }() self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "Error", + title: "Error", // stringlint:disable body: .text(message) ) ), diff --git a/Session/Settings/NotificationContentViewModel.swift b/Session/Settings/NotificationContentViewModel.swift index 32e6b5f0d4..c78f2a6d70 100644 --- a/Session/Settings/NotificationContentViewModel.swift +++ b/Session/Settings/NotificationContentViewModel.swift @@ -29,7 +29,7 @@ class NotificationContentViewModel: SessionTableViewModel, NavigatableStateHolde // MARK: - Content - let title: String = "NOTIFICATIONS_STYLE_CONTENT_TITLE".localized() + let title: String = "notificationsContent".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { db -> Preferences.NotificationPreviewType in diff --git a/Session/Settings/NotificationSettingsViewModel.swift b/Session/Settings/NotificationSettingsViewModel.swift index 3a1a13e67f..4c05c66f50 100644 --- a/Session/Settings/NotificationSettingsViewModel.swift +++ b/Session/Settings/NotificationSettingsViewModel.swift @@ -28,8 +28,8 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold var title: String? { switch self { - case .strategy: return "NOTIFICATIONS_SECTION_STRATEGY".localized() - case .style: return "NOTIFICATIONS_SECTION_STYLE".localized() + case .strategy: return "notificationsStrategy".localized() + case .style: return "notificationsStyle".localized() case .content: return nil } } @@ -59,7 +59,7 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold let previewType: Preferences.NotificationPreviewType } - let title: String = "NOTIFICATIONS_TITLE".localized() + let title: String = "sessionNotifications".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { db -> State in @@ -87,12 +87,15 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .strategyUseFastMode, - title: "NOTIFICATIONS_STRATEGY_FAST_MODE_TITLE".localized(), - subtitle: "NOTIFICATIONS_STRATEGY_FAST_MODE_DESCRIPTION".localized(), + title: "useFastMode".localized(), + subtitle: "notificationsFastModeDescriptionIos".localized(), rightAccessory: .toggle( .boolValue( current.isUsingFullAPNs, oldValue: (previous ?? current).isUsingFullAPNs + ), + accessibility: Accessibility( + identifier: "Use Fast Mode - Switch" ) ), styling: SessionCell.StyleInfo( @@ -113,7 +116,7 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold SessionCell.Info( id: .strategyDeviceSettings, title: SessionCell.TextInfo( - "NOTIFICATIONS_STRATEGY_FAST_MODE_ACTION".localized(), + "notificationsGoToDevice".localized(), font: .subtitleBold ), styling: SessionCell.StyleInfo( @@ -130,7 +133,7 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .styleSound, - title: "NOTIFICATIONS_STYLE_SOUND_TITLE".localized(), + title: "notificationsSound".localized(), rightAccessory: .dropDown( .dynamicString { current.notificationSound.displayName } ), @@ -142,12 +145,15 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold ), SessionCell.Info( id: .styleSoundWhenAppIsOpen, - title: "NOTIFICATIONS_STYLE_SOUND_WHEN_OPEN_TITLE".localized(), + title: "notificationsSoundDescription".localized(), rightAccessory: .toggle( .boolValue( key: .playNotificationSoundInForeground, value: current.playNotificationSoundInForeground, oldValue: (previous ?? current).playNotificationSoundInForeground + ), + accessibility: Accessibility( + identifier: "Sound when App is open - Switch" ) ), onTap: { @@ -163,8 +169,8 @@ class NotificationSettingsViewModel: SessionTableViewModel, NavigatableStateHold elements: [ SessionCell.Info( id: .content, - title: "NOTIFICATIONS_STYLE_CONTENT_TITLE".localized(), - subtitle: "NOTIFICATIONS_STYLE_CONTENT_DESCRIPTION".localized(), + title: "notificationsContent".localized(), + subtitle: "notificationsContentDescription".localized(), rightAccessory: .dropDown( .dynamicString { current.previewType.name } ), diff --git a/Session/Settings/NotificationSoundViewModel.swift b/Session/Settings/NotificationSoundViewModel.swift index aae1de2569..0479c99405 100644 --- a/Session/Settings/NotificationSoundViewModel.swift +++ b/Session/Settings/NotificationSoundViewModel.swift @@ -76,7 +76,7 @@ class NotificationSoundViewModel: SessionTableViewModel, NavigationItemSource, N // MARK: - Content - let title: String = "NOTIFICATIONS_STYLE_SOUND_TITLE".localized() + let title: String = "notificationsSound".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { [threadId] db -> Preferences.Sound in @@ -108,10 +108,7 @@ class NotificationSoundViewModel: SessionTableViewModel, NavigationItemSource, N id: sound, title: { guard sound != .note else { - return String( - format: "SETTINGS_AUDIO_DEFAULT_TONE_LABEL_FORMAT".localized(), - sound.displayName - ) + return "\(sound.displayName) (default)" } return sound.displayName diff --git a/Session/Settings/NukeDataModal.swift b/Session/Settings/NukeDataModal.swift index 93c5ac819b..a17a973853 100644 --- a/Session/Settings/NukeDataModal.swift +++ b/Session/Settings/NukeDataModal.swift @@ -28,7 +28,7 @@ final class NukeDataModal: Modal { private lazy var titleLabel: UILabel = { let result = UILabel() result.font = .boldSystemFont(ofSize: Values.mediumFontSize) - result.text = "modal_clear_all_data_title".localized() + result.text = "clearDataAll".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.lineBreakMode = .byWordWrapping @@ -40,7 +40,7 @@ final class NukeDataModal: Modal { private lazy var explanationLabel: UILabel = { let result = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "modal_clear_all_data_explanation".localized() + result.text = "clearDataAllDescription".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.lineBreakMode = .byWordWrapping @@ -55,7 +55,7 @@ final class NukeDataModal: Modal { radio.update(isSelected: true) } result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "modal_clear_all_data_device_only_button_title".localized() + result.text = "clearDeviceOnly".localized() result.update(isSelected: true) return result @@ -67,14 +67,14 @@ final class NukeDataModal: Modal { radio.update(isSelected: true) } result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "modal_clear_all_data_entire_account_button_title".localized() + result.text = "clearDeviceAndNetwork".localized() return result }() private lazy var clearDataButton: UIButton = { let result: UIButton = Modal.createButton( - title: "modal_clear_all_data_confirm".localized(), + title: "clear".localized(), titleColor: .danger ) result.addTarget(self, action: #selector(clearAllData), for: UIControl.Event.touchUpInside) @@ -137,9 +137,9 @@ final class NukeDataModal: Modal { let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "modal_clear_all_data_title".localized(), - body: .text("modal_clear_all_data_explanation_2".localized()), - confirmTitle: "modal_clear_all_data_confirm".localized(), + title: "clearDataAll".localized(), + body: .text("clearDeviceAndNetworkConfirm".localized()), + confirmTitle: "clear".localized(), confirmStyle: .danger, cancelStyle: .alert_text, dismissOnConfirm: false @@ -217,47 +217,62 @@ final class NukeDataModal: Modal { case .finished: break case .failure(let error): self?.dismiss(animated: true, completion: nil) // Dismiss the loader - - let modal: ConfirmationModal = ConfirmationModal( - targetView: self?.view, - info: ConfirmationModal.Info( - title: "ALERT_ERROR_TITLE".localized(), - body: .text("\(error)"), - cancelTitle: "BUTTON_OK".localized(), - cancelStyle: .alert_text - ) - ) - self?.present(modal, animated: true) + + switch error { + case NetworkError.timeout, NetworkError.gatewayTimeout: + let modal: ConfirmationModal = ConfirmationModal( + targetView: self?.view, + info: ConfirmationModal.Info( + title: "clearDataAll".localized(), + body: .text("clearDataErrorDescriptionGeneric".localized()), + confirmTitle: "clearDevice".localized(), + confirmStyle: .danger, + cancelStyle: .alert_text + ) { [weak self] _ in + self?.clearDeviceOnly() + } + ) + self?.present(modal, animated: true) + + default: + let modal: ConfirmationModal = ConfirmationModal( + targetView: self?.view, + info: ConfirmationModal.Info( + title: "clearDataError".localized(), + body: .text("\(error)"), + cancelTitle: "okay".localized(), + cancelStyle: .alert_text + ) + ) + self?.present(modal, animated: true) + } } }, receiveValue: { confirmations in self?.dismiss(animated: true, completion: nil) // Dismiss the loader + // Get a list of nodes which failed to delete the data let potentiallyMaliciousSnodes = confirmations .compactMap { ($0.value == false ? $0.key : nil) } - + + // If all of the nodes successfully deleted the data then proceed + // to delete the local data guard !potentiallyMaliciousSnodes.isEmpty else { self?.deleteAllLocalData() return } - let message: String - - if potentiallyMaliciousSnodes.count == 1 { - message = String(format: "dialog_clear_all_data_deletion_failed_1".localized(), potentiallyMaliciousSnodes[0]) - } - else { - message = String(format: "dialog_clear_all_data_deletion_failed_2".localized(), String(potentiallyMaliciousSnodes.count), potentiallyMaliciousSnodes.joined(separator: ", ")) - } - let modal: ConfirmationModal = ConfirmationModal( targetView: self?.view, info: ConfirmationModal.Info( - title: "ALERT_ERROR_TITLE".localized(), - body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + title: "clearDataAll".localized(), + body: .text("clearDataErrorDescriptionGeneric".localized()), + confirmTitle: "clearDevice".localized(), + confirmStyle: .danger, cancelStyle: .alert_text - ) + ) { [weak self] _ in + self?.clearDeviceOnly() + } ) self?.present(modal, animated: true) } diff --git a/Session/Settings/PrivacySettingsViewModel.swift b/Session/Settings/PrivacySettingsViewModel.swift index c67bc87be7..8c51585e84 100644 --- a/Session/Settings/PrivacySettingsViewModel.swift +++ b/Session/Settings/PrivacySettingsViewModel.swift @@ -40,12 +40,12 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav var title: String? { switch self { - case .screenSecurity: return "PRIVACY_SECTION_SCREEN_SECURITY".localized() - case .messageRequests: return "PRIVACY_SECTION_MESSAGE_REQUESTS".localized() - case .readReceipts: return "PRIVACY_SECTION_READ_RECEIPTS".localized() - case .typingIndicators: return "PRIVACY_SECTION_TYPING_INDICATORS".localized() - case .linkPreviews: return "PRIVACY_SECTION_LINK_PREVIEWS".localized() - case .calls: return "PRIVACY_SECTION_CALLS".localized() + case .screenSecurity: return "screenSecurity".localized() + case .messageRequests: return "sessionMessageRequests".localized() + case .readReceipts: return "readReceipts".localized() + case .typingIndicators: return "typingIndicators".localized() + case .linkPreviews: return "linkPreviews".localized() + case .calls: return "callsSettings".localized() } } @@ -87,7 +87,7 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav let areCallsEnabled: Bool } - let title: String = "PRIVACY_TITLE".localized() + let title: String = "sessionPrivacy".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { [weak self] db -> State in @@ -108,7 +108,9 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav SessionCell.Info( id: .screenLock, title: "lockApp".localized(), - subtitle: "PRIVACY_SCREEN_SECURITY_LOCK_SESSION_DESCRIPTION".localized(), + subtitle: "lockAppDescriptionIos" + .put(key: "app_name", value: Constants.app_name) + .localized(), rightAccessory: .toggle( .boolValue( key: .isScreenLockEnabled, @@ -126,8 +128,8 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "lockAppEnablePasscode".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ), @@ -148,8 +150,8 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav elements: [ SessionCell.Info( id: .communityMessageRequests, - title: "PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_TITLE".localized(), - subtitle: "PRIVACY_SCREEN_MESSAGE_REQUESTS_COMMUNITY_DESCRIPTION".localized(), + title: "messageRequestsCommunities".localized(), + subtitle: "messageRequestsCommunitiesDescription".localized(), rightAccessory: .toggle( .boolValue( key: .checkForCommunityMessageRequests, @@ -176,8 +178,8 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav elements: [ SessionCell.Info( id: .readReceipts, - title: "PRIVACY_READ_RECEIPTS_TITLE".localized(), - subtitle: "PRIVACY_READ_RECEIPTS_DESCRIPTION".localized(), + title: "readReceipts".localized(), + subtitle: "readReceiptsDescription".localized(), rightAccessory: .toggle( .boolValue( key: .areReadReceiptsEnabled, @@ -202,11 +204,11 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav SessionCell.Info( id: .typingIndicators, title: SessionCell.TextInfo( - "PRIVACY_TYPING_INDICATORS_TITLE".localized(), + "typingIndicators".localized(), font: .title ), subtitle: SessionCell.TextInfo( - "PRIVACY_TYPING_INDICATORS_DESCRIPTION".localized(), + "typingIndicatorsDescription".localized(), font: .subtitle, extraViewGenerator: { let targetHeight: CGFloat = 20 @@ -261,8 +263,8 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav elements: [ SessionCell.Info( id: .linkPreviews, - title: "PRIVACY_LINK_PREVIEWS_TITLE".localized(), - subtitle: "PRIVACY_LINK_PREVIEWS_DESCRIPTION".localized(), + title: "linkPreviewsSend".localized(), + subtitle: "linkPreviewsDescription".localized(), rightAccessory: .toggle( .boolValue( key: .areLinkPreviewsEnabled, @@ -286,8 +288,8 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav elements: [ SessionCell.Info( id: .calls, - title: "PRIVACY_CALLS_TITLE".localized(), - subtitle: "PRIVACY_CALLS_DESCRIPTION".localized(), + title: "callsVoiceAndVideo".localized(), + subtitle: "callsVoiceAndVideoToggleDescription".localized(), rightAccessory: .toggle( .boolValue( key: .areCallsEnabled, @@ -302,10 +304,10 @@ class PrivacySettingsViewModel: SessionTableViewModel, NavigationItemSource, Nav label: "Allow voice and video calls" ), confirmationInfo: ConfirmationModal.Info( - title: "PRIVACY_CALLS_WARNING_TITLE".localized(), - body: .text("PRIVACY_CALLS_WARNING_DESCRIPTION".localized()), + title: "callsVoiceAndVideoBeta".localized(), + body: .text("callsVoiceAndVideoModalDescription".localized()), showCondition: .disabled, - confirmTitle: "continue_2".localized(), + confirmTitle: "theContinue".localized(), confirmAccessibility: Accessibility(identifier: "Enable"), confirmStyle: .danger, cancelStyle: .alert_text, diff --git a/Session/Settings/QRCodeScreen.swift b/Session/Settings/QRCodeScreen.swift index 1234ac02dd..c7d437ed15 100644 --- a/Session/Settings/QRCodeScreen.swift +++ b/Session/Settings/QRCodeScreen.swift @@ -22,7 +22,7 @@ struct QRCodeScreen: View { tabIndex: $tabIndex, tabTitles: [ "view".localized(), - "settings_scan_qr_code_tab_title".localized() + "scan".localized() ] ).frame(maxWidth: .infinity) @@ -81,7 +81,7 @@ struct MyQRCodeScreen: View { ) .aspectRatio(1, contentMode: .fit) - Text("settings_view_my_qr_code_explanation".localized()) + Text("accountIdYoursDescription".localized()) .font(.system(size: Values.verySmallFontSize)) .foregroundColor(themeColor: .textSecondary) .multilineTextAlignment(.center) diff --git a/Session/Settings/RecoveryPasswordScreen.swift b/Session/Settings/RecoveryPasswordScreen.swift index 89c2e91267..9437f6f585 100644 --- a/Session/Settings/RecoveryPasswordScreen.swift +++ b/Session/Settings/RecoveryPasswordScreen.swift @@ -63,13 +63,7 @@ struct RecoveryPasswordScreen: View { } .padding(.bottom, Values.smallSpacing) - Text("recovery_password_explanation_1".localized()) - .font(.system(size: Values.smallFontSize)) - .foregroundColor(themeColor: .textPrimary) - .padding(.bottom, Values.mediumSpacing) - .fixedSize(horizontal: false, vertical: true) - - Text("recovery_password_explanation_2".localized()) + Text("recoveryPasswordDescription".localized()) .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: .textPrimary) .padding(.bottom, Values.mediumSpacing) @@ -258,12 +252,8 @@ struct RecoveryPasswordScreen: View { let modal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( title: "recoveryPasswordHidePermanently".localized(), - body: .text( - "hide_recovery_password_modal_warning_1".localized() + - "\n\n" + - "hide_recovery_password_modal_warning_2".localized() - ), - confirmTitle: "continue_2".localized(), + body: .text("recoveryPasswordHidePermanentlyDescription1".localized()), + confirmTitle: "theContinue".localized(), confirmAccessibility: Accessibility( identifier: "Continue", label: "Continue" @@ -283,7 +273,7 @@ struct RecoveryPasswordScreen: View { info: ConfirmationModal.Info( title: "recoveryPasswordHidePermanently".localized(), body: .text("recoveryPasswordHidePermanentlyDescription2".localized()), - confirmTitle: "TXT_CANCEL_TITLE".localized(), + confirmTitle: "cancel".localized(), confirmAccessibility: Accessibility( identifier: "Cancel", label: "Cancel" diff --git a/Session/Settings/SeedModal.swift b/Session/Settings/SeedModal.swift index 8bef636bfd..56f1474fdf 100644 --- a/Session/Settings/SeedModal.swift +++ b/Session/Settings/SeedModal.swift @@ -27,7 +27,7 @@ final class SeedModal: Modal { private let titleLabel: UILabel = { let result: UILabel = UILabel() result.font = .boldSystemFont(ofSize: Values.mediumFontSize) - result.text = "modal_seed_title".localized() + result.text = "sessionRecoveryPassword".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.lineBreakMode = .byWordWrapping @@ -39,7 +39,7 @@ final class SeedModal: Modal { private let explanationLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.smallFontSize) - result.text = "modal_seed_explanation".localized() + result.text = "recoveryPasswordDescription".localized() result.themeTextColor = .textPrimary result.textAlignment = .center result.lineBreakMode = .byWordWrapping diff --git a/Session/Settings/SettingsViewModel.swift b/Session/Settings/SettingsViewModel.swift index eab23ed277..cb854f9aa7 100644 --- a/Session/Settings/SettingsViewModel.swift +++ b/Session/Settings/SettingsViewModel.swift @@ -157,7 +157,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl accessibilityIdentifier: "View QR code", action: { [weak self] in let viewController: SessionHostingViewController = SessionHostingViewController(rootView: QRCodeScreen()) - viewController.setNavBarTitle("vc_qr_code_title".localized()) + viewController.setNavBarTitle("qrCode".localized()) self?.transitionToScreen(viewController) } ) @@ -177,8 +177,8 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "vc_settings_display_name_missing_error".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "displayNameErrorDescription".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ), @@ -190,8 +190,8 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: "vc_settings_display_name_too_long_error".localized(), - cancelTitle: "BUTTON_OK".localized(), + title: "displayNameErrorDescriptionShorter".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ), @@ -215,7 +215,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl let hideRecoveryPasswordPermanently: Bool } - let title: String = "vc_settings_title".localized() + let title: String = "sessionSettings".localized() lazy var observation: TargetObservation = ObservationBuilder .databaseObservation(self) { [weak self, dependencies] db -> State in @@ -342,7 +342,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl return result }, - title: "vc_path_title".localized(), + title: "onionRoutingPath".localized(), onTap: { self?.transitionToScreen(PathVC()) } ), SessionCell.Info( @@ -351,7 +351,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_privacy")? .withRenderingMode(.alwaysTemplate) ), - title: "vc_settings_privacy_button_title".localized(), + title: "sessionPrivacy".localized(), onTap: { self?.transitionToScreen( SessionTableViewController(viewModel: PrivacySettingsViewModel()) @@ -364,7 +364,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_speaker")? .withRenderingMode(.alwaysTemplate) ), - title: "vc_settings_notifications_button_title".localized(), + title: "sessionNotifications".localized(), onTap: { self?.transitionToScreen( SessionTableViewController(viewModel: NotificationSettingsViewModel()) @@ -377,7 +377,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_msg")? .withRenderingMode(.alwaysTemplate) ), - title: "CONVERSATION_SETTINGS_TITLE".localized(), + title: "sessionConversations".localized(), onTap: { self?.transitionToScreen( SessionTableViewController(viewModel: ConversationSettingsViewModel()) @@ -390,7 +390,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_msg_req")? .withRenderingMode(.alwaysTemplate) ), - title: "MESSAGE_REQUESTS_TITLE".localized(), + title: "sessionMessageRequests".localized(), onTap: { self?.transitionToScreen( SessionTableViewController(viewModel: MessageRequestsViewModel()) @@ -403,7 +403,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_apperance")? .withRenderingMode(.alwaysTemplate) ), - title: "APPEARANCE_TITLE".localized(), + title: "sessionAppearance".localized(), onTap: { self?.transitionToScreen(AppearanceViewController()) } @@ -414,9 +414,13 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl UIImage(named: "icon_invite")? .withRenderingMode(.alwaysTemplate) ), - title: "vc_settings_invite_a_friend_button_title".localized(), + title: "sessionInviteAFriend".localized(), onTap: { - let invitation: String = "Hey, I've been using Session to chat with complete privacy and security. Come join me! Download it at https://getsession.org/. My Session ID is \(state.profile.id) !" + let invitation: String = "accountIdShare" + .put(key: "app_name", value: Constants.app_name) + .put(key: "account_id", value: state.profile.id) + .put(key: "session_download_url", value: Constants.session_download_url) + .localized() self?.transitionToScreen( UIActivityViewController( @@ -448,9 +452,9 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl } else { let targetViewController: UIViewController = ConfirmationModal( info: ConfirmationModal.Info( - title: "ALERT_ERROR_TITLE".localized(), - body: .text("LOAD_RECOVERY_PASSWORD_ERROR".localized()), - cancelTitle: "BUTTON_OK".localized(), + title: "theError".localized(), + body: .text("recoveryPasswordErrorLoad".localized()), + cancelTitle: "okay".localized(), cancelStyle: .alert_text ) ) @@ -458,35 +462,33 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl } } ) - ).appending( - contentsOf: [ - SessionCell.Info( - id: .help, - leftAccessory: .icon( - UIImage(named: "icon_help")? - .withRenderingMode(.alwaysTemplate) - ), - title: "HELP_TITLE".localized(), - onTap: { - self?.transitionToScreen( - SessionTableViewController(viewModel: HelpViewModel()) - ) - } + ).appending(contentsOf: [ + SessionCell.Info( + id: .help, + leftAccessory: .icon( + UIImage(named: "icon_help")? + .withRenderingMode(.alwaysTemplate) ), - SessionCell.Info( - id: .clearData, - leftAccessory: .icon( - UIImage(named: "icon_bin")? - .withRenderingMode(.alwaysTemplate) - ), - title: "vc_settings_clear_all_data_button_title".localized(), - styling: SessionCell.StyleInfo(tintColor: .danger), - onTap: { - self?.transitionToScreen(NukeDataModal(), transitionType: .present) - } - ) - ] - ) + title: "sessionHelp".localized(), + onTap: { + self?.transitionToScreen( + SessionTableViewController(viewModel: HelpViewModel()) + ) + } + ), + SessionCell.Info( + id: .clearData, + leftAccessory: .icon( + UIImage(named: "icon_bin")? + .withRenderingMode(.alwaysTemplate) + ), + title: "sessionClearData".localized(), + styling: SessionCell.StyleInfo(tintColor: .danger), + onTap: { + self?.transitionToScreen(NukeDataModal(), transitionType: .present) + } + ) + ]) ) ] } @@ -500,7 +502,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl let existingImageData: Data? = ProfileManager .profileAvatar(id: self.userSessionId) let editProfilePictureModalInfo: ConfirmationModal.Info = ConfirmationModal.Info( - title: "update_profile_modal_title".localized(), + title: "profileDisplayPictureSet".localized(), body: .image( placeholderData: UIImage(named: "profile_placeholder")?.pngData(), valueData: existingImageData, @@ -512,9 +514,9 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl ), onClick: { [weak self] in self?.showPhotoLibraryForAvatar() } ), - confirmTitle: "update_profile_modal_save".localized(), + confirmTitle: "save".localized(), confirmEnabled: false, - cancelTitle: "update_profile_modal_remove".localized(), + cancelTitle: "remove".localized(), cancelEnabled: (existingImageData != nil), hasCloseButton: true, dismissOnConfirm: false, @@ -605,31 +607,22 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl failure: { [weak self] error in DispatchQueue.main.async { modalActivityIndicator.dismiss { - let title: String = { - switch (displayPictureUpdate, error) { - case (.currentUserRemove, _): return "update_profile_modal_remove_error_title".localized() - case (_, .avatarUploadMaxFileSizeExceeded): - return "update_profile_modal_max_size_error_title".localized() - - default: return "update_profile_modal_error_title".localized() - } - }() - let message: String? = { + let message: String = { switch (displayPictureUpdate, error) { - case (.currentUserRemove, _): return nil + case (.currentUserRemove, _): return "profileDisplayPictureRemoveError".localized() case (_, .avatarUploadMaxFileSizeExceeded): - return "update_profile_modal_max_size_error_message".localized() + return "profileDisplayPictureSizeError".localized() - default: return "update_profile_modal_error_message".localized() + default: return "errorConnection".localized() } }() self?.transitionToScreen( ConfirmationModal( info: ConfirmationModal.Info( - title: title, - body: (message.map { .text($0) } ?? .none), - cancelTitle: "BUTTON_OK".localized(), + title: "profileErrorUpdate".localized(), + body: .text(message), + cancelTitle: "okay".localized(), cancelStyle: .alert_text, dismissType: .single ) diff --git a/Session/Settings/Views/ThemePreviewView.swift b/Session/Settings/Views/ThemePreviewView.swift index bd7b49778e..9ad812c9b1 100644 --- a/Session/Settings/Views/ThemePreviewView.swift +++ b/Session/Settings/Views/ThemePreviewView.swift @@ -13,12 +13,12 @@ public class ThemePreviewView: UIView { result.update( with: MessageViewModel( variant: .standardIncoming, - body: "APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_MESSAGE".localized(), + body: "appearancePreview2".localized(), quote: Quote( interactionId: -1, authorId: "", timestampMs: 0, - body: "APPEARANCE_PRIMARY_COLOR_PREVIEW_INC_QUOTE".localized(), + body: "appearancePreview1".localized(), attachmentId: nil ), cellType: .textOnlyMessage @@ -38,7 +38,7 @@ public class ThemePreviewView: UIView { result.update( with: MessageViewModel( variant: .standardOutgoing, - body: "APPEARANCE_PRIMARY_COLOR_PREVIEW_OUT_MESSAGE".localized(), + body: "appearancePreview3".localized(), cellType: .textOnlyMessage, isLast: false // To hide the status indicator ), diff --git a/Session/Shared/FullConversationCell.swift b/Session/Shared/FullConversationCell.swift index 227493c187..151e6ae52d 100644 --- a/Session/Shared/FullConversationCell.swift +++ b/Session/Shared/FullConversationCell.swift @@ -7,7 +7,7 @@ import SessionMessagingKit import SessionUtilitiesKit public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticCell { - public static let mutePrefix: String = "\u{e067} " + public static let mutePrefix: String = "\u{e067} " // stringlint:disable public static let unreadCountViewSize: CGFloat = 20 private static let statusIndicatorSize: CGFloat = 14 @@ -105,7 +105,7 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC let result: UILabel = UILabel() result.font = .boldSystemFont(ofSize: Values.verySmallFontSize) result.themeTextColor = .conversationButton_unreadBubbleText - result.text = "@" + result.text = "@" // stringlint:disable result.textAlignment = .center return result @@ -427,7 +427,7 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC unreadImageView.isHidden = (!unreadCountView.isHidden || !threadIsUnread) unreadCountLabel.text = (unreadCount <= 0 ? "" : - (unreadCount < 10000 ? "\(unreadCount)" : "9999+") + (unreadCount < 10000 ? "\(unreadCount)" : "9999+") // stringlint:disable ) unreadCountLabel.font = .boldSystemFont( ofSize: (unreadCount < 10000 ? Values.verySmallFontSize : 8) @@ -493,7 +493,8 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC let stateInfo = cellViewModel.interactionState?.statusIconInfo( variant: (cellViewModel.interactionVariant ?? .standardOutgoing), - hasAtLeastOneReadReceipt: (cellViewModel.interactionHasAtLeastOneReadReceipt ?? false) + hasAtLeastOneReadReceipt: (cellViewModel.interactionHasAtLeastOneReadReceipt ?? false), + hasAttachments: ((cellViewModel.interactionAttachmentCount ?? 0) > 0) ) statusIndicatorView.image = stateInfo?.image statusIndicatorView.themeTintColor = stateInfo?.themeTintColor @@ -552,7 +553,7 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC if let hasUnread: Bool = hasUnread { if hasUnread { unreadCountView.isHidden = false - unreadCountLabel.text = "1" + unreadCountLabel.text = "1" // stringlint:disable unreadCountLabel.font = .boldSystemFont(ofSize: Values.verySmallFontSize) accentLineView.alpha = 1 } else { @@ -600,18 +601,25 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC if (cellViewModel.threadVariant == .legacyGroup || cellViewModel.threadVariant == .group || cellViewModel.threadVariant == .community) && - (cellViewModel.interactionVariant?.isGroupControlMessage == false) + (cellViewModel.interactionVariant?.isInfoMessage == false) { let authorName: String = cellViewModel.authorName(for: cellViewModel.threadVariant) result.append(NSAttributedString( - string: "\(authorName): ", + string: "messageSnippetGroup" + .put(key: "author", value: authorName) + .put(key: "message_snippet", value: "") + .localized(), attributes: [ .foregroundColor: textColor ] )) } let previewText: String = { - if cellViewModel.interactionVariant == .infoClosedGroupCurrentUserErrorLeaving { return "group_leave_error".localized() } + if cellViewModel.interactionVariant == .infoClosedGroupCurrentUserErrorLeaving { + return "groupLeaveErrorFailed" + .put(key: "group_name", value: cellViewModel.displayName) + .localized() + } return Interaction.previewText( variant: (cellViewModel.interactionVariant ?? .standardIncoming), body: cellViewModel.interactionBody, @@ -647,12 +655,19 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC fontSize: CGFloat, textColor: UIColor ) -> NSAttributedString { - guard !content.isEmpty, content != "NOTE_TO_SELF".localized() else { + guard !content.isEmpty, content != "noteToSelf".localized() else { + if let authorName: String = authorName, !authorName.isEmpty { + return NSMutableAttributedString( + string: "messageSnippetGroup" + .put(key: "author", value: authorName) + .put(key: "message_snippet", value: content) + .localized(), + attributes: [ .foregroundColor: textColor ] + ) + } + return NSMutableAttributedString( - string: (authorName != nil && authorName?.isEmpty != true ? - "\(authorName ?? ""): \(content)" : - content - ), + string: content, attributes: [ .foregroundColor: textColor ] ) } @@ -692,8 +707,8 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC normalizedSnippet .ranges( of: (Singleton.hasAppContext && Singleton.appContext.isRTL ? - "(\(part.lowercased()))(^|[^a-zA-Z0-9])" : - "(^|[^a-zA-Z0-9])(\(part.lowercased()))" + "(\(part.lowercased()))(^|[^a-zA-Z0-9])" : // stringlint:disable + "(^|[^a-zA-Z0-9])(\(part.lowercased()))" // stringlint:disable ), options: [.regularExpression] ) @@ -728,7 +743,10 @@ public final class FullConversationCell: UITableViewCell, SwipeActionOptimisticC guard !authorName.isEmpty else { return nil } let authorPrefix: NSAttributedString = NSAttributedString( - string: "\(authorName): ", + string: "messageSnippetGroup" + .put(key: "author", value: authorName) + .put(key: "message_snippet", value: "") + .localized(), attributes: [ .foregroundColor: textColor ] ) diff --git a/Session/Shared/LoadingViewController.swift b/Session/Shared/LoadingViewController.swift index 915a9a857a..fea5f1a922 100644 --- a/Session/Shared/LoadingViewController.swift +++ b/Session/Shared/LoadingViewController.swift @@ -46,7 +46,7 @@ public class LoadingViewController: UIViewController { private var topLabel: UILabel = { let result: UILabel = UILabel() result.font = UIFont.systemFont(ofSize: Values.mediumFontSize) - result.text = "DATABASE_VIEW_OVERLAY_TITLE".localized() + result.text = "databaseOptimizing".localized() result.themeTextColorForced = .theme(.classicDark, color: .textPrimary) result.textAlignment = .center result.numberOfLines = 0 @@ -58,7 +58,7 @@ public class LoadingViewController: UIViewController { private var bottomLabel: UILabel = { let result: UILabel = UILabel() result.font = UIFont.systemFont(ofSize: Values.verySmallFontSize) - result.text = "DATABASE_VIEW_OVERLAY_SUBTITLE".localized() + result.text = "waitFewMinutes".localized() result.themeTextColorForced = .theme(.classicDark, color: .textPrimary) result.textAlignment = .center result.numberOfLines = 0 diff --git a/Session/Shared/ScanQRCodeScreen.swift b/Session/Shared/ScanQRCodeScreen.swift index a2c6510e83..767e13399e 100644 --- a/Session/Shared/ScanQRCodeScreen.swift +++ b/Session/Shared/ScanQRCodeScreen.swift @@ -3,6 +3,7 @@ import SwiftUI import SessionUIKit import AVFoundation +import SessionUtilitiesKit struct ScanQRCodeScreen: View { @Binding var result: String @@ -41,15 +42,19 @@ struct ScanQRCodeScreen: View { ) { Spacer() - Text("vc_scan_qr_code_camera_access_explanation".localized()) - .font(.system(size: Values.smallFontSize)) - .foregroundColor(themeColor: .textPrimary) - .multilineTextAlignment(.center) + Text( + "cameraGrantAccessQr" + .put(key: "app_name", value: Constants.app_name) + .localized() + ) + .font(.system(size: Values.smallFontSize)) + .foregroundColor(themeColor: .textPrimary) + .multilineTextAlignment(.center) Button { requestCameraAccess() } label: { - Text("continue_2".localized()) + Text("theContinue".localized()) .bold() .font(.system(size: Values.mediumFontSize)) .foregroundColor(themeColor: .primary) diff --git a/Session/Shared/ScanQRCodeWrapperVC.swift b/Session/Shared/ScanQRCodeWrapperVC.swift index 25528cd39c..5fea4f860b 100644 --- a/Session/Shared/ScanQRCodeWrapperVC.swift +++ b/Session/Shared/ScanQRCodeWrapperVC.swift @@ -7,29 +7,14 @@ final class ScanQRCodeWrapperVC: BaseVC { var delegate: (UIViewController & QRScannerDelegate)? = nil var isPresentedModally = false - private let message: String? private let scanQRCodeVC = QRCodeScanningViewController() // MARK: - Lifecycle - init(message: String?) { - self.message = message - - super.init(nibName: nil, bundle: nil) - } - - required init?(coder: NSCoder) { - preconditionFailure("Use init(message:) instead.") - } - - override init(nibName: String?, bundle: Bundle?) { - preconditionFailure("Use init(message:) instead.") - } - override func viewDidLoad() { super.viewDidLoad() - title = "Scan QR Code" + title = "qrScan".localized() // Set up navigation bar if needed if isPresentedModally { @@ -40,37 +25,7 @@ final class ScanQRCodeWrapperVC: BaseVC { scanQRCodeVC.scanDelegate = delegate let scanQRCodeVCView = scanQRCodeVC.view! view.addSubview(scanQRCodeVCView) - scanQRCodeVCView.pin(.top, to: .top, of: view) - scanQRCodeVCView.pin(.leading, to: .leading, of: view) - scanQRCodeVCView.pin(.trailing, to: .trailing, of: view) - - if let message = message { - scanQRCodeVCView.set(.height, lessThanOrEqualTo: UIScreen.main.bounds.width) - - // Set up bottom view - let bottomView = UIView() - view.addSubview(bottomView) - bottomView.pin(.top, to: .bottom, of: scanQRCodeVCView) - bottomView.pin(.leading, to: .leading, of: view) - bottomView.pin(.trailing, to: .trailing, of: view) - bottomView.pin(.bottom, to: .bottom, of: view) - - // Set up explanation label - let explanationLabel: UILabel = UILabel() - explanationLabel.font = .systemFont(ofSize: Values.smallFontSize) - explanationLabel.text = message - explanationLabel.themeTextColor = .textPrimary - explanationLabel.textAlignment = .center - explanationLabel.lineBreakMode = .byWordWrapping - explanationLabel.numberOfLines = 0 - bottomView.addSubview(explanationLabel) - - explanationLabel.set(.width, to: .width, of: bottomView, withOffset: 32) - explanationLabel.set(.height, to: .height, of: bottomView, withOffset: 32) - } - else { - scanQRCodeVCView.pin(.bottom, to: .bottom, of: view) - } + scanQRCodeVCView.pin(to: view) } override func viewDidAppear(_ animated: Bool) { diff --git a/Session/Shared/ScreenLockUI.swift b/Session/Shared/ScreenLockUI.swift index 61b0b55226..27003c2891 100644 --- a/Session/Shared/ScreenLockUI.swift +++ b/Session/Shared/ScreenLockUI.swift @@ -271,9 +271,9 @@ class ScreenLockUI { let modal: ConfirmationModal = ConfirmationModal( targetView: screenBlockingWindow.rootViewController?.view, info: ConfirmationModal.Info( - title: "SCREEN_LOCK_UNLOCK_FAILED".localized(), + title: "authenticateFailed".localized(), body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text, afterClosed: { [weak self] in self?.ensureUI() } // After the alert, update the UI ) diff --git a/Session/Shared/SessionCarouselView+SwiftUI.swift b/Session/Shared/SessionCarouselView+SwiftUI.swift index 9afec4950d..5d89ee6fe6 100644 --- a/Session/Shared/SessionCarouselView+SwiftUI.swift +++ b/Session/Shared/SessionCarouselView+SwiftUI.swift @@ -202,11 +202,7 @@ struct SessionCarouselView_SwiftUI_Previews: PreviewProvider { @State static var index = 1 static var previews: some View { ZStack { - if #available(iOS 14.0, *) { - Color.black.ignoresSafeArea() - } else { - Color.black - } + Color.black.ignoresSafeArea() SessionCarouselView_SwiftUI( index: $index, diff --git a/Session/Shared/SessionHostingViewController.swift b/Session/Shared/SessionHostingViewController.swift index dc0595deb2..5e16426fe7 100644 --- a/Session/Shared/SessionHostingViewController.swift +++ b/Session/Shared/SessionHostingViewController.swift @@ -160,7 +160,11 @@ public class SessionHostingViewController: UIHostingController: UIHostingController: BaseVC, UITableViewDataSource, UITa result.registerHeaderFooterView(view: SessionFooterView.self) result.dataSource = self result.delegate = self - - if #available(iOS 15.0, *) { - result.sectionHeaderTopPadding = 0 - } - + result.sectionHeaderTopPadding = 0 + return result }() @@ -214,7 +211,7 @@ class SessionTableViewController: BaseVC, UITableViewDataSource, UITa receiveCompletion: { [weak self] result in switch result { case .failure(let error): - let title: String = (self?.viewModel.title ?? "unknown") + let title: String = (self?.viewModel.title ?? "unknown".localized()) // If we got an error then try to restart the stream once, otherwise log the error guard self?.dataStreamJustFailed == false else { diff --git a/Session/Shared/Types/NavigatableState.swift b/Session/Shared/Types/NavigatableState.swift index 7a55b3ec74..96fc97bc90 100644 --- a/Session/Shared/Types/NavigatableState.swift +++ b/Session/Shared/Types/NavigatableState.swift @@ -13,8 +13,8 @@ public protocol NavigatableStateHolder { } public extension NavigatableStateHolder { - func showToast(text: String, backgroundColor: ThemeValue = .backgroundPrimary) { - navigatableState._showToast.send((text, backgroundColor)) + func showToast(text: String, backgroundColor: ThemeValue = .backgroundPrimary, insect: CGFloat = Values.largeSpacing) { + navigatableState._showToast.send((text, backgroundColor, insect)) } func dismissScreen(type: DismissType = .auto) { @@ -29,13 +29,13 @@ public extension NavigatableStateHolder { // MARK: - NavigatableState public struct NavigatableState { - let showToast: AnyPublisher<(String, ThemeValue), Never> + let showToast: AnyPublisher<(String, ThemeValue, CGFloat), Never> let transitionToScreen: AnyPublisher<(UIViewController, TransitionType), Never> let dismissScreen: AnyPublisher // MARK: - Internal Variables - fileprivate let _showToast: PassthroughSubject<(String, ThemeValue), Never> = PassthroughSubject() + fileprivate let _showToast: PassthroughSubject<(String, ThemeValue, CGFloat), Never> = PassthroughSubject() fileprivate let _transitionToScreen: PassthroughSubject<(UIViewController, TransitionType), Never> = PassthroughSubject() fileprivate let _dismissScreen: PassthroughSubject = PassthroughSubject() @@ -55,11 +55,11 @@ public struct NavigatableState { ) { self.showToast .receive(on: DispatchQueue.main) - .sink { [weak viewController] text, color in + .sink { [weak viewController] text, color, insect in guard let view: UIView = viewController?.view else { return } let toastController: ToastController = ToastController(text: text, background: color) - toastController.presentToastView(fromBottomOfView: view, inset: Values.largeSpacing) + toastController.presentToastView(fromBottomOfView: view, inset: insect) } .store(in: &disposables) diff --git a/Session/Shared/Views/SessionCell.swift b/Session/Shared/Views/SessionCell.swift index e73ac64462..aa70661f84 100644 --- a/Session/Shared/Views/SessionCell.swift +++ b/Session/Shared/Views/SessionCell.swift @@ -298,7 +298,6 @@ public class SessionCell: UITableViewCell { leftAccessoryView.alpha = 1 leftAccessoryFillConstraint.isActive = false titleLabel.text = "" - titleLabel.textAlignment = .left titleLabel.themeTextColor = .textPrimary titleLabel.alpha = 1 titleTextField.text = "" diff --git a/Session/Utilities/Date+Utilities.swift b/Session/Utilities/Date+Utilities.swift index 89753075d4..5e69dad41f 100644 --- a/Session/Utilities/Date+Utilities.swift +++ b/Session/Utilities/Date+Utilities.swift @@ -1,5 +1,7 @@ // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. +// stringlint:disable + import Foundation import SessionUtilitiesKit @@ -25,12 +27,7 @@ public extension Date { return Date.thisWeekFormatter.string(from: self) } - guard Calendar.current.isDate(self, equalTo: dateNow, toGranularity: .minute) else { - // Today formatter: 8:32 am - return Date.todayFormatter.string(from: self) - } - - return "DATE_NOW".localized() + return Date.todayFormatter.string(from: self) } var fromattedForMessageInfo: String { diff --git a/Session/Utilities/MentionUtilities.swift b/Session/Utilities/MentionUtilities.swift index 166157c589..9ee5347be4 100644 --- a/Session/Utilities/MentionUtilities.swift +++ b/Session/Utilities/MentionUtilities.swift @@ -34,7 +34,9 @@ public enum MentionUtilities { theme: .classicDark, primaryColor: Theme.PrimaryColor.green, attributes: [:] - ).string + ) + .string + .deformatted() } public static func highlightMentions( @@ -50,7 +52,7 @@ public enum MentionUtilities { attributes: [NSAttributedString.Key: Any] ) -> NSAttributedString { guard - let regex: NSRegularExpression = try? NSRegularExpression(pattern: "@[0-9a-fA-F]{66}", options: []) + let regex: NSRegularExpression = try? NSRegularExpression(pattern: "@[0-9a-fA-F]{66}", options: []) // stringlint:disable else { return NSAttributedString(string: string) } @@ -77,7 +79,7 @@ public enum MentionUtilities { let isCurrentUser: Bool = currentUserPublicKeys.contains(publicKey) guard let targetString: String = { - guard !isCurrentUser else { return "MEDIA_GALLERY_SENDER_NAME_YOU".localized() } + guard !isCurrentUser else { return "you".localized() } guard let displayName: String = Profile.displayNameNoFallback(id: publicKey, threadVariant: threadVariant) else { lastMatchEnd = (match.range.location + match.range.length) return nil @@ -87,7 +89,7 @@ public enum MentionUtilities { }() else { continue } - string = string.replacingCharacters(in: range, with: "@\(targetString)") + string = string.replacingCharacters(in: range, with: "@\(targetString)") // stringlint:disable lastMatchEnd = (match.range.location + targetString.utf16.count) mentions.append(( diff --git a/Session/Utilities/Permissions.swift b/Session/Utilities/Permissions.swift index 9557288776..7a77a20b86 100644 --- a/Session/Utilities/Permissions.swift +++ b/Session/Utilities/Permissions.swift @@ -26,14 +26,13 @@ public enum Permissions { let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "Session", + title: "permissionsRequired".localized(), body: .text( - String( - format: "modal_permission_explanation".localized(), - "modal_permission_camera".localized() - ) + "cameraGrantAccessDenied" + .put(key: "app_name", value: Constants.app_name) + .localized() ), - confirmTitle: "modal_permission_settings_title".localized(), + confirmTitle: "sessionSettings".localized(), dismissOnConfirm: false ) { [weak presentingViewController] _ in presentingViewController?.dismiss(animated: true, completion: { @@ -69,14 +68,13 @@ public enum Permissions { let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "Session", + title: "permissionsRequired".localized(), body: .text( - String( - format: "modal_permission_explanation".localized(), - "modal_permission_microphone".localized() - ) + "permissionsMicrophoneAccessRequiredIos" + .put(key: "app_name", value: Constants.app_name) + .localized() ), - confirmTitle: "modal_permission_settings_title".localized(), + confirmTitle: "sessionSettings".localized(), dismissOnConfirm: false, onConfirm: { [weak presentingViewController] _ in presentingViewController?.dismiss(animated: true, completion: { @@ -101,36 +99,23 @@ public enum Permissions { presentingViewController: UIViewController? = nil, onAuthorized: @escaping () -> Void ) { - let authorizationStatus: PHAuthorizationStatus - if #available(iOS 14, *) { - let targetPermission: PHAccessLevel = (isSavingMedia ? .addOnly : .readWrite) - authorizationStatus = PHPhotoLibrary.authorizationStatus(for: targetPermission) - if authorizationStatus == .notDetermined { - // When the user chooses to select photos (which is the .limit status), - // the PHPhotoUI will present the picker view on the top of the front view. - // Since we have the ScreenLockUI showing when we request premissions, - // the picker view will be presented on the top of the ScreenLockUI. - // However, the ScreenLockUI will dismiss with the permission request alert view, so - // the picker view then will dismiss, too. The selection process cannot be finished - // this way. So we add a flag (isRequestingPermission) to prevent the ScreenLockUI - // from showing when we request the photo library permission. - SessionEnvironment.shared?.isRequestingPermission = true - - PHPhotoLibrary.requestAuthorization(for: targetPermission) { status in - SessionEnvironment.shared?.isRequestingPermission = false - if [ PHAuthorizationStatus.authorized, PHAuthorizationStatus.limited ].contains(status) { - onAuthorized() - } - } - } - } - else { - authorizationStatus = PHPhotoLibrary.authorizationStatus() - if authorizationStatus == .notDetermined { - PHPhotoLibrary.requestAuthorization { status in - if status == .authorized { - onAuthorized() - } + let targetPermission: PHAccessLevel = (isSavingMedia ? .addOnly : .readWrite) + let authorizationStatus = PHPhotoLibrary.authorizationStatus(for: .readWrite) + if authorizationStatus == .notDetermined { + // When the user chooses to select photos (which is the .limit status), + // the PHPhotoUI will present the picker view on the top of the front view. + // Since we have the ScreenLockUI showing when we request premissions, + // the picker view will be presented on the top of the ScreenLockUI. + // However, the ScreenLockUI will dismiss with the permission request alert view, so + // the picker view then will dismiss, too. The selection process cannot be finished + // this way. So we add a flag (isRequestingPermission) to prevent the ScreenLockUI + // from showing when we request the photo library permission. + SessionEnvironment.shared?.isRequestingPermission = true + + PHPhotoLibrary.requestAuthorization(for: targetPermission) { status in + SessionEnvironment.shared?.isRequestingPermission = false + if [ PHAuthorizationStatus.authorized, PHAuthorizationStatus.limited ].contains(status) { + onAuthorized() } } } @@ -145,14 +130,13 @@ public enum Permissions { let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "Session", + title: "permissionsRequired".localized(), body: .text( - String( - format: "modal_permission_explanation".localized(), - "modal_permission_library".localized() - ) + "permissionsLibrary" + .put(key: "app_name", value: Constants.app_name) + .localized() ), - confirmTitle: "modal_permission_settings_title".localized(), + confirmTitle: "sessionSettings".localized(), dismissOnConfirm: false ) { [weak presentingViewController] _ in presentingViewController?.dismiss(animated: true, completion: { diff --git a/Session/Utilities/QRCode.swift b/Session/Utilities/QRCode.swift index eec5d452c4..c7e26b09ea 100644 --- a/Session/Utilities/QRCode.swift +++ b/Session/Utilities/QRCode.swift @@ -10,12 +10,12 @@ enum QRCode { static func generate(for string: String, hasBackground: Bool) -> UIImage { let data = string.data(using: .utf8) var qrCodeAsCIImage: CIImage - let filter1 = CIFilter(name: "CIQRCodeGenerator")! + let filter1 = CIFilter(name: "CIQRCodeGenerator")! // stringlint:disable filter1.setValue(data, forKey: "inputMessage") qrCodeAsCIImage = filter1.outputImage! guard !hasBackground else { - let filter2 = CIFilter(name: "CIFalseColor")! + let filter2 = CIFilter(name: "CIFalseColor")! // stringlint:disable filter2.setValue(qrCodeAsCIImage, forKey: "inputImage") filter2.setValue(CIColor(color: .black), forKey: "inputColor0") filter2.setValue(CIColor(color: .white), forKey: "inputColor1") @@ -25,10 +25,10 @@ enum QRCode { return UIImage(ciImage: scaledQRCodeAsCIImage) } - let filter2 = CIFilter(name: "CIColorInvert")! + let filter2 = CIFilter(name: "CIColorInvert")! // stringlint:disable filter2.setValue(qrCodeAsCIImage, forKey: "inputImage") qrCodeAsCIImage = filter2.outputImage! - let filter3 = CIFilter(name: "CIMaskToAlpha")! + let filter3 = CIFilter(name: "CIMaskToAlpha")! // stringlint:disable filter3.setValue(qrCodeAsCIImage, forKey: "inputImage") qrCodeAsCIImage = filter3.outputImage! diff --git a/Session/Utilities/UIContextualAction+Utilities.swift b/Session/Utilities/UIContextualAction+Utilities.swift index aaa7f9ae29..eeffddd462 100644 --- a/Session/Utilities/UIContextualAction+Utilities.swift +++ b/Session/Utilities/UIContextualAction+Utilities.swift @@ -36,6 +36,7 @@ public extension UIContextualAction { case block case leave case delete + case clear } static func configuration(for actions: [UIContextualAction]?) -> UISwipeActionsConfiguration? { @@ -48,7 +49,8 @@ public extension UIContextualAction { indexPath: IndexPath, tableView: UITableView, threadViewModel: SessionThreadViewModel, - viewController: UIViewController? + viewController: UIViewController?, + navigatableStateHolder: NavigatableStateHolder? ) -> [UIContextualAction]? { guard !actions.isEmpty else { return nil } @@ -84,8 +86,8 @@ public extension UIContextualAction { return UIContextualAction( title: (isUnread ? - "MARK_AS_READ".localized() : - "MARK_AS_UNREAD".localized() + "messageMarkRead".localized() : + "messageMarkUnread".localized() ), icon: (isUnread ? UIImage(systemName: "envelope.open") : @@ -112,12 +114,56 @@ public extension UIContextualAction { } completionHandler(true) } + + // MARK: -- clear + + case .clear: + return UIContextualAction( + title: "clear".localized(), + icon: UIImage(named: "ic_bin"), + themeTintColor: .white, + themeBackgroundColor: themeBackgroundColor, + side: side, + actionIndex: targetIndex, + indexPath: indexPath, + tableView: tableView + ) { _, _, completionHandler in + let confirmationModal: ConfirmationModal = ConfirmationModal( + info: ConfirmationModal.Info( + title: "clearMessages".localized(), + body: .text("clearMessagesNoteToSelfDescription".localized()), + confirmTitle: "clear".localized(), + confirmAccessibility: Accessibility( + identifier: "Clear" + ), + confirmStyle: .danger, + cancelStyle: .alert_text, + dismissOnConfirm: true, + onConfirm: { _ in + Storage.shared.writeAsync { db in + try SessionThread.deleteOrLeave( + db, + threadId: threadViewModel.threadId, + threadVariant: threadViewModel.threadVariant, + groupLeaveType: .silent, + calledFromConfigHandling: false + ) + } + + completionHandler(true) + }, + afterClosed: { completionHandler(false) } + ) + ) + + viewController?.present(confirmationModal, animated: true, completion: nil) + } // MARK: -- hide case .hide: return UIContextualAction( - title: "TXT_HIDE_TITLE".localized(), + title: "hide".localized(), icon: UIImage(systemName: "eye.slash"), themeTintColor: .white, themeBackgroundColor: themeBackgroundColor, @@ -132,26 +178,11 @@ public extension UIContextualAction { completionHandler(true) default: - let confirmationModalExplanation: NSAttributedString = { - let message = String( - format: "hide_note_to_self_confirmation_alert_message".localized(), - threadViewModel.displayName - ) - - return NSAttributedString(string: message) - .adding( - attributes: [ - .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) - ], - range: (message as NSString).range(of: threadViewModel.displayName) - ) - }() - let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "hide_note_to_self_confirmation_alert_title".localized(), - body: .attributedText(confirmationModalExplanation), - confirmTitle: "TXT_HIDE_TITLE".localized(), + title: "noteToSelfHide".localized(), + body: .text("noteToSelfHideDescription".localized()), + confirmTitle: "hide".localized(), confirmAccessibility: Accessibility( identifier: "Hide" ), @@ -184,8 +215,8 @@ public extension UIContextualAction { case .pin: return UIContextualAction( title: (threadViewModel.threadPinnedPriority > 0 ? - "UNPIN_BUTTON_TEXT".localized() : - "PIN_BUTTON_TEXT".localized() + "pinUnpin".localized() : + "pin".localized() ), icon: (threadViewModel.threadPinnedPriority > 0 ? UIImage(systemName: "pin.slash") : @@ -223,8 +254,8 @@ public extension UIContextualAction { case .mute: return UIContextualAction( title: (threadViewModel.threadMutedUntilTimestamp == nil ? - "mute_button_text".localized() : - "unmute_button_text".localized() + "notificationsMute".localized() : + "notificationsMuteUnmute".localized() ), icon: (threadViewModel.threadMutedUntilTimestamp == nil ? UIImage(systemName: "speaker.slash") : @@ -273,8 +304,8 @@ public extension UIContextualAction { case .block: return UIContextualAction( title: (threadViewModel.threadIsBlocked == true ? - "BLOCK_LIST_UNBLOCK_BUTTON".localized() : - "BLOCK_LIST_BLOCK_BUTTON".localized() + "blockUnblock".localized() : + "block".localized() ), icon: UIImage(named: "table_ic_block"), iconHeight: Values.mediumFontSize, @@ -337,11 +368,14 @@ public extension UIContextualAction { case true: let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( - title: "MESSAGE_REQUESTS_BLOCK_CONFIRMATION_ACTON".localized(), - confirmTitle: "BLOCK_LIST_BLOCK_BUTTON".localized(), - confirmAccessibility: Accessibility( - identifier: "Block" + title: "block".localized(), + body: .attributedText( + "blockDescription" + .put(key: "name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .systemFont(ofSize: Values.smallFontSize)) ), + confirmTitle: "block".localized(), + confirmAccessibility: Accessibility(identifier: "Confirm block"), confirmStyle: .danger, cancelStyle: .alert_text, dismissOnConfirm: true, @@ -360,7 +394,7 @@ public extension UIContextualAction { case .leave: return UIContextualAction( - title: "LEAVE_BUTTON_TITLE".localized(), + title: "leave".localized(), icon: UIImage(systemName: "rectangle.portrait.and.arrow.right"), iconHeight: Values.mediumFontSize, themeTintColor: .white, @@ -373,36 +407,31 @@ public extension UIContextualAction { let confirmationModalTitle: String = { switch threadViewModel.threadVariant { case .legacyGroup, .group: - return "leave_group_confirmation_alert_title".localized() + return "groupLeave".localized() - default: return "leave_community_confirmation_alert_title".localized() + default: return "communityLeave".localized() } }() let confirmationModalExplanation: NSAttributedString = { - if threadViewModel.currentUserIsClosedGroupAdmin == true { - return NSAttributedString(string: "admin_group_leave_warning".localized()) + switch (threadViewModel.threadVariant, threadViewModel.currentUserIsClosedGroupAdmin) { + case (.legacyGroup, true), (.group, true): + return "groupDeleteDescription" + .put(key: "group_name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) + + default: + return "groupLeaveDescription" + .put(key: "group_name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) } - - let mutableAttributedString = NSMutableAttributedString( - string: String( - format: "leave_community_confirmation_alert_message".localized(), - threadViewModel.displayName - ) - ) - mutableAttributedString.addAttribute( - .font, - value: UIFont.boldSystemFont(ofSize: Values.smallFontSize), - range: (mutableAttributedString.string as NSString).range(of: threadViewModel.displayName) - ) - return mutableAttributedString }() let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( title: confirmationModalTitle, body: .attributedText(confirmationModalExplanation), - confirmTitle: "LEAVE_BUTTON_TITLE".localized(), + confirmTitle: "leave".localized(), confirmAccessibility: Accessibility( identifier: "Leave" ), @@ -411,13 +440,36 @@ public extension UIContextualAction { dismissOnConfirm: true, onConfirm: { _ in Storage.shared.writeAsync { db in - try SessionThread.deleteOrLeave( - db, - threadId: threadViewModel.threadId, - threadVariant: threadViewModel.threadVariant, - groupLeaveType: .standard, - calledFromConfigHandling: false - ) + do { + try SessionThread.deleteOrLeave( + db, + threadId: threadViewModel.threadId, + threadVariant: threadViewModel.threadVariant, + groupLeaveType: .standard, + calledFromConfigHandling: false + ) + } catch { + DispatchQueue.main.async { + let toastBody: String = { + switch threadViewModel.threadVariant { + case .legacyGroup, .group: + return "groupLeaveErrorFailed" + .put(key: "group_name", value: threadViewModel.displayName) + .localized() + + default: + return "communityLeaveError" + .put(key: "community_name", value: threadViewModel.displayName) + .localized() + } + }() + navigatableStateHolder?.showToast( + text: toastBody, + backgroundColor: .backgroundSecondary + ) + } + } + } completionHandler(true) @@ -433,9 +485,8 @@ public extension UIContextualAction { case .delete: return UIContextualAction( - title: "TXT_DELETE_TITLE".localized(), - icon: UIImage(named: "icon_bin"), - iconHeight: Values.mediumFontSize, + title: "delete".localized(), + icon: UIImage(named: "ic_bin"), themeTintColor: .white, themeBackgroundColor: themeBackgroundColor, side: side, @@ -446,60 +497,47 @@ public extension UIContextualAction { let isMessageRequest: Bool = (threadViewModel.threadIsMessageRequest == true) let confirmationModalTitle: String = { switch (threadViewModel.threadVariant, isMessageRequest) { - case (_, true): return "TXT_DELETE_TITLE".localized() + case (_, true): return "delete".localized() case (.contact, _): - return "delete_conversation_confirmation_alert_title".localized() + return "conversationsDelete".localized() case (.legacyGroup, _), (.group, _): - return "delete_group_confirmation_alert_title".localized() + return "groupDelete".localized() - case (.community, _): return "TXT_DELETE_TITLE".localized() + case (.community, _): return "delete".localized() } }() let confirmationModalExplanation: NSAttributedString = { guard !isMessageRequest else { return NSAttributedString( - string: "MESSAGE_REQUESTS_DELETE_CONFIRMATION_ACTON".localized() + string: "messageRequestsDelete".localized() ) } + guard threadViewModel.currentUserIsClosedGroupAdmin == false else { - return NSAttributedString( - string: "admin_group_leave_warning".localized() - ) + return "groupDeleteDescription" + .put(key: "group_name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) } - let message = String( - format: { - switch threadViewModel.threadVariant { - case .contact: - return - "delete_conversation_confirmation_alert_message".localized() - - case .legacyGroup, .group: - return - "delete_group_confirmation_alert_message".localized() - - case .community: - return "leave_community_confirmation_alert_message".localized() - } - }(), - threadViewModel.displayName - ) - - return NSAttributedString(string: message) - .adding( - attributes: [ - .font: UIFont.boldSystemFont(ofSize: Values.smallFontSize) - ], - range: (message as NSString).range(of: threadViewModel.displayName) - ) + switch threadViewModel.threadVariant { + case .contact: + return "conversationsDeleteDescription" + .put(key: "name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) + + default: + return "groupLeaveDescription" + .put(key: "group_name", value: threadViewModel.displayName) + .localizedFormatted(baseFont: .boldSystemFont(ofSize: Values.smallFontSize)) + } }() let confirmationModal: ConfirmationModal = ConfirmationModal( info: ConfirmationModal.Info( title: confirmationModalTitle, body: .attributedText(confirmationModalExplanation), - confirmTitle: "TXT_DELETE_TITLE".localized(), + confirmTitle: "delete".localized(), confirmAccessibility: Accessibility( identifier: "Confirm delete" ), diff --git a/SessionMessagingKit/Database/Models/Attachment.swift b/SessionMessagingKit/Database/Models/Attachment.swift index d2dd20001f..c7fa8f9b64 100644 --- a/SessionMessagingKit/Database/Models/Attachment.swift +++ b/SessionMessagingKit/Database/Models/Attachment.swift @@ -257,7 +257,11 @@ extension Attachment: CustomStringConvertible { public static func description(for descriptionInfo: DescriptionInfo, count: Int) -> String { // We only support multi-attachment sending of images so we can just default to the image attachment // if there were multiple attachments - guard count == 1 else { return "\(emoji(for: MimeTypeUtil.MimeType.imageJpeg)) \("ATTACHMENT".localized())" } + guard count == 1 else { + return "attachmentsNotification" + .put(key: "emoji", value: emoji(for: MimeTypeUtil.MimeType.imageJpeg)) + .localized() + } if MimeTypeUtil.isAudio(descriptionInfo.contentType) { // a missing filename is the legacy way to determine if an audio attachment is @@ -267,16 +271,20 @@ extension Attachment: CustomStringConvertible { descriptionInfo.sourceFilename == nil || (descriptionInfo.sourceFilename?.count ?? 0) == 0 { - return "🎙️ \("ATTACHMENT_TYPE_VOICE_MESSAGE".localized())" + return "messageVoiceSnippet" + .put(key: "emoji", value: "🎙️") + .localized() } } - return "\(emoji(for: descriptionInfo.contentType)) \("ATTACHMENT".localized())" + return "attachmentsNotification" + .put(key: "emoji", value: emoji(for: descriptionInfo.contentType)) + .localized() } public static func emoji(for contentType: String) -> String { - if MimeTypeUtil.isImage(contentType) { - return "📷" // stringlint:disable + if MimeTypeUtil.isAnimated(contentType) { + return "🎡" // stringlint:disable } else if MimeTypeUtil.isVideo(contentType) { return "🎥" // stringlint:disable @@ -284,8 +292,8 @@ extension Attachment: CustomStringConvertible { else if MimeTypeUtil.isAudio(contentType) { return "🎧" // stringlint:disable } - else if MimeTypeUtil.isAnimated(contentType) { - return "🎡" // stringlint:disable + else if MimeTypeUtil.isImage(contentType) { + return "📷" // stringlint:disable } return "📎" // stringlint:disable @@ -585,7 +593,7 @@ extension Attachment { private static var sharedDataAttachmentsDirPath: String = { URL(fileURLWithPath: FileManager.default.appSharedDataDirectoryPath) - .appendingPathComponent("Attachments") + .appendingPathComponent("Attachments") // stringlint:disable .path }() @@ -701,7 +709,7 @@ extension Attachment { // MARK: - Convenience extension Attachment { - public static let nonMediaQuoteFileId: String = "NON_MEDIA_QUOTE_FILE_ID" + public static let nonMediaQuoteFileId: String = "NON_MEDIA_QUOTE_FILE_ID" // stringlint:disable public enum ThumbnailSize { case small @@ -734,7 +742,7 @@ extension Attachment { var thumbnailsDirPath: String { // Thumbnails are written to the caches directory, so that iOS can // remove them if necessary - return "\(FileSystem.cachesDirectoryPath)/\(id)-thumbnails" + return "\(FileSystem.cachesDirectoryPath)/\(id)-thumbnails" // stringlint:disable } var legacyThumbnailPath: String? { @@ -747,7 +755,7 @@ extension Attachment { let filename: String = fileUrl.lastPathComponent.filenameWithoutExtension let containingDir: String = fileUrl.deletingLastPathComponent().path - return "\(containingDir)/\(filename)-signal-ios-thumbnail.jpg" + return "\(containingDir)/\(filename)-signal-ios-thumbnail.jpg" // stringlint:disable } var originalImage: UIImage? { @@ -772,17 +780,14 @@ extension Attachment { public var documentFileName: String { if let sourceFilename: String = sourceFilename { return sourceFilename } - if isImage { return "Image File" } - if isAudio { return "Audio File" } - if isVideo { return "Video File" } - return "File" + return shortDescription } public var shortDescription: String { - if isImage { return "Image" } - if isAudio { return "Audio" } - if isVideo { return "Video" } - return "Document" + if isImage { return "image".localized() } + if isAudio { return "audio".localized() } + if isVideo { return "video".localized() } + return "document".localized() } public var documentFileInfo: String { @@ -803,7 +808,7 @@ extension Attachment { } public func thumbnailPath(for dimensions: UInt) -> String { - return "\(thumbnailsDirPath)/thumbnail-\(dimensions).jpg" + return "\(thumbnailsDirPath)/thumbnail-\(dimensions).jpg" // stringlint:disable } private func loadThumbnail(with dimensions: UInt, success: @escaping (UIImage, () throws -> Data) -> (), failure: @escaping () -> ()) { @@ -881,7 +886,7 @@ extension Attachment { public func cloneAsQuoteThumbnail() -> Attachment? { let cloneId: String = UUID().uuidString - let thumbnailName: String = "quoted-thumbnail-\(sourceFilename ?? "null")" + let thumbnailName: String = "quoted-thumbnail-\(sourceFilename ?? "null")" // stringlint:disable guard self.isVisualMedia else { return nil } diff --git a/SessionMessagingKit/Database/Models/DisappearingMessageConfiguration.swift b/SessionMessagingKit/Database/Models/DisappearingMessageConfiguration.swift index 3c453d6476..b055f4ea0f 100644 --- a/SessionMessagingKit/Database/Models/DisappearingMessageConfiguration.swift +++ b/SessionMessagingKit/Database/Models/DisappearingMessageConfiguration.swift @@ -40,6 +40,17 @@ public struct DisappearingMessagesConfiguration: Codable, Identifiable, Equatabl case unknown case disappearAfterRead case disappearAfterSend + + public var localizedName: String { + switch self { + case .unknown: + return "" + case .disappearAfterRead: + return "disappearingMessagesTypeRead".localized() + case .disappearAfterSend: + return "disappearingMessagesTypeSent".localized() + } + } init(protoType: SNProtoContent.SNProtoContentExpirationType) { switch protoType { @@ -72,6 +83,21 @@ public struct DisappearingMessagesConfiguration: Codable, Identifiable, Equatabl case .disappearAfterSend: return CONVO_EXPIRATION_AFTER_SEND } } + + public func localizedState(durationString: String) -> String { + switch self { + case .unknown: + return "" + case .disappearAfterRead: + return "disappearingMessagesDisappearAfterReadState" + .put(key: "time", value: durationString) + .localized() + case .disappearAfterSend: + return "disappearingMessagesDisappearAfterSendState" + .put(key: "time", value: durationString) + .localized() + } + } } public var id: String { threadId } // Identifiable @@ -135,26 +161,38 @@ public extension DisappearingMessagesConfiguration { var previewText: String { guard let senderName: String = senderName else { guard isEnabled, durationSeconds > 0 else { - return "YOU_DISAPPEARING_MESSAGES_INFO_DISABLE".localized() + switch threadVariant { + case .legacyGroup, .group: + return "disappearingMessagesTurnedOffYouGroup".localized() + default: + return "disappearingMessagesTurnedOffYou".localized() + } } - return String( - format: "YOU_DISAPPEARING_MESSAGES_INFO_ENABLE".localized(), - floor(durationSeconds).formatted(format: .long), - (type == .disappearAfterRead ? "DISAPPEARING_MESSAGE_STATE_READ".localized() : "DISAPPEARING_MESSAGE_STATE_SENT".localized()) - ) + return "disappearingMessagesSetYou" + .put(key: "time", value: floor(durationSeconds).formatted(format: .long)) + .put(key: "disappearing_messages_type", value: (type ?? .unknown).localizedName) + .localized() } guard isEnabled, durationSeconds > 0 else { - return String(format: "DISAPPERING_MESSAGES_INFO_DISABLE".localized(), senderName) + switch threadVariant { + case .legacyGroup, .group: + return "disappearingMessagesTurnedOffGroup" + .put(key: "name", value: senderName) + .localized() + default: + return "disappearingMessagesTurnedOff" + .put(key: "name", value: senderName) + .localized() + } } - return String( - format: "DISAPPERING_MESSAGES_INFO_ENABLE".localized(), - senderName, - floor(durationSeconds).formatted(format: .long), - (type == .disappearAfterRead ? "DISAPPEARING_MESSAGE_STATE_READ".localized() : "DISAPPEARING_MESSAGE_STATE_SENT".localized()) - ) + return "disappearingMessagesSet" + .put(key: "name", value: senderName) + .put(key: "time", value: floor(durationSeconds).formatted(format: .long)) + .put(key: "disappearing_messages_type", value: (type ?? .unknown).localizedName) + .localized() } } diff --git a/SessionMessagingKit/Database/Models/Interaction.swift b/SessionMessagingKit/Database/Models/Interaction.swift index 74b21d8a04..0988f7632a 100644 --- a/SessionMessagingKit/Database/Models/Interaction.swift +++ b/SessionMessagingKit/Database/Models/Interaction.swift @@ -34,7 +34,7 @@ public struct Interaction: Codable, Identifiable, Equatable, FetchableRecord, Mu ) -> SQL { let halfResolution: Double = LinkPreview.timstampResolution - return "(\(interaction[.timestampMs]) BETWEEN (\(linkPreview[.timestamp]) - \(halfResolution)) * 1000 AND (\(linkPreview[.timestamp]) + \(halfResolution)) * 1000)" + return "(\(interaction[.timestampMs]) BETWEEN (\(linkPreview[.timestamp]) - \(halfResolution)) * 1000 AND (\(linkPreview[.timestamp]) + \(halfResolution)) * 1000)" // stringlint:disable } public static let recipientStates = hasMany(RecipientState.self, using: RecipientState.interactionForeignKey) @@ -927,7 +927,7 @@ public extension Interaction { return publicKeysToCheck.contains { publicKey in ( body != nil && - (body ?? "").contains("@\(publicKey)") + (body ?? "").contains("@\(publicKey)") // stringlint:disable ) || ( quoteAuthorId == publicKey ) @@ -986,30 +986,17 @@ public extension Interaction { for: attachmentDescriptionInfo, count: attachmentCount ) - - if - let attachmentDescription: String = attachmentDescription, - let body: String = body, - !attachmentDescription.isEmpty, - !body.isEmpty - { - if Singleton.hasAppContext && Singleton.appContext.isRTL { - return "\(body): \(attachmentDescription)" - } - - return "\(attachmentDescription): \(body)" + + if let attachmentDescription: String = attachmentDescription, !attachmentDescription.isEmpty { + return attachmentDescription } if let body: String = body, !body.isEmpty { return body } - if let attachmentDescription: String = attachmentDescription, !attachmentDescription.isEmpty { - return attachmentDescription - } - if isOpenGroupInvitation { - return "😎 Open group invitation" + return "communityInvitation".localized() } // TODO: We should do better here @@ -1017,17 +1004,21 @@ public extension Interaction { case .infoMediaSavedNotification: // TODO: Use referencedAttachmentTimestamp to tell the user * which * media was saved - return String(format: "media_saved".localized(), authorDisplayName) + return "attachmentsMediaSaved" + .put(key: "name", value: authorDisplayName) + .localized() case .infoScreenshotNotification: - return String(format: "screenshot_taken".localized(), authorDisplayName) + return "screenshotTaken" + .put(key: "name", value: authorDisplayName) + .localized() - case .infoClosedGroupCreated: return "GROUP_CREATED".localized() - case .infoClosedGroupCurrentUserLeft: return "GROUP_YOU_LEFT".localized() - case .infoClosedGroupCurrentUserLeaving: return "group_you_leaving".localized() - case .infoClosedGroupCurrentUserErrorLeaving: return "group_unable_to_leave".localized() - case .infoClosedGroupUpdated: return (body ?? "GROUP_UPDATED".localized()) - case .infoMessageRequestAccepted: return (body ?? "MESSAGE_REQUESTS_ACCEPTED".localized()) + case .infoClosedGroupCreated: return (body ?? "") // Deprecated + case .infoClosedGroupCurrentUserLeft: return "groupMemberYouLeft".localized() + case .infoClosedGroupCurrentUserLeaving: return "leaving".localized() + case .infoClosedGroupCurrentUserErrorLeaving: return (body ?? "") + case .infoClosedGroupUpdated: return (body ?? "groupUpdated".localized()) + case .infoMessageRequestAccepted: return (body ?? "messageRequestsAccepted".localized()) case .infoDisappearingMessagesUpdate: guard diff --git a/SessionMessagingKit/Database/Models/LinkPreview.swift b/SessionMessagingKit/Database/Models/LinkPreview.swift index 23c499179c..0972ad39b9 100644 --- a/SessionMessagingKit/Database/Models/LinkPreview.swift +++ b/SessionMessagingKit/Database/Models/LinkPreview.swift @@ -1,5 +1,7 @@ // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. +// stringlint:disable + import Foundation import Combine import GRDB @@ -36,7 +38,7 @@ public struct LinkPreview: Codable, Equatable, Hashable, FetchableRecord, Persis public let url: String /// The number of seconds since epoch rounded down to the nearest 100,000 seconds (~day) - This - /// allows us to optimise against duplicate urls without having “stale” data last too long + /// allows us to optimise against duplicate urls without having "stale" data last too long public let timestamp: TimeInterval /// The type of link preview diff --git a/SessionMessagingKit/Database/Models/RecipientState.swift b/SessionMessagingKit/Database/Models/RecipientState.swift index f0a7d3ab70..0ce7a608cc 100644 --- a/SessionMessagingKit/Database/Models/RecipientState.swift +++ b/SessionMessagingKit/Database/Models/RecipientState.swift @@ -42,76 +42,62 @@ public struct RecipientState: Codable, Equatable, FetchableRecord, PersistableRe case failedToSync // One-to-one Only case syncing // One-to-one Only - func message(hasAttachments: Bool, hasAtLeastOneReadReceipt: Bool) -> String { - switch self { - case .sending: - guard hasAttachments else { - return "MESSAGE_STATUS_SENDING".localized() - } - - return "MESSAGE_STATUS_UPLOADING".localized() - - case .failed: return "MESSAGE_STATUS_FAILED".localized() - - case .sent: - guard hasAtLeastOneReadReceipt else { - return "MESSAGE_STATUS_SENT".localized() - } - - return "MESSAGE_STATUS_READ".localized() - - case .failedToSync: return "MESSAGE_DELIVERY_STATUS_FAILED_SYNC".localized() - case .syncing: return "MESSAGE_DELIVERY_STATUS_SYNCING".localized() - - default: - Log.error("Message has unexpected status: \(self).") - return "MESSAGE_STATUS_SENT".localized() + public func statusIconInfo( + variant: Interaction.Variant, + hasAtLeastOneReadReceipt: Bool, + hasAttachments: Bool + ) -> (image: UIImage?, text: String?, themeTintColor: ThemeValue) { + guard variant == .standardOutgoing else { + return (nil, "read".localized(), .messageBubble_deliveryStatus) } - } - - public func statusIconInfo(variant: Interaction.Variant, hasAtLeastOneReadReceipt: Bool) -> (image: UIImage?, text: String?, themeTintColor: ThemeValue) { - guard variant == .standardOutgoing else { return (nil, "MESSAGE_DELIVERY_STATUS_READ".localized(), .messageBubble_deliveryStatus) } - switch (self, hasAtLeastOneReadReceipt) { - case (.sending, _): + switch (self, hasAtLeastOneReadReceipt, hasAttachments) { + case (.sending, _, true): + return ( + UIImage(systemName: "ellipsis.circle"), + "uploading".localized(), + .messageBubble_deliveryStatus + ) + + case (.sending, _, _): return ( UIImage(systemName: "ellipsis.circle"), - "MESSAGE_DELIVERY_STATUS_SENDING".localized(), + "sending".localized(), .messageBubble_deliveryStatus ) - case (.sent, false), (.skipped, _): + case (.sent, false, _), (.skipped, _, _): return ( UIImage(systemName: "checkmark.circle"), - "MESSAGE_DELIVERY_STATUS_SENT".localized(), + "disappearingMessagesSent".localized(), .messageBubble_deliveryStatus ) - case (.sent, true): + case (.sent, true, _): return ( UIImage(systemName: "eye.fill"), - "MESSAGE_DELIVERY_STATUS_READ".localized(), + "read".localized(), .messageBubble_deliveryStatus ) - case (.failed, _): + case (.failed, _, _): return ( UIImage(systemName: "exclamationmark.triangle"), - "MESSAGE_DELIVERY_STATUS_FAILED".localized(), + "messageStatusFailedToSend".localized(), .danger ) - case (.failedToSync, _): + case (.failedToSync, _, _): return ( UIImage(systemName: "exclamationmark.triangle"), - "MESSAGE_DELIVERY_STATUS_FAILED_SYNC".localized(), + "messageStatusFailedToSync".localized(), .warning ) - case (.syncing, _): + case (.syncing, _, _): return ( UIImage(systemName: "ellipsis.circle"), - "MESSAGE_DELIVERY_STATUS_SYNCING".localized(), + "messageStatusSyncing".localized(), .warning ) diff --git a/SessionMessagingKit/Database/Models/SessionThread.swift b/SessionMessagingKit/Database/Models/SessionThread.swift index d3ab96bb5c..c5b70f6d87 100644 --- a/SessionMessagingKit/Database/Models/SessionThread.swift +++ b/SessionMessagingKit/Database/Models/SessionThread.swift @@ -533,7 +533,7 @@ public extension SessionThread { case .legacyGroup, .group: return (closedGroupName ?? "Unknown Group") case .community: return (openGroupName ?? "Unknown Community") case .contact: - guard !isNoteToSelf else { return "NOTE_TO_SELF".localized() } + guard !isNoteToSelf else { return "noteToSelf".localized() } guard let profile: Profile = profile else { return Profile.truncated(id: threadId, truncating: .middle) } diff --git a/SessionMessagingKit/Jobs/Types/AttachmentDownloadJob.swift b/SessionMessagingKit/Jobs/Types/AttachmentDownloadJob.swift index 04b87d599c..b181181635 100644 --- a/SessionMessagingKit/Jobs/Types/AttachmentDownloadJob.swift +++ b/SessionMessagingKit/Jobs/Types/AttachmentDownloadJob.swift @@ -232,8 +232,8 @@ extension AttachmentDownloadJob { public var errorDescription: String? { switch self { - case .failedToSaveFile: return "Failed to save file" - case .invalidUrl: return "Invalid file URL" + case .failedToSaveFile: return "Failed to save file" // stringlint:disable + case .invalidUrl: return "Invalid file URL" // stringlint:disable } } } diff --git a/SessionMessagingKit/Jobs/Types/GroupLeavingJob.swift b/SessionMessagingKit/Jobs/Types/GroupLeavingJob.swift index a590d8d95f..c771eb5ff4 100644 --- a/SessionMessagingKit/Jobs/Types/GroupLeavingJob.swift +++ b/SessionMessagingKit/Jobs/Types/GroupLeavingJob.swift @@ -58,19 +58,24 @@ public enum GroupLeavingJob: JobExecutor { .receive(on: queue) .sinkUntilComplete( receiveCompletion: { result in - let failureChanges: [ConfigColumnAssignment] = [ - Interaction.Columns.variant - .set(to: Interaction.Variant.infoClosedGroupCurrentUserErrorLeaving), - Interaction.Columns.body.set(to: "group_unable_to_leave".localized()) - ] - let successfulChanges: [ConfigColumnAssignment] = [ - Interaction.Columns.variant - .set(to: Interaction.Variant.infoClosedGroupCurrentUserLeft), - Interaction.Columns.body.set(to: "GROUP_YOU_LEFT".localized()) - ] - // Handle the appropriate response dependencies.storage.writeAsync { db in + let failureChanges: [ConfigColumnAssignment] = [ + Interaction.Columns.variant + .set(to: Interaction.Variant.infoClosedGroupCurrentUserErrorLeaving), + Interaction.Columns.body + .set(to: "groupLeaveErrorFailed" + .put(key: "group_name", value: ((try? ClosedGroup.fetchOne(db, id: threadId))?.name ?? "")) + .localized() + ) + ] + + let successfulChanges: [ConfigColumnAssignment] = [ + Interaction.Columns.variant + .set(to: Interaction.Variant.infoClosedGroupCurrentUserLeft), + Interaction.Columns.body.set(to: "groupMemberYouLeft".localized()) + ] + // If it failed due to one of these errors then clear out any associated data (as somehow // the 'SessionThread' exists but not the data required to send the 'MEMBER_LEFT' message // which would leave the user in a state where they can't leave the group) diff --git a/SessionMessagingKit/Messages/Control Messages/CallMessage.swift b/SessionMessagingKit/Messages/Control Messages/CallMessage.swift index cb7900d333..803688db6c 100644 --- a/SessionMessagingKit/Messages/Control Messages/CallMessage.swift +++ b/SessionMessagingKit/Messages/Control Messages/CallMessage.swift @@ -45,12 +45,12 @@ public final class CallMessage: ControlMessage { public var description: String { switch self { - case .preOffer: return "preOffer" - case .offer: return "offer" - case .answer: return "answer" - case .provisionalAnswer: return "provisionalAnswer" - case .iceCandidates(_, _): return "iceCandidates" - case .endCall: return "endCall" + case .preOffer: return "preOffer" // stringlint:disable + case .offer: return "offer" // stringlint:disable + case .answer: return "answer" // stringlint:disable + case .provisionalAnswer: return "provisionalAnswer" // stringlint:disable + case .iceCandidates(_, _): return "iceCandidates" // stringlint:disable + case .endCall: return "endCall" // stringlint:disable } } @@ -243,22 +243,19 @@ public extension CallMessage { func previewText(threadContactDisplayName: String) -> String { switch state { case .incoming: - return String( - format: "call_incoming".localized(), - threadContactDisplayName - ) - + return "callsCalledYou" + .put(key: "name", value: threadContactDisplayName) + .localized() + case .outgoing: - return String( - format: "call_outgoing".localized(), - threadContactDisplayName - ) + return "callsYouCalled" + .put(key: "name", value: threadContactDisplayName) + .localized() case .missed, .permissionDenied, .permissionDeniedMicrophone: - return String( - format: "call_missed".localized(), - threadContactDisplayName - ) + return "callsMissedCallFrom" + .put(key: "name", value: threadContactDisplayName) + .localized() // TODO: We should do better here case .unknown: return "" diff --git a/SessionMessagingKit/Messages/Control Messages/ClosedGroupControlMessage.swift b/SessionMessagingKit/Messages/Control Messages/ClosedGroupControlMessage.swift index 261299c219..c6829f8036 100644 --- a/SessionMessagingKit/Messages/Control Messages/ClosedGroupControlMessage.swift +++ b/SessionMessagingKit/Messages/Control Messages/ClosedGroupControlMessage.swift @@ -49,13 +49,13 @@ public final class ClosedGroupControlMessage: ControlMessage { public var description: String { switch self { - case .new: return "new" - case .encryptionKeyPair: return "encryptionKeyPair" - case .nameChange: return "nameChange" - case .membersAdded: return "membersAdded" - case .membersRemoved: return "membersRemoved" - case .memberLeft: return "memberLeft" - case .encryptionKeyPairRequest: return "encryptionKeyPairRequest" + case .new: return "new" // stringlint:disable + case .encryptionKeyPair: return "encryptionKeyPair" // stringlint:disable + case .nameChange: return "nameChange" // stringlint:disable + case .membersAdded: return "membersAdded" // stringlint:disable + case .membersRemoved: return "membersRemoved" // stringlint:disable + case .memberLeft: return "memberLeft" // stringlint:disable + case .encryptionKeyPairRequest: return "encryptionKeyPairRequest" // stringlint:disable } } @@ -363,7 +363,9 @@ public extension ClosedGroupControlMessage.Kind { func infoMessage(_ db: Database, sender: String) throws -> String? { switch self { case .nameChange(let name): - return String(format: "GROUP_TITLE_CHANGED".localized(), name) + return "groupNameNew" + .put(key: "group_name", value: name) + .localized() case .membersAdded(let membersAsData): let memberIds: [String] = membersAsData.map { $0.toHexString() } @@ -376,10 +378,9 @@ public extension ClosedGroupControlMessage.Kind { Profile.truncated(id: $0, threadVariant: .legacyGroup) } - return String( - format: "GROUP_MEMBER_JOINED".localized(), - addedMemberNames.joined(separator: ", ") - ) + return "legacyGroupMemberNew" + .put(key: "name", value: addedMemberNames.joined(separator: ", ")) + .localized() case .membersRemoved(let membersAsData): let userPublicKey: String = getUserHexEncodedPublicKey(db) @@ -398,18 +399,19 @@ public extension ClosedGroupControlMessage.Kind { knownMemberNameMap[$0] ?? Profile.truncated(id: $0, threadVariant: .legacyGroup) } - let format: String = (removedMemberNames.count > 1 ? - "GROUP_MEMBERS_REMOVED".localized() : - "GROUP_MEMBER_REMOVED".localized() - ) - infoMessage = infoMessage.appending( - String(format: format, removedMemberNames.joined(separator: ", ")) + "groupRemoved" + .put(key: "name", value: removedMemberNames.joined(separator: ", ")) + .localized() ) } - if memberIds.contains(userPublicKey) { - infoMessage = infoMessage.appending("YOU_WERE_REMOVED".localized()) + infoMessage = infoMessage + .appending( + "groupRemovedYou" + .put(key: "group_name", value: "") + .localized() + ) } return infoMessage @@ -417,13 +419,15 @@ public extension ClosedGroupControlMessage.Kind { case .memberLeft: let userPublicKey: String = getUserHexEncodedPublicKey(db) - guard sender != userPublicKey else { return "GROUP_YOU_LEFT".localized() } + guard sender != userPublicKey else { return "groupMemberYouLeft".localized() } if let displayName: String = Profile.displayNameNoFallback(db, id: sender) { - return String(format: "GROUP_MEMBER_LEFT".localized(), displayName) + return "groupMemberLeft" + .put(key: "name", value: displayName) + .localized() } - return "GROUP_UPDATED".localized() + return "groupUpdated".localized() default: return nil } diff --git a/SessionMessagingKit/Messages/Control Messages/DataExtractionNotification.swift b/SessionMessagingKit/Messages/Control Messages/DataExtractionNotification.swift index 9d99023be5..654a3ecf1c 100644 --- a/SessionMessagingKit/Messages/Control Messages/DataExtractionNotification.swift +++ b/SessionMessagingKit/Messages/Control Messages/DataExtractionNotification.swift @@ -21,8 +21,8 @@ public final class DataExtractionNotification: ControlMessage { public var description: String { switch self { - case .screenshot: return "screenshot" - case .mediaSaved: return "mediaSaved" + case .screenshot: return "screenshot" // stringlint:disable + case .mediaSaved: return "mediaSaved" // stringlint:disable } } } diff --git a/SessionMessagingKit/Messages/Control Messages/TypingIndicator.swift b/SessionMessagingKit/Messages/Control Messages/TypingIndicator.swift index 2d131d069d..9968e0224a 100644 --- a/SessionMessagingKit/Messages/Control Messages/TypingIndicator.swift +++ b/SessionMessagingKit/Messages/Control Messages/TypingIndicator.swift @@ -34,8 +34,8 @@ public final class TypingIndicator: ControlMessage { public var description: String { switch self { - case .started: return "started" - case .stopped: return "stopped" + case .started: return "started" // stringlint:disable + case .stopped: return "stopped" // stringlint:disable } } } diff --git a/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Reaction.swift b/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Reaction.swift index 21c53ba9ea..205cef3b9b 100644 --- a/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Reaction.swift +++ b/SessionMessagingKit/Messages/Visible Messages/VisibleMessage+Reaction.swift @@ -28,8 +28,8 @@ public extension VisibleMessage { var description: String { switch self { - case .react: return "react" - case .remove: return "remove" + case .react: return "react" // stringlint:disable + case .remove: return "remove" // stringlint:disable } } diff --git a/SessionMessagingKit/Open Groups/OpenGroupManager.swift b/SessionMessagingKit/Open Groups/OpenGroupManager.swift index c04442a86a..52574fa4d7 100644 --- a/SessionMessagingKit/Open Groups/OpenGroupManager.swift +++ b/SessionMessagingKit/Open Groups/OpenGroupManager.swift @@ -64,7 +64,7 @@ public final class OpenGroupManager { private static func port(for server: String, serverUrl: URL) -> String { if let port: Int = serverUrl.port { - return ":\(port)" + return ":\(port)" // stringlint:disable } let components: [String] = server.components(separatedBy: ":") @@ -77,7 +77,7 @@ public final class OpenGroupManager { ) else { return "" } - return ":\(port)" + return ":\(port)" // stringlint:disable } public static func isSessionRunOpenGroup(server: String) -> Bool { @@ -102,6 +102,23 @@ public final class OpenGroupManager { return options.contains(serverHost) } + public func hasExistingOpenGroup( + roomToken: String, + server: String, + publicKey: String, + using dependencies: Dependencies = Dependencies() + ) -> Bool? { + return Storage.shared.read { db in + self.hasExistingOpenGroup( + db, + roomToken: roomToken, + server: server, + publicKey: publicKey, + using: dependencies + ) + } + } + public func hasExistingOpenGroup( _ db: Database, roomToken: String, diff --git a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift index 11224310a1..ba55cd2b61 100644 --- a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift +++ b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift @@ -40,24 +40,14 @@ extension String { extension SignalAttachmentError: LocalizedError { public var errorDescription: String? { switch self { - case .missingData: - return NSLocalizedString("ATTACHMENT_ERROR_MISSING_DATA", comment: "Attachment error message for attachments without any data") - case .fileSizeTooLarge: - return NSLocalizedString("ATTACHMENT_ERROR_FILE_SIZE_TOO_LARGE", comment: "Attachment error message for attachments whose data exceed file size limits") - case .invalidData: - return NSLocalizedString("ATTACHMENT_ERROR_INVALID_DATA", comment: "Attachment error message for attachments with invalid data") - case .couldNotParseImage: - return NSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_PARSE_IMAGE", comment: "Attachment error message for image attachments which cannot be parsed") - case .couldNotConvertToJpeg: - return NSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_JPEG", comment: "Attachment error message for image attachments which could not be converted to JPEG") - case .invalidFileFormat: - return NSLocalizedString("ATTACHMENT_ERROR_INVALID_FILE_FORMAT", comment: "Attachment error message for attachments with an invalid file format") - case .couldNotConvertToMpeg4: - return NSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_CONVERT_TO_MP4", comment: "Attachment error message for video attachments which could not be converted to MP4") - case .couldNotRemoveMetadata: - return NSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_REMOVE_METADATA", comment: "Attachment error message for image attachments in which metadata could not be removed") - case .couldNotResizeImage: - return NSLocalizedString("ATTACHMENT_ERROR_COULD_NOT_RESIZE_IMAGE", comment: "Attachment error message for image attachments which could not be resized") + case .fileSizeTooLarge: + return "attachmentsErrorSize".localized() + case .invalidData, .missingData, .invalidFileFormat: + return "attachmentsErrorNotSupported".localized() + case .couldNotConvertToJpeg, .couldNotParseImage, .couldNotConvertToMpeg4, .couldNotResizeImage: + return "attachmentsErrorOpen".localized() + case .couldNotRemoveMetadata: + return "attachmentsImageErrorMetadata".localized() } } } @@ -278,16 +268,6 @@ public class SignalAttachment: Equatable { // Returns the MIME type for this attachment or nil if no MIME type // can be identified. public var mimeType: String { - if isVoiceMessage { - // Legacy iOS clients don't handle "audio/mp4" files correctly; - // they are written to disk as .mp4 instead of .m4a which breaks - // playback. So we send voice messages as "audio/aac" to work - // around this. - // - // TODO: Remove this Nov. 2016 or after. - return "audio/aac" - } - if let filename = sourceFilename { let fileExtension = (filename as NSString).pathExtension if fileExtension.count > 0 { @@ -340,7 +320,7 @@ public class SignalAttachment: Equatable { } } if dataUTI == MimeTypeUtil.UTI.unknownUTIForTests { - return MimeTypeUtil.FileExtension.unknownExtensionForTests + return "unknown".localized() } guard let fileExtension = MimeTypeUtil.fileExtension(forUtiType: dataUTI) else { @@ -681,8 +661,8 @@ public class SignalAttachment: Equatable { dstImage = resizedImage } guard let jpgImageData = dstImage.jpegData(compressionQuality: jpegCompressionQuality(imageUploadQuality: imageUploadQuality)) else { - attachment.error = .couldNotConvertToJpeg - return attachment + attachment.error = .couldNotConvertToJpeg + return attachment } let dataSource = DataSourceValue(data: jpgImageData, fileExtension: "jpg") diff --git a/SessionMessagingKit/Sending & Receiving/Errors/AttachmentError.swift b/SessionMessagingKit/Sending & Receiving/Errors/AttachmentError.swift index 5f708431e2..23f750b051 100644 --- a/SessionMessagingKit/Sending & Receiving/Errors/AttachmentError.swift +++ b/SessionMessagingKit/Sending & Receiving/Errors/AttachmentError.swift @@ -1,5 +1,7 @@ // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. +// stringlint:disable + import Foundation public enum AttachmentError: LocalizedError { diff --git a/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+ClosedGroups.swift b/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+ClosedGroups.swift index 7d06da9406..cdebde755b 100644 --- a/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+ClosedGroups.swift +++ b/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+ClosedGroups.swift @@ -124,7 +124,7 @@ extension MessageSender { currentUserPublicKey: userPublicKey, legacyGroupIds: try ClosedGroup .select(.threadId) - .filter(!ClosedGroup.Columns.threadId.like("\(SessionId.Prefix.group.rawValue)%")) + .filter(!ClosedGroup.Columns.threadId.like("\(SessionId.Prefix.group.rawValue)%")) // stringlint:disable .joining( required: ClosedGroup.members .filter(GroupMember.Columns.profileId == userPublicKey) @@ -616,7 +616,7 @@ extension MessageSender { threadVariant: .legacyGroup, authorId: userPublicKey, variant: .infoClosedGroupCurrentUserLeaving, - body: "group_you_leaving".localized(), + body: "leaving".localized(), timestampMs: SnodeAPI.currentOffsetTimestampMs() ).inserted(db) diff --git a/SessionMessagingKit/Sending & Receiving/Notifications/Models/SubscribeRequest.swift b/SessionMessagingKit/Sending & Receiving/Notifications/Models/SubscribeRequest.swift index 640c45650b..e0bc7c3772 100644 --- a/SessionMessagingKit/Sending & Receiving/Notifications/Models/SubscribeRequest.swift +++ b/SessionMessagingKit/Sending & Receiving/Notifications/Models/SubscribeRequest.swift @@ -125,10 +125,10 @@ extension PushNotificationAPI { /// on whether the subscription wants message data included; and the trailing `NS[i]` values are a /// comma-delimited list of namespaces that should be subscribed to, in the same sorted order as /// the `namespaces` parameter. - let verificationBytes: [UInt8] = "MONITOR".bytes + let verificationBytes: [UInt8] = "MONITOR".bytes // stringlint:disable .appending(contentsOf: pubkey.bytes) .appending(contentsOf: "\(timestamp)".bytes) - .appending(contentsOf: (includeMessageData ? "1" : "0").bytes) + .appending(contentsOf: (includeMessageData ? "1" : "0").bytes) // stringlint:disable .appending( contentsOf: namespaces .map { $0.rawValue } // Intentionally not using `verificationString` here diff --git a/SessionMessagingKit/Sending & Receiving/Notifications/Models/UnsubscribeRequest.swift b/SessionMessagingKit/Sending & Receiving/Notifications/Models/UnsubscribeRequest.swift index bd0f63dc3c..2ab9fa262b 100644 --- a/SessionMessagingKit/Sending & Receiving/Notifications/Models/UnsubscribeRequest.swift +++ b/SessionMessagingKit/Sending & Receiving/Notifications/Models/UnsubscribeRequest.swift @@ -94,7 +94,7 @@ extension PushNotificationAPI { /// `"UNSUBSCRIBE" || HEX(ACCOUNT) || SIG_TS` /// /// Where `SIG_TS` is the `sig_ts` value as a base-10 string and must be within 24 hours of the current time. - let verificationBytes: [UInt8] = "UNSUBSCRIBE".bytes + let verificationBytes: [UInt8] = "UNSUBSCRIBE".bytes // stringlint:disable .appending(contentsOf: pubkey.bytes) .appending(contentsOf: "\(timestamp)".data(using: .ascii)?.bytes) diff --git a/SessionMessagingKit/Sending & Receiving/Pollers/CurrentUserPoller.swift b/SessionMessagingKit/Sending & Receiving/Pollers/CurrentUserPoller.swift index 02b9915d27..ed6e9aa332 100644 --- a/SessionMessagingKit/Sending & Receiving/Pollers/CurrentUserPoller.swift +++ b/SessionMessagingKit/Sending & Receiving/Pollers/CurrentUserPoller.swift @@ -47,7 +47,7 @@ public final class CurrentUserPoller: Poller { // MARK: - Abstract Methods override public func pollerName(for publicKey: String) -> String { - return "Main Poller" + return "Main Poller" // stringlint:disable } override func nextPollDelay(for publicKey: String, using dependencies: Dependencies) -> TimeInterval { diff --git a/SessionMessagingKit/Shared Models/MessageViewModel.swift b/SessionMessagingKit/Shared Models/MessageViewModel.swift index 1022cf8810..1d99122e0c 100644 --- a/SessionMessagingKit/Shared Models/MessageViewModel.swift +++ b/SessionMessagingKit/Shared Models/MessageViewModel.swift @@ -516,6 +516,7 @@ public extension MessageViewModel { } func canDoFollowingSetting() -> Bool { + guard self.variant == .infoDisappearingMessagesUpdate else { return false } guard self.authorId != self.currentUserPublicKey else { return false } guard self.threadVariant == .contact else { return false } return self.messageDisappearingConfiguration() != self.threadDisappearingConfiguration() diff --git a/SessionMessagingKit/Shared Models/SessionThreadViewModel.swift b/SessionMessagingKit/Shared Models/SessionThreadViewModel.swift index e89f1b7aeb..a0a816a365 100644 --- a/SessionMessagingKit/Shared Models/SessionThreadViewModel.swift +++ b/SessionMessagingKit/Shared Models/SessionThreadViewModel.swift @@ -1233,7 +1233,7 @@ public extension SessionThreadViewModel { } static func standardQuotes(_ term: String) -> String { - // Apple like to use the special '”“' quote characters when typing so replace them with normal ones + // Apple like to use the special '""' quote characters when typing so replace them with normal ones return term .replacingOccurrences(of: "”", with: "\"") .replacingOccurrences(of: "“", with: "\"") @@ -1416,7 +1416,7 @@ public extension SessionThreadViewModel { let closedGroupFullTextSearch: TypedTableAlias = TypedTableAlias(name: ClosedGroup.fullTextSearchTableName) let openGroupFullTextSearch: TypedTableAlias = TypedTableAlias(name: OpenGroup.fullTextSearchTableName) - let noteToSelfLiteral: SQL = SQL(stringLiteral: "NOTE_TO_SELF".localized().lowercased()) + let noteToSelfLiteral: SQL = SQL(stringLiteral: "noteToSelf".localized().lowercased()) let searchTermLiteral: SQL = SQL(stringLiteral: searchTerm.lowercased()) /// **Note:** The `numColumnsBeforeProfiles` value **MUST** match the number of fields before diff --git a/SessionMessagingKit/Utilities/OWSAudioSession.swift b/SessionMessagingKit/Utilities/OWSAudioSession.swift index 67369f7f15..95874a6878 100644 --- a/SessionMessagingKit/Utilities/OWSAudioSession.swift +++ b/SessionMessagingKit/Utilities/OWSAudioSession.swift @@ -124,7 +124,7 @@ public class OWSAudioSession: NSObject { fileprivate func ensureAudioSessionActivationStateAfterDelay() { // Without this delay, we sometimes error when deactivating the audio session with: - // Error Domain=NSOSStatusErrorDomain Code=560030580 “The operation couldn’t be completed. (OSStatus error 560030580.)” + // Error Domain=NSOSStatusErrorDomain Code=560030580 "The operation couldn’t be completed. (OSStatus error 560030580.)" // aka "AVAudioSessionErrorCodeIsBusy" // FIXME: The code below was causing a bug, and disabling it * seems * fine. Don't feel super confident about it though... /* diff --git a/SessionMessagingKit/Utilities/Preferences.swift b/SessionMessagingKit/Utilities/Preferences.swift index 03e2283ab4..e307e03e35 100644 --- a/SessionMessagingKit/Utilities/Preferences.swift +++ b/SessionMessagingKit/Utilities/Preferences.swift @@ -116,9 +116,9 @@ public enum Preferences { public var name: String { switch self { - case .nameAndPreview: return "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT".localized() - case .nameNoPreview: return "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY".localized() - case .noNameNoPreview: return "NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT".localized() + case .nameAndPreview: return "notificationsContentShowNameAndContent".localized() + case .nameNoPreview: return "notificationsContentShowNameOnly".localized() + case .noNameNoPreview: return "notificationsContentShowNoNameOrContent".localized() } } } @@ -215,7 +215,7 @@ public enum Preferences { // Other case .messageSent: return "Message Sent" - case .none: return "SOUNDS_NONE".localized() + case .none: return "none".localized() } } diff --git a/SessionMessagingKitTests/Shared Models/SessionThreadViewModelSpec.swift b/SessionMessagingKitTests/Shared Models/SessionThreadViewModelSpec.swift index 564bde6c6e..8534ea8b8d 100644 --- a/SessionMessagingKitTests/Shared Models/SessionThreadViewModelSpec.swift +++ b/SessionMessagingKitTests/Shared Models/SessionThreadViewModelSpec.swift @@ -65,7 +65,7 @@ class SessionThreadViewModelSpec: QuickSpec { // MARK: ---- keeps words within quotes together it("keeps words within quotes together") { - expect(SessionThreadViewModel.searchTermParts("This \"is a Test\" Message")) + expect(SessionThreadViewModel.searchTermParts("This ”is a Test“ Message")) .to(equal([ "\"This\"", "\"is a Test\"", @@ -101,7 +101,7 @@ class SessionThreadViewModelSpec: QuickSpec { // MARK: ---- keeps words within weird quotes together it("keeps words within weird quotes together") { - expect(SessionThreadViewModel.searchTermParts("This ”is a Test“ Message")) + expect(SessionThreadViewModel.searchTermParts("This \"is a Test\" Message")) .to(equal([ "\"This\"", "\"is a Test\"", diff --git a/SessionNotificationServiceExtension/NSENotificationPresenter.swift b/SessionNotificationServiceExtension/NSENotificationPresenter.swift index c53fa4bb36..a56ecbab59 100644 --- a/SessionNotificationServiceExtension/NSENotificationPresenter.swift +++ b/SessionNotificationServiceExtension/NSENotificationPresenter.swift @@ -34,18 +34,20 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { return } - notificationTitle = String( - format: NotificationStrings.incomingGroupMessageTitleFormat, - senderName, - groupName - ) + notificationTitle = "notificationsIosGroup" + .put(key: "name", value: senderName) + .put(key: "conversation_name", value: groupName) + .localized() } let snippet: String = (interaction.previewText(db) .filteredForDisplay .nullIfEmpty? .replacingMentions(for: thread.id)) - .defaulting(to: "APN_Message".localized()) + .defaulting(to: "messageNewYouveGot" + .putNumber(1) + .localized() + ) let userInfo: [String: Any] = [ NotificationServiceExtension.isFromRemoteKey: true, @@ -73,18 +75,22 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { case .nameNoPreview: notificationContent.title = notificationTitle - notificationContent.body = NotificationStrings.incomingMessageBody + notificationContent.body = "messageNewYouveGot" + .putNumber(1) + .localized() case .noNameNoPreview: - notificationContent.title = "Session" - notificationContent.body = NotificationStrings.incomingMessageBody + notificationContent.title = Constants.app_name + notificationContent.body = "messageNewYouveGot" + .putNumber(1) + .localized() } // If it's a message request then overwrite the body to be something generic (only show a notification // when receiving a new message request if there aren't any others or the user had hidden them) if isMessageRequest { - notificationContent.title = "Session" - notificationContent.body = "MESSAGE_REQUESTS_NOTIFICATION".localized() + notificationContent.title = Constants.app_name + notificationContent.body = "messageRequestsNew".localized() } // Add request (try to group notifications for interactions from open groups) @@ -112,10 +118,9 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { notificationContent.title : groupName ) - notificationContent.body = String( - format: NotificationStrings.incomingCollapsedMessagesBody, - "\(numberOfNotifications)" - ) + notificationContent.body = "messageNewYouveGot" + .putNumber(numberOfNotifications) + .localized() } notificationContent.userInfo[NotificationServiceExtension.threadNotificationCounter] = numberOfNotifications @@ -166,20 +171,19 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { .map { NSNumber(value: $0) } .defaulting(to: NSNumber(value: 0)) - notificationContent.title = "Session" + notificationContent.title = Constants.app_name notificationContent.body = "" let senderName: String = Profile.displayName(db, id: interaction.authorId, threadVariant: thread.variant) if messageInfo.state == .permissionDenied { - notificationContent.body = String( - format: "modal_call_missed_tips_explanation".localized(), - senderName - ) + notificationContent.body = "callsYouMissedCallPermissions" + .put(key: "name", value: senderName) + .localizedDeformatted() } else if messageInfo.state == .permissionDeniedMicrophone { notificationContent.body = String( - format: "call_missed".localized(), + format: "callsMissedCallFrom".localized(), senderName ) } @@ -203,9 +207,10 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { else { return } guard !isMessageRequest else { return } - let senderName: String = Profile.displayName(db, id: reaction.authorId, threadVariant: thread.variant) - let notificationTitle = "Session" - var notificationBody = String(format: "EMOJI_REACTS_NOTIFICATION".localized(), senderName, reaction.emoji) + let notificationTitle = Profile.displayName(db, id: reaction.authorId, threadVariant: thread.variant) + var notificationBody = "emojiReactsNotification" + .put(key: "emoji", value: reaction.emoji) + .localized() // Title & body let previewType: Preferences.NotificationPreviewType = db[.preferencesNotificationPreviewType] @@ -213,7 +218,9 @@ public class NSENotificationPresenter: NSObject, NotificationsProtocol { switch previewType { case .nameAndPreview: break - default: notificationBody = NotificationStrings.incomingMessageBody + default: notificationBody = "messageNewYouveGot" + .putNumber(1) + .localized() } let userInfo: [String: Any] = [ @@ -273,7 +280,7 @@ private extension String { var matchEnd = m1.range.location + m1.range.length if let displayName: String = Profile.displayNameNoFallback(id: publicKey) { - result = (result as NSString).replacingCharacters(in: m1.range, with: "@\(displayName)") + result = (result as NSString).replacingCharacters(in: m1.range, with: "@\(displayName)") // stringlint:disable mentions.append((range: NSRange(location: m1.range.location, length: displayName.utf16.count + 1), publicKey: publicKey)) // + 1 to include the @ matchEnd = m1.range.location + displayName.utf16.count } diff --git a/SessionNotificationServiceExtension/NotificationServiceExtension.swift b/SessionNotificationServiceExtension/NotificationServiceExtension.swift index f8e74b0b33..987b9cb907 100644 --- a/SessionNotificationServiceExtension/NotificationServiceExtension.swift +++ b/SessionNotificationServiceExtension/NotificationServiceExtension.swift @@ -435,17 +435,19 @@ public final class NotificationServiceExtension: UNNotificationServiceExtension private func handleFailureForVoIP(_ db: Database, for callMessage: CallMessage) { let notificationContent = UNMutableNotificationContent() notificationContent.userInfo = [ NotificationServiceExtension.isFromRemoteKey : true ] - notificationContent.title = "Session" + notificationContent.title = Constants.app_name notificationContent.badge = (try? Interaction.fetchUnreadCount(db)) .map { NSNumber(value: $0) } .defaulting(to: NSNumber(value: 0)) if let sender: String = callMessage.sender { let senderDisplayName: String = Profile.displayName(db, id: sender, threadVariant: .contact) - notificationContent.body = "\(senderDisplayName) is calling..." + notificationContent.body = "callsIncoming" + .put(key: "name", value: senderDisplayName) + .localized() } else { - notificationContent.body = "Incoming call..." + notificationContent.body = "callsIncomingUnknown".localized() } let identifier = self.request?.identifier ?? UUID().uuidString @@ -474,8 +476,10 @@ public final class NotificationServiceExtension: UNNotificationServiceExtension Log.error("Show generic failure message after \(.seconds(duration), unit: .ms) due to error: \(error).") Log.flush() - content.title = "Session" - content.body = "APN_Message".localized() + content.title = Constants.app_name + content.body = "messageNewYouveGot" + .putNumber(1) + .localized() let userInfo: [String: Any] = [ NotificationServiceExtension.isFromRemoteKey: true ] content.userInfo = userInfo contentHandler!(content) diff --git a/SessionShareExtension/SAEScreenLockViewController.swift b/SessionShareExtension/SAEScreenLockViewController.swift index 5013c91010..171c05dba6 100644 --- a/SessionShareExtension/SAEScreenLockViewController.swift +++ b/SessionShareExtension/SAEScreenLockViewController.swift @@ -29,7 +29,9 @@ final class SAEScreenLockViewController: ScreenLockViewController { private lazy var titleLabel: UILabel = { let titleLabel: UILabel = UILabel() titleLabel.font = UIFont.boldSystemFont(ofSize: Values.veryLargeFontSize) - titleLabel.text = "vc_share_title".localized() + titleLabel.text = "shareToSession" + .put(key: "app_name", value: Constants.app_name) + .localized() titleLabel.themeTextColor = .textPrimary return titleLabel @@ -156,9 +158,9 @@ final class SAEScreenLockViewController: ScreenLockViewController { let modal: ConfirmationModal = ConfirmationModal( targetView: self.view, info: ConfirmationModal.Info( - title: "SCREEN_LOCK_UNLOCK_FAILED".localized(), + title: "authenticateFailed".localized(), body: .text(message), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text, afterClosed: { [weak self] in self?.ensureUI() } // After the alert, update the UI ) diff --git a/SessionShareExtension/ShareNavController.swift b/SessionShareExtension/ShareNavController.swift index ed6f2de533..bb980353dd 100644 --- a/SessionShareExtension/ShareNavController.swift +++ b/SessionShareExtension/ShareNavController.swift @@ -215,8 +215,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { ModalActivityIndicatorViewController .present( fromViewController: self, - canCancel: false, - message: "vc_share_loading_message".localized() + canCancel: false ) { activityIndicator in publisher .subscribe(on: DispatchQueue.global(qos: .userInitiated)) @@ -251,9 +250,9 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { let modal: ConfirmationModal = ConfirmationModal( targetView: self.view, info: ConfirmationModal.Info( - title: "Session", + title: Constants.app_name, body: .text("\(error)"), - cancelTitle: "BUTTON_OK".localized(), + cancelTitle: "okay".localized(), cancelStyle: .alert_text, afterClosed: { [weak self] in self?.extensionContext?.cancelRequest(withError: error) } ) @@ -477,7 +476,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { switch value { case let data as Data: - let customFileName = "Contact.vcf" + let customFileName = "Contact.vcf" // stringlint:disable let customFileExtension = MimeTypeUtil.fileExtension(forUtiType: srcUtiType) guard let tempFilePath = try? FileSystem.write(data: data, toTemporaryFileWithExtension: customFileExtension) else { @@ -508,7 +507,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { ) return } - guard let tempFilePath: String = try? FileSystem.write(data: data, toTemporaryFileWithExtension: "txt") else { + guard let tempFilePath: String = try? FileSystem.write(data: data, toTemporaryFileWithExtension: "txt") else { // stringlint:disable resolver( Result.failure(ShareViewControllerError.assertionError(description: "Error writing item data: \(String(describing: error))")) ) @@ -578,7 +577,7 @@ final class ShareNavController: UINavigationController, ShareViewDelegate { case let image as UIImage: if let data = image.pngData() { - let tempFilePath: String = FileSystem.temporaryFilePath(fileExtension: "png") + let tempFilePath: String = FileSystem.temporaryFilePath(fileExtension: "png") // stringlint:disable do { let url = NSURL.fileURL(withPath: tempFilePath) try data.write(to: url) diff --git a/SessionShareExtension/ThreadPickerVC.swift b/SessionShareExtension/ThreadPickerVC.swift index 52b17832a7..18708dd77e 100644 --- a/SessionShareExtension/ThreadPickerVC.swift +++ b/SessionShareExtension/ThreadPickerVC.swift @@ -40,7 +40,9 @@ final class ThreadPickerVC: UIViewController, UITableViewDataSource, UITableView private lazy var titleLabel: UILabel = { let titleLabel: UILabel = UILabel() titleLabel.font = .boldSystemFont(ofSize: Values.veryLargeFontSize) - titleLabel.text = "vc_share_title".localized() + titleLabel.text = "shareToSession" + .put(key: "app_name", value: Constants.app_name) + .localized() titleLabel.themeTextColor = .textPrimary return titleLabel @@ -49,7 +51,7 @@ final class ThreadPickerVC: UIViewController, UITableViewDataSource, UITableView private lazy var databaseErrorLabel: UILabel = { let result: UILabel = UILabel() result.font = .systemFont(ofSize: Values.mediumFontSize) - result.text = "database_inaccessible_error".localized() + result.text = "shareExtensionDatabaseError".localized() result.textAlignment = .center result.themeTextColor = .textPrimary result.numberOfLines = 0 @@ -231,7 +233,7 @@ final class ThreadPickerVC: UIViewController, UITableViewDataSource, UITableView ( (messageText?.isEmpty == true || (attachments[0].text() == messageText) ? attachments[0].text() : - "\(attachments[0].text() ?? "")\n\n\(messageText ?? "")" + "\(attachments[0].text() ?? "")\n\n\(messageText ?? "")" // stringlint:disable ) ) : messageText @@ -239,7 +241,7 @@ final class ThreadPickerVC: UIViewController, UITableViewDataSource, UITableView shareNavController?.dismiss(animated: true, completion: nil) - ModalActivityIndicatorViewController.present(fromViewController: shareNavController!, canCancel: false, message: "vc_share_sending_message".localized()) { [dependencies = viewModel.dependencies] activityIndicator in + ModalActivityIndicatorViewController.present(fromViewController: shareNavController!, canCancel: false, message: "sending".localized()) { [dependencies = viewModel.dependencies] activityIndicator in dependencies.storage.resumeDatabaseAccess() LibSession.resumeNetworkAccess() diff --git a/SessionTests/Conversations/Settings/ThreadDisappearingMessagesViewModelSpec.swift b/SessionTests/Conversations/Settings/ThreadDisappearingMessagesViewModelSpec.swift index a9fb8b6dd6..b8628b8d7d 100644 --- a/SessionTests/Conversations/Settings/ThreadDisappearingMessagesViewModelSpec.swift +++ b/SessionTests/Conversations/Settings/ThreadDisappearingMessagesViewModelSpec.swift @@ -62,7 +62,7 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { describe("a ThreadDisappearingMessagesSettingsViewModel") { // MARK: -- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("DISAPPEARING_MESSAGES".localized())) + expect(viewModel.title).to(equal("disappearingMessages".localized())) } // MARK: -- has the correct number of items @@ -84,9 +84,9 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { .to( equal( SessionCell.Info( - id: "DISAPPEARING_MESSAGES_OFF".localized(), + id: "off".localized(), position: .top, - title: "DISAPPEARING_MESSAGES_OFF".localized(), + title: "off".localized(), rightAccessory: .radio( isSelected: { true }, accessibility: Accessibility( @@ -105,10 +105,10 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { .to( equal( SessionCell.Info( - id: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), + id: "disappearingMessagesDisappearAfterSend".localized(), position: .bottom, - title: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), - subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION".localized(), + title: "disappearingMessagesDisappearAfterSend".localized(), + subtitle: "disappearingMessagesDisappearAfterSendDescription".localized(), rightAccessory: .radio( isSelected: { false }, accessibility: Accessibility( @@ -162,9 +162,9 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { .to( equal( SessionCell.Info( - id: "DISAPPEARING_MESSAGES_OFF".localized(), + id: "off".localized(), position: .top, - title: "DISAPPEARING_MESSAGES_OFF".localized(), + title: "off".localized(), rightAccessory: .radio( isSelected: { false }, accessibility: Accessibility( @@ -183,10 +183,10 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { .to( equal( SessionCell.Info( - id: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), + id: "disappearingMessagesDisappearAfterSend".localized(), position: .bottom, - title: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), - subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION".localized(), + title: "disappearingMessagesDisappearAfterSend".localized(), + subtitle: "disappearingMessagesDisappearAfterSendDescription".localized(), rightAccessory: .radio( isSelected: { true }, accessibility: Accessibility( @@ -281,10 +281,10 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { .to( equal( SessionCell.Info( - id: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), + id: "disappearingMessagesDisappearAfterSend".localized(), position: .bottom, - title: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_TITLE".localized(), - subtitle: "DISAPPERING_MESSAGES_TYPE_AFTER_SEND_DESCRIPTION".localized(), + title: "disappearingMessagesDisappearAfterSend".localized(), + subtitle: "disappearingMessagesDisappearAfterSendDescription".localized(), rightAccessory: .radio( isSelected: { true }, accessibility: Accessibility( @@ -361,7 +361,7 @@ class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec { equal( SessionButton.Info( style: .bordered, - title: "DISAPPERING_MESSAGES_SAVE_TITLE".localized(), + title: "set".localized(), isEnabled: true, accessibility: Accessibility( identifier: "Set button", diff --git a/SessionTests/Conversations/Settings/ThreadSettingsViewModelSpec.swift b/SessionTests/Conversations/Settings/ThreadSettingsViewModelSpec.swift index 0828fa21a2..76f3c34c42 100644 --- a/SessionTests/Conversations/Settings/ThreadSettingsViewModelSpec.swift +++ b/SessionTests/Conversations/Settings/ThreadSettingsViewModelSpec.swift @@ -167,7 +167,7 @@ class ThreadSettingsViewModelSpec: QuickSpec { // MARK: ---- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("vc_settings_title".localized())) + expect(viewModel.title).to(equal("sessionSettings".localized())) } // MARK: ---- starts in the standard nav state @@ -315,7 +315,7 @@ class ThreadSettingsViewModelSpec: QuickSpec { // MARK: ---- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("vc_settings_title".localized())) + expect(viewModel.title).to(equal("sessionSettings".localized())) } // MARK: ---- starts in the standard nav state @@ -466,7 +466,7 @@ class ThreadSettingsViewModelSpec: QuickSpec { // MARK: ---- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("vc_group_settings_title".localized())) + expect(viewModel.title).to(equal("deleteAfterGroupPR1GroupSettings".localized())) } // MARK: ---- starts in the standard nav state @@ -512,7 +512,7 @@ class ThreadSettingsViewModelSpec: QuickSpec { // MARK: ---- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("vc_group_settings_title".localized())) + expect(viewModel.title).to(equal("deleteAfterGroupPR1GroupSettings".localized())) } // MARK: ---- starts in the standard nav state diff --git a/SessionTests/Settings/NotificationContentViewModelSpec.swift b/SessionTests/Settings/NotificationContentViewModelSpec.swift index 76bff4f40a..fecab1c192 100644 --- a/SessionTests/Settings/NotificationContentViewModelSpec.swift +++ b/SessionTests/Settings/NotificationContentViewModelSpec.swift @@ -47,7 +47,7 @@ class NotificationContentViewModelSpec: QuickSpec { describe("a NotificationContentViewModel") { // MARK: -- has the correct title it("has the correct title") { - expect(viewModel.title).to(equal("NOTIFICATIONS_STYLE_CONTENT_TITLE".localized())) + expect(viewModel.title).to(equal("notificationsContent".localized())) } // MARK: -- has the correct number of items @@ -66,7 +66,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.nameAndPreview, position: .top, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT".localized(), + title: "notificationsContentShowNameAndContent".localized(), rightAccessory: .radio( isSelected: { true } ) @@ -74,7 +74,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.nameNoPreview, position: .middle, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY".localized(), + title: "notificationsContentShowNameOnly".localized(), rightAccessory: .radio( isSelected: { false } ) @@ -82,7 +82,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.noNameNoPreview, position: .bottom, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT".localized(), + title: "notificationsContentShowNoNameOrContent".localized(), rightAccessory: .radio( isSelected: { false } ) @@ -110,7 +110,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.nameAndPreview, position: .top, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_AND_CONTENT".localized(), + title: "notificationsContentShowNameAndContent".localized(), rightAccessory: .radio( isSelected: { false } ) @@ -118,7 +118,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.nameNoPreview, position: .middle, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NAME_ONLY".localized(), + title: "notificationsContentShowNameOnly".localized(), rightAccessory: .radio( isSelected: { true } ) @@ -126,7 +126,7 @@ class NotificationContentViewModelSpec: QuickSpec { SessionCell.Info( id: Preferences.NotificationPreviewType.noNameNoPreview, position: .bottom, - title: "NOTIFICATIONS_STYLE_CONTENT_OPTION_NO_NAME_OR_CONTENT".localized(), + title: "notificationsContentShowNoNameOrContent".localized(), rightAccessory: .radio( isSelected: { false } ) diff --git a/SessionUIKit/Components/ConfirmationModal.swift b/SessionUIKit/Components/ConfirmationModal.swift index 8d224f2c9b..cbcd05f549 100644 --- a/SessionUIKit/Components/ConfirmationModal.swift +++ b/SessionUIKit/Components/ConfirmationModal.swift @@ -47,14 +47,13 @@ public class ConfirmationModal: Modal, UITextFieldDelegate { return result }() - private lazy var explanationLabel: UILabel = { - let result: UILabel = UILabel() + private lazy var explanationLabel: ScrollableLabel = { + let result: ScrollableLabel = ScrollableLabel() result.font = .systemFont(ofSize: Values.smallFontSize) result.themeTextColor = .alert_text result.textAlignment = .center result.lineBreakMode = .byWordWrapping result.numberOfLines = 0 - result.isHidden = true return result }() @@ -218,18 +217,21 @@ public class ConfirmationModal: Modal, UITextFieldDelegate { case .none: mainStackView.spacing = Values.smallSpacing - case .text(let text): + case .text(let text, let canScroll): mainStackView.spacing = Values.smallSpacing explanationLabel.text = text + explanationLabel.canScroll = canScroll explanationLabel.isHidden = false - case .attributedText(let attributedText): + case .attributedText(let attributedText, let canScroll): mainStackView.spacing = Values.smallSpacing explanationLabel.attributedText = attributedText + explanationLabel.canScroll = canScroll explanationLabel.isHidden = false case .input(let explanation, let placeholder, let value, let clearButton, let onTextChanged): explanationLabel.attributedText = explanation + explanationLabel.canScroll = false explanationLabel.isHidden = (explanation == nil) textField.placeholder = placeholder textField.text = (value ?? "") @@ -355,7 +357,7 @@ public extension ConfirmationModal { confirmAccessibility: Accessibility? = nil, confirmStyle: ThemeValue = .alert_text, confirmEnabled: Bool = true, - cancelTitle: String = "TXT_CANCEL_TITLE".localized(), + cancelTitle: String = "cancel".localized(), cancelAccessibility: Accessibility? = Accessibility( identifier: "Cancel" ), @@ -488,8 +490,14 @@ public extension ConfirmationModal.Info { } case none - case text(String) - case attributedText(NSAttributedString) + case text( + _ text: String, + canScroll: Bool = false + ) + case attributedText( + _ attributedText: NSAttributedString, + canScroll: Bool = false + ) case input( explanation: NSAttributedString?, placeholder: String, @@ -511,8 +519,8 @@ public extension ConfirmationModal.Info { public static func == (lhs: ConfirmationModal.Info.Body, rhs: ConfirmationModal.Info.Body) -> Bool { switch (lhs, rhs) { case (.none, .none): return true - case (.text(let lhsText), .text(let rhsText)): return (lhsText == rhsText) - case (.attributedText(let lhsText), .attributedText(let rhsText)): return (lhsText == rhsText) + case (.text(let lhsText, _), .text(let rhsText, _)): return (lhsText == rhsText) + case (.attributedText(let lhsText, _), .attributedText(let rhsText, _)): return (lhsText == rhsText) case (.input(let lhsExplanation, let lhsPlaceholder, let lhsInitialValue, let lhsClearButton, _), .input(let rhsExplanation, let rhsPlaceholder, let rhsInitialValue, let rhsClearButton, _)): return ( @@ -545,8 +553,8 @@ public extension ConfirmationModal.Info { public func hash(into hasher: inout Hasher) { switch self { case .none: break - case .text(let text): text.hash(into: &hasher) - case .attributedText(let text): text.hash(into: &hasher) + case .text(let text, _): text.hash(into: &hasher) + case .attributedText(let text, _): text.hash(into: &hasher) case .input(let explanation, let placeholder, let initialValue, let clearButton, _): explanation.hash(into: &hasher) diff --git a/SessionUIKit/Components/ProfilePictureView.swift b/SessionUIKit/Components/ProfilePictureView.swift index abe32a4ebf..7c3f3fb9d5 100644 --- a/SessionUIKit/Components/ProfilePictureView.swift +++ b/SessionUIKit/Components/ProfilePictureView.swift @@ -394,10 +394,7 @@ public final class ProfilePictureView: UIView { } case .rightPlus: - imageView.image = UIImage( - systemName: "plus", - withConfiguration: UIImage.SymbolConfiguration(weight: .semibold) - ) + imageView.image = UIImage(systemName: "plus", withConfiguration: UIImage.SymbolConfiguration(weight: .semibold)) imageView.themeTintColor = .black backgroundView.themeBackgroundColor = .primary } diff --git a/SessionUIKit/Components/ScrollableLabel.swift b/SessionUIKit/Components/ScrollableLabel.swift new file mode 100644 index 0000000000..7f03746f04 --- /dev/null +++ b/SessionUIKit/Components/ScrollableLabel.swift @@ -0,0 +1,155 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. + +import UIKit + +class ScrollableLabel: UIView { + private var oldSize: CGSize = .zero + private var layoutLoopCounter: Int = 0 + + var canScroll: Bool = false { + didSet { + guard canScroll != oldValue else { return } + + updateContentSizeIfNeeded() + } + } + + var font: UIFont { + get { label.font } + set { label.font = newValue } + } + + var text: String? { + get { label.text } + set { + guard label.text != newValue else { return } + + label.text = newValue + updateContentSizeIfNeeded() + } + } + + var attributedText: NSAttributedString? { + get { label.attributedText } + set { + guard label.attributedText != newValue else { return } + + label.attributedText = newValue + updateContentSizeIfNeeded() + } + } + + var themeTextColor: ThemeValue? { + get { label.themeTextColor } + set { label.themeTextColor = newValue } + } + + var textAlignment: NSTextAlignment { + get { label.textAlignment } + set { label.textAlignment = newValue } + } + + var lineBreakMode: NSLineBreakMode { + get { label.lineBreakMode } + set { label.lineBreakMode = newValue } + } + + var numberOfLines: Int { + get { label.numberOfLines } + set { label.numberOfLines = newValue } + } + + var maxNumberOfLinesWhenScrolling: Int = 5 { + didSet { + guard maxNumberOfLinesWhenScrolling != oldValue else { return } + + updateContentSizeIfNeeded() + } + } + + // MARK: - Initialization + + init() { + super.init(frame: .zero) + + setupViews() + setupConstraints() + } + + required init?(coder: NSCoder) { + fatalError("init(coder:) has not been implemented") + } + + // MARK: - UI Components + + private lazy var labelHeightAnchor: NSLayoutConstraint = label.set(.height, to: .height, of: scrollView).setting(isActive: false) + private lazy var scrollViewHeightAnchor: NSLayoutConstraint = scrollView.set(.height, to: 0).setting(isActive: false) + + private let scrollView: UIScrollView = UIScrollView() + private let label: UILabel = UILabel() + + // MARK: - Layout + + private func setupViews() { + addSubview(scrollView) + + scrollView.addSubview(label) + } + + private func setupConstraints() { + scrollView.pin(to: self) + + label.setContentHugging(.vertical, to: .required) + label.pin(to: scrollView) + label.set(.width, to: .width, of: scrollView) + } + + override func layoutSubviews() { + super.layoutSubviews() + + guard frame.size != oldSize else { + layoutLoopCounter = 0 + return + } + + updateContentSizeIfNeeded() + } + + private func updateContentSizeIfNeeded() { + // Ensure we don't get stuck in an infinite layout loop somehow + guard layoutLoopCounter < 5 else { return } + + // Update the contentSize of the scrollView to match the size of the label + scrollView.contentSize = label.sizeThatFits( + CGSize(width: scrollView.bounds.width, height: CGFloat.greatestFiniteMagnitude) + ) + + // If scrolling is enabled and the maximum height we want to show is smaller than the scrollable height + // then we need to fix the height of the scroll view to our desired maximum, other + let maxCalculatedHeight: CGFloat = (label.font.lineHeight * CGFloat(maxNumberOfLinesWhenScrolling)) + + switch (canScroll, maxCalculatedHeight <= scrollView.contentSize.height) { + case (false, _), (true, false): + scrollViewHeightAnchor.isActive = false + labelHeightAnchor.isActive = true + + case (true, true): + labelHeightAnchor.isActive = false + scrollViewHeightAnchor.constant = maxCalculatedHeight + scrollViewHeightAnchor.isActive = true + } + + oldSize = frame.size + + // The view should have the same height as the scrollView, if it doesn't then we might need to relayout + // again to ensure the frame size is correct + guard + scrollView.frame.size.height < CGFloat.leastNonzeroMagnitude || + abs(frame.size.height - scrollView.frame.size.height) > CGFloat.leastNonzeroMagnitude + else { return } + + layoutLoopCounter += 1 + setNeedsLayout() + layoutIfNeeded() + } +} diff --git a/SessionUIKit/Components/SearchBar.swift b/SessionUIKit/Components/SearchBar.swift index 5c1e78bcbc..c8d2821ad7 100644 --- a/SessionUIKit/Components/SearchBar.swift +++ b/SessionUIKit/Components/SearchBar.swift @@ -86,7 +86,7 @@ public extension UISearchBar { guard let textColor: UIColor = theme.color(for: .textSecondary) else { return } searchTextField?.attributedPlaceholder = NSAttributedString( - string: "Search Contacts", + string: "searchContacts".localized(), attributes: [ .foregroundColor: textColor ] diff --git a/SessionUIKit/Components/SwiftUI/CompatibleScrollingVStack.swift b/SessionUIKit/Components/SwiftUI/CompatibleScrollingVStack.swift index 81660ce1ea..8ddfbbd34e 100644 --- a/SessionUIKit/Components/SwiftUI/CompatibleScrollingVStack.swift +++ b/SessionUIKit/Components/SwiftUI/CompatibleScrollingVStack.swift @@ -16,11 +16,7 @@ public struct CompatibleScrollingVStack : View where Content : View { public var body: some View { ScrollView { - if #available(iOS 14, *) { - LazyVStack(alignment: alignment, spacing: spacing, pinnedViews: [], content:content) - } else { - VStack(alignment: alignment, spacing: spacing, content:content) - } + LazyVStack(alignment: alignment, spacing: spacing, pinnedViews: [], content:content) } } } diff --git a/SessionUIKit/Components/SwiftUI/SessionTextField.swift b/SessionUIKit/Components/SwiftUI/SessionTextField.swift index 2a12f25ffd..dc1f6bc419 100644 --- a/SessionUIKit/Components/SwiftUI/SessionTextField.swift +++ b/SessionUIKit/Components/SwiftUI/SessionTextField.swift @@ -66,7 +66,7 @@ public struct SessionTextField: View where ExplanationView: Vie .font(.system(size: Values.smallFontSize)) .foregroundColor(themeColor: textThemeColor) .accessibility(self.accessibility) - } else if #available(iOS 14.0, *) { + } else { ZStack { TextEditor( text: $text.onChange{ value in @@ -94,19 +94,6 @@ public struct SessionTextField: View where ExplanationView: Vie ) } .fixedSize(horizontal: false, vertical: true) - } else { - SwiftUI.TextField( - "", - text: $text.onChange{ value in - if error?.isEmpty == false && text != value { - previousError = error! - error = nil - } - } - ) - .font(.system(size: Values.smallFontSize)) - .foregroundColor(themeColor: textThemeColor) - .accessibility(self.accessibility) } } .padding(.horizontal, Values.largeSpacing) diff --git a/SessionUIKit/Style Guide/Format.swift b/SessionUIKit/Style Guide/Format.swift index d3174d9347..f715388a6d 100644 --- a/SessionUIKit/Style Guide/Format.swift +++ b/SessionUIKit/Style Guide/Format.swift @@ -29,16 +29,16 @@ public enum Format { case oneMegabyte...Double.greatestFiniteMagnitude: return (Format.fileSizeFormatter .string(from: NSNumber(floatLiteral: (fileSizeDouble / oneMegabyte)))? - .appending("MB") ?? "n/a") + .appending("MB") ?? "attachmentsNa".localized()) default: return (Format.fileSizeFormatter .string(from: NSNumber(floatLiteral: max(0.1, (fileSizeDouble / oneKilobyte))))? - .appending("KB") ?? "n/a") + .appending("KB") ?? "attachmentsNa".localized()) } } public static func duration(_ duration: TimeInterval) -> String { - return (Format.durationFormatter.string(from: duration) ?? "0:00") + return (Format.durationFormatter.string(from: duration) ?? "0:00") // stringlint:disable } } diff --git a/SessionUIKit/Style Guide/ThemeManager.swift b/SessionUIKit/Style Guide/ThemeManager.swift index 766d533efd..4278a29267 100644 --- a/SessionUIKit/Style Guide/ThemeManager.swift +++ b/SessionUIKit/Style Guide/ThemeManager.swift @@ -150,54 +150,36 @@ public enum ThemeManager { ThemeManager.mainWindow?.tintColor = textPrimary ThemeManager.mainWindow?.rootViewController?.setNeedsStatusBarAppearanceUpdate() - // Update the nav bars to use the right colours (we default to the 'primary' value) - UINavigationBar.appearance().barTintColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) - UINavigationBar.appearance().isTranslucent = false - UINavigationBar.appearance().tintColor = textPrimary - UINavigationBar.appearance().shadowImage = ThemeManager.currentTheme.color(for: .backgroundPrimary)?.toImage() - UINavigationBar.appearance().titleTextAttributes = [ + // Update toolbars to use the right colours + UIToolbar.appearance().barTintColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) + UIToolbar.appearance().isTranslucent = false + UIToolbar.appearance().tintColor = textPrimary + + // Update the nav bars to use the right colours + let appearance = UINavigationBarAppearance() + appearance.configureWithOpaqueBackground() + appearance.backgroundColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) + appearance.shadowImage = ThemeManager.currentTheme.color(for: .backgroundPrimary)?.toImage() + appearance.titleTextAttributes = [ NSAttributedString.Key.foregroundColor: textPrimary ] - UINavigationBar.appearance().largeTitleTextAttributes = [ + appearance.largeTitleTextAttributes = [ NSAttributedString.Key.foregroundColor: textPrimary ] - // Update the bar button item appearance - UIBarButtonItem.appearance().tintColor = textPrimary - - // Update toolbars to use the right colours - UIToolbar.appearance().barTintColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) - UIToolbar.appearance().isTranslucent = false - UIToolbar.appearance().tintColor = textPrimary + // Apply the button item appearance as well + let barButtonItemAppearance = UIBarButtonItemAppearance(style: .plain) + barButtonItemAppearance.normal.titleTextAttributes = [ .foregroundColor: textPrimary ] + barButtonItemAppearance.disabled.titleTextAttributes = [ .foregroundColor: textPrimary ] + barButtonItemAppearance.highlighted.titleTextAttributes = [ .foregroundColor: textPrimary ] + barButtonItemAppearance.focused.titleTextAttributes = [ .foregroundColor: textPrimary ] + appearance.buttonAppearance = barButtonItemAppearance + appearance.backButtonAppearance = barButtonItemAppearance + appearance.doneButtonAppearance = barButtonItemAppearance - // Note: Looks like there were changes to the appearance behaviour in iOS 15, unfortunately - // this breaks parts of the old 'UINavigationBar.appearance()' logic so we need to do everything - // again using the new API... - if #available(iOS 15.0, *) { - let appearance = UINavigationBarAppearance() - appearance.configureWithOpaqueBackground() - appearance.backgroundColor = ThemeManager.currentTheme.color(for: .backgroundPrimary) - appearance.shadowImage = ThemeManager.currentTheme.color(for: .backgroundPrimary)?.toImage() - appearance.titleTextAttributes = [ - NSAttributedString.Key.foregroundColor: textPrimary - ] - appearance.largeTitleTextAttributes = [ - NSAttributedString.Key.foregroundColor: textPrimary - ] - - // Apply the button item appearance as well - let barButtonItemAppearance = UIBarButtonItemAppearance(style: .plain) - barButtonItemAppearance.normal.titleTextAttributes = [ .foregroundColor: textPrimary ] - barButtonItemAppearance.disabled.titleTextAttributes = [ .foregroundColor: textPrimary ] - barButtonItemAppearance.highlighted.titleTextAttributes = [ .foregroundColor: textPrimary ] - barButtonItemAppearance.focused.titleTextAttributes = [ .foregroundColor: textPrimary ] - appearance.buttonAppearance = barButtonItemAppearance - appearance.backButtonAppearance = barButtonItemAppearance - appearance.doneButtonAppearance = barButtonItemAppearance - - UINavigationBar.appearance().standardAppearance = appearance - UINavigationBar.appearance().scrollEdgeAppearance = appearance - } + UINavigationBar.appearance().isTranslucent = false + UINavigationBar.appearance().standardAppearance = appearance + UINavigationBar.appearance().scrollEdgeAppearance = appearance // Note: 'UINavigationBar.appearance' only affects newly created nav bars so we need // to force-update any current navigation bar (unfortunately the only way to do this @@ -254,25 +236,20 @@ public enum ThemeManager { navController.navigationBar.barTintColor = ThemeManager.currentTheme.color(for: navigationBackground) navController.navigationBar.shadowImage = ThemeManager.currentTheme.color(for: navigationBackground)?.toImage() - // Note: Looks like there were changes to the appearance behaviour in iOS 15, unfortunately - // this breaks parts of the old 'UINavigationBar.appearance()' logic so we need to do everything - // again using the new API... - if #available(iOS 15.0, *) { - let textPrimary: UIColor = (ThemeManager.currentTheme.color(for: .textPrimary) ?? .white) - let appearance = UINavigationBarAppearance() - appearance.configureWithOpaqueBackground() - appearance.backgroundColor = ThemeManager.currentTheme.color(for: navigationBackground) - appearance.shadowImage = ThemeManager.currentTheme.color(for: navigationBackground)?.toImage() - appearance.titleTextAttributes = [ - NSAttributedString.Key.foregroundColor: textPrimary - ] - appearance.largeTitleTextAttributes = [ - NSAttributedString.Key.foregroundColor: textPrimary - ] - - navController.navigationBar.standardAppearance = appearance - navController.navigationBar.scrollEdgeAppearance = appearance - } + let textPrimary: UIColor = (ThemeManager.currentTheme.color(for: .textPrimary) ?? .white) + let appearance = UINavigationBarAppearance() + appearance.configureWithOpaqueBackground() + appearance.backgroundColor = ThemeManager.currentTheme.color(for: navigationBackground) + appearance.shadowImage = ThemeManager.currentTheme.color(for: navigationBackground)?.toImage() + appearance.titleTextAttributes = [ + NSAttributedString.Key.foregroundColor: textPrimary + ] + appearance.largeTitleTextAttributes = [ + NSAttributedString.Key.foregroundColor: textPrimary + ] + + navController.navigationBar.standardAppearance = appearance + navController.navigationBar.scrollEdgeAppearance = appearance } private static func retrieveNavigationController(from viewController: UIViewController) -> UINavigationController? { diff --git a/SessionUIKit/Style Guide/Themes/Theme.swift b/SessionUIKit/Style Guide/Themes/Theme.swift index b9c8598d70..e928b8d7f3 100644 --- a/SessionUIKit/Style Guide/Themes/Theme.swift +++ b/SessionUIKit/Style Guide/Themes/Theme.swift @@ -16,10 +16,10 @@ public enum Theme: String, CaseIterable, Codable, EnumStringSetting { public var title: String { switch self { - case .classicDark: return "Classic Dark" - case .classicLight: return "Classic Light" - case .oceanDark: return "Ocean Dark" - case .oceanLight: return "Ocean Light" + case .classicDark: return "appearanceThemesClassicDark".localized() + case .classicLight: return "appearanceThemesClassicLight".localized() + case .oceanDark: return "appearanceThemesOceanDark".localized() + case .oceanLight: return "appearanceThemesOceanLight".localized() } } diff --git a/SessionUIKit/Utilities/Localization+Style.swift b/SessionUIKit/Utilities/Localization+Style.swift new file mode 100644 index 0000000000..1da248a26a --- /dev/null +++ b/SessionUIKit/Utilities/Localization+Style.swift @@ -0,0 +1,235 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. + +// stringlint:disable + +import UIKit +import SessionUtilitiesKit + +public extension NSAttributedString { + /// These are the tags we current support formatting for + enum HTMLTag: String { + /// The regex to recognize an open or close tag + /// + /// **Note:** The `{1,X}` defines a minimum and maximum tag length and may need to be updated if we add support + /// for longer tags that are currently supported + static let regexPattern: String = #"<(?\/)?(?[A-Za-z0-9]{1,})>"# + + case bold = "b" + case italic = "i" + case underline = "u" + case strikethrough = "s" + case primaryTheme = "span" + + // MARK: - Functions + + static func from(_ stringValue: String) -> (tag: HTMLTag, closeTag: Bool)? { + let isCloseTag: Bool = stringValue.starts(with: "", with: "") + ).map { ($0, isCloseTag) } + } + + func format(with font: UIFont) -> [NSAttributedString.Key: Any] { + /// **Note:** Constructing a `UIFont` with a `size`of `0` will preserve the textSize + switch self { + case .bold: return [ + .font: UIFont( + descriptor: (font.fontDescriptor.withSymbolicTraits(.traitBold) ?? font.fontDescriptor), + size: 0 + ) + ] + case .italic: return [ + .font: UIFont( + descriptor: (font.fontDescriptor.withSymbolicTraits(.traitItalic) ?? font.fontDescriptor), + size: 0 + ) + ] + case .underline: return [.underlineStyle: NSUnderlineStyle.single.rawValue] + case .strikethrough: return [.strikethroughStyle: NSUnderlineStyle.single.rawValue] + case .primaryTheme: return [.foregroundColor: ThemeManager.currentTheme.color(for: .sessionButton_text).defaulting(to: ThemeManager.primaryColor.color)] + } + } + } + + convenience init(stringWithHTMLTags: String?, font: UIFont) { + guard + let targetString: String = stringWithHTMLTags, + let expression: NSRegularExpression = try? NSRegularExpression( + pattern: HTMLTag.regexPattern, + options: [.caseInsensitive, .dotMatchesLineSeparators] + ) + else { + self.init(string: (stringWithHTMLTags ?? "")) + return + } + + /// Construct the needed types + /// + /// **Note:** We use an `NSAttributedString` for retrieving string ranges because if we don't then emoji characters + /// can cause odd behaviours with accessing ranges so this simplifies the logic + let attrString: NSAttributedString = NSAttributedString(string: targetString) + let stringLength: Int = targetString.utf16.count + var partsAndTags: [(part: String, tags: [HTMLTag])] = [] + var openTags: [HTMLTag: Int] = [:] + var lastMatch: NSTextCheckingResult? + + /// Enumerate through the HTMLTag matches and build up a list of formats to apply + expression.enumerateMatches(in: targetString, range: NSMakeRange(0, stringLength)) { match, _, _ in + guard let currentMatch: NSTextCheckingResult = match else { return } + + /// Store the positions for readability + let lastMatchEnd: Int = (lastMatch?.range.upperBound ?? 0) + let currentMatchStart: Int = currentMatch.range.lowerBound + let currentMatchEnd: Int = currentMatch.range.upperBound + + /// Ignore invalid ranges + guard (currentMatchStart >= lastMatchEnd) else { return } + + /// Retrieve the tag and content values, store the content and any tags which are currently applied so we can construct the + /// formatted string at the end + let tagMatch: String = attrString[currentMatchStart.. 1: openTags[tagInfo.tag] = (openCount - 1) + + /// Otherwise we have a valid format chunk so should collapse it + case (true, .some): openTags[tagInfo.tag] = nil + + /// Ignore close tags with no corresponding open tags + case (true, .none): break + } + } + + /// Store the the `lastMatch` value for appending the final part of the content + lastMatch = currentMatch + } + + /// If we don't have a `lastMatch` value then we weren't able to get a single valid tag match so just stop here are return the `targetString` + guard let finalMatch: NSTextCheckingResult = lastMatch else { + self.init(string: targetString) + return + } + + /// If the final regex match isn't at the end of the string then we need to append the final part of the string to avoid it getting truncated + /// + /// **Note:** When there is an opening tag but no closing tag browsers seem to apply the style from the opening tag to the end of + /// the string so we should do the same here + if stringLength > finalMatch.range.upperBound { + partsAndTags.append((attrString[finalMatch.range.upperBound...], Array(openTags.keys))) + } + + /// Lastly we should construct the attributed string, applying the desired formatting + self.init( + attributedString: partsAndTags.reduce(into: NSMutableAttributedString()) { result, next in + result.append(NSAttributedString(string: next.part, attributes: next.tags.format(with: font))) + } + ) + } + + private subscript(range: Range) -> String { + attributedSubstring(from: NSMakeRange(range.lowerBound, (range.upperBound - range.lowerBound))).string + } + + private subscript(range: PartialRangeFrom) -> String { + let upperBound: Int = self.string.utf16.count + return attributedSubstring(from: NSMakeRange(range.lowerBound, (upperBound - range.lowerBound))).string + } + + private subscript(range: PartialRangeThrough) -> String { + attributedSubstring(from: NSMakeRange(0, range.upperBound)).string + } +} + +private extension Collection where Element == NSAttributedString.HTMLTag { + func format(with font: UIFont) -> [NSAttributedString.Key: Any] { + func fontWith(_ font: UIFont, traits: UIFontDescriptor.SymbolicTraits) -> UIFont { + /// **Note:** Constructing a `UIFont` with a `size`of `0` will preserve the textSize + return UIFont( + descriptor: (font.fontDescriptor.withSymbolicTraits(traits) ?? font.fontDescriptor), + size: 0 + ) + } + + return self.reduce(into: [NSAttributedString.Key: Any]()) { result, tag in + switch tag { + case .bold where self.contains(.italic), .italic where self.contains(.bold): + result[.font] = fontWith(font, traits: [.traitBold, .traitItalic]) + + case .bold: result[.font] = fontWith(font, traits: [.traitBold]) + case .italic: result[.font] = fontWith(font, traits: [.traitItalic]) + case .underline: result[.underlineStyle] = NSUnderlineStyle.single.rawValue + case .strikethrough: result[.strikethroughStyle] = NSUnderlineStyle.single.rawValue + case .primaryTheme: result[.foregroundColor] = ThemeManager.currentTheme.color(for: .sessionButton_text).defaulting(to: ThemeManager.primaryColor.color) + } + } + } +} + +public extension LocalizationHelper { + func localizedFormatted(in view: FontAccessible) -> NSAttributedString { + return localizedFormatted(baseFont: (view.fontValue ?? .systemFont(ofSize: 14))) + } + + func localizedFormatted(baseFont: UIFont) -> NSAttributedString { + return NSAttributedString(stringWithHTMLTags: localized(), font: baseFont) + } + + func localizedDeformatted() -> String { + return NSAttributedString(stringWithHTMLTags: localized(), font: .systemFont(ofSize: 14)).string + } + +} + +public protocol FontAccessible { + var fontValue: UIFont? { get } +} + +public protocol DirectFontAccessible: FontAccessible { + var font: UIFont? { get } +} + +extension DirectFontAccessible { + public var fontValue: UIFont? { font } +} + +// UILabel has a `font!` value so we need to conform to a different protocol +extension UILabel: FontAccessible { + public var fontValue: UIFont? { + get { self.font } + } +} +extension UITextField: DirectFontAccessible {} +extension UITextView: DirectFontAccessible {} + +public extension String { + func localizedFormatted(in view: FontAccessible) -> NSAttributedString { + return LocalizationHelper(template: self).localizedFormatted(in: view) + } + + func formatted(in view: FontAccessible) -> NSAttributedString { + return NSAttributedString(stringWithHTMLTags: self, font: (view.fontValue ?? .systemFont(ofSize: 14))) + } + + func formatted(baseFont: UIFont) -> NSAttributedString { + return NSAttributedString(stringWithHTMLTags: self, font: baseFont) + } + + func deformatted() -> String { + return NSAttributedString(stringWithHTMLTags: self, font: .systemFont(ofSize: 14)).string + } +} diff --git a/SessionUIKit/Utilities/SwiftUI+Utilities.swift b/SessionUIKit/Utilities/SwiftUI+Utilities.swift index 888a8bd9fa..f9af0712a0 100644 --- a/SessionUIKit/Utilities/SwiftUI+Utilities.swift +++ b/SessionUIKit/Utilities/SwiftUI+Utilities.swift @@ -177,16 +177,6 @@ extension View { } } - public func hideListRowSeparator() -> some View { - if #available(iOS 15.0, *) { - return listRowSeparator(.hidden) - } else { - return onAppear { - UITableView.appearance().separatorStyle = .none - } - } - } - public func accessibility(_ accessibility: Accessibility) -> some View { if #available(iOSApplicationExtension 14.0, *) { guard let identifier = accessibility.identifier else { diff --git a/SessionUtilitiesKit/General/Constants.swift b/SessionUtilitiesKit/General/Constants.swift new file mode 100644 index 0000000000..9301edad59 --- /dev/null +++ b/SessionUtilitiesKit/General/Constants.swift @@ -0,0 +1,11 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. +// This file is automatically generated and maintained, do not manually edit it. +// +// stringlint:disable + +public enum Constants { + public static let app_name: String = "Session" + public static let session_download_url: String = "https://getsession.org/download" + public static let gif: String = "GIF" + public static let oxen_foundation: String = "Oxen Foundation" +} diff --git a/SessionUtilitiesKit/General/Localization.swift b/SessionUtilitiesKit/General/Localization.swift new file mode 100644 index 0000000000..693b2b2390 --- /dev/null +++ b/SessionUtilitiesKit/General/Localization.swift @@ -0,0 +1,91 @@ +// Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. + +// stringlint:disable + +import UIKit + +// MARK: - PendingLocalizedString + +final public class LocalizationHelper: CustomStringConvertible { + private let template: String + private var replacements: [String : String] = [:] + private var numbers: [Int] = [] + + // MARK: - Initialization + + public init(template: String) { + self.template = template + } + + // MARK: - DSL + + public func put(key: String, value: CustomStringConvertible) -> LocalizationHelper { + replacements[key] = value.description + return self + } + + public func putNumber(_ number: Int, index: Int) -> LocalizationHelper { + self.numbers.insert(number, at: index) + return self + } + + public func localized() -> String { + // Use English as the default string if the translation is empty + let defaultString: String = { + if let englishPath = Bundle.main.path(forResource: "en", ofType: "lproj"), let englishBundle = Bundle(path: englishPath) { + return englishBundle.localizedString(forKey: template, value: nil, table: nil) + } else { + return "" + } + }() + + // If the localized string matches the key provided then the localisation failed + var localizedString: String = NSLocalizedString(template, value: defaultString, comment: "") + + // Deal with plurals + // Note: We have to deal with plurals first, so we can get the correct string + if !self.numbers.isEmpty { + localizedString = String( + format: localizedString, + locale: .current, + arguments: self.numbers + ) + } + + for (key, value) in replacements { + localizedString = localizedString.replacingOccurrences(of: tokenize(key), with: value) + } + + // Replace html tag "
" with "\n" + localizedString = localizedString.replacingOccurrences(of: "
", with: "\n") + + return localizedString + } + + // MARK: - Internal functions + + private func tokenize(_ key: String) -> String { + return "{" + key + "}" + } + + // MARK: - CustomStringConvertible + + public var description: String { + // Fallback to the localized + return self.localized() + } +} + +public extension String { + func put(key: String, value: CustomStringConvertible) -> LocalizationHelper { + return LocalizationHelper(template: self).put(key: key, value: value) + } + + func putNumber(_ number: Int, index: Int = 0) -> LocalizationHelper { + return LocalizationHelper(template: self).putNumber(number, index: index) + } + + func localized() -> String { + return LocalizationHelper(template: self).localized() + } +} diff --git a/SessionUtilitiesKit/General/String+Utilities.swift b/SessionUtilitiesKit/General/String+Utilities.swift index a1b6808cc6..70145d71a6 100644 --- a/SessionUtilitiesKit/General/String+Utilities.swift +++ b/SessionUtilitiesKit/General/String+Utilities.swift @@ -1,4 +1,6 @@ // Copyright © 2022 Rangeproof Pty Ltd. All rights reserved. +// +// stringlint:disable import Foundation import CoreText @@ -45,14 +47,6 @@ public extension String { ) } - func localized() -> String { - // If the localized string matches the key provided then the localisation failed - let localizedString = NSLocalizedString(self, comment: "") - Log.assert(localizedString != self, "Key \"\(self)\" is not set in Localizable.strings") - - return localizedString - } - func ranges(of substring: String, options: CompareOptions = [], locale: Locale? = nil) -> [Range] { var ranges: [Range] = [] @@ -108,239 +102,53 @@ public extension String.StringInterpolation { public extension String { static func formattedDuration(_ duration: TimeInterval, format: TimeInterval.DurationFormat = .short) -> String { - let secondsPerMinute: TimeInterval = 60 - let secondsPerHour: TimeInterval = (secondsPerMinute * 60) - let secondsPerDay: TimeInterval = (secondsPerHour * 24) - let secondsPerWeek: TimeInterval = (secondsPerDay * 7) + let dateComponentsFormatter = DateComponentsFormatter() + dateComponentsFormatter.allowedUnits = [.weekOfMonth, .day, .hour, .minute, .second] + var calendar = Calendar.current switch format { case .videoDuration: - let seconds: Int = Int(duration.truncatingRemainder(dividingBy: 60)) - let minutes: Int = Int((duration / 60).truncatingRemainder(dividingBy: 60)) - let hours: Int = Int(duration / 3600) - - guard hours > 0 else { return String(format: "%02ld:%02ld", minutes, seconds) } - - return String(format: "%ld:%02ld:%02ld", hours, minutes, seconds) + guard duration < 3600 else { fallthrough } + dateComponentsFormatter.allowedUnits = [.minute, .second] + dateComponentsFormatter.unitsStyle = .positional + dateComponentsFormatter.zeroFormattingBehavior = .pad + return dateComponentsFormatter.string(from: duration) ?? "" case .hoursMinutesSeconds: - let seconds: Int = Int(duration.truncatingRemainder(dividingBy: 60)) - let minutes: Int = Int((duration / 60).truncatingRemainder(dividingBy: 60)) - let hours: Int = Int(duration / 3600) - - guard hours > 0 else { return String(format: "%ld:%02ld", minutes, seconds) } - - return String(format: "%ld:%02ld:%02ld", hours, minutes, seconds) - - case .short: - switch duration { - case 0.. 0 ? result : nil) } } diff --git a/SessionUtilitiesKit/Utilities/UIApplicationState+Utilities.swift b/SessionUtilitiesKit/Utilities/UIApplicationState+Utilities.swift index cbd30f8d45..aee1bf2ad5 100644 --- a/SessionUtilitiesKit/Utilities/UIApplicationState+Utilities.swift +++ b/SessionUtilitiesKit/Utilities/UIApplicationState+Utilities.swift @@ -1,5 +1,7 @@ // Copyright © 2024 Rangeproof Pty Ltd. All rights reserved. +// stringlint:disable + import UIKit.UIApplication public extension UIApplication.State { diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalInputAccessoryView.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalInputAccessoryView.swift index 77a09eea63..6095b9d988 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalInputAccessoryView.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalInputAccessoryView.swift @@ -7,8 +7,6 @@ import SessionUtilitiesKit protocol AttachmentApprovalInputAccessoryViewDelegate: AnyObject { func attachmentApprovalInputUpdateMediaRail() - func attachmentApprovalInputStartEditingCaptions() - func attachmentApprovalInputStopEditingCaptions() } // MARK: - @@ -18,23 +16,18 @@ class AttachmentApprovalInputAccessoryView: UIView { weak var delegate: AttachmentApprovalInputAccessoryViewDelegate? let attachmentTextToolbar: AttachmentTextToolbar - let attachmentCaptionToolbar: AttachmentCaptionToolbar let galleryRailView: GalleryRailView - let currentCaptionLabel = UILabel() - let currentCaptionWrapper = UIView() var isEditingMediaMessage: Bool { return attachmentTextToolbar.textView.isFirstResponder } - private var isEditingCaptions: Bool = false private var currentAttachmentItem: SignalAttachmentItem? let kGalleryRailViewHeight: CGFloat = 72 required init() { attachmentTextToolbar = AttachmentTextToolbar() - attachmentCaptionToolbar = AttachmentCaptionToolbar() galleryRailView = GalleryRailView() galleryRailView.scrollFocusMode = .keepWithinBounds @@ -71,19 +64,7 @@ class AttachmentApprovalInputAccessoryView: UIView { separator.pin(.leading, to: .leading, of: self) separator.pin(.trailing, to: .trailing, of: self) - currentCaptionLabel.themeTextColor = .white - currentCaptionLabel.font = .systemFont(ofSize: Values.mediumFontSize) - currentCaptionLabel.numberOfLines = 5 - currentCaptionLabel.lineBreakMode = .byWordWrapping - - currentCaptionWrapper.isUserInteractionEnabled = true - currentCaptionWrapper.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(captionTapped))) - currentCaptionWrapper.addSubview(currentCaptionLabel) - currentCaptionLabel.pin(toMarginsOf: currentCaptionWrapper) - - attachmentCaptionToolbar.attachmentCaptionToolbarDelegate = self - - let stackView = UIStackView(arrangedSubviews: [currentCaptionWrapper, attachmentCaptionToolbar, galleryRailView, attachmentTextToolbar]) + let stackView = UIStackView(arrangedSubviews: [galleryRailView, attachmentTextToolbar]) stackView.axis = .vertical addSubview(stackView) @@ -104,78 +85,21 @@ class AttachmentApprovalInputAccessoryView: UIView { galleryRailBlockingView.pin(.bottom, to: .bottom, of: stackView) } - // MARK: - Events - - @objc func captionTapped(sender: UIGestureRecognizer) { - guard sender.state == .recognized else { return } - - delegate?.attachmentApprovalInputStartEditingCaptions() - } - // MARK: private var shouldHideControls = false - private func updateContents() { - var hasCurrentCaption = false - if let currentAttachmentItem = currentAttachmentItem, - let captionText = currentAttachmentItem.captionText { - hasCurrentCaption = captionText.count > 0 - - attachmentCaptionToolbar.textView.text = captionText - currentCaptionLabel.text = captionText - } else { - attachmentCaptionToolbar.textView.text = nil - currentCaptionLabel.text = nil - } - - attachmentCaptionToolbar.isHidden = !isEditingCaptions - currentCaptionWrapper.isHidden = isEditingCaptions || !hasCurrentCaption - attachmentTextToolbar.isHidden = isEditingCaptions - - updateFirstResponder() - - layoutSubviews() - } - private func updateFirstResponder() { if (shouldHideControls) { - if attachmentCaptionToolbar.textView.isFirstResponder { - attachmentCaptionToolbar.textView.resignFirstResponder() - } else if attachmentTextToolbar.textView.isFirstResponder { - attachmentTextToolbar.textView.resignFirstResponder() - } - } else if (isEditingCaptions) { - // While editing captions, the keyboard should always remain visible. - if !attachmentCaptionToolbar.textView.isFirstResponder { - attachmentCaptionToolbar.textView.becomeFirstResponder() - } - } else { - if attachmentCaptionToolbar.textView.isFirstResponder { - attachmentCaptionToolbar.textView.resignFirstResponder() - } + attachmentTextToolbar.textView.resignFirstResponder() } - // NOTE: We don't automatically make attachmentTextToolbar.textView - // first responder; } - public func update(isEditingCaptions: Bool, - currentAttachmentItem: SignalAttachmentItem?, - shouldHideControls: Bool) { - // De-bounce - guard self.isEditingCaptions != isEditingCaptions || - self.currentAttachmentItem != currentAttachmentItem || - self.shouldHideControls != shouldHideControls else { - - updateFirstResponder() - return - } - - self.isEditingCaptions = isEditingCaptions + public func update(currentAttachmentItem: SignalAttachmentItem?, shouldHideControls: Bool) { self.currentAttachmentItem = currentAttachmentItem self.shouldHideControls = shouldHideControls - updateContents() + updateFirstResponder() } // MARK: @@ -189,28 +113,6 @@ class AttachmentApprovalInputAccessoryView: UIView { } public var hasFirstResponder: Bool { - return (isFirstResponder || - attachmentCaptionToolbar.textView.isFirstResponder || - attachmentTextToolbar.textView.isFirstResponder) - } -} - -// MARK: - - -extension AttachmentApprovalInputAccessoryView: AttachmentCaptionToolbarDelegate { - public func attachmentCaptionToolbarDidEdit(_ attachmentCaptionToolbar: AttachmentCaptionToolbar) { - guard let currentAttachmentItem = currentAttachmentItem else { - Log.error("[AttachmentApprovalInputAccessoryView] Missing currentAttachmentItem.") - return - } - - // TODO: Look at refactoring this behaviour to consolidate attachment mutations - currentAttachmentItem.attachment.captionText = attachmentCaptionToolbar.textView.text - - delegate?.attachmentApprovalInputUpdateMediaRail() - } - - public func attachmentCaptionToolbarDidComplete() { - delegate?.attachmentApprovalInputStopEditingCaptions() + return (isFirstResponder || attachmentTextToolbar.textView.isFirstResponder) } } diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift index cbc153883c..cb0c644390 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift @@ -63,10 +63,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC private let isAddMoreVisible: Bool public weak var approvalDelegate: AttachmentApprovalViewControllerDelegate? - - public var isEditingCaptions = false { - didSet { updateContents() } - } let attachmentItemCollection: AttachmentItemCollection @@ -202,20 +198,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC private var galleryRailView: GalleryRailView { return bottomToolView.galleryRailView } - private lazy var touchInterceptorView: UIView = { - let view: UIView = UIView() - view.translatesAutoresizingMaskIntoConstraints = false - view.isHidden = true - - let tapGesture = UITapGestureRecognizer( - target: self, - action: #selector(didTapTouchInterceptorView(gesture:)) - ) - view.addGestureRecognizer(tapGesture) - - return view - }() - private lazy var pagerScrollView: UIScrollView? = { // This is kind of a hack. Since we don't have first class access to the superview's `scrollView` // we traverse the view hierarchy until we find it. @@ -241,8 +223,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC } self.setCurrentItem(firstItem, direction: .forward, animated: false) - - view.addSubview(touchInterceptorView) // layout immediately to avoid animating the layout process during the transition UIView.performWithoutAnimation { @@ -254,8 +234,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC if firstItem.attachment.isText || (firstItem.attachment.isUrl && LinkPreview.previewUrl(for: firstItem.attachment.text()) == nil) { bottomToolView.attachmentTextToolbar.messageText = firstItem.attachment.text() } - - setupLayout() } override public func viewWillAppear(_ animated: Bool) { @@ -270,12 +248,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC updateContents() } - // MARK: - Layout - - private func setupLayout() { - touchInterceptorView.pin(to: view) - } - // MARK: - Notifications @objc func didBecomeActive() { @@ -289,8 +261,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC private func updateContents() { updateNavigationBar() updateInputAccessory() - - touchInterceptorView.isHidden = !isEditingCaptions } // MARK: - Input Accessory @@ -311,7 +281,6 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC } bottomToolView.update( - isEditingCaptions: isEditingCaptions, currentAttachmentItem: currentAttachmentItem, shouldHideControls: shouldHideControls ) @@ -326,46 +295,17 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC return } - guard !isEditingCaptions else { - // Hide all navigation bar items while the caption view is open. - self.navigationItem.leftBarButtonItem = UIBarButtonItem( - //"Title for 'caption' mode of the attachment approval view." - title: "ATTACHMENT_APPROVAL_CAPTION_TITLE".localized(), - style: .plain, - target: nil, - action: nil - ) - - let doneButton = navigationBarButton( - imageName: "image_editor_checkmark_full", - selector: #selector(didTapCaptionDone(sender:)) - ) - let navigationBarItems = [doneButton] - updateNavigationBar(navigationBarItems: navigationBarItems) - return - } - var navigationBarItems = [UIView]() if viewControllers?.count == 1, let firstViewController: AttachmentPrepViewController = viewControllers?.first as? AttachmentPrepViewController { navigationBarItems = firstViewController.navigationBarItems() - - // Show the caption UI if there's more than one attachment - // OR if the attachment already has a caption. - if attachmentItemCollection.count > 0, (firstViewController.attachmentItem.captionText?.count ?? 0) > 0 { - let captionButton = navigationBarButton( - imageName: "image_editor_caption", - selector: #selector(didTapCaption(sender:)) - ) - navigationBarItems.append(captionButton) - } } updateNavigationBar(navigationBarItems: navigationBarItems) if mode != .sharedNavigation { // Mimic a UIBarButtonItem of type .cancel, but with a shadow. - let cancelButton = OWSButton(title: CommonStrings.cancelButton) { [weak self] in + let cancelButton = OWSButton(title: "cancel".localized()) { [weak self] in self?.cancelPressed() } cancelButton.titleLabel?.font = .systemFont(ofSize: 17.0) @@ -640,23 +580,10 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC } // MARK: - Event Handlers - - @objc - func didTapTouchInterceptorView(gesture: UITapGestureRecognizer) { - isEditingCaptions = false - } - + private func cancelPressed() { self.approvalDelegate?.attachmentApprovalDidCancel(self) } - - @objc func didTapCaption(sender: UIButton) { - isEditingCaptions = true - } - - @objc func didTapCaptionDone(sender: UIButton) { - isEditingCaptions = false - } } // MARK: - @@ -767,12 +694,4 @@ extension AttachmentApprovalViewController: AttachmentApprovalInputAccessoryView public func attachmentApprovalInputUpdateMediaRail() { updateMediaRail() } - - public func attachmentApprovalInputStartEditingCaptions() { - isEditingCaptions = true - } - - public func attachmentApprovalInputStopEditingCaptions() { - isEditingCaptions = false - } } diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentCaptionToolbar.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentCaptionToolbar.swift deleted file mode 100644 index 9315053bbe..0000000000 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentCaptionToolbar.swift +++ /dev/null @@ -1,204 +0,0 @@ -// Copyright (c) 2019 Open Whisper Systems. All rights reserved. - -import Foundation -import UIKit -import SessionUIKit -import SessionUtilitiesKit - -protocol AttachmentCaptionToolbarDelegate: AnyObject { - func attachmentCaptionToolbarDidEdit(_ attachmentCaptionToolbar: AttachmentCaptionToolbar) - func attachmentCaptionToolbarDidComplete() -} - -// MARK: - - -class AttachmentCaptionToolbar: UIView, UITextViewDelegate { - - private let kMaxCaptionCharacterCount = 240 - - weak var attachmentCaptionToolbarDelegate: AttachmentCaptionToolbarDelegate? - - var messageText: String? { - get { return textView.text } - - set { - textView.text = newValue - } - } - - // Layout Constants - - let kMinTextViewHeight: CGFloat = 38 - var maxTextViewHeight: CGFloat { - // About ~4 lines in portrait and ~3 lines in landscape. - // Otherwise we risk obscuring too much of the content. - return UIDevice.current.orientation.isPortrait ? 160 : 100 - } - var textViewHeightConstraint: NSLayoutConstraint! - var textViewHeight: CGFloat - - // MARK: - Initializers - - init() { - self.textViewHeight = kMinTextViewHeight - - super.init(frame: CGRect.zero) - - // Specifying autorsizing mask and an intrinsic content size allows proper - // sizing when used as an input accessory view. - self.autoresizingMask = .flexibleHeight - self.translatesAutoresizingMaskIntoConstraints = false - self.themeBackgroundColor = .clear - - textView.delegate = self - - // Layout - let kToolbarMargin: CGFloat = 8 - - self.textViewHeightConstraint = textView.set(.height, to: kMinTextViewHeight) - - lengthLimitLabel.setContentHugging(to: .required) - lengthLimitLabel.setCompressionResistance(to: .required) - - let contentView = UIStackView(arrangedSubviews: [textContainer, lengthLimitLabel]) - // We have to wrap the toolbar items in a content view because iOS (at least on iOS10.3) assigns the inputAccessoryView.layoutMargins - // when resigning first responder (verified by auditing with `layoutMarginsDidChange`). - // The effect of this is that if we were to assign these margins to self.layoutMargins, they'd be blown away if the - // user dismisses the keyboard, giving the input accessory view a wonky layout. - contentView.layoutMargins = UIEdgeInsets(top: kToolbarMargin, left: kToolbarMargin, bottom: kToolbarMargin, right: kToolbarMargin) - contentView.axis = .vertical - addSubview(contentView) - contentView.pin(to: self) - } - - required init?(coder aDecoder: NSCoder) { - fatalError("init(coder:) has not been implemented") - } - - // MARK: - UIView Overrides - - override var intrinsicContentSize: CGSize { - get { - // Since we have `self.autoresizingMask = UIViewAutoresizingFlexibleHeight`, we must specify - // an intrinsicContentSize. Specifying CGSize.zero causes the height to be determined by autolayout. - return CGSize.zero - } - } - - // MARK: - Subviews - - private lazy var lengthLimitLabel: UILabel = { - let lengthLimitLabel = UILabel() - - // Length Limit Label shown when the user inputs too long of a message - lengthLimitLabel.themeTextColor = .textPrimary - lengthLimitLabel.text = NSLocalizedString("ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED", comment: "One-line label indicating the user can add no more text to the media message field.") - lengthLimitLabel.textAlignment = .center - - // Add shadow in case overlayed on white content - lengthLimitLabel.themeShadowColor = .black - lengthLimitLabel.layer.shadowOffset = .zero - lengthLimitLabel.layer.shadowOpacity = 0.8 - lengthLimitLabel.layer.shadowRadius = 2.0 - lengthLimitLabel.isHidden = true - - return lengthLimitLabel - }() - - lazy var textView: UITextView = { - let textView = buildTextView() - - textView.returnKeyType = .done - textView.scrollIndicatorInsets = UIEdgeInsets(top: 5, left: 0, bottom: 5, right: 3) - - return textView - }() - - private lazy var textContainer: UIView = { - let textContainer = UIView() - textContainer.clipsToBounds = true - textContainer.addSubview(textView) - textView.pin(to: textContainer) - return textContainer - }() - - private func buildTextView() -> UITextView { - let textView = AttachmentTextView() - - textView.themeBackgroundColor = .clear - textView.themeTintColor = .textPrimary - - textView.font = UIFont.preferredFont(forTextStyle: .body) - textView.themeTextColor = .textPrimary - textView.textContainerInset = UIEdgeInsets(top: 7, left: 7, bottom: 7, right: 7) - - ThemeManager.onThemeChange(observer: textView) { [weak textView] theme, _ in - textView?.keyboardAppearance = theme.keyboardAppearance - } - - return textView - } - - // MARK: - UITextViewDelegate - - public func textViewDidChange(_ textView: UITextView) { - updateHeight(textView: textView) - - attachmentCaptionToolbarDelegate?.attachmentCaptionToolbarDidEdit(self) - } - - public func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { - let existingText: String = textView.text ?? "" - let proposedText: String = (existingText as NSString).replacingCharacters(in: range, with: text) - - self.lengthLimitLabel.isHidden = true - - // After verifying the byte-length is sufficiently small, verify the character count is within bounds. - guard proposedText.count < kMaxCaptionCharacterCount else { - Log.debug("[AttachmentCaptionToolbar] hit attachment message body character count limit") - - self.lengthLimitLabel.isHidden = false - - // `range` represents the section of the existing text we will replace. We can re-use that space. - let charsAfterDelete: Int = (existingText as NSString).replacingCharacters(in: range, with: "").count - - // Accept as much of the input as we can - let charBudget: Int = Int(kMaxCaptionCharacterCount) - charsAfterDelete - if charBudget >= 0 { - let acceptableNewText = String(text.prefix(charBudget)) - textView.text = (existingText as NSString).replacingCharacters(in: range, with: acceptableNewText) - } - - return false - } - - // Though we can wrap the text, we don't want to encourage multline captions, plus a "done" button - // allows the user to get the keyboard out of the way while in the attachment approval view. - if text == "\n" { // stringlint:disable - attachmentCaptionToolbarDelegate?.attachmentCaptionToolbarDidComplete() - return false - } - - return true - } - - // MARK: - Helpers - - private func updateHeight(textView: UITextView) { - // compute new height assuming width is unchanged - let currentSize = textView.frame.size - let newHeight = clampedTextViewHeight(fixedWidth: currentSize.width) - - if newHeight != textViewHeight { - Log.debug("[AttachmentCaptionToolbar] TextView height changed: \(textViewHeight) -> \(newHeight)") - textViewHeight = newHeight - textViewHeightConstraint?.constant = textViewHeight - invalidateIntrinsicContentSize() - } - } - - private func clampedTextViewHeight(fixedWidth: CGFloat) -> CGFloat { - let contentSize = textView.sizeThatFits(CGSize(width: fixedWidth, height: CGFloat.greatestFiniteMagnitude)) - return contentSize.height.clamp(kMinTextViewHeight, maxTextViewHeight) - } -} diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentTextToolbar.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentTextToolbar.swift index a47f562a22..008862087a 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentTextToolbar.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentTextToolbar.swift @@ -60,7 +60,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate { textView.accessibilityIdentifier = "Text input box" textView.isAccessibilityElement = true - let sendTitle = NSLocalizedString("ATTACHMENT_APPROVAL_SEND_BUTTON", comment: "Label for 'send' button in the 'attachment approval' dialog.") + let sendTitle = "send".localized() sendButton.setTitle(sendTitle, for: .normal) sendButton.addTarget(self, action: #selector(didTapSend), for: .touchUpInside) @@ -133,7 +133,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate { let lengthLimitLabel = UILabel() // Length Limit Label shown when the user inputs too long of a message - lengthLimitLabel.text = "ATTACHMENT_APPROVAL_MESSAGE_LENGTH_LIMIT_REACHED".localized() + lengthLimitLabel.text = "messageErrorLimit".localized() lengthLimitLabel.themeTextColor = .textPrimary lengthLimitLabel.textAlignment = .center @@ -159,7 +159,7 @@ class AttachmentTextToolbar: UIView, UITextViewDelegate { private lazy var placeholderTextView: UITextView = { let placeholderTextView = buildTextView() - placeholderTextView.text = "Message" + placeholderTextView.text = "message".localized() placeholderTextView.isEditable = false return placeholderTextView diff --git a/SignalUtilitiesKit/Media Viewing & Editing/MediaMessageView.swift b/SignalUtilitiesKit/Media Viewing & Editing/MediaMessageView.swift index a6daa005b6..612b20df11 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/MediaMessageView.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/MediaMessageView.swift @@ -233,7 +233,7 @@ public class MediaMessageView: UIView { label.numberOfLines = 2 } else { - label.text = "vc_share_link_previews_disabled_title".localized() + label.text = "linkPreviewsTurnedOff".localized() } } // Title for everything except these types @@ -242,10 +242,7 @@ public class MediaMessageView: UIView { label.text = fileName } else if let fileExtension: String = attachment.fileExtension { - label.text = String( - format: "ATTACHMENT_APPROVAL_FILE_EXTENSION_FORMAT".localized(), - fileExtension.uppercased() - ) + label.text = "attachmentsFileType".localized() + " " + fileExtension.uppercased() } label.textAlignment = .center @@ -283,7 +280,7 @@ public class MediaMessageView: UIView { if let linkPreviewURL: String = linkPreviewInfo?.url { if let targetUrl: URL = URL(string: linkPreviewURL), targetUrl.scheme?.lowercased() != "https" { label.font = UIFont.systemFont(ofSize: Values.verySmallFontSize) - label.text = "vc_share_link_previews_unsecure".localized() + label.text = "linkPreviewsErrorUnsecure".localized() label.themeTextColor = (mode == .attachmentApproval ? .textSecondary : .primary @@ -292,7 +289,9 @@ public class MediaMessageView: UIView { } // If we have no link preview info at this point then assume link previews are disabled else { - label.text = "vc_share_link_previews_disabled_explanation".localized() + label.text = "linkPreviewsTurnedOffDescription" + .put(key: "app_name", value: Constants.app_name) + .localized() label.themeTextColor = .textPrimary label.textAlignment = .center label.numberOfLines = 0 @@ -511,7 +510,7 @@ public class MediaMessageView: UIView { } else { self?.subtitleLabel.font = UIFont.systemFont(ofSize: Values.verySmallFontSize) - self?.subtitleLabel.text = "vc_share_link_previews_error".localized() + self?.subtitleLabel.text = "linkPreviewsErrorLoad".localized() self?.subtitleLabel.themeTextColor = (self?.mode == .attachmentApproval ? .textSecondary : .primary diff --git a/SignalUtilitiesKit/Screen Lock/ScreenLock.swift b/SignalUtilitiesKit/Screen Lock/ScreenLock.swift index 880b11edbf..79dc4050f9 100644 --- a/SignalUtilitiesKit/Screen Lock/ScreenLock.swift +++ b/SignalUtilitiesKit/Screen Lock/ScreenLock.swift @@ -51,7 +51,9 @@ public class ScreenLock { tryToVerifyLocalAuthentication( // Description of how and why Signal iOS uses Touch ID/Face ID/Phone Passcode to // unlock 'screen lock'. - localizedReason: "SCREEN_LOCK_REASON_UNLOCK_SCREEN_LOCK".localized() + localizedReason: "authenticateToOpen" + .put(key: "app_name", value: Constants.app_name) + .localized() ) { outcome in Log.assertOnMainThread() @@ -89,7 +91,7 @@ public class ScreenLock { ) { Log.assertOnMainThread() - let defaultErrorDescription = "SCREEN_LOCK_ENABLE_UNKNOWN_ERROR".localized() + let defaultErrorDescription = "authenticateNotAccessed".localized() // Ensure completion is always called on the main thread. let completion = { outcome in @@ -154,15 +156,15 @@ public class ScreenLock { switch laError.code { case .biometryNotAvailable: Log.error("[ScreenLock] Local authentication error: biometryNotAvailable.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE".localized()) + return .failure(error: "lockAppEnablePasscode".localized()) case .biometryNotEnrolled: Log.error("[ScreenLock] Local authentication error: biometryNotEnrolled.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED".localized()) + return .failure(error: "lockAppEnablePasscode".localized()) case .biometryLockout: Log.error("[ScreenLock] Local authentication error: biometryLockout.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT".localized()) + return .failure(error: "authenticateFailedTooManyAttempts".localized()) default: // Fall through to second switch @@ -172,7 +174,7 @@ public class ScreenLock { switch laError.code { case .authenticationFailed: Log.error("[ScreenLock] Local authentication error: authenticationFailed.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_FAILED".localized()) + return .failure(error: "authenticateFailed".localized()) case .userCancel, .userFallback, .systemCancel, .appCancel: Log.info("[ScreenLock] Local authentication cancelled.") @@ -180,19 +182,19 @@ public class ScreenLock { case .passcodeNotSet: Log.error("[ScreenLock] Local authentication error: passcodeNotSet.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_PASSCODE_NOT_SET".localized()) + return .failure(error: "lockAppEnablePasscode".localized()) case .touchIDNotAvailable: Log.error("[ScreenLock] Local authentication error: touchIDNotAvailable.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_AVAILABLE".localized()) + return .failure(error: "lockAppEnablePasscode".localized()) case .touchIDNotEnrolled: Log.error("[ScreenLock] Local authentication error: touchIDNotEnrolled.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_NOT_ENROLLED".localized()) + return .failure(error: "lockAppEnablePasscode".localized()) case .touchIDLockout: Log.error("[ScreenLock] Local authentication error: touchIDLockout.") - return .failure(error: "SCREEN_LOCK_ERROR_LOCAL_AUTHENTICATION_LOCKOUT".localized()) + return .failure(error: "authenticateFailedTooManyAttempts".localized()) case .invalidContext: Log.error("[ScreenLock] Context not valid.") diff --git a/SignalUtilitiesKit/Screen Lock/ScreenLockViewController.swift b/SignalUtilitiesKit/Screen Lock/ScreenLockViewController.swift index c3dcc291a8..b832c913bb 100644 --- a/SignalUtilitiesKit/Screen Lock/ScreenLockViewController.swift +++ b/SignalUtilitiesKit/Screen Lock/ScreenLockViewController.swift @@ -36,7 +36,7 @@ open class ScreenLockViewController: UIViewController { public lazy var unlockButton: SessionButton = { let result: SessionButton = SessionButton(style: .bordered, size: .medium) result.translatesAutoresizingMaskIntoConstraints = false - result.setTitle("Unlock Session", for: .normal) + result.setTitle("lockAppUnlock".localized(), for: .normal) result.addTarget(self, action: #selector(showUnlockUI), for: .touchUpInside) result.isHidden = true diff --git a/SignalUtilitiesKit/Shared View Controllers/ModalActivityIndicatorViewController.swift b/SignalUtilitiesKit/Shared View Controllers/ModalActivityIndicatorViewController.swift index 6d2ece9a32..fe23a97d12 100644 --- a/SignalUtilitiesKit/Shared View Controllers/ModalActivityIndicatorViewController.swift +++ b/SignalUtilitiesKit/Shared View Controllers/ModalActivityIndicatorViewController.swift @@ -147,7 +147,7 @@ public class ModalActivityIndicatorViewController: OWSViewController { if canCancel { let cancelButton: SessionButton = SessionButton(style: .destructive, size: .large) - cancelButton.setTitle(CommonStrings.cancelButton, for: .normal) + cancelButton.setTitle("cancel".localized(), for: .normal) cancelButton.addTarget(self, action: #selector(cancelPressed), for: .touchUpInside) self.view.addSubview(cancelButton) diff --git a/SignalUtilitiesKit/Utilities/CommonStrings.swift b/SignalUtilitiesKit/Utilities/CommonStrings.swift deleted file mode 100644 index d67f495343..0000000000 --- a/SignalUtilitiesKit/Utilities/CommonStrings.swift +++ /dev/null @@ -1,65 +0,0 @@ -// -// Copyright (c) 2019 Open Whisper Systems. All rights reserved. -// - -import Foundation - -/** - * Strings re-used in multiple places should be added here. - */ - -@objc public class CommonStrings: NSObject { - @objc - static public let dismissButton = NSLocalizedString("DISMISS_BUTTON_TEXT", comment: "Short text to dismiss current modal / actionsheet / screen") - @objc - static public let cancelButton = NSLocalizedString("TXT_CANCEL_TITLE", comment: "Label for the cancel button in an alert or action sheet.") - @objc - static public let doneButton = NSLocalizedString("BUTTON_DONE", comment: "Label for generic done button.") - @objc - static public let retryButton = "RETRY_BUTTON_TEXT".localized() - @objc - static public let openSettingsButton = NSLocalizedString("OPEN_SETTINGS_BUTTON", comment: "Button text which opens the settings app") - @objc - static public let errorAlertTitle = NSLocalizedString("ALERT_ERROR_TITLE", comment: "") -} - -@objc public class MessageStrings: NSObject { - @objc - static public let replyNotificationAction = NSLocalizedString("PUSH_MANAGER_REPLY", comment: "Notification action button title") - - @objc - static public let markAsReadNotificationAction = NSLocalizedString("PUSH_MANAGER_MARKREAD", comment: "Notification action button title") - - @objc - static public let sendButton = "SEND_BUTTON_TITLE".localized() -} - -@objc -public class NotificationStrings: NSObject { - @objc - static public let incomingMessageBody = NSLocalizedString("APN_Message", comment: "notification body") - - @objc - static public let incomingCollapsedMessagesBody = NSLocalizedString("APN_Collapsed_Messages", comment: "collapsed notification body for background polling") - - @objc - static public let incomingGroupMessageTitleFormat = NSLocalizedString("NEW_GROUP_MESSAGE_NOTIFICATION_TITLE", comment: "notification title. Embeds {{author name}} and {{group name}}") - - @objc - static public let failedToSendBody = "SEND_FAILED_NOTIFICATION_BODY".localized() -} - -@objc public class CallStrings: NSObject { - // MARK: Notification actions - @objc - static public let showThreadButtonTitle = "SHOW_THREAD_BUTTON_TITLE".localized() -} - -@objc public class MediaStrings: NSObject { - @objc - static public let allMedia = NSLocalizedString("MEDIA_DETAIL_VIEW_ALL_MEDIA_BUTTON", comment: "nav bar button item") - @objc - static public let media = NSLocalizedString("MEDIA_TAB_TITLE", comment: "media tab title") - @objc - static public let document = NSLocalizedString("DOCUMENT_TAB_TITLE", comment: "document tab title") -}